/*
Theme Name: ITK Works Renewal
Theme URI: https://itkworks.com/
Author: ITK Works
Description: Custom WordPress theme for ITK Works website renewal.
Version: 1.0.0
Text Domain: itkworks-renewal
*/

:root {
  --navy: #0a318a;
  --orange: #f26b1d;
  --orange-light: #fff1e8;
  --blue-light: #eef4ff;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #f7f8fa;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(10, 49, 138, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

@media (max-width: 640px) {
  :where(
  .hero h1,
  .hero-copy,
  .hero-note,
  .section-title,
  .section-text,
  .problem-card h3,
  .service-card h3,
  .service-card p,
  .solution-content h3,
  .solution-content p,
  .work-title,
  .strength-card h3,
  .strength-card p,
  .step h3,
  .price-card h3,
  .price-card p,
  .faq-item summary,
  .faq-item p,
  .cta-section h2,
  .cta-section p,
  .page-hero h1,
  .page-hero p:last-child,
  .page-intro h2,
  .page-intro p,
  .contact-lead h2,
  .contact-lead p,
  .contact-note p,
  .form-message
) {
  line-break: strict;
  overflow-wrap: break-word;
  word-break: normal;
}

:where(
  .hero h1,
  .section-title,
  .problem-card h3,
  .service-card h3,
  .solution-content h3,
  .work-title,
  .strength-card h3,
  .step h3,
  .price-card h3,
  .cta-section h2,
  .page-hero h1,
  .page-intro h2,
  .contact-lead h2
) {
  text-wrap: balance;
}

:where(
  .hero-copy,
  .hero-note,
  .section-text,
  .service-card p,
  .solution-content p,
  .strength-card p,
  .price-card p,
  .faq-item p,
  .cta-section p,
  .page-hero p:last-child,
  .page-intro p,
  .contact-lead p,
  .contact-note p,
  .form-message
) {
  text-wrap: pretty;
}

@supports (word-break: auto-phrase) {
  :where(
    .hero h1,
    .hero-copy,
    .hero-note,
    .section-title,
    .section-text,
    .problem-card h3,
    .service-card h3,
    .service-card p,
    .solution-content h3,
    .solution-content p,
    .work-title,
    .strength-card h3,
    .strength-card p,
    .step h3,
    .price-card h3,
    .price-card p,
    .faq-item summary,
    .faq-item p,
    .cta-section h2,
    .cta-section p,
    .page-hero h1,
    .page-hero p:last-child,
    .page-intro h2,
    .page-intro p,
    .contact-lead h2,
    .contact-lead p,
    .contact-note p,
    .form-message
  ) {
    word-break: auto-phrase;
  }
}
}

site-header,
site-footer {
  display: block;
}

site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229,231,235,0.8);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.logo-name {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1.2;
  white-space: nowrap;
}

.logo-company {
  color: #585050;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.logo-main {
  color: #585050;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.logo-mark {
  width: 78px;
  height: 55px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
  color: #374151;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(10,49,138,0.16);
  border-radius: 12px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 -7px 0 currentColor, 0 7px 0 currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  transition: 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(242, 107, 29, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #e55f14;
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(10, 49, 138, 0.18);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 98% 92%, rgba(242,107,29,0.22), transparent 28%),
    radial-gradient(circle at 85% 4%, rgba(242,107,29,0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 80px 0 80px;
  min-height: auto;
  display: flex;
  align-items: center;
}

.hero .container {
  width: min(1280px, calc(100% - 64px));
  position:relative;
  z-index: 10;
}

.hero::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -190px;
  width: 420px;
  height: 420px;
  background: linear-gradient(
		45deg,
		rgba(242, 107, 29, 0.05),
		rgba(242, 107, 29, 0.3)
	);
  border-radius: 50%;

  animation: floatingCircle 18s ease-in-out infinite;
	transform-origin: center center;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  left: -120px;
  top: -190px;
  width: 420px;
  height: 420px;
  background: linear-gradient(45deg, rgba(242, 107, 29, 0.05), rgb(255 245 167 / 30%));
  border-radius: 50%;

  animation: floatingCircle 18s ease-in-out infinite;
	transform-origin: center center;
  z-index: 0;
}

@keyframes floatingCircle{

	0%{
		transform:
			translate(0px, 0px)
			rotate(0deg);
	}

	25%{
		transform:
			translate(-20px, -30px)
			rotate(90deg);
	}

	50%{
		transform:
			translate(10px, -60px)
			rotate(180deg);
	}

	75%{
		transform:
			translate(30px, -20px)
			rotate(270deg);
	}

	100%{
		transform:
			translate(0px, 0px)
			rotate(360deg);
	}
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 11fr) minmax(0, 9fr);
  align-items: center;
  gap: clamp(20px, 3vw, 30px);
}

