/* ══════════════════════════════════════
     RESET & VARIABLES
  ══════════════════════════════════════ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy: #1E3A5F;
    --navy-dark: #0f2037;
    --navy-mid: #152d4a;
    --blue: #2563EB;
    --blue-light: #EFF6FF;
    --gold: #D4AF37;
    --gold-light: rgba(212,175,55,0.12);
    --gray-dark: #374151;
    --gray-mid: #6B7280;
    --gray-light: #E2E8F0;
    --gray-bg: #F4F6F9;
    --white: #ffffff;
    --red: #E24B4A;
    --green: #10B981;
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(30,58,95,0.10);
    --shadow-lg: 0 12px 48px rgba(30,58,95,0.18);
    --transition: 0.25s ease;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--gray-bg);
    color: var(--navy);
    font-size: 14px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ══════════════════════════════════════
     PAGE SYSTEM
  ══════════════════════════════════════ */
  .page { display: none; }
  .page.active { display: block; }

  /* ══════════════════════════════════════
     NAVBAR
  ══════════════════════════════════════ */
  .navbar {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  }
  .nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .nav-logo {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 18px;
    color: var(--white);
    letter-spacing: 0.5px;
    cursor: pointer;
    white-space: nowrap;
  }
  .nav-logo img {
    display: block;
    width: 132px;
    height: auto;
    max-height: 34px;
    object-fit: contain;
  }
  .nav-logo span { color: var(--gold); }
  .nav-logo small {
    display: block;
    font-size: 8px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    margin-top: -2px;
  }
  .nav-links {
    display: flex;
    gap: 6px;
    align-items: center;
  }
  .nav-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 400;
    transition: var(--transition);
    cursor: pointer;
  }
  .nav-links a:hover, .nav-links a.active {
    color: var(--white);
    background: rgba(255,255,255,0.08);
  }

  /* ── Navbar dropdowns ── */
  .nav-dropdown { position: relative; }
  .nav-dd-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
  }
  .nav-dd-caret { transition: transform 0.2s ease; opacity: 0.7; }
  .nav-dropdown.open .nav-dd-caret { transform: rotate(180deg); }
  .nav-dd-toggle.group-active {
    color: var(--white);
    background: rgba(255,255,255,0.08);
  }
  .nav-dd-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 250px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1001;
  }
  .nav-dropdown.open .nav-dd-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  /* little pointer bridge so hover gap doesn't close it */
  .nav-dd-menu::before {
    content: '';
    position: absolute;
    top: -12px; left: 0; right: 0;
    height: 12px;
  }
  .nav-dd-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: var(--gray-dark) !important;
    background: transparent !important;
    transition: var(--transition);
  }
  .nav-dd-menu a:hover {
    background: var(--gray-bg) !important;
    color: var(--navy) !important;
  }
  .nav-dd-menu a.active {
    background: var(--blue-light) !important;
    color: var(--navy) !important;
  }
  .nav-dd-menu .dd-ic {
    width: 30px; height: 30px;
    flex-shrink: 0;
    padding: 7px;
    border-radius: 7px;
    background: var(--gold-light);
    fill: var(--gold);
    box-sizing: border-box;
  }
  .nav-dd-menu a span { display: flex; flex-direction: column; line-height: 1.3; }
  .nav-dd-menu a b { font-size: 12.5px; font-weight: 600; color: var(--navy); }
  .nav-dd-menu a small { font-size: 10.5px; color: var(--gray-mid); font-weight: 400; }
  .btn-nav {
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 11px;
    padding: 8px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
  }
  .btn-nav:hover { background: #c9a430; }

  /* Mobile nav toggle */
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
  }
  .language-switch { display: inline-flex; align-items: center; gap: 2px; margin-left: 4px; padding: 4px; border: 1px solid rgba(255,255,255,.2); border-radius: 7px; background: rgba(255,255,255,.06); }
  .language-switch button { padding: 4px 6px; border: 0; border-radius: 4px; background: transparent; color: rgba(255,255,255,.65); font-family: var(--font-body); font-size: 10px; font-weight: 700; cursor: pointer; }
  .language-switch button.active { background: var(--gold); color: var(--navy); }

  /* ══════════════════════════════════════
     BUTTONS
  ══════════════════════════════════════ */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
  }
  .btn-primary:hover { background: #c9a430; transform: translateY(-1px); box-shadow: var(--shadow); }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.35);
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
  }
  .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

  .btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    color: var(--navy);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--navy);
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
  }
  .btn-outline-dark:hover { background: var(--navy); color: white; }

  /* ══════════════════════════════════════
     SECTION COMMONS
  ══════════════════════════════════════ */
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .section { padding: 72px 0; }
  .section-white { background: var(--white); }
  .section-gray { background: var(--gray-bg); }
  .section-navy { background: var(--navy); }

  .section-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
  }
  .section-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 28px;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .section-title.light { color: var(--white); }
  .section-sub {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 40px;
  }
  .section-sub.light { color: rgba(255,255,255,0.7); }
  .section-center { text-align: center; }
  .section-center .section-sub { margin-left: auto; margin-right: auto; }

  /* ══════════════════════════════════════
     CARDS
  ══════════════════════════════════════ */
  .card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
  }
  .card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

  /* ══════════════════════════════════════
     GRID UTILITIES
  ══════════════════════════════════════ */
  .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
  .grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; }

  /* ══════════════════════════════════════
     BADGE
  ══════════════════════════════════════ */
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
  }
  .badge-gold {
    background: var(--gold-light);
    border: 1px solid rgba(212,175,55,0.3);
    color: var(--gold);
  }
  .badge-blue {
    background: var(--blue-light);
    color: var(--blue);
  }
  .badge-green {
    background: #ECFDF5;
    color: var(--green);
  }
  .badge-red {
    background: #FEF2F2;
    color: var(--red);
  }

  /* ══════════════════════════════════════
     PAGE: HOME
  ══════════════════════════════════════ */

  /* Hero */
  .hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-dark) 100%);
    padding: 80px 0 64px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 360px; height: 360px;
    border-radius: 50%;
    border: 60px solid rgba(212,175,55,0.06);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -80px; right: 120px;
    width: 220px; height: 220px;
    border-radius: 50%;
    border: 40px solid rgba(37,99,235,0.08);
    pointer-events: none;
  }
  .hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
  }
  .hero-badge { margin-bottom: 18px; }
  .hero-headline {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 40px;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
  }
  .hero-headline span { color: var(--gold); }
  .hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 460px;
  }
  .hero-ctas {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
  }

  /* ── Centered hero variant ── */
  .hero-center { padding: 88px 0 72px; }
  .hero-center-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .hero-center .hero-headline {
    font-size: 46px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-center .hero-sub {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }
  .hero-center .hero-ctas {
    justify-content: center;
    margin-bottom: 36px;
  }
  .hero-center .hero-mini-trust { justify-content: center; }
  .hero-stats {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
  }
  .stat-item {
    padding: 0 28px 0 0;
    margin-right: 28px;
    border-right: 1px solid rgba(255,255,255,0.15);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 26px;
    color: var(--gold);
    line-height: 1;
  }
  .stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    margin-top: 3px;
  }

  /* Hero card */
  .hero-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 28px;
    backdrop-filter: blur(10px);
  }
  .hero-card-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    color: var(--white);
    margin-bottom: 20px;
  }
  .hero-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 12px;
  }
  .hero-card-row:last-child { border-bottom: none; }
  .hero-card-label { color: rgba(255,255,255,0.55); }
  .hero-card-value { color: var(--white); font-weight: 500; }
  .hero-card-gold { color: var(--gold); font-weight: 600; }
  .hero-card-green { color: #34D399; font-weight: 600; }

  /* ── Hero mini trust ── */
  .hero-mini-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 8px;
  }
  .hmt-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
  }
  .hmt-item .fa-svg { width: 1em; height: 1em; fill: var(--gold); flex-shrink: 0; }

  /* ── Hero Visual (import journey) ── */
  .hero-visual {
    position: relative;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 32px 28px 28px;
    backdrop-filter: blur(10px);
  }
  .hv-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
  }
  .hv-node { text-align: center; flex-shrink: 0; }
  .hv-node-icon {
    width: 68px; height: 68px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    position: relative;
  }
  .hv-node-icon .fa-svg { width: 30px; height: 30px; }
  .hv-china { background: linear-gradient(135deg, #D4AF37, #b8941f); }
  .hv-china .fa-svg { fill: var(--navy); }
  .hv-indo { background: linear-gradient(135deg, #2563EB, #1d4ed8); }
  .hv-indo .fa-svg { fill: #fff; }
  .hv-node-label {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
  }
  .hv-node-label small {
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
  }
  .hv-connector {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    height: 68px;
  }
  .hv-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(212,175,55,0.4);
    animation: hvpulse 1.6s infinite ease-in-out;
  }
  .hv-dot:nth-child(2) { animation-delay: 0.2s; }
  .hv-dot:nth-child(3) { animation-delay: 0.4s; }
  @keyframes hvpulse {
    0%,100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.4); }
  }
  .hv-ship {
    position: absolute;
    width: 26px; height: 26px;
    fill: var(--gold);
    animation: hvsail 3.5s infinite ease-in-out;
  }
  @keyframes hvsail {
    0% { left: 8%; opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { left: 78%; opacity: 0; }
  }
  .hv-chips { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
  .hv-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 11px 14px;
    transition: var(--transition);
  }
  .hv-chip:hover { background: rgba(255,255,255,0.1); transform: translateX(3px); }
  .hv-chip-ic {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .hv-chip-ic .fa-svg { width: 17px; height: 17px; }
  .ic-gold { background: rgba(212,175,55,0.15); }
  .ic-gold .fa-svg { fill: var(--gold); }
  .ic-green { background: rgba(16,185,129,0.15); }
  .ic-green .fa-svg { fill: #34D399; }
  .ic-blue { background: rgba(37,99,235,0.18); }
  .ic-blue .fa-svg { fill: #60A5FA; }
  .hv-chip b { font-size: 12.5px; font-weight: 600; color: #fff; display: block; line-height: 1.3; }
  .hv-chip small { font-size: 10.5px; color: rgba(255,255,255,0.5); }
  .hv-savings {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(212,175,55,0.08));
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 12px;
    padding: 14px 18px;
  }
  .hv-savings-ic {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .hv-savings-ic .fa-svg { width: 18px; height: 18px; fill: var(--navy); }
  .hv-savings-num {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 18px;
    color: var(--gold);
    line-height: 1;
  }
  .hv-savings-label { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 3px; }

  /* ── Stats Band ── */
  .stats-band {
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    padding: 28px 0;
  }
  .stats-band-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .sb-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    justify-content: center;
  }
  .sb-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .sb-icon .fa-svg { width: 20px; height: 20px; fill: var(--gold); }
  .sb-num {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 26px;
    color: var(--navy);
    line-height: 1;
  }
  .sb-label { font-size: 11px; color: var(--gray-mid); margin-top: 3px; }
  .sb-divider { width: 1px; height: 44px; background: var(--gray-light); flex-shrink: 0; }

  /* ── Home Calculator ── */
  .home-calc-wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-light);
  }
  .home-calc-inputs { background: var(--white); padding: 32px; }
  .hci-field { margin-bottom: 18px; }
  .hci-field label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 7px;
  }
  .hci-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
  }
  .hci-ic {
    position: absolute;
    left: 14px;
    width: 15px; height: 15px;
    fill: var(--gray-mid);
    pointer-events: none;
  }
  .hci-input-wrap input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--navy);
    outline: none;
    transition: var(--transition);
  }
  .hci-input-wrap input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.08); }
  .hci-ship-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .hci-ship-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 8px;
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    transition: var(--transition);
    flex-wrap: wrap;
  }
  .hci-ship-btn .fa-svg { width: 14px; height: 14px; fill: currentColor; }
  .hci-ship-btn small { font-size: 9px; font-weight: 400; color: var(--gray-mid); width: 100%; text-align: center; }
  .hci-ship-btn.active { border-color: var(--navy); background: var(--blue-light); }
  .hci-ship-btn.active small { color: var(--blue); }
  .hci-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
    color: var(--gray-mid);
    line-height: 1.5;
    background: var(--gray-bg);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
  }
  .hci-note .fa-svg { width: 13px; height: 13px; fill: var(--gold); flex-shrink: 0; margin-top: 1px; }

  .home-calc-result {
    background: var(--navy);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .home-calc-result::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    border: 30px solid rgba(212,175,55,0.06);
  }
  .hcr-empty { text-align: center; padding: 30px 10px; position: relative; }
  .hcr-empty .fa-svg { width: 48px; height: 48px; fill: rgba(255,255,255,0.12); margin-bottom: 14px; }
  .hcr-empty p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; }
  .hcr-total-label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; position: relative; }
  .hcr-total {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 34px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
    position: relative;
  }
  .hcr-perpcs { font-size: 12px; color: rgba(255,255,255,0.55); margin-bottom: 20px; position: relative; }
  .hcr-breakdown { margin-bottom: 20px; position: relative; }
  .hcr-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 12.5px;
  }
  .hcr-row:last-child { border-bottom: none; }
  .hcr-row span:first-child { color: rgba(255,255,255,0.6); }
  .hcr-row span:last-child { color: #fff; font-weight: 600; }
  .hcr-btn { width: 100%; justify-content: center; margin-bottom: 10px; position: relative; }
  .hcr-btn-ghost {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-sm);
    background: transparent;
    color: #fff;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
  }
  .hcr-btn-ghost:hover { background: rgba(255,255,255,0.08); }

  /* ── Horizontal Steps ── */
  .hsteps {
    display: flex;
    align-items: stretch;
    gap: 0;
    justify-content: center;
  }
  .hstep {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 24px 20px;
    transition: var(--transition);
    position: relative;
  }
  .hstep:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: rgba(212,175,55,0.4);
  }
  .hstep-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
  }
  .hstep-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  .hstep-icon .fa-svg { width: 22px; height: 22px; fill: var(--gold); }
  .hstep:hover .hstep-icon { background: var(--gold); }
  .hstep:hover .hstep-icon .fa-svg { fill: var(--navy); }
  .hstep-num {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 32px;
    color: var(--gray-light);
    line-height: 1;
    transition: var(--transition);
  }
  .hstep:hover .hstep-num { color: var(--gold); }
  .hstep-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .hstep-desc {
    font-size: 12px;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 14px;
  }
  .hstep-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    color: var(--blue);
    background: var(--blue-light);
    padding: 4px 12px;
    border-radius: 20px;
  }
  .hstep-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    flex-shrink: 0;
  }
  .hstep-arrow .fa-svg { width: 18px; height: 18px; fill: var(--gold); opacity: 0.5; }

  /* Trust strip */
  .trust-strip {
    background: var(--white);
    border-top: 1px solid var(--gray-light);
    border-bottom: 3px solid var(--gold);
    padding: 18px 0;
  }
  .trust-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
  }
  .trust-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-mid);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
  }
  .trust-items {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: var(--navy);
    font-weight: 500;
  }
  .trust-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }

  /* Pain cards */
  .pain-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-left: 4px solid var(--red);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
  }
  .pain-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
  .pain-icon { font-size: 26px; color: var(--red); margin-bottom: 10px; }
  .pain-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .pain-desc { font-size: 12px; color: var(--gray-dark); line-height: 1.7; }

  /* Value cards */
  .value-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition);
  }
  .value-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
  .value-icon-wrap {
    min-width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--navy);
  }
  .value-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .value-desc { font-size: 12px; color: var(--gray-dark); line-height: 1.6; }

  /* Dual value proposition */
  .dual-value {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .dv-col {
    border-radius: var(--radius);
    padding: 30px;
    overflow: hidden;
  }
  .dv-growth {
    background: var(--white);
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow);
  }
  .dv-trust {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
    box-shadow: var(--shadow-lg);
  }
  .dv-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 20px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--gray-light);
  }
  .dv-trust .dv-head { border-color: rgba(255,255,255,0.14); }
  .dv-head-ic {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
  }
  .dv-head-ic .fa-svg { width: 22px; height: 22px; }
  .ic-shield { background: rgba(52,211,153,0.16); }
  .ic-shield .fa-svg { fill: #34D399; }
  .dv-head-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1.25px;
    text-transform: uppercase;
    line-height: 1.3;
  }
  .dv-head-title {
    margin-top: 3px;
    color: var(--navy);
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
  }
  .dv-list { display: flex; flex-direction: column; }
  .dv-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-light);
  }
  .dv-item:last-child { border-bottom: 0; padding-bottom: 0; }
  .dv-item .dv-check {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    padding: 3px;
    border-radius: 50%;
    background: var(--gold-light);
    fill: var(--gold);
    flex: 0 0 16px;
  }
  .dv-item b {
    display: block;
    color: var(--navy);
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.45;
  }
  .dv-item small {
    display: block;
    margin-top: 3px;
    color: var(--gray-mid);
    font-size: 11px;
    line-height: 1.6;
  }
  .dv-item.dark { border-color: rgba(255,255,255,0.12); }
  .dv-item.dark .dv-check { background: rgba(52,211,153,0.16); fill: #34D399; }
  .dv-item.dark b { color: var(--white); }
  .dv-item.dark small { color: rgba(255,255,255,0.62); }

  /* Guarantee cards */
  .rr-card {
    position: relative;
    height: 100%;
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    box-shadow: 0 2px 14px rgba(30,58,95,0.06);
  }
  .rr-ic {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
    background: var(--gold-light);
  }
  .rr-ic .fa-svg { width: 21px; height: 21px; fill: var(--gold); }
  .rr-q { font-family: var(--font-head); font-size: 14px; font-weight: 800; color: var(--navy); line-height: 1.45; margin-bottom: 9px; }
  .rr-a { font-size: 12px; line-height: 1.75; color: var(--gray-dark); }
  .rr-a b { color: var(--navy); }
  .rr-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 26px;
    padding: 22px 26px;
    border-radius: var(--radius);
    background: var(--navy);
    color: var(--white);
  }

  /* Product catalogue */
  .filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 13px;
    border: 1px solid var(--gray-light);
    border-radius: 999px;
    background: var(--white);
    color: var(--gray-dark);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
  }
  .filter-btn:hover, .filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
  .prod-card {
    min-width: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  }
  .prod-card:hover { transform: translateY(-4px); border-color: rgba(37,99,235,0.35); box-shadow: var(--shadow-lg); }
  .prod-img {
    position: relative;
    min-height: 142px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .prod-img::after { content: ''; position: absolute; inset: auto -22px -40px auto; width: 110px; height: 110px; border: 22px solid rgba(255,255,255,0.10); border-radius: 50%; }
  .prod-img > .fa-svg { position: relative; z-index: 1; width: 48px; height: 48px; fill: rgba(255,255,255,0.9); }
  .prod-img-badge { position: absolute; z-index: 2; top: 12px; left: 12px; }
  .prod-body { padding: 16px; }
  .prod-cat { display: flex; align-items: center; gap: 5px; color: var(--blue); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .55px; }
  .prod-cat .fa-svg, .prod-moq .fa-svg { width: 12px; height: 12px; fill: currentColor; }
  .prod-name { min-height: 41px; margin: 7px 0 8px; color: var(--navy); font-family: var(--font-head); font-size: 13px; font-weight: 700; line-height: 1.55; }
  .prod-moq { display: flex; align-items: center; gap: 5px; color: var(--gray-mid); font-size: 10.5px; }
  .prod-price-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 7px; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--gray-light); }
  .prod-price { color: var(--navy); font-family: var(--font-head); font-size: 12px; font-weight: 800; line-height: 1.25; }
  .prod-price span { color: var(--gray-mid); font-family: var(--font-body); font-size: 9px; font-weight: 400; }
  .prod-saving { flex: 0 0 auto; padding: 3px 6px; border-radius: 4px; background: #ECFDF5; color: #059669; font-size: 9px; font-weight: 600; }
  body.modal-open { overflow: hidden; }
  .product-modal { position: fixed; z-index: 3000; inset: 0; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(15,32,55,.7); }
  .product-modal.open { display: flex; }
  .product-modal-panel { position: relative; width: min(100%,680px); overflow: hidden; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); }
  .product-modal-close { position: absolute; z-index: 2; top: 12px; right: 12px; width: 34px; height: 34px; border: 0; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--navy); font-size: 26px; line-height: 1; cursor: pointer; }
  .product-modal-visual { height: 150px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.9); }
  .product-modal-visual .fa-svg { width: 58px; height: 58px; fill: currentColor; }
  .product-modal-content { padding: 26px; }
  .product-modal-content h2 { margin: 7px 0 10px; color: var(--navy); font-family: var(--font-head); font-size: 23px; line-height: 1.35; }
  .product-modal-content > p { margin: 0 0 16px; color: var(--gray-dark); font-size: 13px; line-height: 1.75; }
  .product-modal-note { margin-bottom: 20px; padding: 12px 14px; border-radius: var(--radius-sm); background: var(--gray-bg); color: var(--gray-dark); font-size: 11px; line-height: 1.65; }
  @media (max-width: 540px) { .product-modal { align-items: flex-end; padding: 0; } .product-modal-panel { border-radius: var(--radius) var(--radius) 0 0; } .product-modal-content { padding: 22px 20px; } }

  /* QC proof gallery */
  .proof-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
  .grad-blue { background: linear-gradient(135deg, #2563EB, #1E3A5F); }
  .grad-green { background: linear-gradient(135deg, #10B981, #1E3A5F); }
  .grad-gold { background: linear-gradient(135deg, #D4AF37, #1E3A5F); }
  .grad-purple { background: linear-gradient(135deg, #7C3AED, #1E3A5F); }
  .grad-navy { background: linear-gradient(135deg, #1E3A5F, #0f2037); }
  .proof-item { overflow: hidden; background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius); box-shadow: 0 2px 12px rgba(30,58,95,0.05); }
  .proof-media { position: relative; min-height: 156px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
  .proof-media::after { content: ''; position: absolute; width: 150px; height: 150px; border: 30px solid rgba(255,255,255,0.11); border-radius: 50%; right: -50px; bottom: -65px; }
  .proof-media-ic { position: relative; z-index: 1; width: 43px; height: 43px; fill: rgba(255,255,255,0.9); }
  .proof-play { position: absolute; z-index: 2; right: 13px; bottom: 13px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--white); box-shadow: var(--shadow); }
  .proof-play .fa-svg { width: 12px; height: 12px; margin-left: 2px; fill: var(--navy); }
  .proof-cap { padding: 14px 15px 15px; }
  .proof-cap b { display: block; color: var(--navy); font-family: var(--font-head); font-size: 12px; font-weight: 700; line-height: 1.45; }
  .proof-cap small { display: block; margin-top: 3px; color: var(--gray-mid); font-size: 10.5px; line-height: 1.5; }

  /* Legal credentials */
  .legal-card { min-height: 192px; padding: 23px 20px; text-align: center; background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius); box-shadow: 0 2px 12px rgba(30,58,95,0.05); }
  .legal-ic { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; border-radius: 50%; background: var(--gold-light); }
  .legal-ic .fa-svg { width: 20px; height: 20px; fill: var(--gold); }
  .legal-label { color: var(--gray-mid); font-size: 10px; font-weight: 600; letter-spacing: .7px; text-transform: uppercase; }
  .legal-val { margin: 6px 0 5px; color: var(--navy); font-family: var(--font-head); font-size: 12px; font-weight: 800; line-height: 1.45; }
  .legal-note { color: var(--gray-mid); font-size: 10.5px; line-height: 1.5; }

  /* E-book catalogue */
  .ebook-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
  .ebook-featured { display: grid; grid-template-columns: 280px minmax(0, 1fr); overflow: hidden; margin-bottom: 32px; background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius); box-shadow: var(--shadow); }
  .ef-cover { position: relative; display: flex; align-items: center; justify-content: center; padding: 30px 24px; background: linear-gradient(145deg, var(--navy), var(--navy-dark)); }
  .ef-cover::after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 5px; background: var(--gold); }
  .ef-cover-inner { position: relative; width: 100%; padding: 26px 18px; border: 1px solid rgba(212,175,55,.27); border-radius: 10px; background: rgba(255,255,255,.035); text-align: center; }
  .ef-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 99px; background: var(--gold); color: var(--navy); font-size: 9px; font-weight: 700; white-space: nowrap; }
  .ef-badge .fa-svg { width: 9px; height: 9px; }
  .ef-cover-icon { width: 38px; height: 38px; margin: 8px 0 16px; fill: var(--gold); }
  .ef-cover-title { color: var(--white); font-family: var(--font-head); font-size: 19px; font-weight: 900; line-height: 1.22; letter-spacing: .4px; }
  .ef-cover-sub { margin-top: 14px; color: rgba(255,255,255,.55); font-size: 9px; letter-spacing: 1.2px; text-transform: uppercase; }
  .ef-body { padding: 30px 34px; }
  .ef-meta { display: inline-flex; align-items: center; gap: 6px; color: var(--gray-dark); font-size: 11px; }
  .ef-meta .fa-svg { width: 13px; height: 13px; fill: var(--blue); }
  .ebook-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
  .ebook-card { display: flex; flex-direction: column; overflow: hidden; background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius); transition: transform var(--transition), box-shadow var(--transition); }
  .ebook-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .ec-cover { position: relative; min-height: 166px; padding: 22px 20px; overflow: hidden; }
  .ec-cover::after { content: ''; position: absolute; width: 130px; height: 130px; border: 26px solid rgba(255,255,255,.12); border-radius: 50%; right: -45px; bottom: -58px; }
  .ec-icon { position: relative; z-index: 1; width: 30px; height: 30px; fill: rgba(255,255,255,.86); }
  .ec-cover-title { position: relative; z-index: 1; margin-top: 26px; color: var(--white); font-family: var(--font-head); font-size: 16px; font-weight: 800; line-height: 1.3; }
  .ec-free-tag, .ec-premium-tag { position: absolute; z-index: 2; top: 13px; right: 13px; padding: 3px 7px; border-radius: 4px; font-size: 8px; font-weight: 700; letter-spacing: .5px; }
  .ec-free-tag { background: rgba(255,255,255,.88); color: var(--blue); }
  .ec-premium-tag { display: flex; align-items: center; gap: 3px; background: var(--gold); color: var(--navy); }
  .ec-premium-tag .fa-svg { width: 8px; height: 8px; }
  .ec-body { display: flex; flex: 1; flex-direction: column; padding: 18px; }
  .ec-cat { color: var(--blue); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .45px; }
  .ec-title { margin: 7px 0; color: var(--navy); font-family: var(--font-head); font-size: 13px; font-weight: 700; line-height: 1.45; }
  .ec-desc { flex: 1; color: var(--gray-dark); font-size: 11px; line-height: 1.65; }
  .ec-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 16px; padding-top: 13px; border-top: 1px solid var(--gray-light); }
  .ebook-download-action .ec-btn { width: 100%; justify-content: center; }
  .ec-price { color: var(--navy); font-family: var(--font-head); font-size: 13px; font-weight: 800; }
  .ec-price.free { color: #059669; }
  .ec-btn { display: inline-flex; align-items: center; gap: 5px; padding: 7px 10px; border: 0; border-radius: 6px; background: var(--blue-light); color: var(--blue); font-family: var(--font-body); font-size: 10px; font-weight: 600; cursor: pointer; }
  .ec-btn.paid { background: var(--gold); color: var(--navy); }
  .ec-btn .fa-svg { width: 10px; height: 10px; }
  .ebook-bundle { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 32px; padding: 28px 32px; border-radius: var(--radius); background: linear-gradient(135deg, var(--navy), var(--navy-dark)); }
  .eb-right { min-width: 170px; }

  /* Shipping proof */
  .ship-doc { height: 100%; overflow: hidden; background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius); box-shadow: 0 2px 12px rgba(30,58,95,0.05); }
  .ship-doc-img { position: relative; min-height: 164px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
  .ship-doc-img::after { content: ''; position: absolute; width: 145px; height: 145px; border: 28px solid rgba(255,255,255,.11); border-radius: 50%; right: -40px; bottom: -70px; }
  .ship-doc-img .fa-svg { position: relative; z-index: 1; width: 46px; height: 46px; fill: rgba(255,255,255,.9); }
  .ship-doc-body { padding: 20px; }
  .ship-doc-title { margin: 2px 0 7px; color: var(--navy); font-family: var(--font-head); font-size: 14px; font-weight: 800; line-height: 1.4; }
  .ship-doc-desc { color: var(--gray-dark); font-size: 11.5px; line-height: 1.7; }

  /* Client conversations */
  .wa-chat { overflow: hidden; height: 100%; background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius); box-shadow: 0 2px 12px rgba(30,58,95,0.05); }
  .wa-chat-head { display: flex; align-items: center; gap: 10px; padding: 15px 16px; background: #0B7A4B; color: var(--white); }
  .wa-chat-avatar { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.18); color: var(--white); font-family: var(--font-head); font-size: 10px; font-weight: 700; }
  .wa-chat-name { font-size: 12px; font-weight: 600; line-height: 1.25; }
  .wa-chat-status { display: flex; align-items: center; gap: 4px; margin-top: 2px; color: rgba(255,255,255,.72); font-size: 9.5px; }
  .wa-chat-body { min-height: 220px; padding: 14px; background: #EEF4F0; }
  .wa-bubble { max-width: 88%; margin-bottom: 9px; padding: 9px 10px; border-radius: 8px; color: #374151; font-size: 11px; line-height: 1.55; box-shadow: 0 1px 2px rgba(0,0,0,.06); }
  .wa-bubble.in { margin-right: auto; border-top-left-radius: 2px; background: var(--white); }
  .wa-bubble.out { margin-left: auto; border-top-right-radius: 2px; background: #D9FDD3; }

  /* Live activity */
  .activity-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
  .activity-stats { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 8px; }
  .activity-feed { position: relative; padding: 6px 0 6px 22px; background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius); box-shadow: 0 2px 12px rgba(30,58,95,.05); }
  .activity-feed::before { content: ''; position: absolute; top: 27px; bottom: 27px; left: 33px; width: 1px; background: var(--gray-light); }
  .act-item { position: relative; z-index: 1; display: flex; gap: 13px; align-items: flex-start; padding: 14px 18px 14px 0; }
  .act-dot { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; flex: 0 0 24px; border-radius: 50%; box-shadow: 0 0 0 4px var(--white); }
  .act-dot .fa-svg { width: 11px; height: 11px; fill: var(--white); }
  .act-text { color: var(--gray-dark); font-size: 11.5px; line-height: 1.55; }
  .act-text b { color: var(--navy); font-weight: 600; }
  .act-time { margin-top: 2px; color: var(--gray-mid); font-size: 10px; }
  .activity-social { display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; border-radius: var(--radius); background: var(--gray-bg); }

  /* In-depth case study */
  .case-deep { max-width: 900px; margin: 0 auto; padding: 30px; background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius); box-shadow: var(--shadow); }
  .case-deep-head { display: flex; align-items: center; gap: 12px; padding-bottom: 22px; margin-bottom: 24px; border-bottom: 1px solid var(--gray-light); }
  .case-deep-avatar { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; flex: 0 0 46px; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: var(--font-head); font-size: 13px; font-weight: 800; }
  .case-deep-name { color: var(--navy); font-family: var(--font-head); font-size: 15px; font-weight: 700; }
  .case-deep-role { color: var(--gray-mid); font-size: 11px; }
  .case-deep-tag { margin-left: auto; }
  .case-deep-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-bottom: 24px; }
  .case-deep-block { padding: 17px; border-radius: var(--radius-sm); background: var(--gray-bg); }
  .cdb-label { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; font-family: var(--font-head); font-size: 11px; font-weight: 700; }
  .cdb-label .fa-svg { width: 14px; height: 14px; fill: currentColor; }
  .case-deep-block p { color: var(--gray-dark); font-size: 11.5px; line-height: 1.7; }
  .case-deep-metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; padding: 20px; margin-bottom: 24px; border-radius: var(--radius-sm); background: var(--navy); }
  .cdm { text-align: center; }
  .cdm-num { color: var(--gold); font-family: var(--font-head); font-size: 23px; font-weight: 900; line-height: 1; }
  .cdm-label { margin-top: 5px; color: rgba(255,255,255,.62); font-size: 10px; line-height: 1.45; }
  .case-deep-quote { padding: 24px; border-radius: var(--radius-sm); background: var(--gray-bg); text-align: center; }
  .case-deep-quote p { margin-bottom: 9px; color: var(--navy); font-size: 13px; font-style: italic; line-height: 1.7; }
  .case-deep-author { color: var(--blue); font-size: 11px; font-weight: 600; }

  /* Steps */
  .steps-wrap { position: relative; }
  .step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-light);
  }
  .step-item:last-child { border-bottom: none; }
  .step-num {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .step-body { flex: 1; }
  .step-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 3px;
  }
  .step-desc { font-size: 12px; color: var(--gray-dark); line-height: 1.6; }
  .step-tag {
    font-size: 9px;
    font-weight: 600;
    color: var(--blue);
    background: var(--blue-light);
    padding: 3px 9px;
    border-radius: 4px;
    margin-top: 6px;
    display: inline-block;
  }

  /* Testimonials */
  .testi-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 24px;
  }
  .testi-stars { font-size: 13px; color: var(--gold); margin-bottom: 10px; }
  .testi-text {
    font-size: 12px;
    color: var(--gray-dark);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .testi-author { display: flex; align-items: center; gap: 10px; }
  .testi-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .testi-name { font-size: 12px; font-weight: 600; color: var(--navy); }
  .testi-role { font-size: 10px; color: var(--gray-mid); }

  /* Product examples are discovery prompts, not public quotations. */
  .prod-price, .prod-moq, .prod-img-badge { display: none; }

  /* CTA section */
  .cta-section {
    background: var(--navy);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    top: -80px; left: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    border: 60px solid rgba(212,175,55,0.05);
  }
  .cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
  }
  .cta-title {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 34px;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
  }
  .cta-title span { color: var(--gold); }
  .cta-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  .cta-input {
    flex: 1;
    min-width: 150px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    outline: none;
    transition: var(--transition);
  }
  .cta-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.12); }
  .cta-input::placeholder { color: rgba(255,255,255,0.4); }

  /* ══════════════════════════════════════
     PAGE: SERVICES
  ══════════════════════════════════════ */
  .service-hero {
    background: var(--navy);
    padding: 64px 0;
    text-align: center;
  }
  .service-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
  }
  .service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
  .service-card-header {
    background: var(--navy);
    padding: 28px 24px 20px;
    position: relative;
  }
  .service-card-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    background: var(--gold-light);
    border: 1px solid rgba(212,175,55,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 14px;
  }
  .service-card-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 6px;
  }
  .service-card-sub { font-size: 11px; color: rgba(255,255,255,0.6); }
  .service-card-body { padding: 24px; }
  .service-feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 12px;
    color: var(--gray-dark);
  }
  .service-feature i { color: var(--green); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
  .service-price {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .service-price-label { font-size: 10px; color: var(--gray-mid); }
  .service-price-val {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
  }

  /* Pricing table */
  .pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
  }
  .pricing-table th {
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    padding: 14px 16px;
    text-align: left;
  }
  .pricing-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
  .pricing-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
  .pricing-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-light);
    color: var(--gray-dark);
  }
  .pricing-table tr:last-child td { border-bottom: none; }
  .pricing-table tr:nth-child(even) td { background: var(--gray-bg); }
  .pricing-table .price-cell {
    font-weight: 600;
    color: var(--navy);
  }

  /* ══════════════════════════════════════
     PAGE: HOW IT WORKS
  ══════════════════════════════════════ */
  .how-hero {
    background: var(--navy);
    padding: 64px 0;
    text-align: center;
  }
  .flow-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    align-items: start;
    padding: 32px 0;
    border-bottom: 1px solid var(--gray-light);
    position: relative;
  }
  .flow-step:last-child { border-bottom: none; }
  .flow-num-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .flow-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid var(--gold);
  }
  .flow-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, var(--gold), transparent);
    min-height: 40px;
  }
  .flow-body {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 24px;
  }
  .flow-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .flow-desc { font-size: 13px; color: var(--gray-dark); line-height: 1.7; margin-bottom: 14px; }
  .flow-details { display: flex; gap: 8px; flex-wrap: wrap; }
  .flow-detail-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--gray-mid);
    background: var(--gray-bg);
    padding: 4px 10px;
    border-radius: 4px;
  }

  /* FAQ */
  .faq-item {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    overflow: hidden;
  }
  .faq-q {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    color: var(--navy);
    gap: 12px;
  }
  .faq-q i { font-size: 16px; color: var(--gold); flex-shrink: 0; transition: var(--transition); }
  .faq-item.open .faq-q i { transform: rotate(180deg); }
  .faq-a {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 12px;
    color: var(--gray-dark);
    line-height: 1.7;
  }
  .faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 20px 16px;
  }

  /* ══════════════════════════════════════
     PAGE: WHY US
  ══════════════════════════════════════ */
  .why-hero { background: var(--navy); padding: 64px 0; text-align: center; }
  .compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .compare-table th {
    padding: 16px 20px;
    text-align: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
  }
  .compare-table th:first-child { text-align: left; background: var(--gray-bg); color: var(--navy); }
  .compare-table th.col-us { background: var(--navy); color: var(--gold); }
  .compare-table th.col-other { background: var(--gray-dark); color: white; }
  .compare-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-light);
    text-align: center;
    color: var(--gray-dark);
  }
  .compare-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--navy);
    background: var(--gray-bg);
  }
  .compare-table tr:last-child td { border-bottom: none; }
  .compare-table .c-yes { color: var(--green); font-size: 18px; }
  .compare-table .c-no { color: var(--red); font-size: 18px; }
  .compare-table .c-partial { color: #F59E0B; font-size: 13px; font-weight: 600; }

  .achievement-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
  }
  .achievement-card:hover { box-shadow: var(--shadow); }
  .achievement-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--gold-light);
    border: 1px solid rgba(212,175,55,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
    margin: 0 auto 14px;
  }
  .achievement-num {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .achievement-label { font-size: 12px; color: var(--gray-mid); }

  /* ══════════════════════════════════════
     PAGE: PORTFOLIO
  ══════════════════════════════════════ */
  .portfolio-hero { background: var(--navy); padding: 64px 0; text-align: center; }
  .portfolio-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .filter-btn {
    font-size: 12px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 20px;
    border: 1.5px solid var(--gray-light);
    background: var(--white);
    color: var(--gray-dark);
    cursor: pointer;
    transition: var(--transition);
  }
  .filter-btn:hover, .filter-btn.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
  }
  .portfolio-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
  }
  .portfolio-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
  .portfolio-img {
    height: 160px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
  }
  .portfolio-img-icon {
    font-size: 56px;
    color: rgba(212,175,55,0.35);
  }
  .portfolio-img-overlay {
    position: absolute;
    top: 12px; right: 12px;
  }
  .portfolio-body { padding: 20px; }
  .portfolio-cat {
    font-size: 10px;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }
  .portfolio-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .portfolio-desc { font-size: 11px; color: var(--gray-dark); line-height: 1.6; margin-bottom: 14px; }
  .portfolio-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    border-top: 1px solid var(--gray-light);
    padding-top: 12px;
  }
  .portfolio-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--gray-mid);
  }
  .portfolio-meta-item i { font-size: 13px; color: var(--gold); }

  /* Case study */
  .case-study-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: start;
  }
  .case-result {
    text-align: center;
    background: var(--navy);
    border-radius: var(--radius-sm);
    padding: 20px;
    min-width: 120px;
  }
  .case-result-num {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 28px;
    color: var(--gold);
    line-height: 1;
  }
  .case-result-label { font-size: 10px; color: rgba(255,255,255,0.6); margin-top: 4px; }

  /* ══════════════════════════════════════
     PAGE: BLOG
  ══════════════════════════════════════ */
  .blog-hero { background: var(--navy); padding: 64px 0; text-align: center; }
  .blog-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
  }
  .blog-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
  .blog-img {
    height: 140px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .blog-img-icon { font-size: 40px; color: rgba(212,175,55,0.5); }
  .blog-body { padding: 20px; }
  .blog-cat {
    font-size: 9px;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
  }
  .blog-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.4;
  }
  .blog-excerpt { font-size: 11px; color: var(--gray-dark); line-height: 1.6; margin-bottom: 14px; }
  .blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    color: var(--gray-mid);
    border-top: 1px solid var(--gray-light);
    padding-top: 10px;
  }
  .blog-meta i { font-size: 12px; }
  .blog-featured {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 32px;
  }
  .blog-featured-img {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
  }
  .blog-featured-img-icon { font-size: 72px; color: rgba(212,175,55,0.4); }
  .blog-featured-body { padding: 32px; display: flex; flex-direction: column; justify-content: center; }

  /* Article */
  .article-header { padding: 48px 0 0; background: var(--navy); }
  .article-header-inner { max-width: 820px; }
  .article-back { display: flex; align-items: center; gap: 6px; margin: 0 0 20px; padding: 0; border: 0; background: none; color: rgba(255,255,255,.6); font-family: var(--font-body); font-size: 12px; cursor: pointer; }
  .article-title { margin: 0 0 16px; color: var(--white); font-family: var(--font-head); font-size: 30px; font-weight: 900; line-height: 1.2; }
  .article-lead { margin: 0 0 24px; color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.8; }
  .article-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .article-hero { display: flex; height: 240px; align-items: center; justify-content: center; border-bottom: 3px solid var(--gold); background: var(--navy-dark); }
  .article-container { max-width: 1060px; }
  .article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 40px; align-items: start; }
  .article-content-card { min-width: 0; padding: 36px; border: 1px solid var(--gray-light); border-radius: var(--radius); background: var(--white); }
  .article-tags { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--gray-light); }
  .article-share { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 20px; padding: 16px; border-radius: var(--radius-sm); background: var(--gray-bg); }
  .article-share-actions { display: flex; flex-wrap: wrap; gap: 8px; }
  .article-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 16px; }
  #art_body h2 { margin: 30px 0 12px; color: var(--navy); font-family: var(--font-head); font-size: 21px; line-height: 1.35; }
  #art_body h3 { margin: 24px 0 10px; color: var(--navy); font-family: var(--font-head); font-size: 17px; line-height: 1.4; }
  #art_body p, #art_body ul, #art_body ol { margin-bottom: 16px; }
  #art_body li + li { margin-top: 7px; }
  #art_body table { width: 100%; margin: 20px 0; border-collapse: collapse; font-size: 12px; }
  #art_body th, #art_body td { padding: 11px 12px; border: 1px solid var(--gray-light); text-align: left; vertical-align: top; }
  #art_body th { background: var(--navy); color: var(--white); font-weight: 700; }

  /* ══════════════════════════════════════
     PAGE: FAQ
  ══════════════════════════════════════ */
  .faq-hero { background: var(--navy); padding: 64px 0; text-align: center; }
  .faq-cat-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 14px;
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .faq-cat-title i { color: var(--gold); font-size: 18px; }
  .faq-cat-title:first-child { margin-top: 0; }

  /* ══════════════════════════════════════
     PAGE: CONTACT
  ══════════════════════════════════════ */
  .contact-hero { background: var(--navy); padding: 64px 0; text-align: center; }
  .contact-form-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
  }
  .form-group { margin-bottom: 18px; }
  .form-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
  }
  .form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--navy);
    background: var(--white);
    outline: none;
    transition: var(--transition);
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
  }
  .form-textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .contact-info-card {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 28px;
  }
  .contact-info-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 20px;
  }
  .contact-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .contact-info-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    background: var(--gold-light);
    border: 1px solid rgba(212,175,55,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gold);
    flex-shrink: 0;
  }
  .contact-info-label { font-size: 10px; color: rgba(255,255,255,0.5); margin-bottom: 3px; }
  .contact-info-val { font-size: 13px; color: var(--white); font-weight: 500; }
  .contact-info-val a { color: var(--white); text-decoration: none; }
  .contact-info-val a:hover { color: var(--gold); }
  .bank-info-card { padding: 20px; border: 1px solid var(--gray-light); border-radius: var(--radius); background: var(--white); }
  .bank-info-title { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; color: var(--navy); font-family: var(--font-head); font-size: 13px; font-weight: 700; }
  .bank-info-title .fa-svg { width: 16px; height: 16px; fill: var(--gold); }
  .bank-account { padding: 11px 0; border-top: 1px solid var(--gray-light); }
  .bank-account span { display: block; color: var(--blue); font-size: 10px; font-weight: 700; letter-spacing: .7px; text-transform: uppercase; }
  .bank-account b { display: block; margin: 2px 0; color: var(--navy); font-family: var(--font-head); font-size: 15px; letter-spacing: .3px; }
  .bank-account small { display: block; color: var(--gray-mid); font-size: 10px; }

  .wa-cta-card {
    background: #25D366;
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    margin-bottom: 16px;
  }
  .wa-cta-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    color: white;
    margin-bottom: 6px;
  }
  .wa-cta-sub { font-size: 11px; color: rgba(255,255,255,0.85); margin-bottom: 14px; }
  .btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: white;
    color: #128C7E;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
  }

  /* ══════════════════════════════════════
     FOOTER
  ══════════════════════════════════════ */
  .footer {
    background: var(--navy-dark);
    padding: 48px 0 24px;
  }
  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer-logo {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 4px;
  }
  .footer-logo img {
    display: block;
    width: min(200px, 100%);
    height: auto;
  }
  .footer-logo span { color: var(--gold); }
  .footer-tagline {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .footer-desc { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 18px; }
  .footer-socials { display: flex; gap: 8px; }
  .social-btn {
    width: 34px; height: 34px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
  }
  .social-btn:hover { border-color: var(--gold); color: var(--gold); }
  .footer-col-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    color: var(--white);
    margin-bottom: 14px;
  }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 8px; }
  .footer-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
  }
  .footer-links a:hover { color: var(--gold); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
  }
  .footer-copy { font-size: 11px; color: rgba(255,255,255,0.35); }
  .footer-legal { display: flex; gap: 20px; }
  .footer-legal a {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    cursor: pointer;
  }

  /* ══════════════════════════════════════
     RESPONSIVE
  ══════════════════════════════════════ */
  @media (max-width: 768px) {
    .hero-inner, .grid-2, .grid-3, .grid-4, .grid-2-1, .grid-1-2,
    .blog-featured, .case-study-card, .footer-top, .form-row {
      grid-template-columns: 1fr !important;
    }
    .home-calc-wrap { grid-template-columns: 1fr !important; }
    /* Horizontal steps → wrap grid on mobile */
    .hsteps { flex-wrap: wrap; gap: 12px; }
    .hstep { flex: 0 0 calc(50% - 6px); }
    .hstep-arrow { display: none; }
    .hero-headline { font-size: 28px; }
    .hero-center .hero-headline { font-size: 30px; }
    .hero-center { padding: 56px 0 48px; }
    .section-title { font-size: 22px; }
    .nav-links { display: none; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 64px; left: 0; right: 0;
      background: var(--navy-dark);
      padding: 16px 24px;
      gap: 4px;
      z-index: 999;
    }
    .nav-toggle { display: flex; }
    .language-switch { margin-left: auto; }
    /* Mobile: dropdowns become inline accordions */
    .nav-dropdown { width: 100%; }
    .nav-dd-menu {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
      border: none;
      background: rgba(255,255,255,0.04);
      min-width: 0;
      margin: 4px 0 4px 12px;
      padding: 4px;
      display: none;
    }
    .nav-dropdown.open .nav-dd-menu { display: block; }
    .nav-dd-menu a { color: rgba(255,255,255,0.8) !important; }
    .nav-dd-menu a:hover, .nav-dd-menu a.active { background: rgba(255,255,255,0.08) !important; color: #fff !important; }
    .nav-dd-menu a b { color: #fff; }
    .nav-dd-menu a small { color: rgba(255,255,255,0.5); }
    .nav-dd-menu .dd-ic { background: rgba(212,175,55,0.15); }
    .footer-top { gap: 24px; }
    .container { padding: 0 20px; }
    .hero-inner { padding: 0 20px; }
    .trust-inner { gap: 16px; }
    .stat-item { padding: 0 16px 0 0; margin-right: 16px; }
    /* Stats band → 2x2 grid on mobile */
    .stats-band-inner { flex-wrap: wrap; padding: 0 20px; }
    .sb-item { flex: 0 0 calc(50% - 8px); justify-content: flex-start; }
    .sb-divider { display: none; }
    .sb-num { font-size: 22px; }
    .hero-mini-trust { gap: 14px; }
    body { font-size: 13px; }
    .section { padding: 52px 0; }
    .hero { padding: 56px 0 44px; }
    .hero-headline { font-size: 27px; line-height: 1.2; }
    .hero-sub { font-size: 13px; margin-bottom: 24px; }
    .hero-ctas { margin-bottom: 28px; }
    .hero-ctas .btn-primary, .hero-ctas .btn-outline { justify-content: center; width: 100%; }
    .hero-card, .hero-visual { padding: 20px; }
    .section-sub { margin-bottom: 28px; font-size: 13px; }
    .btn-primary, .btn-outline, .btn-outline-dark { min-height: 44px; padding: 10px 16px; }
    .nav-inner { height: 60px; padding: 0 20px; gap: 12px; }
    .nav-logo img { max-height: 34px; }
    .nav-links.open { top: 60px; max-height: calc(100vh - 60px); overflow-y: auto; }
    .nav-links.open > a, .nav-links.open .nav-dd-toggle { width: 100%; padding: 10px 12px; }
    .trust-inner, .footer-bottom { align-items: flex-start; }
    .trust-items { gap: 10px 16px; }
    .hcr-actions { flex-direction: column; }
    .hcr-actions > * { width: 100%; justify-content: center; }
    .contact-form-card { padding: 22px 18px; }
    .contact-info-card { padding: 22px 18px; }
    .contact-info-val { overflow-wrap: anywhere; }
    .bank-account b { font-size: 14px; }
    .footer-inner { padding: 36px 20px 20px; }
    .footer-legal { flex-wrap: wrap; gap: 8px 16px; }
    .pricing-table { min-width: 650px; }
    div[style*="grid-template-columns:1fr 1fr"], div[style*="grid-template-columns:2fr 1fr"], div[style*="grid-template-columns:1fr 2fr"] { grid-template-columns: 1fr !important; }
    div[style*="padding:32px"] { padding: 24px 20px !important; }
    .dual-value, .ebook-featured { grid-template-columns: 1fr; }
    .dv-col { padding: 24px 20px; }
    .proof-gallery { grid-template-columns: 1fr 1fr; gap: 12px; }
    .proof-media { min-height: 126px; }
    .ship-doc-img { min-height: 145px; }
    .activity-layout, .case-deep-grid { grid-template-columns: 1fr; gap: 20px; }
    .activity-feed { padding-left: 18px; }
    .activity-feed::before { left: 29px; }
    .activity-social { align-items: flex-start; padding: 14px 16px; }
    .case-deep { padding: 22px 18px; }
    .case-deep-head { flex-wrap: wrap; }
    .case-deep-tag { margin-left: 0; }
    .case-deep-metrics { grid-template-columns: 1fr 1fr; }
    .legal-card { min-height: 0; }
    .ebook-featured { display: grid; }
    .ef-cover { min-height: 250px; }
    .ef-body { padding: 24px 20px; }
    .ebook-grid { grid-template-columns: 1fr; }
    .ebook-bundle { flex-direction: column; align-items: stretch; padding: 24px 20px; }
    .eb-right { min-width: 0; }
    .eb-right > div { text-align: left !important; }
    .rr-banner { flex-direction: column; align-items: flex-start; }
    .article-header { padding-top: 32px; }
    .article-title { font-size: 26px; line-height: 1.24; }
    .article-lead { font-size: 13px; line-height: 1.75; }
    .article-meta { align-items: flex-start; gap: 12px 16px; padding-bottom: 22px; }
    .article-hero { height: 160px; }
    .article-hero #art_img_icon { font-size: 54px !important; }
    .article-section { padding-top: 32px; }
    .article-layout { grid-template-columns: 1fr; gap: 20px; }
    .article-content-card { padding: 24px 18px; }
    #art_body { font-size: 13px !important; line-height: 1.8 !important; }
    #art_body h2 { margin-top: 26px; font-size: 19px; }
    #art_body h3 { font-size: 16px; }
    #art_body table { display: block; overflow-x: auto; white-space: nowrap; font-size: 11px; }
    #art_body th, #art_body td { padding: 9px 10px; }
    .article-tags { margin-top: 26px; padding-top: 18px; }
    .article-share { align-items: stretch; padding: 14px; }
    .article-share-actions { width: 100%; }
    .article-share-actions button { flex: 1 1 132px; justify-content: center; min-height: 40px; }
    .article-sidebar { position: static; gap: 14px; }
  }

  /* ══════════════════════════════════════
     ANIMATIONS
  ══════════════════════════════════════ */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .page.active .hero-headline,
  .page.active .hero-sub {
    animation: fadeInUp 0.6s ease both;
  }
  .page.active .hero-sub { animation-delay: 0.1s; }
  .page.active .hero-ctas { animation: fadeInUp 0.6s ease 0.2s both; }

  /* Divider gold */
  .gold-divider {
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 0;
  }

  /* Highlight box */
  .highlight-box {
    background: var(--gold-light);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
  }
  .highlight-box-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .highlight-box-text { font-size: 12px; color: var(--gray-dark); line-height: 1.6; }

  /* Notification toast (form submit) */
  .toast {
    position: fixed;
    bottom: 24px; right: 24px;
    background: var(--navy);
    color: white;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--gold);
    display: none;
    z-index: 9999;
    animation: fadeInUp 0.4s ease;
  }
  .toast.show { display: block; }
