:root {
    --bg-deep: #fbfaf7;
    --bg-card: #eef5f2;
    --bg-card2: #ffffff;
    --bg-elevated: #f3f7f5;
    --paper: #14736f;
    --accent-blue: #14736f;
    --accent-sage: #b8ddd1;
    --accent-clay: #e06d52;
    --accent-rose: #f4d6cc;
    --text-main: #182b2b;
    --text-soft: #526967;
    --text-dim: #738886;
    --border: rgba(24,43,43,0.12);
    --shadow: rgba(28,55,53,0.12);
    --font-heading: 'Heebo', sans-serif;
    --font-body: 'Assistant', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background:
      linear-gradient(90deg, rgba(20,115,111,0.025) 1px, transparent 1px),
      linear-gradient(180deg, rgba(20,115,111,0.02) 1px, transparent 1px),
      var(--bg-deep);
    background-size: 42px 42px, 42px 42px, auto;
    color: var(--text-main);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    line-height: 1.7;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.022'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
  }

  a { color: inherit; text-decoration: none; }
  button, input, textarea { font: inherit; }
  button { border: 0; }

  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  textarea:focus-visible {
    outline: 3px solid rgba(20,115,111,0.42);
    outline-offset: 4px;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }

  nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 14px clamp(18px, 4vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(20px);
    background: rgba(251,250,247,0.9);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo,
  .footer-logo {
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--text-main), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .nav-logo {
    font-size: 1.45rem;
    font-weight: 400;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-soft);
    font-size: 0.9rem;
  }

  .nav-links a {
    border-radius: 999px;
    padding: 8px 14px;
    transition: color 0.2s, background 0.2s;
  }

  .nav-links a:hover {
    color: var(--text-main);
    background: rgba(20,115,111,0.08);
  }

  .nav-cta,
  .btn-primary,
  .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s, border-color 0.25s;
  }

  .nav-cta,
  .btn-primary {
    background: var(--paper);
    color: #ffffff;
    box-shadow: 0 5px 0 rgba(9,72,69,0.2);
  }

  .nav-cta {
    padding: 10px 22px;
    font-size: 0.9rem;
    min-height: 42px;
  }

  .btn-primary {
    padding: 17px 44px;
    font-size: 1.06rem;
  }

  .nav-cta:hover,
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 0 rgba(9,72,69,0.2);
  }

  .btn-primary:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
  }

  .btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(24,43,43,0.16);
    padding: 17px 38px;
    font-size: 1rem;
  }

  .btn-outline:hover {
    background: rgba(20,115,111,0.06);
    border-color: rgba(20,115,111,0.3);
    transform: translateY(-2px);
  }
.work-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 1.1rem;
}

.work-card:hover .work-image {
  transform: scale(1.05);
}

.work-card:hover .work-overlay {
  opacity: 1;
}

