  /* ══════════════════════════════════════
       RESET & BASE
    ══════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      color: #1a1a1a;
      background: #fff;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ══════════════════════════════════════
       VARIABLES
    ══════════════════════════════════════ */
    :root {
      --red:        #8B1A1A;
      --red-mid:    #A52020;
      --red-light:  #f5eaea;
      --red-dark:   #4a0a0a;
      --gold:       #C89A3A;
      --gold-light: #fdf6e3;
      --teal:       #1D9E75;
      --dark:       #1a1a1a;
      --mid:        #5a5a5a;
      --light:      #F5F3EE;
      --white:      #fff;
      --border:     rgba(0,0,0,0.09);
      --r-sm: 6px; --r-md: 10px; --r-lg: 14px;
      --ease-out: cubic-bezier(0.16,1,0.3,1);
      --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
    }

    /* ══════════════════════════════════════
       SCROLL REVEAL — base states
    ══════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    .reveal-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }

    .reveal-right {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }
    .reveal-right.visible { opacity: 1; transform: translateX(0); }

    .reveal-scale {
      opacity: 0;
      transform: scale(0.92);
      transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-spring);
    }
    .reveal-scale.visible { opacity: 1; transform: scale(1); }

    /* Stagger delays */
    .delay-1 { transition-delay: 0.08s; }
    .delay-2 { transition-delay: 0.16s; }
    .delay-3 { transition-delay: 0.24s; }
    .delay-4 { transition-delay: 0.32s; }
    .delay-5 { transition-delay: 0.40s; }
    .delay-6 { transition-delay: 0.48s; }

    /* ══════════════════════════════════════
       TYPOGRAPHY
    ══════════════════════════════════════ */
    .section-tag {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      color: var(--red);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(24px, 4vw, 32px);
      line-height: 1.25;
      margin-bottom: 12px;
    }
    .section-sub {
      font-size: 15px;
      color: var(--mid);
      line-height: 1.75;
      max-width: 540px;
    }

    /* ══════════════════════════════════════
       LAYOUT
    ══════════════════════════════════════ */
    .section { padding: 80px 0; }
    .section-alt { background: var(--light); }
    .section-inner { max-width: 1100px; margin: 0 auto; padding: 0 28px; }

    /* ══════════════════════════════════════
       NAVBAR
    ══════════════════════════════════════ */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 0.5px solid var(--border);
      padding: 0 28px;
      transition: box-shadow 0.3s;
    }
    .navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
    .navbar-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      gap: 16px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
      transition: transform 0.2s var(--ease-spring);
    }
    .logo:hover { transform: scale(1.03); }
    .logo-icon { width: 32px; height: 32px; }
    .logo-wordmark { font-size: 18px; font-weight: 700; color: var(--dark); letter-spacing: -0.5px; }
    .logo-wordmark span { color: var(--red); }

    .nav-links { display: flex; gap: 28px; align-items: center; }
    .nav-links a {
      font-size: 13px;
      color: var(--mid);
      position: relative;
      padding-bottom: 2px;
      transition: color 0.2s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -2px; left: 0; right: 100%;
      height: 1.5px;
      background: var(--red);
      transition: right 0.25s var(--ease-out);
    }
    .nav-links a:hover { color: var(--red); }
    .nav-links a:hover::after { right: 0; }

    .nav-cta {
      background: var(--red);
      color: #fff;
      border: none;
      padding: 10px 22px;
      border-radius: var(--r-sm);
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      white-space: nowrap;
      transition: background 0.2s, transform 0.15s var(--ease-spring), box-shadow 0.2s;
    }
    .nav-cta:hover {
      background: var(--red-mid);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(139,26,26,0.3);
    }
    .nav-cta:active { transform: scale(0.97); }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--dark);
      border-radius: 2px;
      transition: all 0.3s var(--ease-out);
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      position: fixed;
      top: 64px; left: 0; right: 0;
      background: var(--white);
      border-bottom: 0.5px solid var(--border);
      padding: 20px 24px 28px;
      z-index: 999;
      box-shadow: 0 8px 32px rgba(0,0,0,0.1);
      transform: translateY(-8px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s, transform 0.25s var(--ease-out);
    }
    .mobile-menu.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: all;
    }
    .mobile-menu a {
      display: block;
      font-size: 15px;
      color: var(--mid);
      padding: 13px 0;
      border-bottom: 0.5px solid var(--border);
      transition: color 0.2s, padding-left 0.2s;
    }
    .mobile-menu a:hover { color: var(--red); padding-left: 6px; }
    .mobile-menu a:last-child { border: none; }
    .mobile-menu .mob-cta {
      display: block;
      text-align: center;
      background: var(--red);
      color: #fff;
      padding: 14px;
      border-radius: var(--r-sm);
      font-weight: 500;
      font-size: 14px;
      margin-top: 16px;
      transition: background 0.2s, transform 0.15s;
    }
    .mobile-menu .mob-cta:hover { background: var(--red-mid); transform: scale(1.01); padding-left: 0; }

    /* ══════════════════════════════════════
       HERO
    ══════════════════════════════════════ */
    .hero {
      background: #0f0404;
      padding: 96px 28px 72px;
      position: relative;
      overflow: hidden;
      min-height: 88vh;
      display: flex;
      align-items: center;
    }

    /* Animated particles background */
    .hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .hero-particle {
      position: absolute;
      border-radius: 50%;
      background: rgba(139,26,26,0.12);
      animation: float linear infinite;
    }
    @keyframes float {
      0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
      10%  { opacity: 1; }
      90%  { opacity: 0.5; }
      100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
    }

    /* Glowing line accent */
    .hero-line {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--red), transparent);
      animation: shimmer 3s ease-in-out infinite;
    }
    @keyframes shimmer {
      0%, 100% { opacity: 0.4; }
      50% { opacity: 1; }
    }

    .hero::after {
      content: '中国';
      position: absolute;
      right: -20px; top: -20px;
      font-size: clamp(120px, 22vw, 280px);
      color: rgba(139,26,26,0.08);
      font-family: serif;
      line-height: 1;
      pointer-events: none;
      user-select: none;
      animation: fadeInChar 1.5s var(--ease-out) forwards;
    }
    @keyframes fadeInChar {
      from { opacity: 0; transform: scale(1.1); }
      to { opacity: 1; transform: scale(1); }
    }

    .hero-inner {
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      width: 100%;
    }

    /* Hero entrance animations */
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(139,26,26,0.25);
      color: #e8a0a0;
      border: 0.5px solid rgba(139,26,26,0.5);
      padding: 5px 14px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 500;
      margin-bottom: 24px;
      opacity: 0;
      transform: translateY(16px);
      animation: heroIn 0.7s var(--ease-out) 0.1s forwards;
    }
    .hero-tag-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #e8a0a0;
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.5; transform: scale(0.7); }
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(32px, 5vw, 54px);
      color: #fff;
      line-height: 1.12;
      margin-bottom: 22px;
      max-width: 640px;
      opacity: 0;
      transform: translateY(24px);
      animation: heroIn 0.8s var(--ease-out) 0.25s forwards;
    }
    .hero h1 em { color: var(--gold); font-style: normal; }

    .hero p {
      color: rgba(255,255,255,0.65);
      font-size: 16px;
      line-height: 1.8;
      max-width: 500px;
      margin-bottom: 38px;
      opacity: 0;
      transform: translateY(20px);
      animation: heroIn 0.8s var(--ease-out) 0.4s forwards;
    }

    @keyframes heroIn {
      to { opacity: 1; transform: translateY(0); }
    }

    .hero-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(16px);
      animation: heroIn 0.7s var(--ease-out) 0.55s forwards;
    }

    /* ── Buttons with premium interactions ── */
    .btn-primary {
      background: var(--red);
      color: #fff;
      border: none;
      padding: 15px 30px;
      border-radius: var(--r-sm);
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      position: relative;
      overflow: hidden;
      transition: background 0.2s, transform 0.15s var(--ease-spring), box-shadow 0.2s;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.15);
      transform: translateX(-100%);
      transition: transform 0.4s var(--ease-out);
    }
    .btn-primary:hover::before { transform: translateX(100%); }
    .btn-primary:hover {
      background: var(--red-mid);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(139,26,26,0.35);
    }
    .btn-primary:active { transform: scale(0.97); }

    .btn-outline {
      background: transparent;
      color: #fff;
      border: 1px solid rgba(255,255,255,0.3);
      padding: 15px 30px;
      border-radius: var(--r-sm);
      font-size: 14px;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      transition: border-color 0.2s, background 0.2s, transform 0.15s var(--ease-spring);
    }
    .btn-outline:hover {
      background: rgba(255,255,255,0.07);
      border-color: rgba(255,255,255,0.55);
      transform: translateY(-2px);
    }
    .btn-outline:active { transform: scale(0.97); }

    .hero-stats {
      display: flex;
      gap: clamp(28px, 5vw, 60px);
      margin-top: 56px;
      padding-top: 36px;
      border-top: 0.5px solid rgba(255,255,255,0.1);
      flex-wrap: wrap;
      opacity: 0;
      animation: heroIn 0.8s var(--ease-out) 0.7s forwards;
    }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: clamp(26px, 4vw, 36px);
      color: #fff;
      font-weight: 700;
      line-height: 1;
    }
    .stat-label { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 5px; }

    /* ══════════════════════════════════════
       TRUST BAR — animated ticker
    ══════════════════════════════════════ */
    .trust-bar { background: var(--red); padding: 12px 0; overflow: hidden; }
    .trust-ticker {
      display: flex;
      gap: 56px;
      white-space: nowrap;
      animation: ticker 20s linear infinite;
      width: max-content;
    }
    .trust-ticker:hover { animation-play-state: paused; }
    @keyframes ticker {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .trust-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: rgba(255,255,255,0.9);
      font-weight: 500;
      flex-shrink: 0;
    }
    .trust-check { color: rgba(255,255,255,0.65); }

    /* ══════════════════════════════════════
       SECTION HEADERS
    ══════════════════════════════════════ */
    .section-header { margin-bottom: 48px; }

    /* ══════════════════════════════════════
       WHY CARDS
    ══════════════════════════════════════ */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 44px;
    }
    .why-card {
      background: var(--white);
      border: 0.5px solid var(--border);
      border-radius: var(--r-lg);
      padding: 26px;
      border-top: 3px solid transparent;
      cursor: default;
      transition:
        box-shadow 0.3s,
        transform 0.3s var(--ease-spring),
        border-top-color 0.3s;
    }
    .why-card:hover {
      box-shadow: 0 8px 32px rgba(0,0,0,0.09);
      transform: translateY(-4px);
      border-top-color: var(--red);
    }
    .why-card.accent { border-top-color: var(--red); }
    .why-icon {
      font-size: 26px;
      margin-bottom: 14px;
      display: inline-block;
      transition: transform 0.3s var(--ease-spring);
    }
    .why-card:hover .why-icon { transform: scale(1.2) rotate(-5deg); }
    .why-card h3 { font-size: 14px; font-weight: 500; margin-bottom: 7px; }
    .why-card p { font-size: 13px; color: var(--mid); line-height: 1.65; }

    /* ══════════════════════════════════════
       PROCESS STEPS
    ══════════════════════════════════════ */
    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      margin-top: 52px;
      position: relative;
    }
    .process-line {
      position: absolute;
      top: 22px; left: 12.5%; right: 12.5%;
      height: 1px;
      background: var(--border);
      overflow: hidden;
    }
    .process-line-fill {
      height: 100%;
      background: var(--red);
      width: 0%;
      transition: width 1.2s var(--ease-out);
    }
    .process-line-fill.animate { width: 100%; }

    .step { text-align: center; padding: 0 10px; position: relative; }
    .step-circle {
      width: 46px; height: 46px;
      border-radius: 50%;
      background: var(--white);
      border: 2px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      color: var(--mid);
      font-weight: 700;
      transition: border-color 0.4s, color 0.4s, background 0.4s, transform 0.3s var(--ease-spring), box-shadow 0.4s;
    }
    .step.active .step-circle {
      border-color: var(--red);
      color: var(--red);
      transform: scale(1.1);
      box-shadow: 0 0 0 6px rgba(139,26,26,0.08);
    }
    .step h3 { font-size: 13px; font-weight: 500; margin-bottom: 6px; }
    .step p { font-size: 12px; color: var(--mid); line-height: 1.55; }

    /* ══════════════════════════════════════
       SERVICE ITEMS
    ══════════════════════════════════════ */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-top: 40px;
    }
    .service-item {
      display: flex;
      gap: 18px;
      padding: 22px;
      background: var(--white);
      border-radius: var(--r-md);
      border: 0.5px solid var(--border);
      cursor: default;
      transition: box-shadow 0.3s, transform 0.25s var(--ease-spring), border-color 0.3s;
    }
    .service-item:hover {
      box-shadow: 0 6px 24px rgba(0,0,0,0.08);
      transform: translateX(4px);
      border-color: rgba(139,26,26,0.2);
    }
    .service-num {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      color: var(--red);
      font-weight: 700;
      line-height: 1;
      min-width: 36px;
      opacity: 0.35;
      transition: opacity 0.3s;
    }
    .service-item:hover .service-num { opacity: 1; }
    .service-text h3 { font-size: 14px; font-weight: 500; margin-bottom: 6px; }
    .service-text p { font-size: 13px; color: var(--mid); line-height: 1.65; }

    /* ══════════════════════════════════════
       TESTIMONIALS — carousel-style
    ══════════════════════════════════════ */
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 40px;
    }
    .testi-card {
      background: var(--white);
      border: 0.5px solid var(--border);
      border-radius: var(--r-lg);
      padding: 24px;
      transition: box-shadow 0.3s, transform 0.3s var(--ease-spring), border-color 0.3s;
    }
    .testi-card:hover {
      box-shadow: 0 10px 36px rgba(0,0,0,0.1);
      transform: translateY(-5px);
      border-color: rgba(200,154,58,0.3);
    }
    .testi-stars {
      color: var(--gold);
      font-size: 13px;
      margin-bottom: 12px;
      letter-spacing: 1px;
    }
    .testi-quote {
      font-size: 13px;
      color: var(--dark);
      line-height: 1.8;
      margin-bottom: 18px;
      font-style: italic;
    }
    .testi-author { display: flex; align-items: center; gap: 10px; }
    .testi-avatar {
      width: 36px; height: 36px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 500; color: #fff;
      flex-shrink: 0;
      transition: transform 0.3s var(--ease-spring);
    }
    .testi-card:hover .testi-avatar { transform: scale(1.12); }
    .testi-name { font-size: 13px; font-weight: 500; }
    .testi-country { font-size: 11px; color: var(--mid); }

    /* ══════════════════════════════════════
       OBJECTIONS
    ══════════════════════════════════════ */
    .obj-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-top: 36px;
    }
    .obj-card {
      background: var(--white);
      border: 0.5px solid var(--border);
      border-radius: var(--r-md);
      padding: 22px;
      border-left: 3px solid transparent;
      transition: border-left-color 0.3s, box-shadow 0.3s, transform 0.25s var(--ease-spring);
    }
    .obj-card:hover {
      border-left-color: var(--red);
      box-shadow: 0 4px 20px rgba(0,0,0,0.07);
      transform: translateX(4px);
    }
    .obj-fear { font-size: 13px; color: var(--red); font-weight: 500; margin-bottom: 8px; }
    .obj-answer { font-size: 13px; color: var(--mid); line-height: 1.65; }

    /* ══════════════════════════════════════
       PRICING — animated on hover
    ══════════════════════════════════════ */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 44px;
      align-items: start;
    }
    .price-card {
      background: var(--white);
      border: 0.5px solid var(--border);
      border-radius: var(--r-lg);
      padding: 28px 22px;
      position: relative;
      transition: box-shadow 0.3s, transform 0.3s var(--ease-spring);
    }
    .price-card:hover {
      box-shadow: 0 12px 40px rgba(0,0,0,0.1);
      transform: translateY(-5px);
    }
    .price-card.featured {
      border: 2px solid var(--red);
      transform: translateY(-6px);
    }
    .price-card.featured:hover { transform: translateY(-11px); }
    .featured-badge {
      position: absolute;
      top: -13px; left: 50%;
      transform: translateX(-50%);
      background: var(--red);
      color: #fff;
      font-size: 10px;
      font-weight: 600;
      padding: 4px 16px;
      border-radius: 20px;
      white-space: nowrap;
    }
    .price-name {
      font-size: 10px;
      font-weight: 700;
      color: var(--mid);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .price-amount {
      font-family: 'Playfair Display', serif;
      font-size: 38px;
      font-weight: 700;
    }
    .price-amount span { font-size: 15px; font-weight: 400; color: var(--mid); }
    .price-desc { font-size: 12px; color: var(--mid); margin: 10px 0 18px; line-height: 1.6; }
    .price-features { margin-bottom: 22px; }
    .price-features li {
      font-size: 12px;
      color: var(--mid);
      padding: 6px 0;
      border-bottom: 0.5px solid var(--border);
      display: flex;
      gap: 8px;
      align-items: flex-start;
    }
    .price-features li:last-child { border: none; }
    .check { color: var(--teal); flex-shrink: 0; }

    /* Price buttons */
    .price-btn {
      width: 100%;
      padding: 12px;
      border-radius: var(--r-sm);
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      border: 1px solid var(--red);
      color: var(--red);
      background: transparent;
      position: relative;
      overflow: hidden;
      transition: color 0.2s, transform 0.15s var(--ease-spring), box-shadow 0.2s;
    }
    .price-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--red);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s var(--ease-out);
      z-index: 0;
    }
    .price-btn span { position: relative; z-index: 1; }
    .price-btn:hover { color: #fff; transform: translateY(-1px); }
    .price-btn:hover::before { transform: scaleX(1); }
    .price-btn:active { transform: scale(0.97); }

    .price-btn.feat {
      background: var(--red);
      color: #fff;
      border: none;
    }
    .price-btn.feat::before { background: var(--red-mid); }
    .price-btn.feat:hover {
      box-shadow: 0 5px 18px rgba(139,26,26,0.35);
    }

    /* ══════════════════════════════════════
       COUNTERS (animated numbers)
    ══════════════════════════════════════ */
    .counter { display: inline-block; }

    /* ══════════════════════════════════════
       FAQ
    ══════════════════════════════════════ */
    .faq-list { margin-top: 36px; }
    .faq-item {
      border-bottom: 0.5px solid var(--border);
      padding: 18px 0;
      cursor: pointer;
    }
    .faq-q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      font-size: 14px;
      font-weight: 500;
      color: var(--dark);
      transition: color 0.2s;
    }
    .faq-item:hover .faq-q { color: var(--red); }
    .faq-arrow {
      width: 24px; height: 24px;
      border-radius: 50%;
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 10px;
      color: var(--mid);
      flex-shrink: 0;
      transition: transform 0.3s var(--ease-spring), background 0.2s, border-color 0.2s;
    }
    .faq-item.open .faq-arrow {
      transform: rotate(180deg);
      background: var(--red);
      border-color: var(--red);
      color: #fff;
    }
    .faq-a {
      font-size: 13px;
      color: var(--mid);
      line-height: 1.8;
      padding-top: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s var(--ease-out), padding-top 0.3s;
    }
    .faq-item.open .faq-a {
      max-height: 300px;
      padding-top: 12px;
    }

    /* ══════════════════════════════════════
       LEAD MAGNET
    ══════════════════════════════════════ */
    .lead-box {
      background: var(--red);
      border-radius: var(--r-lg);
      padding: 52px 48px;
      display: flex;
      gap: 48px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .lead-box::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 220px; height: 220px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      pointer-events: none;
    }
    .lead-box::after {
      content: '';
      position: absolute;
      bottom: -80px; left: 30%;
      width: 280px; height: 280px;
      border-radius: 50%;
      background: rgba(0,0,0,0.07);
      pointer-events: none;
    }
    .lead-text { flex: 1; position: relative; z-index: 1; }
    .lead-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(20px, 3vw, 28px);
      color: #fff;
      margin-bottom: 10px;
    }
    .lead-text p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.75; margin-bottom: 20px; }
    .lead-form { display: flex; gap: 10px; flex-wrap: wrap; }
    .lead-form input {
      flex: 1;
      min-width: 200px;
      padding: 13px 16px;
      border-radius: var(--r-sm);
      border: 1px solid rgba(255,255,255,0.2);
      font-size: 14px;
      font-family: 'DM Sans', sans-serif;
      background: rgba(255,255,255,0.12);
      color: #fff;
      outline: none;
      transition: background 0.2s, border-color 0.2s;
    }
    .lead-form input::placeholder { color: rgba(255,255,255,0.45); }
    .lead-form input:focus {
      background: rgba(255,255,255,0.2);
      border-color: rgba(255,255,255,0.5);
    }
    .lead-form button {
      background: var(--gold);
      color: #1a1a1a;
      border: none;
      padding: 13px 22px;
      border-radius: var(--r-sm);
      font-weight: 500;
      font-size: 13px;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      white-space: nowrap;
      transition: transform 0.15s var(--ease-spring), box-shadow 0.2s;
    }
    .lead-form button:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 14px rgba(200,154,58,0.4);
    }
    .lead-form button:active { transform: scale(0.97); }
    .lead-pdf {
      width: 120px;
      flex-shrink: 0;
      background: rgba(0,0,0,0.2);
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.15);
      padding: 16px 12px;
      text-align: center;
      position: relative; z-index: 1;
      transition: transform 0.3s var(--ease-spring);
    }
    .lead-box:hover .lead-pdf { transform: rotate(-3deg) scale(1.04); }
    .lead-pdf-icon { font-size: 36px; margin-bottom: 10px; }
    .lead-pdf p { font-size: 10px; color: rgba(255,255,255,0.75); line-height: 1.6; }

    /* ══════════════════════════════════════
       CTA SECTION
    ══════════════════════════════════════ */
    .cta-section { text-align: center; }
    .cta-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(24px, 4vw, 36px);
      margin-bottom: 12px;
    }
    .cta-section p { color: var(--mid); font-size: 15px; margin-bottom: 32px; }
    .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .btn-red {
      background: var(--red);
      color: #fff;
      border: none;
      padding: 15px 32px;
      border-radius: var(--r-sm);
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      position: relative;
      overflow: hidden;
      transition: background 0.2s, transform 0.15s var(--ease-spring), box-shadow 0.2s;
    }
    .btn-red:hover {
      background: var(--red-mid);
      transform: translateY(-2px);
      box-shadow: 0 6px 22px rgba(139,26,26,0.3);
    }
    .btn-red:active { transform: scale(0.97); }

    .btn-wa {
      background: #25D366;
      color: #fff;
      border: none;
      padding: 15px 32px;
      border-radius: var(--r-sm);
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      transition: transform 0.15s var(--ease-spring), box-shadow 0.2s;
    }
    .btn-wa:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 22px rgba(37,211,102,0.35);
    }
    .btn-wa:active { transform: scale(0.97); }

    /* ══════════════════════════════════════
       BLOG
    ══════════════════════════════════════ */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 40px;
    }
    .blog-card {
      background: var(--white);
      border: 0.5px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
      cursor: pointer;
      transition: box-shadow 0.3s, transform 0.3s var(--ease-spring);
      color: inherit;
      text-decoration: none;
      display: block;
    }
    .blog-card:hover {
      box-shadow: 0 10px 36px rgba(0,0,0,0.1);
      transform: translateY(-5px);
    }
    .blog-img {
      height: 90px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      transition: transform 0.4s var(--ease-spring);
    }
    .blog-card:hover .blog-img { transform: scale(1.06); }
    .blog-body { padding: 16px; }
    .blog-tag-pill {
      font-size: 9px;
      color: var(--red);
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .blog-title { font-size: 13px; font-weight: 500; line-height: 1.5; margin-bottom: 6px; }
    .blog-meta { font-size: 11px; color: var(--mid); }

    /* ══════════════════════════════════════
       CONTACT FORM
    ══════════════════════════════════════ */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      margin-top: 44px;
    }
    .contact-info h3 { font-size: 16px; font-weight: 500; margin-bottom: 24px; }
    .contact-detail {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      margin-bottom: 20px;
      padding: 14px;
      border-radius: var(--r-md);
      transition: background 0.2s;
    }
    .contact-detail:hover { background: var(--light); }
    .contact-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
    .contact-label { font-size: 11px; color: var(--mid); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
    .contact-value { font-size: 14px; font-weight: 500; }
    .form-group { margin-bottom: 16px; }
    .form-label { font-size: 12px; color: var(--mid); margin-bottom: 6px; display: block; font-weight: 500; }
    .form-input, .form-select, .form-textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid rgba(0,0,0,0.12);
      border-radius: var(--r-sm);
      font-size: 14px;
      font-family: 'DM Sans', sans-serif;
      color: var(--dark);
      background: var(--white);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(139,26,26,0.08);
    }
    .form-textarea { resize: vertical; min-height: 110px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .form-submit {
      width: 100%;
      background: var(--red);
      color: #fff;
      border: none;
      padding: 14px;
      border-radius: var(--r-sm);
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      margin-top: 4px;
      transition: background 0.2s, transform 0.15s var(--ease-spring), box-shadow 0.2s;
    }
    .form-submit:hover {
      background: var(--red-mid);
      transform: translateY(-2px);
      box-shadow: 0 5px 18px rgba(139,26,26,0.28);
    }
    .form-submit:active { transform: scale(0.98); }

    /* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */
    footer {
      background: #0f0404;
      color: rgba(255,255,255,0.5);
      padding: 64px 28px 32px;
      font-size: 13px;
      line-height: 1.75;
    }
    .footer-grid {
      max-width: 1100px;
      margin: 0 auto 40px;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 56px;
    }
    .footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
    .footer-logo-text { font-size: 16px; font-weight: 700; color: #fff; }
    footer h4 {
      color: rgba(255,255,255,0.75);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    footer ul li { margin-bottom: 8px; }
    footer ul li a {
      color: rgba(255,255,255,0.5);
      transition: color 0.2s, padding-left 0.2s;
      display: inline-block;
    }
    footer ul li a:hover { color: rgba(255,255,255,0.85); padding-left: 4px; }
    .footer-bottom {
      max-width: 1100px;
      margin: 0 auto;
      border-top: 0.5px solid rgba(255,255,255,0.08);
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px;
      font-size: 11px;
    }

    /* ══════════════════════════════════════
       WA FLOAT — animated
    ══════════════════════════════════════ */
    .wa-float {
      position: fixed;
      bottom: 28px; right: 28px;
      background: #25D366;
      color: #fff;
      width: 56px; height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      cursor: pointer;
      z-index: 998;
      text-decoration: none;
      animation: waBounceIn 0.8s var(--ease-spring) 1.5s backwards;
      transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
      box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    }
    .wa-float::before {
      content: '';
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      border: 2px solid rgba(37,211,102,0.4);
      animation: waRing 2s ease-in-out 2s infinite;
    }
    @keyframes waRing {
      0%   { transform: scale(1); opacity: 0.6; }
      100% { transform: scale(1.5); opacity: 0; }
    }
    @keyframes waBounceIn {
      from { transform: scale(0) rotate(-20deg); opacity: 0; }
      to   { transform: scale(1) rotate(0deg); opacity: 1; }
    }
    .wa-float:hover {
      transform: scale(1.1) rotate(8deg);
      box-shadow: 0 8px 28px rgba(37,211,102,0.5);
    }

    /* ══════════════════════════════════════
       NOTIFICATION
    ══════════════════════════════════════ */
    .notif {
      position: fixed;
      bottom: 96px; right: 28px;
      background: var(--dark);
      color: #fff;
      padding: 14px 20px;
      border-radius: var(--r-md);
      font-size: 13px;
      z-index: 997;
      opacity: 0;
      transform: translateY(12px) scale(0.95);
      transition: all 0.3s var(--ease-spring);
      pointer-events: none;
    }
    .notif.show { opacity: 1; transform: translateY(0) scale(1); }

    /* ══════════════════════════════════════
       PAGE SYSTEM
    ══════════════════════════════════════ */
    .page { display: none; }
    .page.active { display: block; animation: pageIn 0.4s var(--ease-out); }
    @keyframes pageIn {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ══════════════════════════════════════
       MOBILE
    ══════════════════════════════════════ */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-cta { display: none; }
      .hamburger { display: flex; }
      .why-grid { grid-template-columns: 1fr 1fr; }
      .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
      .process-line { display: none; }
      .testi-grid { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
      .price-card.featured { transform: none; }
      .contact-grid { grid-template-columns: 1fr; gap: 36px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    }
    @media (max-width: 640px) {
      .hero { min-height: auto; padding: 64px 20px 52px; }
      .hero::after { display: none; }
      .section { padding: 56px 0; }
      .section-inner { padding: 0 20px; }
      .why-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .obj-grid { grid-template-columns: 1fr; }
      .blog-grid { grid-template-columns: 1fr 1fr; }
      .lead-box { flex-direction: column; padding: 32px 24px; gap: 24px; }
      .lead-pdf { display: none; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; }
      .cta-btns { flex-direction: column; align-items: center; }
      .btn-red, .btn-wa { width: 100%; max-width: 320px; }
      .process-steps { grid-template-columns: 1fr; gap: 20px; }
      .form-row { grid-template-columns: 1fr; }
    }
    @media (max-width: 420px) {
      .blog-grid { grid-template-columns: 1fr; }
      .hero-btns { flex-direction: column; }
      .btn-primary, .btn-outline { width: 100%; text-align: center; }
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
      .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1 !important;
        transform: none !important;
      }
    }