:root {
    /* Brand — sunset coral */
    --brand: #E85A1F;
    --brand-dark: #1A1A18;
    --brand-deep: #9A2B0B;
    --brand-mid: #F07A42;
    --brand-tint: #FFE0D1;
    --brand-soft: #FFB892;

    /* Backgrounds — warm cream system */
    --bg-page: #FFF8F3;
    --bg-surface: #FCEFE3;
    --bg-card: #FFFFFF;
    --bg-dark: #1A1A18;
    --bg-dark-deep: #0F0F0E;

    /* Text */
    --text-heading: #1A1A18;
    --text-body: #3D3530;
    --text-muted: #5A4F45;
    --text-hint: #8A7F72;
    --text-on-dark: #FFF8F3;
    --text-on-dark-muted: #C9B8A5;

    /* Borders */
    --border: rgba(26, 26, 24, 0.12);
    --border-strong: rgba(26, 26, 24, 0.22);

    /* Semantic accents */
    --amber: #C48410;
    --amber-tint: #FBEBC9;

    /* Typography */
    --font-display: 'Fraunces', 'Georgia', 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    --max-width: 1200px;
    --content-width: 960px;
    --gutter: clamp(20px, 5vw, 48px);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

  body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--bg-page);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  a { color: var(--brand); text-decoration: none; transition: color 0.2s ease; }
  a:hover { color: var(--brand-dark); }

  h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--text-heading);
    letter-spacing: -0.02em;
    line-height: 1.15;
  }

  .container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }
  .mono { font-family: var(--font-mono); font-feature-settings: "tnum" 1; }

  .eyebrow {
    font-family: var(--font-sans); font-size: 11px; font-weight: 500;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--brand); margin-bottom: 16px; display: inline-block;
  }

  .section { padding: clamp(64px, 10vw, 120px) 0; }
  .section-dark { background: var(--bg-dark); color: var(--text-on-dark); }
  .section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--text-on-dark); }
  .section-dark .eyebrow { color: var(--brand-soft); }
  .section-surface { background: var(--bg-surface); }

  /* HEADER */
  nav.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 248, 243, 0.92);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 0.5px solid var(--border);
  }
  .header-inner {
    max-width: var(--max-width); margin: 0 auto;
    padding: 14px var(--gutter);
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
  }
  .logo { display: flex; align-items: center; gap: 2px; text-decoration: none; }
  .logo-text { display: flex; flex-direction: column; line-height: 1; margin-left: 10px; }
  .logo-text .agentic {
    font-family: var(--font-display); font-size: 18px; font-weight: 500;
    color: var(--text-heading); letter-spacing: -0.01em;
  }
  .logo-text .cfo {
    font-family: var(--font-sans); font-size: 11px; font-weight: 500;
    color: var(--text-muted); letter-spacing: 3px; margin-top: 3px;
  }
  .nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
  .nav-links a { font-size: 14px; font-weight: 500; color: var(--text-body); }
  .nav-links a:hover { color: var(--brand-dark); }

  /* Country selector */
  .country-selector { position: relative; }
  .country-trigger {
    display: flex; align-items: center; gap: 8px;
    background: var(--bg-surface); border: 0.5px solid var(--border);
    border-radius: 999px; padding: 6px 12px 6px 8px;
    font-family: var(--font-sans); font-size: 13px; font-weight: 500;
    color: var(--text-heading); cursor: pointer; transition: all 0.2s ease;
  }
  .country-trigger:hover { background: var(--brand-tint); border-color: var(--brand-soft); }
  .country-flag {
    width: 22px; height: 16px; border-radius: 2px; overflow: hidden;
    flex-shrink: 0; border: 0.5px solid rgba(0,0,0,0.08);
  }
  .country-chevron { width: 12px; height: 12px; opacity: 0.6; transition: transform 0.2s ease; }
  .country-selector.open .country-chevron { transform: rotate(180deg); }
  .country-dropdown {
    position: absolute; top: calc(100% + 8px); right: 0;
    background: var(--bg-card); border: 0.5px solid var(--border);
    border-radius: var(--radius-lg); padding: 8px;
    min-width: 260px;
    box-shadow: 0 8px 32px rgba(4, 52, 44, 0.08);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: all 0.2s ease; z-index: 200;
  }
  .country-selector.open .country-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
  .country-option {
    display: flex; align-items: center; gap: 12px; width: 100%;
    padding: 10px 12px; border: none; background: transparent;
    border-radius: var(--radius-md); cursor: pointer;
    font-family: var(--font-sans); font-size: 14px; color: var(--text-body);
    text-align: left; transition: background 0.15s ease;
  }
  .country-option:hover { background: var(--bg-surface); }
  .country-option.active { background: var(--brand-tint); color: var(--brand-dark); font-weight: 500; }
  .country-option .flag {
    width: 24px; height: 17px; border-radius: 2px; overflow: hidden;
    flex-shrink: 0; border: 0.5px solid rgba(0,0,0,0.08);
  }
  .country-option .meta { font-family: var(--font-mono); font-size: 11px; color: var(--text-hint); margin-left: auto; }

  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-sans); font-size: 14px; font-weight: 500;
    padding: 11px 20px; border-radius: var(--radius-md);
    border: none; cursor: pointer; transition: all 0.2s ease;
    text-decoration: none; white-space: nowrap;
  }
  .btn-primary { background: var(--brand); color: #ffffff; }
  .btn-primary:hover { background: var(--brand-dark); color: #ffffff; transform: translateY(-1px); }
  .btn-primary:disabled { background: var(--text-hint); cursor: not-allowed; transform: none; }
  .btn-ghost { background: transparent; color: var(--brand-dark); border: 0.5px solid var(--border-strong); }
  .btn-ghost:hover { background: var(--bg-surface); }
  .btn-light { background: var(--bg-surface); color: var(--brand-dark); }
  .btn-light:hover { background: var(--brand-soft); }
  .btn .arrow { transition: transform 0.2s ease; }
  .btn:hover .arrow { transform: translateX(3px); }
  .mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }

  /* HERO */
  .hero { padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(56px, 8vw, 100px); }
  .hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--brand-tint); color: var(--brand-dark);
    font-size: 12px; font-weight: 500; padding: 6px 14px 6px 8px;
    border-radius: 999px; margin-bottom: 28px;
  }
  .hero-badge .flag { width: 18px; height: 13px; border-radius: 2px; overflow: hidden; border: 0.5px solid rgba(0,0,0,0.08); }
  .hero h1 { font-size: clamp(40px, 6vw, 66px); font-weight: 500; letter-spacing: -0.035em; margin-bottom: 24px; }
  .hero h1 em { font-style: italic; color: var(--brand); font-weight: 400; }
  .hero-lede { font-size: clamp(16px, 1.4vw, 19px); color: var(--text-body); line-height: 1.6; max-width: 540px; margin-bottom: 36px; }
  .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
  .hero-trust { display: flex; gap: 24px; padding-top: 28px; border-top: 0.5px solid var(--border); }
  .trust-item .num {
    font-family: var(--font-mono); font-size: 22px; font-weight: 500;
    color: var(--brand-dark); line-height: 1.1; display: block; letter-spacing: -0.02em;
  }
  .trust-item .label { font-size: 12px; color: var(--text-muted); margin-top: 4px; display: block; }

  .hero-visual { background: var(--bg-card); border: 0.5px solid var(--border); border-radius: var(--radius-xl); padding: 28px; box-shadow: 0 20px 60px -20px rgba(232, 90, 31, 0.15), 0 4px 12px -4px rgba(26, 26, 24, 0.06); }
  .hero-visual-header {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 18px; border-bottom: 0.5px solid var(--border); margin-bottom: 18px;
  }
  .hero-visual-title { font-size: 13px; font-weight: 500; color: var(--text-heading); }
  .hero-visual-sub { font-size: 11px; color: var(--text-muted); font-family: var(--font-mono); }
  .hero-visual-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 0; border-bottom: 0.5px solid var(--border);
  }
  .hero-visual-row:last-child { border-bottom: none; }
  .hero-visual-label { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-body); }
  .status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
  .status-done { background: var(--brand); }
  .status-progress { background: var(--amber); animation: pulse 2s infinite; }
  .status-queued { background: var(--text-hint); }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
  .hero-visual-value { font-family: var(--font-mono); font-size: 13px; color: var(--text-heading); font-weight: 500; }
  .hero-visual-footer {
    margin-top: 20px; padding: 12px 14px;
    background: var(--brand-tint); border-radius: var(--radius-md);
    font-size: 12px; color: var(--brand-dark);
    display: flex; justify-content: space-between; align-items: center;
  }

  /* Jurisdiction card */
  .jurisdiction-card {
    background: var(--bg-card); border: 0.5px solid var(--border);
    border-radius: var(--radius-xl); padding: 32px; margin-top: 40px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  }
  .jur-item { padding: 0 24px; border-right: 0.5px solid var(--border); }
  .jur-item:first-child { padding-left: 0; }
  .jur-item:last-child { padding-right: 0; border-right: none; }
  .jur-label {
    font-size: 11px; color: var(--text-hint);
    letter-spacing: 1.5px; text-transform: uppercase;
    font-weight: 500; margin-bottom: 8px;
  }
  .jur-value {
    font-family: var(--font-display); font-size: 20px; font-weight: 500;
    color: var(--text-heading); line-height: 1.2; letter-spacing: -0.01em;
  }
  .jur-detail { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

  /* Country bar */
  .country-bar { background: var(--bg-surface); padding: 24px 0; border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
  .country-bar-inner {
    max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter);
    display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  }
  .country-bar-label { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); flex-shrink: 0; }
  .country-chips { display: flex; gap: 8px; flex-wrap: wrap; }
  .country-chip {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bg-card); border: 0.5px solid var(--border);
    padding: 6px 12px 6px 6px; border-radius: 999px;
    font-size: 13px; color: var(--text-body); cursor: pointer;
    transition: all 0.2s ease;
  }
  .country-chip:hover { border-color: var(--brand-mid); color: var(--brand-dark); }
  .country-chip.active { background: var(--brand-dark); color: var(--text-on-dark); border-color: var(--brand-dark); }
  .country-chip .flag { width: 18px; height: 13px; border-radius: 2px; overflow: hidden; border: 0.5px solid rgba(0,0,0,0.08); }

  /* Tracks */
  .service-tracks { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .track-card {
    background: var(--bg-card); border: 0.5px solid var(--border);
    border-radius: var(--radius-xl); padding: 36px;
    display: flex; flex-direction: column; min-height: 320px;
  }
  .track-card.ai { background: var(--bg-dark); border-color: var(--brand-dark); }
  .track-card.ai h3 { color: var(--text-on-dark); }
  .track-card.ai .track-desc { color: var(--text-on-dark-muted); }
  .track-card.ai .track-list li { color: var(--text-on-dark-muted); }
  .track-card.ai .track-list li::before { background: var(--brand-mid); }
  .track-label { font-size: 11px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: var(--brand); margin-bottom: 14px; }
  .track-card.ai .track-label { color: var(--brand-soft); }
  .track-card h3 { font-size: clamp(26px, 3vw, 34px); font-weight: 500; margin-bottom: 14px; letter-spacing: -0.02em; }
  .track-desc { color: var(--text-body); margin-bottom: 22px; font-size: 15px; line-height: 1.6; }
  .track-list { list-style: none; margin-bottom: 28px; }
  .track-list li { font-size: 14px; color: var(--text-body); padding: 6px 0 6px 22px; position: relative; }
  .track-list li::before { content: ''; position: absolute; left: 0; top: 14px; width: 10px; height: 2px; background: var(--brand); }
  .track-footer { margin-top: auto; }

  /* AI agents */
  .agents-intro { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: end; margin-bottom: 64px; }
  .agents-intro h2 { color: var(--text-on-dark); font-size: clamp(32px, 4.5vw, 52px); letter-spacing: -0.03em; }
  .agents-intro h2 em { font-style: italic; color: var(--brand-mid); font-weight: 400; }
  .agents-intro p { color: var(--text-on-dark-muted); font-size: 17px; line-height: 1.6; max-width: 420px; }
  .agents-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .agent-card {
    background: rgba(255, 255, 255, 0.04);
    border: 0.5px solid rgba(255, 184, 146, 0.2);
    border-radius: var(--radius-xl); padding: 32px;
    display: flex; flex-direction: column;
    transition: all 0.3s ease; position: relative; overflow: hidden;
  }
  .agent-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 184, 146, 0.4);
    transform: translateY(-2px);
  }
  .agent-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
  .agent-icon {
    width: 48px; height: 48px; background: var(--brand-deep);
    border: 0.5px solid rgba(255, 184, 146, 0.3);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .agent-status {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; color: var(--brand-mid);
    font-family: var(--font-mono); letter-spacing: 1px; text-transform: uppercase;
  }
  .agent-status .live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-mid); animation: pulse 2s infinite; }
  .agent-card h3 { color: var(--text-on-dark); font-size: 22px; font-weight: 500; margin-bottom: 10px; letter-spacing: -0.01em; }
  .agent-card .agent-what { color: var(--text-on-dark-muted); font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
  .agent-impact {
    background: rgba(240, 122, 66, 0.1);
    border: 0.5px solid rgba(255, 184, 146, 0.25);
    border-radius: var(--radius-md); padding: 12px 14px; margin-bottom: 18px;
  }
  .agent-impact-label { font-size: 10px; color: var(--brand-mid); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; margin-bottom: 4px; }
  .agent-impact-value { font-family: var(--font-mono); font-size: 14px; color: var(--text-on-dark); font-weight: 500; }
  .agent-steps { list-style: none; margin-top: auto; padding-top: 16px; border-top: 0.5px solid rgba(255, 184, 146, 0.15); }
  .agent-steps li { font-size: 12px; color: var(--text-on-dark-muted); padding: 4px 0 4px 18px; position: relative; line-height: 1.5; }
  .agent-steps li::before { content: ''; position: absolute; left: 0; top: 11px; width: 10px; height: 1px; background: var(--brand-mid); }
  .agents-footer {
    margin-top: 48px; padding: 28px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 0.5px solid rgba(255, 184, 146, 0.15);
    border-radius: var(--radius-xl);
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px; flex-wrap: wrap;
  }
  .agents-footer p { color: var(--text-on-dark-muted); font-size: 15px; max-width: 560px; line-height: 1.6; }
  .agents-footer p strong { color: var(--text-on-dark); font-weight: 500; }

  /* Services grid */
  .service-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px; background: var(--border);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-xl); overflow: hidden;
  }
  .service-card { background: var(--bg-card); padding: 32px 28px; display: flex; flex-direction: column; transition: background 0.2s ease; }
  .service-card:hover { background: var(--bg-surface); }
  .service-num { font-family: var(--font-mono); font-size: 11px; color: var(--text-hint); margin-bottom: 14px; letter-spacing: 1px; }
  .service-card h3 { font-size: 22px; font-weight: 500; margin-bottom: 10px; letter-spacing: -0.02em; }
  .service-tag { font-size: 12px; font-style: italic; color: var(--brand); margin-bottom: 18px; }
  .service-card p { font-size: 14px; color: var(--text-body); line-height: 1.6; margin-bottom: 16px; }
  .service-features { list-style: none; margin-top: auto; padding-top: 8px; }
  .service-features li { font-size: 13px; color: var(--text-muted); padding: 4px 0; display: flex; align-items: flex-start; gap: 8px; }
  .service-features li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--brand); margin-top: 9px; flex-shrink: 0; }

  .section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
  .section-head h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 18px; letter-spacing: -0.03em; }
  .section-head h2 em { font-style: italic; color: var(--brand); font-weight: 400; }
  .section-head p { font-size: clamp(15px, 1.3vw, 17px); color: var(--text-body); line-height: 1.6; }
  .section-head-left { text-align: left; margin: 0 0 56px; max-width: 720px; }

  /* Compare */
  .compare-table { background: var(--bg-card); border: 0.5px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; width: 100%; }
  .compare-row { display: grid; grid-template-columns: 1.2fr 1fr 1fr; border-bottom: 0.5px solid var(--border); }
  .compare-row:last-child { border-bottom: none; }
  .compare-row.header { background: var(--bg-surface); }
  .compare-cell { padding: 18px 24px; font-size: 14px; display: flex; align-items: center; }
  .compare-cell.feature { font-weight: 500; color: var(--text-heading); }
  .compare-cell.trad { color: var(--text-muted); }
  .compare-cell.us { color: var(--brand-deep); font-weight: 500; background: rgba(255, 224, 209, 0.55); }
  .compare-row.header .compare-cell { font-weight: 500; font-size: 13px; }

  /* ===== PRICING CALCULATOR ===== */
  .calc-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: start;
  }
  .calc-services {
    background: var(--bg-card);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 8px;
  }
  .calc-category {
    border-bottom: 0.5px solid var(--border);
  }
  .calc-category:last-child { border-bottom: none; }
  .calc-category-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s ease;
    border-radius: var(--radius-md);
  }
  .calc-category-header:hover { background: var(--bg-surface); }
  .calc-category-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-heading);
    letter-spacing: -0.01em;
  }
  .calc-category-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--brand);
    letter-spacing: 1px;
    background: var(--brand-tint);
    padding: 3px 8px;
    border-radius: 4px;
  }
  .calc-category-meta {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .calc-category-count {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    background: var(--bg-surface);
    padding: 3px 8px;
    border-radius: 4px;
    min-width: 28px;
    text-align: center;
  }
  .calc-category-count.active {
    background: var(--brand);
    color: #ffffff;
  }
  .calc-chev {
    width: 14px;
    height: 14px;
    transition: transform 0.25s ease;
    color: var(--text-muted);
  }
  .calc-category.open .calc-chev { transform: rotate(180deg); }
  .calc-items {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .calc-category.open .calc-items {
    max-height: 2000px;
  }
  .calc-items-inner {
    padding: 0 24px 20px;
  }
  .calc-item {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 0.5px solid var(--border);
  }
  .calc-item:last-child { border-bottom: none; }
  .calc-item:hover .calc-item-label { color: var(--text-heading); }
  .calc-checkbox {
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--border-strong);
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    flex-shrink: 0;
    background: var(--bg-card);
  }
  .calc-item:hover .calc-checkbox { border-color: var(--brand); }
  .calc-checkbox.checked {
    background: var(--brand);
    border-color: var(--brand);
  }
  .calc-checkbox.checked::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid #ffffff;
    border-width: 0 1.8px 1.8px 0;
    transform: rotate(45deg) translate(-1px, -1px);
  }
  .calc-item-body { cursor: pointer; }
  .calc-item-label {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.4;
    transition: color 0.15s ease;
  }
  .calc-item-detail {
    font-size: 12px;
    color: var(--text-hint);
    margin-top: 2px;
  }
  .calc-item-price {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-heading);
    text-align: right;
    white-space: nowrap;
  }
  .calc-item-price-free {
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
  }
  .calc-item-cadence {
    font-size: 10px;
    color: var(--text-hint);
    display: block;
    font-weight: 400;
    font-family: var(--font-sans);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2px;
  }

  /* Quantity controls */
  .calc-qty {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
  }
  .calc-qty-label { font-size: 11px; color: var(--text-muted); margin-right: 4px; }
  .calc-qty-btn {
    width: 22px; height: 22px;
    border: 0.5px solid var(--border-strong);
    background: var(--bg-card);
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-mono);
    color: var(--text-body);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    transition: all 0.15s ease;
  }
  .calc-qty-btn:hover:not(:disabled) { background: var(--brand-tint); border-color: var(--brand); color: var(--brand-dark); }
  .calc-qty-btn:disabled { opacity: 0.4; cursor: not-allowed; }
  .calc-qty-value {
    min-width: 30px;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-heading);
  }

  /* Radio groups (for tiered options) */
  .calc-radio-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 8px;
    padding-left: 42px;
  }
  .calc-radio-group.hidden { display: none; }
  .calc-radio {
    display: grid;
    grid-template-columns: 18px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 8px 0;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-body);
  }
  .calc-radio:hover { color: var(--text-heading); }
  .calc-radio-circle {
    width: 16px; height: 16px;
    border: 1.5px solid var(--border-strong);
    border-radius: 50%;
    transition: all 0.15s ease;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .calc-radio-circle.checked {
    border-color: var(--brand);
  }
  .calc-radio-circle.checked::after {
    content: '';
    width: 8px; height: 8px;
    background: var(--brand);
    border-radius: 50%;
  }
  .calc-radio-price {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
  }

  /* Summary panel */
  .calc-summary {
    position: sticky;
    top: 92px;
    background: var(--bg-card);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px;
  }
  .calc-summary-header {
    padding-bottom: 16px;
    border-bottom: 0.5px solid var(--border);
    margin-bottom: 18px;
  }
  .calc-summary-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text-heading);
  }
  .calc-summary-country {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 6px;
    padding: 4px 10px 4px 6px;
    background: var(--bg-surface);
    border-radius: 999px;
  }
  .calc-summary-country .flag { width: 16px; height: 11px; border-radius: 2px; overflow: hidden; border: 0.5px solid rgba(0,0,0,0.08); }

  .calc-summary-lines {
    max-height: 280px;
    overflow-y: auto;
    margin-bottom: 16px;
  }
  .calc-summary-empty {
    padding: 24px 0;
    text-align: center;
    color: var(--text-hint);
    font-size: 13px;
    font-style: italic;
  }
  .calc-summary-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 0.5px dashed var(--border);
  }
  .calc-summary-line:last-child { border-bottom: none; }
  .calc-summary-line-label { color: var(--text-body); line-height: 1.4; }
  .calc-summary-line-detail { font-size: 11px; color: var(--text-hint); display: block; margin-top: 2px; }
  .calc-summary-line-price {
    font-family: var(--font-mono);
    color: var(--text-heading);
    font-weight: 500;
    white-space: nowrap;
    font-size: 13px;
  }
  .calc-summary-line-price.free { color: var(--brand); font-size: 11px; }
  .calc-summary-line-price.contact { color: var(--brand); font-size: 11px; letter-spacing: 0.3px; }

  .calc-summary-contact-note {
    margin-top: 12px;
    padding: 12px 14px;
    background: var(--brand-tint);
    border: 0.5px solid rgba(232, 90, 31, 0.25);
    border-radius: var(--radius-md);
    font-size: 12px;
    color: var(--brand-deep);
    line-height: 1.5;
  }

  .calc-subtotal {
    padding: 12px 0;
    border-top: 0.5px solid var(--border);
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
  }
  .calc-subtotal .mono { color: var(--text-body); font-weight: 500; }

  .calc-total {
    margin-top: 12px;
    padding: 16px;
    background: var(--brand-tint);
    border-radius: var(--radius-md);
  }
  .calc-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
  }
  .calc-total-row:last-child { margin-bottom: 0; }
  .calc-total-label {
    font-size: 11px;
    color: var(--brand-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
  }
  .calc-total-value {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--brand-dark);
  }
  .calc-total-value.big {
    font-size: 28px;
    letter-spacing: -0.02em;
  }
  .calc-total-value.small {
    font-size: 14px;
  }

  .calc-actions { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
  .calc-actions .btn { width: 100%; justify-content: center; }
  .calc-disclaimer {
    font-size: 11px;
    color: var(--text-hint);
    line-height: 1.5;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 0.5px solid var(--border);
  }

  .calc-form-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4, 52, 44, 0.6);
    z-index: 500;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .calc-form-overlay.open { display: flex; }
  .calc-form {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 36px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
  }
  .calc-form h3 { font-size: 22px; margin-bottom: 8px; letter-spacing: -0.02em; }
  .calc-form p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
  .calc-form-field { margin-bottom: 16px; }
  .calc-form-field label {
    font-size: 12px; font-weight: 500; color: var(--text-body);
    display: block; margin-bottom: 6px; letter-spacing: 0.3px;
  }
  .calc-form-field input, .calc-form-field textarea {
    width: 100%;
    border: 0.5px solid var(--border-strong);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    font-family: var(--font-sans);
    font-size: 14px;
    background: var(--bg-page);
    color: var(--text-heading);
    transition: border-color 0.15s ease;
  }
  .calc-form-field input:focus, .calc-form-field textarea:focus {
    outline: none;
    border-color: var(--brand);
    background: var(--bg-card);
  }
  .calc-form-field textarea { resize: vertical; min-height: 70px; }
  .calc-form-actions { display: flex; gap: 10px; margin-top: 24px; }
  .calc-form-actions .btn { flex: 1; justify-content: center; }

  /* Bundles below calc */
  .bundles-head { text-align: center; max-width: 640px; margin: 80px auto 40px; }
  .bundles-head h3 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 10px; }
  .bundles-head p { font-size: 15px; color: var(--text-muted); }
  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .price-card {
    background: var(--bg-card); border: 0.5px solid var(--border);
    border-radius: var(--radius-xl); padding: 36px 30px;
    display: flex; flex-direction: column; position: relative;
    transition: transform 0.2s ease;
  }
  .price-card:hover { transform: translateY(-2px); }
  .price-card.featured { border: 2px solid var(--brand); box-shadow: 0 24px 48px -16px rgba(232, 90, 31, 0.18); }
  .price-badge {
    position: absolute; top: -12px; left: 30px;
    background: var(--brand); color: #ffffff;
    font-size: 11px; font-weight: 500; padding: 5px 12px;
    border-radius: 999px; letter-spacing: 1px; text-transform: uppercase;
  }
  .price-tier { font-size: 12px; font-weight: 500; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
  .price-card h3 { font-size: 26px; font-weight: 500; margin-bottom: 6px; }
  .price-for { font-size: 13px; color: var(--text-muted); font-style: italic; margin-bottom: 24px; min-height: 40px; }
  .price-amount {
    font-family: var(--font-mono); font-size: 14px; color: var(--brand);
    margin-bottom: 24px; padding-bottom: 24px; border-bottom: 0.5px solid var(--border);
  }
  .price-features { list-style: none; margin-bottom: 28px; flex: 1; }
  .price-features li { font-size: 14px; color: var(--text-body); padding: 7px 0 7px 22px; position: relative; line-height: 1.5; }
  .price-features li::before { content: ''; position: absolute; left: 0; top: 14px; width: 10px; height: 2px; background: var(--brand); }

  /* Process */
  .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .process-num { font-family: var(--font-mono); font-size: 11px; color: var(--brand); letter-spacing: 2px; margin-bottom: 14px; }
  .process-step h4 { font-size: 19px; font-weight: 500; margin-bottom: 10px; color: var(--text-on-dark); letter-spacing: -0.01em; }
  .process-step p { font-size: 14px; color: var(--text-on-dark-muted); line-height: 1.6; }

  /* FAQ */
  .faq-list { max-width: 820px; margin: 0 auto; }
  .faq-item { border-bottom: 0.5px solid var(--border); }
  .faq-item:first-child { border-top: 0.5px solid var(--border); }
  .faq-question {
    width: 100%; background: none; border: none;
    padding: 24px 0; text-align: left;
    font-family: var(--font-display); font-size: 19px; font-weight: 500;
    color: var(--text-heading); cursor: pointer;
    display: flex; justify-content: space-between;
    align-items: center; gap: 20px; letter-spacing: -0.01em;
    transition: color 0.2s ease;
  }
  .faq-question:hover { color: var(--brand); }
  .faq-toggle {
    width: 28px; height: 28px; border: 0.5px solid var(--border-strong);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: transform 0.3s ease, background 0.2s ease;
    position: relative;
  }
  .faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--brand); border-color: var(--brand); }
  .faq-item.open .faq-toggle::before, .faq-item.open .faq-toggle::after { background: #ffffff; }
  .faq-toggle::before, .faq-toggle::after { content: ''; position: absolute; background: var(--text-heading); transition: background 0.2s ease; }
  .faq-toggle::before { width: 12px; height: 1.5px; }
  .faq-toggle::after { width: 1.5px; height: 12px; }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
  .faq-item.open .faq-answer { max-height: 400px; padding-bottom: 24px; }
  .faq-answer p { font-size: 15px; color: var(--text-body); line-height: 1.7; max-width: 700px; }

  /* CTA */
  .cta-banner {
    background: var(--bg-dark); border-radius: var(--radius-xl);
    padding: clamp(48px, 7vw, 88px) clamp(32px, 6vw, 72px);
    text-align: center; position: relative; overflow: hidden;
  }
  .cta-banner::before { content: ''; position: absolute; top: -80px; right: -80px; width: 280px; height: 280px; border: 0.5px solid rgba(255, 184, 146, 0.2); border-radius: 50%; pointer-events: none; }
  .cta-banner::after { content: ''; position: absolute; bottom: -120px; left: -60px; width: 320px; height: 320px; border: 0.5px solid rgba(255, 184, 146, 0.15); border-radius: 50%; pointer-events: none; }
  .cta-banner .eyebrow { color: var(--brand-soft); position: relative; z-index: 1; }
  .cta-banner h2 { color: var(--text-on-dark); font-size: clamp(32px, 5vw, 52px); max-width: 720px; margin: 0 auto 20px; letter-spacing: -0.03em; position: relative; z-index: 1; }
  .cta-banner h2 em { font-style: italic; color: var(--brand-mid); font-weight: 400; }
  .cta-banner p { color: var(--text-on-dark-muted); font-size: 17px; max-width: 560px; margin: 0 auto 36px; line-height: 1.6; position: relative; z-index: 1; }
  .cta-banner .btn { position: relative; z-index: 1; }
  .cta-banner .btn-primary { background: var(--brand); color: #ffffff; }
  .cta-banner .btn-primary:hover { background: var(--brand-mid); color: #ffffff; }

  /* Footer */
  footer { background: var(--bg-surface); padding: 64px 0 32px; border-top: 0.5px solid var(--border); }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 0.5px solid var(--border); }
  .footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-top: 16px; max-width: 280px; }
  .footer-col h5 { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a { font-size: 14px; color: var(--text-body); }
  .footer-col a:hover { color: var(--brand); }
  .footer-countries { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
  .footer-countries .flag { width: 22px; height: 16px; border-radius: 2px; overflow: hidden; border: 0.5px solid rgba(0,0,0,0.08); }
  .footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; color: var(--text-muted); }

  /* Offices section */
  .office-wrap {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .office-card {
    background: var(--bg-card);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
  }
  .office-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 140px; height: 140px;
    background: var(--brand-tint);
    border-radius: 50%;
    transform: translate(40px, -40px);
    opacity: 0.6;
    pointer-events: none;
  }
  .office-type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 18px;
    position: relative; z-index: 1;
  }
  .office-type.partner { color: var(--amber); }
  .office-type-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: currentColor;
  }
  .office-country-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    position: relative; z-index: 1;
  }
  .office-country-line .flag {
    width: 32px; height: 22px;
    border-radius: 3px; overflow: hidden;
    border: 0.5px solid rgba(0,0,0,0.08);
    flex-shrink: 0;
  }
  .office-country-line h3 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin: 0;
  }
  .office-entity {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
    letter-spacing: 0.3px;
    position: relative; z-index: 1;
  }
  .office-uen {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-hint);
    margin-bottom: 24px;
    position: relative; z-index: 1;
  }
  .office-details {
    position: relative; z-index: 1;
  }
  .office-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 0.5px solid var(--border);
    align-items: start;
  }
  .office-row:last-child { border-bottom: none; }
  .office-row-label {
    font-size: 11px;
    color: var(--text-hint);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    padding-top: 2px;
  }
  .office-row-value {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.55;
  }
  .office-row-value a { color: var(--brand); font-weight: 500; }
  .office-row-value a:hover { color: var(--brand-dark); }
  .office-partner-note {
    background: var(--amber-tint);
    border: 0.5px solid rgba(186, 117, 23, 0.2);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    margin-top: 20px;
    font-size: 13px;
    color: #633806;
    line-height: 1.55;
    position: relative; z-index: 1;
  }
  .office-partner-note strong { font-weight: 500; color: #412402; }

  .offices-aside h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
  }
  .offices-aside p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 24px;
  }
  .office-list-mini {
    list-style: none;
    border-top: 0.5px solid var(--border);
  }
  .office-list-mini li {
    padding: 14px 0;
    border-bottom: 0.5px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: padding 0.2s ease;
  }
  .office-list-mini li:hover { padding-left: 8px; }
  .office-list-mini li.active { padding-left: 8px; }
  .office-list-mini li.active .office-mini-name { color: var(--brand-dark); font-weight: 500; }
  .office-list-mini .flag {
    width: 22px; height: 16px; border-radius: 2px; overflow: hidden;
    border: 0.5px solid rgba(0,0,0,0.08); flex-shrink: 0;
  }
  .office-mini-name {
    font-size: 14px; color: var(--text-body);
    flex: 1;
    transition: color 0.2s ease;
  }
  .office-mini-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-hint);
  }
  .office-mini-tag.hq { color: var(--brand); }
  .office-mini-tag.local { color: var(--brand); }
  .office-mini-tag.partner { color: var(--amber); }

  /* Footer offices grid */
  .footer-offices {
    padding-top: 40px;
    border-top: 0.5px solid var(--border);
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .footer-office {
    font-size: 12px;
    line-height: 1.55;
  }
  .footer-office-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  .footer-office-head .flag {
    width: 18px; height: 13px; border-radius: 2px; overflow: hidden;
    border: 0.5px solid rgba(0,0,0,0.08);
  }
  .footer-office-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-heading);
  }
  .footer-office-type {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--brand);
    margin-left: auto;
  }
  .footer-office-type.partner { color: var(--amber); }
  .footer-office-body {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
  }
  .footer-office-body a { color: var(--text-body); }

  .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .country-content { transition: opacity 0.25s ease; }
  .country-content.fading { opacity: 0; }

  /* Responsive */
  @media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { max-width: 480px; }
    .service-tracks { grid-template-columns: 1fr; }
    .agents-grid { grid-template-columns: 1fr; }
    .agents-intro { grid-template-columns: 1fr; gap: 24px; align-items: start; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .price-card.featured { order: -1; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .jurisdiction-card { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .jur-item { padding: 0; border-right: none; border-bottom: 0.5px solid var(--border); padding-bottom: 20px; }
    .jur-item:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
    .calc-wrapper { grid-template-columns: 1fr; }
    .calc-summary { position: static; }
    .office-wrap { grid-template-columns: 1fr; gap: 32px; }
    .footer-offices { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  }
  @media (max-width: 720px) {
    .nav-links { display: none; }
    .nav-links.open {
      display: flex; flex-direction: column;
      position: absolute; top: 100%; left: 0; right: 0;
      background: var(--bg-page); border-bottom: 0.5px solid var(--border);
      padding: 24px var(--gutter); gap: 20px; align-items: flex-start;
    }
    .mobile-toggle { display: block; }
    .country-name-short { display: none; }
    .country-trigger { padding: 6px 10px 6px 6px; }
    .hero-trust { flex-direction: column; gap: 16px; }
    .compare-row { grid-template-columns: 1fr; }
    .compare-cell { padding: 12px 20px; border-bottom: 0.5px solid var(--border); }
    .compare-cell:last-child { border-bottom: none; }
    .compare-row.header { display: none; }
    .compare-cell.trad::before { content: 'Traditional firm — '; color: var(--text-hint); font-weight: 400; }
    .compare-cell.us::before { content: 'Agentic CFO — '; color: var(--brand); font-weight: 500; }
    .process-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .jurisdiction-card { grid-template-columns: 1fr; padding: 24px; }
    .jur-item:nth-last-child(2) { border-bottom: 0.5px solid var(--border); padding-bottom: 20px; }
    .agents-footer { flex-direction: column; align-items: flex-start; }
    .country-bar-inner { gap: 16px; }
    .calc-category-header { padding: 16px 18px; }
    .calc-items-inner { padding: 0 18px 16px; }
    .calc-item { grid-template-columns: 24px 1fr; }
    .calc-item-price { grid-column: 2; text-align: left; }
    .calc-radio-group { padding-left: 0; }
    .office-card { padding: 28px 24px; }
    .office-country-line h3 { font-size: 24px; }
    .office-row { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
    .footer-offices { grid-template-columns: 1fr; }
  }

  ::selection { background: var(--brand-tint); color: var(--brand-dark); }
  /* Footer WhatsApp Button */
  .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #ffffff !important;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
  }
  .btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
  }
  .btn-whatsapp svg {
    flex-shrink: 0;
  }
  
  @media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-col h5 { margin-top: 20px; }
  }