.work-card {
  text-decoration: none;
  overflow: hidden;
}
  .hero {
    min-height: 96vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 126px 24px 96px;
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(circle at 50% 0%, rgba(20,115,111,0.12), transparent 34%),
      linear-gradient(180deg, rgba(224,109,82,0.045), transparent 48%);
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 92px 24px 56px;
    border: 1px solid rgba(20,115,111,0.12);
    pointer-events: none;
  }

  .hero > * {
    position: relative;
    z-index: 1;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(20,115,111,0.18);
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--text-soft);
    margin-bottom: 26px;
    animation: fadeDown 0.8s ease both;
  }

  .hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-clay);
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
  }

  .hero-title {
    font-family: var(--font-heading);
    font-size: 7.5rem;
    font-weight: 900;
    line-height: 0.94;
    letter-spacing: 0;
    margin-bottom: 0;
    max-width: 1040px;
    animation: fadeDown 0.9s ease 0.1s both;
  }

  .hero-title .line1 {
    display: block;
    color: var(--text-main);
    white-space: nowrap;
  }

  .hero-rotating-wrapper {
    display: block;
    height: 1.08em;
    min-width: min(94vw, 1040px);
    overflow: hidden;
    position: relative;
  }

   .rotating-word {
    display: block;
    position: absolute;
    inset-inline: 0;
    width: 100%;
    text-align: center;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-clay), #266a8f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(50px) scale(0.9) rotate(-2deg);
    filter: blur(8px);
    transition:
      opacity 0.42s cubic-bezier(0.22,1,0.36,1),
      transform 0.42s cubic-bezier(0.22,1,0.36,1),
      filter 0.42s ease;
    text-shadow: 0 0 22px rgba(224,109,82,0.1);
  }

  .rotating-word.active {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
    filter: blur(0);
  }

  .rotating-word.exit {
    opacity: 0;
    transform: translateY(-55px) scale(1.06) rotate(2deg);
    filter: blur(8px);
  }

  .rotating-word:nth-child(1) { font-family: 'Heebo', sans-serif; font-weight: 900; letter-spacing: 0; }
  .rotating-word:nth-child(2) { font-family: 'Secular One', sans-serif; font-weight: 400; }
  .rotating-word:nth-child(3) { font-family: 'Assistant', sans-serif; font-weight: 800; }
  .rotating-word:nth-child(4) { font-family: 'Alef', sans-serif; font-weight: 700; }
  .rotating-word:nth-child(5) { font-family: 'Noto Serif Hebrew', serif; font-weight: 900; }
  .rotating-word:nth-child(6) { font-family: 'Heebo', sans-serif; font-weight: 800; font-style: italic; }
  .rotating-word:nth-child(7) { font-family: 'Secular One', sans-serif; font-weight: 400; letter-spacing: 0; }

  .rotating-word.active { opacity: 1; transform: translateY(0); }
  .rotating-word.exit { opacity: 0; transform: translateY(-30px); }

  .hero-sub {
    max-width: 720px;
    font-size: 1.18rem;
    color: var(--text-soft);
    margin: 38px auto 42px;
    line-height: 1.85;
    font-weight: 400;
    animation: fadeDown 1s ease 0.3s both;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    animation: fadeDown 1s ease 0.45s both;
  }

  .hero-cta {
    max-width: 560px;
    min-height: 76px;
    padding-inline: 46px;
    text-align: center;
    line-height: 1.35;
  }

  .hero-proof {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 34px;
    animation: fadeDown 1s ease 0.6s both;
  }

  .hero-proof span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(20,115,111,0.13);
    border-radius: 999px;
    background: #ffffff;
    color: var(--text-soft);
    padding: 7px 15px;
    font-size: 0.9rem;
  }

  .cta-note,
  .form-note {
    font-size: 0.84rem;
    color: var(--text-dim);
  }

  .hero-note {
    max-width: 720px;
    color: var(--text-soft);
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.75;
    text-align: center;
  }

  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.7;
  text-align: right;
}

.privacy-check input {
  margin-top: 4px;
  accent-color: var(--accent-blue);
}

