:root {
    --navy: #01224B;
    --navy-deep: #001D3F;
    --gold: #D68631;
    --mint: #A7D3A6;
    --lavender: #E5DFEC;
    --light: #F8F8FA;
    --background: #EFEAF3;
    --foreground: #1B1B26;
    --font-display: "Inter Tight", sans-serif;
    --font-serif: "Instrument Serif", serif;
    --font-body: "IBM Plex Sans", sans-serif;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  html {
    background-color: var(--background);
  }
  body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow-x: hidden;
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; transition: color 200ms ease; }
  ul { list-style: none; }

  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.05;
  }

  /* Utilities */
  .serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.01em;
  }
  .micro-label {
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.875rem;
    display: block;
  }
  .pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    padding: 0.75rem 1.25rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1;
    transition: all 200ms ease;
  }
  .soft-shadow {
    box-shadow: 0 24px 60px -28px rgba(1, 34, 75, 0.35);
  }

  /* Layout helpers */
  main { padding-bottom: 0.5rem; }
  section { padding-left: 1rem; padding-right: 1rem; }

  /* ======================= NAV ======================= */
  .nav-wrap {
    position: sticky;
    top: 1rem;
    z-index: 30;
    margin: 0 1rem;
    padding-top: 1rem;
  }
  .nav-inner {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 9999px;
    border: 1px solid rgba(1,34,75,0.1);
    padding: 0.625rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  .logo img { height: 56px; width: auto; display: block; }
  .logo-white img { height: 70px; width: auto; filter: brightness(0) invert(1); }
  .nav-links { display: none; gap: 1.75rem; align-items: center; }
  .nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(1,34,75,0.75);
  }
  .nav-links a:hover { color: var(--navy); }
  .nav-cta { background: var(--navy); color: white; }
  .nav-cta:hover { background: var(--navy-deep); }

  /* ======================= HERO ======================= */
  .hero {
    padding-top: 2.5rem;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: end;
  }
  .hero-title h1 {
    font-size: clamp(2.2rem, 4.4vw, 4.4rem);
    color: var(--navy);
    line-height: 1.05;
  }
  .hero-title h1.hero-h1-brand {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 0.35em;
    font-size: clamp(2rem, 4.8vw, 5rem);
    line-height: 1;
    color: var(--navy);
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--gold);
  }
  .hero-h1-brand .tv {
    font-family: "Playfair Display", serif;
    font-weight: 800;
    font-style: normal;
    letter-spacing: -0.01em;
  }
  .hero-h1-brand .tv-script {
    font-family: "Oooh Baby", cursive;
    font-style: normal;
    font-weight: 400;
    font-size: 1.4em;
    line-height: 0.95;
    letter-spacing: 0;
  }
  .hero-divider-gold {
    display: none;
  }
  .hero-divider { margin-top: 2rem; height: 1px; background: rgba(1,34,75,0.15); max-width: 24rem; }
  .hero-text {
    margin-top: 3rem;
    font-size: 1.4rem;
    color: rgba(27,27,38,0.75);
    max-width: 46ch;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  .hero-text-bold {
    margin-top: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    max-width: 46ch;
  }
  .hero-keywords {
    margin-top: 1.25rem;
    font-size: clamp(1rem, 1.6vw, 1.5rem);
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .hero-keywords .sep { color: rgba(1,34,75,0.4); }
  @media (min-width: 480px) {
    .hero-keywords { white-space: nowrap; }
  }
  .hero-image-wrap { position: relative; }
  .hero-image {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 2rem;
    overflow: hidden;
  }
  .hero-image img { width: 100%; height: 100%; object-fit: cover; }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(1,34,75,0.3), transparent);
  }
  .hero-tag {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--mint);
    color: var(--navy);
    font-size: 0.875rem;
  }
  .hero-tag .dot {
    width: 0.375rem; height: 0.375rem; border-radius: 9999px; background: var(--navy);
  }
  .hero-result-card {
    background: white;
    border-radius: 1.75rem;
    padding: 1.75rem;
    border: 1px solid rgba(1,34,75,0.05);
    margin-top: 1rem;
  }
  .hero-result-card .top {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem;
  }
  .hero-result-card .pill {
    background: var(--lavender);
    color: var(--navy);
    font-size: 0.875rem;
    padding: 0.375rem 0.875rem;
  }
  .hero-result-card .number {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
    font-size: 3rem;
    line-height: 1;
  }
  .hero-result-card .number .x { color: var(--gold); }
  .hero-result-card .desc {
    margin-top: 0.75rem;
    font-size: 1rem;
    color: rgba(27,27,38,0.7);
    max-width: 26ch;
  }
  .hero-result-desktop { display: none; }
  .hero-result-mobile { display: none; }

  /* ======================= BENEFITS ======================= */
  .benefits { margin-top: 7rem; }
  .benefits-card {
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid rgba(1,34,75,0.05);
  }
  .benefits-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
  .benefits-heading h2 {
    color: var(--navy);
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    line-height: 1.05;
  }
  .benefits-heading p {
    margin-top: 1.5rem;
    color: rgba(27,27,38,0.65);
    line-height: 1.625;
    max-width: 36ch;
  }
  .benefits-items { display: grid; grid-template-columns: 1fr; gap: 1rem; }
  .benefit-item {
    background: rgba(229,223,236,0.6);
    border-radius: 1.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 200px;
  }
  .benefit-item.dark { background: var(--navy); }
  .benefit-icon { width: 2.5rem; height: 2.5rem; color: var(--navy); }
  .benefit-item.dark .benefit-icon { color: var(--gold); }
  .benefit-item .content { margin-top: auto; }
  .benefit-item h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.25;
    font-size: 1.4rem;
    color: var(--navy);
  }
  .benefit-item.dark h3 { color: white; }
  .benefit-item p {
    margin-top: 0.5rem;
    font-size: 1.25rem;
    line-height: 1.5;
    color: rgba(27,27,38,0.7);
  }
  .benefit-item.dark p { color: rgba(255,255,255,0.7); }

  /* ======================= PROCESS (Levels chart) ======================= */
  .process { margin-top: 7rem; }
  .process-card {
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid rgba(1,34,75,0.05);
  }
  .process-head { max-width: 42rem; margin-bottom: 2rem; }
  .process-head h2 { color: var(--navy); font-size: clamp(2.7rem, 5.4vw, 4.6rem); }
  .process-head p { margin-top: 1.25rem; color: rgba(1,34,75,0.85); }
  .process-chart {
    position: relative;
    padding: 1.5rem 0.5rem;
    overflow-x: auto;
  }
  .process-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(80px, 1fr));
    gap: 0.75rem;
    position: relative;
    min-width: 600px;
  }
  .process-line {
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: rgba(1,34,75,0.4);
    top: 50%;
    transform: translateY(-50%);
  }
  .process-line-active {
    position: absolute;
    height: 2px;
    background: var(--navy);
    top: 50%;
    transform: translateY(-50%);
    left: calc(5 / 7 * 100%);
    right: 0;
  }
  .process-level {
    display: grid;
    grid-template-rows: 1fr auto 1fr;
    justify-items: center;
    text-align: center;
    position: relative;
    min-height: 200px;
  }
  .process-level .group-top {
    grid-row: 1;
    align-self: end;
    padding-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
  }
  .process-level .group-bottom {
    grid-row: 3;
    align-self: start;
    padding-top: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
  }
  .process-level .dot {
    grid-row: 2;
    position: relative;
    width: 1.25rem; height: 1.25rem;
    border-radius: 9999px;
    border: 2px solid;
    z-index: 10;
  }
  .process-level .dot.fit { background: var(--navy); border-color: var(--navy); }
  .process-level .dot.maybe { background: var(--mint); border-color: var(--navy); }
  .process-level .dot.no { background: rgb(245, 205, 205); border-color: rgba(1,34,75,0.7); }
  .process-level .text {
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.4;
  }
  .process-level .text.fit { color: var(--navy); }
  .process-level .text.maybe { color: var(--navy); }
  .process-level .text.no { color: rgba(1,34,75,0.8); }
  .process-level .micro-label { color: rgba(1,34,75,0.8); text-align: center; line-height: 1.0; font-size: 1.125rem; }
  .process-level .micro-label .level-num { font-size: 1.1rem; font-weight: 700; display: block; }

  .process-summary {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  .summary-box {
    border-radius: 1.25rem;
    padding: 1.25rem;
    border: 1px solid rgba(1,34,75,0.1);
  }
  .summary-box.dark { background: var(--navy); color: white; border-color: rgba(1,34,75,0.1); }
  .summary-box.dark .micro-label { color: var(--mint); }
  .summary-box.dark p { color: white; font-size: 1rem; line-height: 1.55; }
  .summary-box.maybe { background: rgba(167,211,166,0.6); }
  .summary-box.no { background: rgba(229,223,236,0.6); }
  .summary-box.maybe .micro-label, .summary-box.no .micro-label { color: var(--navy); margin-bottom: 0.5rem; }
  .summary-box.maybe p, .summary-box.no p { color: rgba(1,34,75,0.9); font-size: 1rem; line-height: 1.55; }

  /* ======================= FACTS (circles) ======================= */
  .facts { margin-top: 7rem; }
  .facts-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
  .facts-heading h2 {
    color: var(--navy);
    font-size: clamp(1.8rem, 3.4vw, 2.8rem);
    line-height: 1.1;
  }
  .facts-heading p { margin-top: 1.25rem; font-size: 1rem; color: rgba(1,34,75,0.7); max-width: 34ch; }
  .facts-mission {
    margin-top: 1rem;
  }
  .facts-mission h3 {
    color: var(--navy);
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    line-height: 1.15;
    font-weight: 700;
  }
  .facts-circles { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
  .fact-circle {
    aspect-ratio: 1 / 1;
    border-radius: 9999px;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 2rem;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .fact-circle .number {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
    font-size: 4rem;
    line-height: 1;
  }
  .fact-circle .desc {
    margin-top: 0.75rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--navy);
    max-width: 16ch;
    margin-left: auto; margin-right: auto;
    line-height: 1.35;
  }
  .fact-circle.lavender { background: var(--lavender); }
  .fact-circle.mint { background: var(--mint); }
  .fact-circle.navy { background: var(--navy); }
  .fact-circle.navy .number, .fact-circle.navy .desc { color: white; }

  /* ======================= SERVICES ======================= */
  .services { margin-top: 7rem; }
  .services-head { margin-bottom: 3rem; max-width: 36rem; }
  .services-head h2 { font-size: clamp(2rem, 4vw, 3.4rem); color: var(--navy); }
  .services-head p { margin-top: 1.25rem; max-width: 28rem; color: rgba(27,27,38,0.65); }
  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .service-card {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 1.5rem;
    overflow: hidden;
    background: var(--navy);
  }
  .service-card.highlight { background: var(--mint); }
  .service-card img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.9;
  }
  .service-card .grad {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent, transparent, rgba(1,34,75,0.85));
  }
  .service-card .inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem;
  }
  .service-card .num { color: rgba(255,255,255,0.7); }
  .service-card.highlight .num { color: rgba(1,34,75,0.6); }
  .service-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
  }
  .service-card.highlight h3 { color: var(--navy); }
  .service-card p { font-size: 1rem; max-width: 28ch; color: rgba(255,255,255,0.85); }
  .service-card.highlight p { color: rgba(1,34,75,0.7); }

  /* ======================= PRICING ======================= */
  .pricing { margin-top: 7rem; }
  .pricing-head { margin-bottom: 3rem; max-width: 44ch; }
  .pricing-head h2 { font-size: clamp(2rem, 4.2vw, 3.6rem); color: var(--navy); line-height: 1.05; }
  .pricing-head p { margin-top: 1.5rem; color: rgba(27,27,38,0.7); }
  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .tier {
    position: relative;
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(1,34,75,0.05);
    background: white;
    display: flex;
    flex-direction: column;
  }
  .tier.featured { background: var(--lavender); border-color: rgba(1,34,75,0.1); padding-top: 2.5rem; }
  .tier .featured-tag {
    display: none;
  }
  .tier .label-top {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(1,34,75,0.6);
    font-weight: 500;
  }
  .tier .revenue {
    margin-top: 0.25rem;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--navy);
    font-size: 1.05rem;
  }
  .tier .price-wrap { margin-top: 1.75rem; }
  .tier .price {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
    font-size: 2.6rem;
    line-height: 1;
  }
  .tier .price .e { color: var(--gold); }
  .tier .per { margin-top: 0.5rem; font-size: 1rem; color: rgba(27,27,38,0.6); }
  .tier .divider { margin-top: 1.5rem; height: 1px; background: rgba(1,34,75,0.1); }
  .tier .desc {
    margin-top: 1.25rem;
    font-size: 1rem;
    color: rgba(27,27,38,0.75);
    line-height: 1.55;
  }
  .pricing-foot { margin-top: 2rem; font-size: 1rem; color: rgba(27,27,38,0.65); }
  .pricing-foot .arrow { color: rgba(1,34,75,0.4); }

  /* ======================= METAPHOR ======================= */
  .metaphor { margin-top: 7rem; }
  .metaphor-wrap {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
  }
  .metaphor-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .metaphor-wrap .grad {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(1,34,75,0.9), rgba(1,34,75,0.7), rgba(1,34,75,0.3));
  }
  .metaphor-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    color: white;
  }
  .metaphor-content .micro-label { color: var(--mint); }
  .metaphor-content h2 {
    font-size: clamp(1.8rem, 3.8vw, 3rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
  }
  .metaphor-content .body {
    font-size: 1rem;
    line-height: 1.625;
    margin-bottom: 1.25rem;
    color: rgba(255,255,255,0.9);
    max-width: 42rem;
  }
  .metaphor-content .quote {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--mint);
    font-size: 1.125rem;
    line-height: 1.625;
    margin-bottom: 1.5rem;
    max-width: 42rem;
  }
  .metaphor-content .closer {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.5rem;
    max-width: 42rem;
  }
  .metaphor-content .closer .mint { color: var(--mint); }

  /* ======================= FOUNDER ======================= */
  .founder { margin-top: 7rem; }
  .founder-card {
    background: white;
    border-radius: 2rem;
    border: 1px solid rgba(1,34,75,0.05);
    overflow: hidden;
  }
  .founder-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .founder-portrait { background: rgba(229,223,236,0.4); }
  .founder-portrait img {
    width: 100%; height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 3 / 4;
  }
  .founder-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
  }
  .founder-content h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 0.75rem;
  }
  .founder-role {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.25rem;
    color: rgba(1,34,75,0.7);
    margin-bottom: 1.75rem;
  }
  .founder-role .name {
    font-style: normal;
    font-family: var(--font-display);
  }
  .founder-content p { color: rgba(1,34,75,0.85); line-height: 1.625; margin-bottom: 1rem; max-width: 58ch; }
  .founder-content p.sub { color: rgba(1,34,75,0.7); margin-bottom: 2.5rem; font-size: 1rem; }
  .founder-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
    column-gap: 1rem;
    margin-bottom: 2.5rem;
  }
  .founder-highlights .num {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .founder-highlights .desc {
    color: rgba(1,34,75,0.7);
    font-size: 1rem;
    margin-top: 0.5rem;
    line-height: 1.4;
    max-width: 20ch;
  }
  .founder-more {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(1,34,75,0.1);
  }
  .founder-more .micro-label { color: rgba(1,34,75,0.5); margin-bottom: 1rem; }
  .founder-more ul {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 1.5rem;
    row-gap: 0.5rem;
  }
  .founder-more li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(1,34,75,0.8);
  }
  .founder-more li .bullet { color: var(--gold); margin-top: 0.25rem; flex-shrink: 0; }

  /* ======================= CTA ======================= */
  .cta { margin-top: 7rem; }
  .cta-card {
    background: var(--navy);
    border-radius: 2rem;
    padding: 3rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-card .deco-mint {
    position: absolute;
    left: -5rem; top: -5rem;
    width: 18rem; height: 18rem;
    border-radius: 9999px;
    background: rgba(167,211,166,0.2);
  }
  .cta-card .deco-gold {
    position: absolute;
    right: -4rem; bottom: -4rem;
    width: 16rem; height: 16rem;
    border-radius: 9999px;
    background: rgba(214,134,49,0.2);
  }
  .cta-card .inner { position: relative; }
  .cta-card .micro-label { color: var(--mint); margin-bottom: 2rem; }
  .cta-card h2 {
    font-size: clamp(1.75rem, 4vw, 3.4rem);
    color: white;
    max-width: 28ch;
    margin: 0 auto;
    line-height: 1.1;
  }
  .cta-card .lead {
    margin-top: 1.75rem;
    font-size: 1.5rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.8);
    max-width: 40ch;
    margin-left: auto; margin-right: auto;
  }
  .cta-subhead {
    margin-top: 2.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.875rem;
    color: var(--mint);
  }
  .cta-contacts {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
  }
  .cta-contacts a {
    color: white;
    font-size: 1.25rem;
    font-weight: 500;
    word-break: break-all;
  }
  .cta-contacts a:hover { color: var(--gold); }
  .cta-card .closer {
    margin-top: 1.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 1.5rem;
    line-height: 1.5;
  }

  /* ======================= CONTACT FORM ======================= */
  .contact-form-wrap {
    margin-top: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }
  .hidden-honey { display: none !important; }
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border-radius: 0.625rem;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    color: white;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition: border-color 180ms ease, background 180ms ease;
  }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: rgba(255,255,255,0.4);
  }
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: var(--mint);
    background: rgba(255,255,255,0.1);
  }
  .contact-form textarea {
    resize: vertical;
    min-height: 3rem;
    font-family: var(--font-body);
  }
  .form-submit {
    align-self: flex-end;
    margin-top: 0.25rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    background: var(--mint);
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: background 180ms ease, transform 180ms ease;
  }
  .form-submit:hover {
    background: white;
    transform: translateY(-1px);
  }

  /* ======================= FOOTER ======================= */
  .footer { margin-top: 2.5rem; margin-bottom: 1.5rem; padding-left: 1rem; padding-right: 1rem; }
  .footer-card {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.75);
    border-radius: 2rem;
    padding: 2.5rem;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .footer-brand { grid-column: span 2; }
  .footer-brand p { margin-top: 1rem; font-size: 1rem; line-height: 1.5; color: rgba(255,255,255,0.7); max-width: 28ch; }
  .footer-col .micro-label { color: var(--mint); margin-bottom: 0.75rem; }
  .footer-col p { font-size: 1rem; line-height: 1.55; }
  .footer-col p + p { margin-top: 0.25rem; }
  .footer-col a { color: rgba(255,255,255,0.85); text-decoration: none; word-break: break-word; }
  .footer-col a:hover { color: var(--mint); }
  .footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
  }

  /* ======================= MEDIA QUERIES ======================= */

  /* ===== MOBIILI (alle 640px) ===== */
  @media (max-width: 639px) {
    /* iOS Safari -zoomauksen esto: input-fontti vähintään 16px */
    .contact-form input,
    .contact-form textarea {
      font-size: 1rem;
    }
    /* Footer: yksi sarake, sisältö pysyy boksissa */
    .footer-card {
      padding: 2rem 1.5rem;
    }
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 1.75rem;
    }
    .footer-brand { grid-column: span 1; }
    .footer-col p,
    .footer-col a {
      font-size: 0.9375rem;
      word-break: break-word;
      overflow-wrap: anywhere;
    }
    .footer-brand p { max-width: 100%; }
  }

  /* Process: pinoa pystyyn alle 1400px (välttää tekstin päällekkäisyyden) */
  @media (max-width: 1599px) {
    /* Vaiheet: pystysuunnassa pinottuna, ei sivuttaisscrollia, ei viivaa */
    .process-chart {
      overflow-x: visible;
      padding: 0.5rem 0;
    }
    .process-grid {
      grid-template-columns: 1fr;
      min-width: 0;
      gap: 1.25rem;
    }
    .process-line,
    .process-line-active {
      display: none;
    }
    .process-level {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      justify-content: flex-start;
      grid-template-rows: none;
      grid-template-columns: none;
      min-height: 0;
      text-align: left;
      gap: 1rem;
      padding: 0.75rem 0;
      border-bottom: 1px solid rgba(1,34,75,0.08);
    }
    .process-level:last-child { border-bottom: none; }
    .process-level .group-top,
    .process-level .group-bottom {
      grid-row: auto;
      grid-column: auto;
      align-self: flex-start;
      align-items: flex-start;
      padding: 0;
      text-align: left;
      order: 2;
      flex: 1;
    }
    .process-level .group-top:empty,
    .process-level .group-bottom:empty {
      display: none;
    }
    .process-level .micro-label {
      text-align: left;
    }
    .process-level .dot {
      grid-row: auto;
      grid-column: auto;
      align-self: flex-start;
      order: 1;
      margin-top: 0.25rem;
      flex-shrink: 0;
    }
  }

  @media (min-width: 640px) {
    .benefits-items { grid-template-columns: repeat(2, 1fr); }
    .facts-circles { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .founder-more ul { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(5, 1fr); }
    .footer-brand { grid-column: span 1; }
    .founder-highlights { grid-template-columns: repeat(4, 1fr); }
    .form-row { grid-template-columns: 1fr 1fr; }
  }

  @media (min-width: 768px) {
    section { padding-left: 2rem; padding-right: 2rem; }
    .footer { padding-left: 2rem; padding-right: 2rem; }
    .nav-wrap { margin: 0 2rem; }
    .nav-links { display: flex; }
    .hero { padding-top: 4rem; }
    .hero-grid { grid-template-columns: repeat(12, 1fr); gap: 2rem; }
    .hero-title { grid-column: span 5; padding-bottom: 0.5rem; }
    .hero-image-wrap { grid-column: span 7; }
    .hero-text, .hero-text-bold { max-width: 30ch; font-size: 1.575rem; }
    .hero-result-mobile { display: none; }
    .hero-result-desktop {
      display: none;
      position: absolute;
      left: -4rem;
      bottom: -3rem;
      width: 300px;
    }
    .hero-result-desktop .hero-result-card { margin-top: 0; padding: 1.5rem; }
    .hero-tag { top: 1.75rem; right: 1.75rem; }
    .benefits { margin-top: 9rem; }
    .benefits-card { padding: 3.5rem; border-radius: 2.5rem; }
    .process { margin-top: 10rem; }
    .process-card { padding: 3.5rem; }
    .facts { margin-top: 10rem; }
    .services { margin-top: 10rem; }
    .services-grid { gap: 1.25rem; }
    .pricing { margin-top: 10rem; }
    .pricing-grid { gap: 1.25rem; }
    .tier { padding: 1.75rem; }
    .tier .price { font-size: 2.9rem; }
    .metaphor { margin-top: 10rem; }
    .metaphor-content { padding: 3.5rem; }
    .metaphor-content .body { font-size: 1.125rem; }
    .metaphor-content .quote { font-size: 1.25rem; }
    .metaphor-content .closer { font-size: 1.875rem; }
    .founder { margin-top: 10rem; }
    .founder-grid { grid-template-columns: 320px minmax(0, 1fr); }
    .founder-portrait img { min-height: 560px; aspect-ratio: auto; }
    .founder-content { padding: 3rem; }
    .founder-role { font-size: 1.5rem; }
    .founder-content p.sub { font-size: 1rem; }
    .founder-highlights .desc { font-size: 1rem; }
    .footer-card { padding: 3.5rem; }
    .cta { margin-top: 10rem; }
    .cta-card { padding: 4.5rem 1.5rem; }
    .cta-contacts a { font-size: 1.375rem; }
  }

  @media (min-width: 1024px) {
    section { padding-left: 3rem; padding-right: 3rem; }
    .footer { padding-left: 3rem; padding-right: 3rem; }
    .nav-wrap { margin: 0 3rem; }
    .benefits-card { padding: 5rem; }
    .benefits-grid { grid-template-columns: repeat(12, 1fr); gap: 4rem; }
    .benefits-heading { grid-column: span 4; }
    .benefits-items-wrap { grid-column: span 8; }
    .process-card { padding: 5rem; }
    .process-summary { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .pricing-grid { grid-template-columns: repeat(5, 1fr); }
    .tier.featured { transform: scale(1.04); margin: -0.5rem 0; padding-top: 2.75rem; }
    .metaphor-content { padding: 4rem; }
    .founder-grid { grid-template-columns: 390px minmax(0, 1fr); }
    .founder-content { padding: 4rem; }
    .hero-result-desktop { left: -6rem; width: 340px; }
    .hero-result-desktop .hero-result-card { padding: 1.75rem; }
  }

  @media (min-width: 1024px) {
    .pain-grid { grid-template-columns: repeat(3, 1fr); }

    .facts-circles {
      display: block;
      position: relative;
      height: 640px;
      max-width: 720px;
      margin: 0 auto;
    }
    .fact-circle {
      position: absolute;
      margin: 0;
      max-width: none;
    }
    .fact-circle.c1 {
      width: 240px;
      top: 80px;
      left: 0;
    }
    .fact-circle.c2 {
      width: 280px;
      top: 360px;
      left: 200px;
    }
    .fact-circle.c3 {
      width: 220px;
      top: 200px;
      left: 280px;
      z-index: 2;
    }
    .fact-circle.c4 {
      width: 320px;
      top: 0;
      right: 0;
    }
    .fact-circle.c4 .number { font-size: 3.5rem; }
    .fact-circle.c4 .desc { font-size: 1.05rem; }
  }

  @media (min-width: 768px) {
    .pain-grid { grid-template-columns: repeat(3, 1fr); }
    .facts-grid {
      grid-template-columns: repeat(12, 1fr);
      gap: 2.5rem 2.5rem;
    }
    .facts-heading {
      grid-column: 1 / span 5;
    }
    .facts-content {
      grid-column: 6 / span 7;
      grid-row: 1 / span 2;
    }
    .facts-mission {
      grid-column: 1 / span 5;
      align-self: end;
      margin-top: 2rem;
    }
  }

  /* Pain section */
  .pain { margin-top: 7rem; }
  .pain-head { margin-bottom: 3rem; max-width: 44ch; }
  .pain-head h2 { font-size: clamp(2rem, 4.2vw, 3.6rem); color: var(--navy); line-height: 1.05; }
  .pain-head p { margin-top: 1.5rem; color: rgba(27,27,38,0.7); }
  .pain-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
  .pain-card {
    position: relative;
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid;
    display: flex;
    flex-direction: column;
  }
  .pain-card.lavender { background: var(--lavender); border-color: rgba(1,34,75,0.1); }
  .pain-card.mint { background: rgba(167,211,166,0.6); border-color: rgba(1,34,75,0.05); }
  .pain-card.dark { background: var(--navy); border-color: rgba(1,34,75,0.1); }
  .pain-card .num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--gold);
  }
  .pain-card.mint .num { color: rgba(1,34,75,0.4); }
  .pain-card .div { margin-top: 1.5rem; height: 1px; background: rgba(1,34,75,0.1); }
  .pain-card.dark .div { background: rgba(255,255,255,0.15); }
  .pain-card .body { margin-top: 1.25rem; }
  .pain-card .body .micro-label { margin-bottom: 0.5rem; color: rgba(1,34,75,0.6); }
  .pain-card.dark .body .micro-label { color: var(--mint); }
  .pain-card h3 {
    line-height: 1.375;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--navy);
  }
  .pain-card.dark h3 { color: white; }
  .pain-card h3.italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 1.5rem;
  }
  .pain-card p {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.625;
    color: rgba(27,27,38,0.7);
  }
  .pain-card.dark p { color: rgba(255,255,255,0.7); }

  @media (min-width: 768px) {
    .pain-card { padding: 1.75rem; }
    .pain-card .num { font-size: 3rem; }
    .pain-card h3 { font-size: 1.5rem; }
    .pain-card h3.italic { font-size: 1.875rem; }
    .pain-card p { font-size: 1rem; }
  }

  /* ======================= XL DESKTOP (1920px+) ======================= */
  /* Skaalataan leipätekstit suuremmiksi isoilla näytöillä — otsikot säilyvät
     ennallaan jotta visuaalinen hierarkia ei rikkoonnu. */
  @media (min-width: 1920px) {
    /* Globaali leipäteksti — kaikki p-elementit ja listat ellei toisin määritelty.
       !important tarvitaan koska monet osio-spesifit säännöt (esim. .facts-heading p)
       ovat tarkempia. */
    body p,
    body li { font-size: 1.35rem !important; line-height: 1.6; }

    /* Hero — suurempi kuin muut */
    .hero-text,
    .hero-text-bold { font-size: 1.875rem !important; line-height: 1.55; max-width: 32ch; }

    /* Pää-quotet ja korostukset */
    .metaphor-content .quote { font-size: 1.65rem !important; }
    .metaphor-content .closer { font-size: 2.4rem !important; }

    /* Hintafontti — suojataan body p !important -yliajolta */
    .tier .price { font-size: 2.9rem !important; }

    /* Suurempi avainluku-tyyliset */
    .tier .revenue { font-size: 1.55rem !important; }
    .tier .label-top { font-size: 1.1rem !important; }
    .tier .per { font-size: 1.25rem !important; }

    /* Micro-labels */
    .micro-label { font-size: 1rem !important; }

    /* CTA ja yhteystiedot */
    .cta-contacts a { font-size: 1.75rem !important; }

    /* Founder-highlights numerot ja kuvaukset */
    .founder-highlights .desc { font-size: 1.2rem !important; }

    /* Footer pienempi */
    .footer-bottom { font-size: 1rem !important; }

    /* Navigaatio */
    .nav-links a { font-size: 1.25rem !important; }
    .nav-cta { font-size: 1.125rem !important; padding: 0.9rem 1.6rem; }
    .logo img { height: 72px; }
  }