.hero-content {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 2px;
  background: #0abf9f;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(35px, 4.2vw, 61px);
  line-height: 1.22;
  letter-spacing: 0;
  color: var(--navy);
  margin-bottom: 35px;
  font-weight: 800;
}

.hero h1 span {
  color: var(--orange);
}

.hero h1 .hero-nowrap {
  color: inherit;
  white-space: nowrap;
}

.hero-copy {
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 40px;
  max-width: 615px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-note {
  font-size: 14px;
  color: var(--muted);
}

.hero-media {
  width: 100%;
  max-width: 620px;
  justify-self: end;
}

.dashboard-card {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15,23,42,0.12);
}

.dashboard-card img {
  width: 100%;
  height: auto;
}

.system-image {
  width: 100%;
  height: auto;
}

section {
  padding: 96px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.section-title {
  color: var(--navy);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.4;
  margin-bottom: 14px;
}

.section-text {
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}

.problems {
  background: var(--bg);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.problem-card,
.service-card,
.strength-card,
.price-card,
.faq-item,
.work-card {
  background: var(--white);
  border: 1px solid rgba(10,49,138,0.08);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(15,23,42,0.04);
}

.service-card {
  text-align: center;
  padding: 28px 18px;
}

.problem-card {
  text-align: center;
  padding: 28px 18px;
}

.icon-circle {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #fff3eb;
  color: var(--navy);
  font-size: 34px;
}

.problem-card h3 {
  color: var(--navy);
  font-size: 17px;
  line-height: 1.55;
}

.solution-box {
  position: relative;

  max-width: 1120px;
  margin: 80px auto 0;
  padding: 12px 18px;

  background:
    linear-gradient(
      10deg,
        rgba(10,49,138,0.10) 0%,
        rgba(10,49,138,0.03) 20%,
      transparent 30%
    ),
    linear-gradient(
      -10deg,
        rgba(10,49,138,0.10) 0%,
        rgba(10,49,138,0.03) 20%,
      transparent 30%
    ),
    linear-gradient(135deg, #fff 0%, #f8fbff 100%);

  border: 1px solid rgba(10,49,138,0.08);
  border-radius: 28px;

  box-shadow:
    0 18px 40px rgba(15,23,42,0.06);

  text-align: center;

  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 18px;
}

.solution-box::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background:
    linear-gradient(
      90deg,
      var(--orange),
      #ffb37a
    );
}

.solution-box::after {
  content: "";
  position: absolute;
  pointer-events: none;

  right: -30px;
  bottom: -30px;

  width: 160px;
  height: 180px;

  background:
    radial-gradient(
      rgba(245, 103, 21, 0.747) 2px,
      transparent 2px
    );
    mask-image:
      linear-gradient(
        to top left,
        black,
        transparent
    );

  background-size: 16px 16px;

  opacity: 0.7;
}
.solution-box > * {
  position: relative;
  z-index: 1;
}

.solution-illust {
  flex-shrink: 0;
  margin-right: -16px;
}
.solution-illust img {
  width: 350px;
  height: auto;
  display: block;
}

.solution-box h3 {
  color: var(--navy);
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.4;
  margin-bottom: 40px;
}

.solution-box h3 span {
  color: var(--orange);
}

.solution-box p {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.9;
}

.solution-arrow {
  display: flex;
  justify-content: center;

  margin-top: 12px;
}

.solution-arrow i {
  font-size: 42px;
  color: var(--orange);
  animation: floatArrow 2s ease-in-out infinite;
}

@keyframes floatArrow {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  padding: 30px 24px;
  transition: 0.2s ease;
}

.service-card:hover,
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-icon {
  background: #eef3fb;
  color: var(--navy);
  place-items: center;
  font-size: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: grid;
  margin: 0 auto 16px;
}

.service-card h3 {
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p,
.work-card p,
.strength-card p,
.price-card p,
.faq-item p {
  color: var(--muted);
  font-size: 15px;
}

.works {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.work-card {
  overflow: hidden;
  transition: 0.2s ease;
}

.work-card:hover .work-head img {
  transform: scale(1.03);
}

.work-head {
  display: block;
  height: 220px;
  overflow: hidden;
  background: #f3f6fb;
}

.work-head:focus-visible {
  outline: 3px solid rgba(242, 107, 29, 0.45);
  outline-offset: 4px;
}

.work-head span {
  display: inline-block;
  font-size: 12px;
  color: #ffe4d6;
  margin-bottom: 8px;
  font-weight: 800;
}

.work-head h3 {
  font-size: 20px;
  line-height: 1.5;
}

.work-head img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.3s ease;
}

.work-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  
  margin: 24px 0 12px 24px;
  padding: 6px 14px;


  color: #4b5b7c;
  background: #eef3f8;
  /*border: 1px solid #d9e2ec;*/
  border-radius: 999px;
}

.work-title {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 0;
  line-height: 1.5;
  padding: 0 24px 28px;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.strength-card {
  padding: 34px 28px;
  text-align: center;
}

.strength-card h3 {
  color: var(--navy);
  font-size: 22px;
  margin: 12px 0 10px;
}

.flow {
  background: var(--bg);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3rem;
  position: relative;
  z-index: 10;
}
.steps::after{
  content: "";
  position: absolute;
  background: #ffd2b8;
  width: 100%;
  height: 1.5rem;
  top: 40%;
  left: 0;
  z-index: -1;
}

.step {
  background: var(--white);
  border-radius: 20px;
  padding: 24px 18px;
  text-align: center;
  border: 1px solid rgba(10,49,138,0.08);
  position: relative;
}

.step-num {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 14px;
}

.step h3 {
  color: var(--navy);
  font-size: 17px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.price-card {
  padding: 32px 26px;
  text-align: center;
}

.price-card h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

.price {
  color: var(--orange);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
}

.faq {
  background: #fff;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 22px 26px;
}

.faq-item h3 {
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 6px;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy), #1748b5);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 14px;
}

.cta-section p {
  color: rgba(255,255,255,0.84);
  margin-bottom: 28px;
}

.page-hero {
  background:
    radial-gradient(circle at 82% 12%, rgba(242,107,29,0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 76px 0 70px;
}

.page-hero h1 {
  color: var(--navy);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.3;
  margin-bottom: 14px;
}

.page-hero p:last-child {
  max-width: 1000px;
  color: var(--muted);
  font-size: 17px;
}

.page-section {
  padding: 86px 0;
}

.page-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 38px;
  align-items: start;
}

.page-intro h2,
.contact-lead h2 {
  color: var(--navy);
  font-size: 30px;
  line-height: 1.45;
  margin-bottom: 16px;
}

.page-intro p,
.contact-lead p {
  color: var(--muted);
}

.info-card,
.form-card,
.contact-note {
  background: var(--white);
  border: 1px solid rgba(10,49,138,0.08);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(15,23,42,0.04);
}

.info-list {
  padding: 8px 30px;
}

.info-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.info-row:last-child {
  border-bottom: none;
}

.info-row dt {
  color: var(--navy);
  font-weight: 800;
}

.info-row dd {
  color: #4b5563;
}

.summary-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.summary-list li {
  list-style: none;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--blue-light);
  color: var(--navy);
  font-weight: 800;
}

.form-card {
  padding: 30px;
}

.form-message {
  grid-column: 1 / -1;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 800;
  margin-bottom: 18px;
}

.form-message-success {
  color: #126135;
  background: #eaf8ef;
  border: 1px solid #bde8cc;
}

.form-message-error {
  color: #9f2a18;
  background: #fff1e8;
  border: 1px solid #ffd0bd;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
}

.required {
  color: var(--orange);
  margin-left: 4px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.form-field textarea {
  min-height: 170px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: #4b5563;
  font-size: 14px;
  font-weight: 700;
}

.checkbox-group input {
  width: 16px;
  height: 16px;
  accent-color: var(--orange);
}

input[type="submit"]{
  min-width: 180px;
  display: block;
  margin: auto;
}

.form-actions {
  margin-top: 24px;
  text-align: center;
}

.contact-note {
  margin-top: 24px;
  padding: 22px;
  color: var(--muted);
}

.footer {
  background: #081f57;
  color: rgba(255,255,255,0.8);
  padding: 44px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer strong {
  color: var(--white);
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-brand strong {
  margin-bottom: 0;
}

.footer-logo {
  width: 34px;
  height: 24px;
  object-fit: contain;
}

.footer a {
  color: inherit;
}


@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(0, 11fr) minmax(0, 9fr);
  }

  .hero-media {
    max-width: 540px;
  }
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(36px, 7vw, 48px);
  }

  .hero-media {
    justify-self: center;
    max-width: 720px;
  }
}

@media (max-width: 960px) {
  .header-inner {
    justify-content: flex-start;
  }

  .logo {
    margin-right: auto;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 4px;
    padding: 12px max(20px, calc((100% - min(1280px, calc(100% - 64px))) / 2));
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid rgba(229,231,235,0.9);
    box-shadow: 0 16px 32px rgba(15,23,42,0.08);
    color: var(--navy);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 11px 12px;
    border-radius: 10px;
  }

  .nav a:hover {
    background: var(--blue-light);
  }

  .menu-toggle {
    display: inline-flex;
    order: 2;
  }

  .header-cta {
    order: 3;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .service-grid,
  .work-grid,
  .strength-grid,
  .price-grid,
  .page-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .solution-box {
    flex-direction: column;
    text-align: center;

    padding: 32px 24px;
  }

  .solution-illust img {
    width: 250px;
  }

  .solution-content {
    width: 100%;
  }
  .steps{
    grid-template-columns: 1fr;
    gap:2rem;
  }
  .steps::after{
    width: 2.5rem;
    height: 100%;
    top: 0;
    left: calc(50vw - 2rem);
  }

}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .hero .container {
    width: min(100% - 28px, 1120px);
  }

  .header-inner {
    height: 66px;
    gap: 10px;
  }

  .logo-mark {
    width: 64px;
    height: 45px;
  }

  .logo-name {
    display: none;
  }

  .header .btn {
    display: inline-flex;
    width: auto;
    padding: 9px 12px;
    font-size: 13px;
    flex-shrink: 0;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .nav {
    padding-inline: 14px;
  }

  .hero {
    padding: 80px 0 80px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-work-list {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .dashboard-user {
    display: none;
  }

  .dashboard-content {
    padding: 14px;
  }

  .dashboard-stats,
  .dashboard-panels {
    grid-template-columns: 1fr;
  }

  .dashboard-table {
    overflow-x: auto;
  }

  .dashboard-table > div {
    min-width: 620px;
  }

  section {
    padding: 68px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .header .btn {
    width: auto;
  }

  .dashboard-stats,
  .work-grid,
  .strength-grid,
  .steps,
  .price-grid,
  .page-grid,
  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .problem-grid{
    grid-template-columns: 1fr 1fr;
    gap:13px;
  }
  .service-card{
    padding:1rem 0.5rem;
  }
  .service-card h3{
    font-size:15px;
  }
  .service-card p{
    font-size:12px;
  }
  .work-title{
    font-size: 20px;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

}

@media (max-width: 360px) {
  .logo-mark {
    width: 56px;
    height: 39px;
  }

  .header .btn {
    padding: 8px 10px;
    font-size: 12px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .hero h1 {
    font-size: 30px;
  }
}

input[type="checkbox"]{
  width:auto;
}

/*animation*/
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.fadeUpTrigger {
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blur {
    animation-name: blurAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes blurAnime {
    from {
        filter: blur(10px);
        transform: scale(1.02);
        opacity: 0;
    }

    to {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }
}

.blurTrigger {
    opacity: 0;
}