.privacy-check a {
  color: var(--accent-blue);
  text-decoration: underline;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.privacy-check a:hover {
  opacity: 0.8;
}
  
  .scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-size: 0.75rem;
    animation: fadeDown 1s ease 1.2s both;
  }

  .scroll-arrow {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2.5s ease-in-out infinite;
  }

  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
  }

  section { position: relative; z-index: 1; }

  .section-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 96px 24px;
  }

  .section-label {
    font-size: 1.42rem;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 0;
    color: var(--accent-blue);
    margin-bottom: 24px;
    opacity: 1;
  }

  .section-heading {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: 0;
    color: var(--text-main);
    margin-bottom: 16px;
  }

  .section-sub {
    font-size: 1rem;
    color: var(--text-soft);
    max-width: 530px;
  }

  .calm {
    background: var(--bg-card);
  }

  .conversation {
    display: grid;
    gap: 16px;
    max-width: 780px;
    margin-top: 34px;
  }

  .personal-story {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 34px 36px;
    position: relative;
    box-shadow: 0 18px 42px rgba(28,55,53,0.06);
  }

  .personal-story::before {
    content: '';
    position: absolute;
    top: 0;
    right: 28px;
    width: 72px;
    height: 4px;
    background: var(--accent-clay);
  }

  .personal-story p {
    line-height: 1.85;
    font-size: 1.18rem;
    color: var(--text-soft);
  }

  .personal-story p + p {
    margin-top: 18px;
  }

  .personal-story p:first-child {
    color: var(--text-main);
    font-size: 1.42rem;
    font-weight: 800;
    line-height: 1.55;
  }

  .personal-story strong {
    color: var(--accent-blue);
  }

  .calm-text {
    max-width: 720px;
    font-size: 1.34rem;
    line-height: 1.9;
    color: var(--text-soft);
    font-weight: 300;
  }

  .calm-text strong {
    color: var(--text-main);
    font-weight: 700;
  }

  .calm-highlight {
    display: inline-block;
    background: none;
    -webkit-background-clip: text;
    -webkit-text-fill-color: currentColor;
    background-clip: text;
    color: var(--accent-blue);
    font-weight: 800;
  }

  .benefits {
    background: var(--bg-card);
  }

  .works {
    background: #f8f1ed;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 52px;
  }

  .benefit-card,
  .work-card,
  .cta-box {
    background: var(--bg-card2);
    border: 1px solid var(--border);
  }

  .benefit-card {
    border-radius: 8px;
    padding: 36px 32px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
  }

  .benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20,115,111,0.045), transparent 55%);
    pointer-events: none;
  }

  .benefit-card:hover {
    transform: translateY(-3px);
    border-color: rgba(20,115,111,0.2);
    box-shadow: 0 18px 46px var(--shadow);
  }

  .benefit-icon {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: #123736;
  }

  .benefit-card:nth-child(1) .benefit-icon { background: var(--accent-blue); }
  .benefit-card:nth-child(2) .benefit-icon { background: var(--accent-sage); }
  .benefit-card:nth-child(3) .benefit-icon { background: var(--accent-rose); }

  .benefit-title {
    font-size: 1.32rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-main);
  }

  .benefit-desc {
    font-size: 1.08rem;
    color: var(--text-soft);
    line-height: 1.75;
  }

  .how { background: var(--bg-deep); }

  .steps {
    display: flex;
    flex-direction: column;
    margin-top: 52px;
    max-width: 720px;
  }

  .step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 34px 0;
    border-bottom: 1px solid var(--border);
  }

  .step:last-child { border-bottom: 0; }

  .step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.08rem;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 5px 0 rgba(9,72,69,0.16);
  }

  .step-body { padding-top: 4px; }

  .step-title {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
  }

  .step-desc {
    font-size: 1.04rem;
    color: var(--text-soft);
    line-height: 1.75;
  }

  .how-note {
    margin-top: 44px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid rgba(20,115,111,0.14);
    padding: 15px 26px;
    border-radius: 999px;
    font-size: 0.95rem;
    color: var(--accent-blue);
  }

  .works-gallery {
    position: relative;
    margin-top: 46px;
  }

  .works-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(760px, 86%);
    gap: 24px;
    direction: ltr;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scroll-padding-inline: 7%;
    padding: 4px 7% 18px;
    scrollbar-width: none;
  }

  .works-track::-webkit-scrollbar {
    display: none;
  }

  .work-card {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(250px, 0.85fr);
    min-height: 430px;
    direction: rtl;
    scroll-snap-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  }

  .work-card:hover {
    transform: translateY(-4px);
    border-color: rgba(20,115,111,0.2);
    box-shadow: 0 16px 40px rgba(28,55,53,0.14);
  }

  .work-card-inner {
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background:
      linear-gradient(135deg, rgba(20,115,111,0.045), rgba(224,109,82,0.035)),
      repeating-linear-gradient(0deg, rgba(20,115,111,0.025) 0 1px, transparent 1px 18px);
  }

  .work-card::after {
    content: none;
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 58%, rgba(0,0,0,0.62));
    pointer-events: none;
  }

  .work-card-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.58));
    pointer-events: none;
  }

  .work-mark {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(226,232,240,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--accent-blue);
  }

  .work-preview-text {
    font-size: 0.92rem;
    color: var(--text-soft);
  }

  .work-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 36px 32px;
    background:
      linear-gradient(180deg, rgba(20,115,111,0.04), transparent 62%),
      var(--bg-card2);
  }

  .work-title {
    font-size: 1.65rem;
    line-height: 1.25;
    color: var(--text-main);
  }

  .work-desc {
    color: var(--text-soft);
    font-size: 1.08rem;
    line-height: 1.85;
  }

  .work-tag {
    width: max-content;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 6px 13px;
    border-radius: 999px;
    font-size: 0.78rem;
    color: var(--text-soft);
    backdrop-filter: blur(8px);
  }

  .gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(28,55,53,0.14);
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform 0.2s, background 0.2s, opacity 0.2s;
  }

  .gallery-arrow:hover {
    background: var(--accent-blue);
    color: #ffffff;
    transform: translateY(-50%) scale(1.05);
  }

  .gallery-arrow-next {
    left: 8px;
  }

  .gallery-arrow-prev {
    right: 8px;
  }

  .gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
  }

  .gallery-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(20,115,111,0.18);
    transition: width 0.25s, background 0.25s;
  }

  .gallery-dots span.active {
    width: 24px;
    border-radius: 999px;
    background: var(--accent-blue);
  }

  .lead-form {
    background: var(--bg-card);
  }

  .cta-box {
    border-radius: 8px;
    padding: 72px 42px;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-color: rgba(20,115,111,0.15);
  }

  .cta-box::before {
    content: '';
    position: absolute;
    top: -70px;
    right: -70px;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(224,109,82,0.1), transparent 70%);
    pointer-events: none;
  }

  .cta-title {
    position: relative;
    font-family: 'Noto Serif Hebrew', serif;
    font-size: 2.65rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 18px;
    letter-spacing: 0;
    text-align: center;
  }

  .cta-title span {
    background: none;
    -webkit-background-clip: text;
    -webkit-text-fill-color: currentColor;
    background-clip: text;
    color: var(--accent-clay);
  }

  .lead-intro {
    position: relative;
    margin: 0 auto 32px;
    text-align: center;
  }

  .form {
    position: relative;
    display: grid;
    gap: 14px;
    max-width: 520px;
    margin: 0 auto;
  }

  .form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }

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

  .form-field-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form input,
  .form textarea {
    width: 100%;
    border: 1px solid rgba(24,43,43,0.14);
    border-radius: 8px;
    background: #fbfaf7;
    color: var(--text-main);
    padding: 15px 16px;
    outline: 0;
    text-align: right;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  }

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

  .form input::placeholder,
  .form textarea::placeholder {
    color: var(--text-dim);
  }

  .form input:focus,
  .form textarea:focus {
    border-color: rgba(20,115,111,0.48);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(20,115,111,0.08);
  }

  .form .btn-primary {
    width: 100%;
    margin-top: 4px;
  }

  .form-note {
    text-align: center;
    line-height: 1.8;
  }

  .form-status {
    min-height: 1.7em;
    color: var(--accent-blue);
    font-size: 0.95rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.7;
  }

  .form-status.error {
    color: var(--accent-clay);
  }

  footer {
    background: #ffffff;
    border-top: 1px solid var(--border);
    padding: 38px 32px;
    text-align: center;
  }

  .footer-logo {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 12px;
  }

  .footer-copy {
    font-size: 0.8rem;
    color: var(--text-dim);
  }

  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible { opacity: 1; transform: translateY(0); }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
    }
  }

  @media (max-width: 760px) {
    nav { padding: 14px 18px; }
    .nav-links a { display: none; }
    .nav-cta { padding: 9px 16px; font-size: 0.84rem; }
    .section-inner { padding: 72px 20px; }
    .hero { padding: 104px 20px 78px; }
    .hero-title { font-size: 4.8rem; }
    .hero-sub { font-size: 1.08rem; }
    .hero-cta {
      max-width: 390px;
      min-height: 70px;
      padding-inline: 28px;
      font-size: 1rem;
    }
    .hero-note { font-size: 1.05rem; }
    .hero-rotating-wrapper { min-width: 90vw; }
    .section-label { font-size: 1.2rem; margin-bottom: 18px; }
    .section-heading { font-size: 2.2rem; }
    .calm-text { font-size: 1.18rem; }
    .conversation { gap: 14px; margin-top: 26px; }
    .personal-story { padding: 28px 22px; }
    .personal-story p { font-size: 1.08rem; }
    .personal-story p:first-child { font-size: 1.26rem; }
    .cta-title { font-size: 2.2rem; }
    .hero-proof { margin-top: 26px; }
    .benefit-card { padding: 30px 24px; }
    .works-track {
      grid-auto-columns: 86%;
      scroll-padding-inline: 7%;
      padding-inline: 7%;
    }
    .work-card {
      grid-template-columns: 1fr;
      min-height: auto;
    }
    .work-card-inner {
      min-height: 300px;
    }
    .work-info {
      padding: 28px 24px;
    }
    .gallery-arrow {
      width: 42px;
      height: 42px;
    }
    .form-field-split { grid-template-columns: 1fr; }
    .step { gap: 18px; padding: 28px 0; }
    .step-num { width: 46px; height: 46px; }
    .cta-box { padding: 52px 22px; }
    .btn-primary, .btn-outline { width: 100%; max-width: 340px; }
  }

  @media (max-width: 420px) {
    .hero-title { font-size: 3.4rem; }
    .hero-title .line1 { white-space: normal; }
    .hero-sub { margin-top: 28px; }
    .hero-cta { max-width: 100%; }
    .hero-note { font-size: 1rem; }
    .works-track { grid-auto-columns: 90%; padding-inline: 5%; }
    .work-card-inner { min-height: 240px; }
    .hero-proof { justify-content: stretch; width: 100%; }
    .hero-proof span { justify-content: center; flex: 1 1 100%; }
    .personal-story { padding: 26px 20px; }
    .step { flex-direction: column; gap: 14px; }
    .how-note { border-radius: 8px; align-items: flex-start; }
  }
