:root {
      --white:      #ffffff;
      --off-white:  #f7f7f5;
      --text:       #1a1a1a;
      --text-mid:   #3a3a3a;
      --text-muted: #717171;
      --red:        #4a5d3a;
      --green:      #2d6a4f;
      --border:     #e5e5e0;
      --border-mid: #c8c8c2;
      --font-sans:  'Inter Tight', sans-serif;
      --font-serif: 'Platypi', serif;
      --max-w:      1200px;
      --pad-x:      40px;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-sans); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
    img { max-width: 100%; display: block; }
    a   { color: inherit; text-decoration: none; }
    ul  { list-style: none; }
    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }

    /* Buttons */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 26px; border-radius: 6px;
      font-family: var(--font-sans); font-size: 0.875rem; font-weight: 600;
      border: 1.5px solid transparent;
      transition: background 0.18s, border-color 0.18s, color 0.18s;
      white-space: nowrap; cursor: pointer;
    }
    .btn-primary { background: var(--text); color: var(--white); border-color: var(--text); }
    .btn-primary:hover { background: var(--red); border-color: var(--red); }
    .btn-outline { background: transparent; color: var(--text); border-color: var(--border-mid); }
    .btn-outline:hover { border-color: var(--text); }

    /* Nav */
    .nav {
      position: sticky; top: 0; z-index: 200;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid transparent; transition: border-color 0.25s;
    }
    .nav.scrolled { border-bottom-color: var(--border); }
    .nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
    .nav__logo img { height: 26px; width: auto; }
    .nav__center { display: flex; align-items: center; gap: 36px; }
    .nav__center a { font-size: 0.875rem; font-weight: 500; color: var(--text-mid); transition: color 0.18s; }
    .nav__center a:hover { color: var(--red); }
    .nav__right { display: flex; align-items: center; gap: 14px; }
    .nav__guide-link { font-size: 0.8rem; font-weight: 500; color: var(--text-muted); text-decoration: underline; text-underline-offset: 3px; transition: color 0.18s; }
    .nav__guide-link:hover { color: var(--text); }
    .nav__ham { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; cursor: pointer; }
    .nav__ham span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
    .nav__ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav__ham.open span:nth-child(2) { opacity: 0; }
    .nav__ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav__mobile { display: none; border-top: 1px solid var(--border); padding: 24px var(--pad-x) 32px; background: var(--white); }
    .nav__mobile.open { display: block; }
    .nav__mobile ul { display: flex; flex-direction: column; gap: 18px; margin-bottom: 24px; }
    .nav__mobile ul a { font-size: 1.05rem; font-weight: 500; }
    .nav__mobile .mobile-btns { display: flex; flex-direction: column; gap: 10px; }
    .nav__mobile .mobile-btns .btn { justify-content: center; }

    /* Sectors dropdown */
    .nav__dropdown { position: relative; }
    .nav__dropdown-toggle {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 0.875rem; font-weight: 500; color: var(--text-mid);
      background: none; border: none; padding: 0; cursor: pointer;
      font-family: var(--font-sans); transition: color 0.18s;
    }
    .nav__dropdown-toggle:hover,
    .nav__dropdown.open .nav__dropdown-toggle { color: var(--red); }
    .nav__dropdown-toggle svg { transition: transform 0.18s; }
    .nav__dropdown.open .nav__dropdown-toggle svg { transform: rotate(180deg); }
    .nav__dropdown-menu {
      display: none; position: absolute; top: calc(100% + 12px); left: 50%;
      transform: translateX(-50%);
      background: var(--white); border: 1px solid var(--border); border-radius: 8px;
      padding: 6px 0; min-width: 210px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08); z-index: 100;
    }
    .nav__dropdown:hover .nav__dropdown-menu,
    .nav__dropdown.open .nav__dropdown-menu { display: block; }
    .nav__dropdown-menu a {
      display: block; padding: 10px 16px;
      font-size: 0.875rem; font-weight: 500; color: var(--text-mid);
      transition: color 0.18s, background 0.18s;
    }
    .nav__dropdown-menu a:hover { color: var(--red); background: var(--off-white); }
    .nav__dropdown-menu::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
    .nav__dropdown-menu a.active { color: var(--red); }
    .sectors-toggle {
      display: flex; align-items: center; justify-content: space-between; width: 100%;
      background: none; border: none; padding: 0; cursor: pointer;
      font-size: 1.05rem; font-weight: 500; color: var(--text); font-family: var(--font-sans);
    }
    .sectors-toggle svg { transition: transform 0.25s; flex-shrink: 0; }
    .sectors-item.sectors-open .sectors-toggle svg { transform: rotate(180deg); }
    .sectors-item .sectors-submenu { display: none; flex-direction: column; gap: 12px; padding-top: 12px; padding-left: 14px; }
    .sectors-item.sectors-open .sectors-submenu { display: flex; }
    .sectors-submenu a { font-size: 0.975rem; color: var(--text-mid); }

    /* Hero */
    .hero { padding: 96px 0 80px; border-bottom: 1px solid var(--border); }
    .hero__label {
      display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--red); margin-bottom: 20px;
    }
    .hero h1 {
      font-family: var(--font-serif);
      font-size: clamp(2.8rem, 6vw, 4.5rem);
      font-weight: 500; line-height: 1.08; letter-spacing: -0.02em;
      max-width: 820px; margin-bottom: 24px;
    }
    .hero h1 em { font-style: italic; color: var(--red); }
    .hero__sub { font-size: 1.1rem; line-height: 1.75; color: var(--text-mid); max-width: 640px; margin-bottom: 36px; }
    .hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

    /* Sections */
    .section { padding: 96px 0; border-bottom: 1px solid var(--border); }
    .section__eyebrow { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
    .section h2 {
      font-family: var(--font-serif);
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 500; line-height: 1.15; letter-spacing: -0.02em;
      max-width: 740px; margin-bottom: 48px;
    }

    /* Problem grid */
    .problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .problem-item h3 { font-size: 1rem; font-weight: 600; margin-bottom: 12px; }
    .problem-item p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

    /* What we do */
    .feature-rows { }
    .feature-row { padding: 36px 0; border-top: 1px solid var(--border); }
    .feature-row:last-child { border-bottom: 1px solid var(--border); }
    .feature-row__label {
      font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--red); margin-bottom: 14px;
    }
    .feature-row h3 {
      font-family: var(--font-serif); font-size: clamp(1.25rem, 2vw, 1.65rem);
      font-weight: 500; line-height: 1.3; margin-bottom: 16px;
    }
    .feature-row p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.78; max-width: 720px; }

    /* CTA */
    .cta-section { padding: 96px 0; text-align: center; }
    .cta-section h2 {
      font-family: var(--font-serif);
      font-size: clamp(1.25rem, 2vw, 1.65rem);
      font-weight: 500; letter-spacing: -0.02em; margin-bottom: 20px;
    }
    .cta-section p { color: var(--text-mid); max-width: 480px; margin: 0 auto 36px; line-height: 1.7; }
    .cta-section .ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }


    /* Pricing */
    .section--gray { background: var(--off-white); }
    .pricing__header { margin-bottom: 56px; max-width: 680px; }
    .pricing__header h2 { margin-bottom: 16px; }
    .pricing__header p  { color: var(--text-muted); font-size: 1rem; line-height: 1.72; }
    .pricing__cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto auto 1fr auto;
      column-gap: 24px;
      row-gap: 18px;
      max-width: 900px;
    }
    .p-card {
      grid-row: span 5;
      display: grid;
      grid-template-rows: subgrid;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 48px 40px;
      background: var(--white);
    }
    .p-card--featured { background: var(--text); color: var(--white); border-color: var(--text); }
    .p-card__tier { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
    .p-card--featured .p-card__tier { color: rgba(255,255,255,0.45); }
    .p-card__price { display: flex; align-items: baseline; gap: 4px; }
    .p-card__amount { font-family: var(--font-serif); font-size: 3rem; font-weight: 500; line-height: 1; }
    .p-card__period { font-size: 0.875rem; color: var(--text-muted); }
    .p-card--featured .p-card__period { color: rgba(255,255,255,0.45); }
    .p-card__price-group { display: flex; flex-direction: column; gap: 4px; }
    .p-card__starting { font-size: 0.78rem; color: var(--text-muted); }
    .p-card--featured .p-card__starting { color: rgba(255,255,255,0.45); }
    .p-card h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 500; line-height: 1.3; }
    .p-card p { font-size: 0.9rem; line-height: 1.72; color: var(--text-muted); flex: 1; }
    .p-card--featured p { color: rgba(255,255,255,0.65); }
    .p-card .btn { width: 100%; justify-content: center; margin-top: 4px; }

    /* Responsive */
    @media (max-width: 768px) {
      .pricing__cards { grid-template-columns: 1fr; max-width: 480px; }
      :root { --pad-x: 20px; }
      .nav__center, .nav__right { display: none; }
      .nav__ham { display: flex; }
      .problem-grid { grid-template-columns: 1fr; gap: 24px; }
    }
    .email-banner { width: 100%; line-height: 0; }
    .email-banner img { width: 100%; height: auto; display: block; }

    /* Footer */
    .footer {
      padding: 80px 0 40px;
      border-top: 1px solid var(--border);
    }
    .footer__top {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px;
      padding-bottom: 64px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 32px;
    }
    .footer__logo { height: 26px; width: auto; margin-bottom: 22px; }
    .footer__tagline {
      font-size: 0.9rem; color: var(--text-muted); line-height: 1.68;
      max-width: 300px; margin-bottom: 32px;
    }
    .footer__links { display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
    .footer__links a { font-size: 0.9rem; font-weight: 500; transition: color 0.18s; }
    .footer__links a:hover { color: var(--red); }
    .form-title {
      font-family: var(--font-serif); font-size: 1.5rem; font-weight: 500; margin-bottom: 8px;
    }
    .form-sub { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 26px; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-group--full { grid-column: 1 / -1; }
    .form-label { font-size: 0.78rem; font-weight: 600; color: var(--text); }
    .form-input, .form-textarea {
      width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 6px;
      font-family: var(--font-sans); font-size: 0.875rem; color: var(--text);
      background: var(--white); outline: none; transition: border-color 0.18s;
    }
    .form-input:focus, .form-textarea:focus { border-color: var(--text); }
    .form-textarea { resize: vertical; min-height: 96px; }
    .form-submit { margin-top: 4px; }
    .form-msg { font-size: 0.85rem; margin-top: 12px; display: none; }
    .form-msg--success { color: var(--green); }
    .form-msg--error { color: var(--red); }
    .footer__bottom {
      display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
    }
    .footer__copy { font-size: 0.78rem; color: var(--text-muted); }
    .footer__policy {
      font-size: 0.78rem; color: var(--text-muted);
      text-decoration: underline; text-underline-offset: 3px;
    }
    .footer__policy:hover { color: var(--text); }
