    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --gold: #C9A84C;
      --gold-light: #E8C96A;
      --gold-dark: #A07830;
      --navy: #0D1B2A;
      --navy-mid: #132338;
      --navy-light: #1E3A5F;
      --white: #FFFFFF;
      --off-white: #F7F8FA;
      --gray-100: #F0F2F5;
      --gray-200: #E2E6EA;
      --gray-400: #9AA5B4;
      --gray-600: #627282;
      --gray-800: #2D3748;
      --red-flag: #D94040;
      --green-ok: #27AE60;
      --radius: 12px;
      --radius-lg: 20px;
      --shadow: 0 4px 24px rgba(0,0,0,0.10);
      --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
    }

    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--white);
      color: var(--gray-800);
      line-height: 1.7;
      font-size: 16px;
      overflow-x: hidden;
    }

    /* ── TICKER ── */
    .ticker-wrapper {
      background: var(--gold);
      color: var(--navy);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.04em;
      overflow: hidden;
      white-space: nowrap;
      padding: 8px 0;
    }
    .ticker-track { display: flex; }
    .ticker-content {
      display: inline-flex;
      gap: 26px;
      white-space: nowrap;
      animation: ticker 28s linear infinite;
      padding-right: 80px;
    }
    .ticker-item { font-size: 13px; opacity: 0.95; }
    .ticker-sep { opacity: 0.75; }
    @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }

    /* ── HEADER ── */
    .site-header {
      background: var(--navy);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }
    .site-header .wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 24px;
      max-width: 1100px;
      margin: 0 auto;
      width: 100%;
    }
    .brand { display: flex; align-items: center; gap: 12px; }
    .brand-mark {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 800;
      color: var(--gold);
      letter-spacing: 0.06em;
    }
    .brand-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.2); }
    .brand-tag {
      font-size: 11px;
      color: rgba(255,255,255,0.65);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-weight: 500;
    }
    .header-right { display: flex; align-items: center; gap: 12px; }
    .header-badge {
      background: rgba(201,168,76,0.15);
      border: 1px solid rgba(201,168,76,0.4);
      color: var(--gold-light);
      font-size: 11px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 20px;
      letter-spacing: 0.03em;
    }
    .header-cta {
      background: var(--gold);
      color: var(--navy);
      font-size: 13px;
      font-weight: 700;
      padding: 8px 18px;
      border-radius: 6px;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.1s;
      white-space: nowrap;
    }
    .header-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

    /* ── HERO ── */
    .hero-block {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0A2540 100%);
      position: relative;
      overflow: hidden;
      padding: 80px 24px 90px;
    }
    .hero-block::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-block::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -80px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(30,58,95,0.6) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-inner {
      max-width: 780px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 2;
    }
    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201,168,76,0.15);
      border: 1px solid rgba(201,168,76,0.5);
      color: var(--gold-light);
      font-size: 13px;
      font-weight: 600;
      padding: 6px 16px;
      border-radius: 30px;
      margin-bottom: 24px;
      letter-spacing: 0.04em;
    }
    .hero-label::before { content: '⚖️'; font-size: 14px; }
    .hero-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 6vw, 64px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .hero-headline span { color: var(--gold); }
    .hero-desc {
      font-size: 18px;
      color: rgba(255,255,255,0.78);
      max-width: 580px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }
    .hero-cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
    .btn-primary {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
      color: var(--navy);
      font-size: 16px;
      font-weight: 700;
      padding: 16px 36px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: all 0.2s;
      box-shadow: 0 4px 20px rgba(201,168,76,0.4);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.5); }
    .btn-secondary {
      background: transparent;
      color: var(--white);
      font-size: 15px;
      font-weight: 600;
      padding: 16px 28px;
      border-radius: 8px;
      border: 1.5px solid rgba(255,255,255,0.35);
      cursor: pointer;
      transition: all 0.2s;
    }
    .btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
    .hero-trust {
      display: flex;
      gap: 24px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .hero-trust-item {
      display: flex;
      align-items: center;
      gap: 6px;
      color: rgba(255,255,255,0.7);
      font-size: 13.5px;
      font-weight: 500;
    }
    .hero-trust-item .check { color: var(--green-ok); font-size: 15px; }

    /* ── URGENCY BAR ── */
    .urgency-bar {
      background: linear-gradient(90deg, #8B0000 0%, #C0392B 50%, #8B0000 100%);
      color: white;
      text-align: center;
      padding: 14px 24px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.02em;
      overflow-wrap: break-word;
      word-wrap: break-word;
    }
    .urgency-bar span { color: #FFD700; }
    #countdown { font-weight: 800; font-size: 16px; color: #FFD700; }

    /* ── STATS ── */
    .stats-section {
      background: var(--off-white);
      padding: 56px 24px;
      border-bottom: 1px solid var(--gray-200);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 32px;
      max-width: 900px;
      margin: 0 auto;
    }
    .stat-card {
      text-align: center;
      padding: 28px 20px;
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      border-top: 3px solid var(--gold);
      transition: transform 0.2s;
    }
    .stat-card:hover { transform: translateY(-4px); }
    .stat-num {
      display: block;
      font-size: 40px;
      font-weight: 900;
      color: var(--navy);
      line-height: 1;
      margin-bottom: 8px;
      font-family: 'Playfair Display', serif;
    }
    .stat-txt {
      font-size: 14px;
      color: var(--gray-600);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* ── TRUST LOGOS ── */
    .trust-section {
      padding: 48px 24px;
      background: var(--white);
      border-bottom: 1px solid var(--gray-200);
    }
    .trust-section .section-label {
      text-align: center;
      font-size: 12px;
      font-weight: 600;
      color: var(--gray-400);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 28px;
    }
    .trust-logos {
      display: flex;
      gap: 32px;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      max-width: 900px;
      margin: 0 auto;
    }
    .trust-logo-item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      background: var(--gray-100);
      border-radius: 8px;
      border: 1px solid var(--gray-200);
      color: var(--gray-600);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .trust-logo-item .flag { font-size: 20px; }

    /* ── SECTION COMMON ── */
    .section-wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
    .section-header { text-align: center; margin-bottom: 52px; }
    .section-eyebrow {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      color: var(--gold-dark);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(26px, 4vw, 40px);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.25;
      margin-bottom: 14px;
    }
    .section-sub {
      font-size: 17px;
      color: var(--gray-600);
      max-width: 560px;
      margin: 0 auto;
    }

    /* ── PROBLEM BLOCK ── */
    .problem-section {
      padding: 80px 24px;
      background: var(--white);
    }
    .problem-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
      max-width: 1000px;
      margin: 0 auto;
    }
    .problem-card {
      background: #FFF5F5;
      border: 1px solid #FFCDD2;
      border-left: 4px solid var(--red-flag);
      border-radius: var(--radius);
      padding: 24px;
    }
    .problem-icon { font-size: 28px; margin-bottom: 12px; }
    .problem-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .problem-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

    /* ── SERVICES ── */
    .services-section {
      padding: 80px 24px;
      background: var(--off-white);
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
      max-width: 1000px;
      margin: 0 auto;
    }
    .service-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      box-shadow: var(--shadow);
      border: 1px solid var(--gray-200);
      transition: all 0.25s;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .service-num {
      font-size: 48px;
      font-weight: 900;
      color: var(--gray-200);
      line-height: 1;
      margin-bottom: 16px;
      font-family: 'Playfair Display', serif;
    }
    .service-icon { font-size: 32px; margin-bottom: 14px; }
    .service-card h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
    .service-card p { font-size: 15px; color: var(--gray-600); line-height: 1.65; }

    /* ── PROCESS ── */
    .process-section {
      padding: 80px 24px;
      background: var(--navy);
    }
    .process-section .section-title { color: var(--white); }
    .process-section .section-sub { color: rgba(255,255,255,0.6); }
    .process-section .section-eyebrow { color: var(--gold-light); }
    .process-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 0;
      max-width: 1000px;
      margin: 0 auto;
      position: relative;
    }
    .process-steps::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 12.5%;
      right: 12.5%;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--gold-dark));
      z-index: 0;
    }
    .process-step {
      text-align: center;
      padding: 0 20px 0;
      position: relative;
      z-index: 1;
    }
    .step-circle {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 28px;
      box-shadow: 0 4px 20px rgba(201,168,76,0.4);
    }
    .step-num {
      position: absolute;
      top: -8px;
      right: calc(50% - 48px);
      background: var(--navy-light);
      color: var(--gold);
      font-size: 11px;
      font-weight: 800;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--gold);
    }
    .process-step h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
    .process-step p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

    /* ── TESTIMONIALS ── */
    .testimonials-section {
      padding: 80px 24px;
      background: var(--white);
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      max-width: 1000px;
      margin: 0 auto;
    }
    .testimonial-card {
      background: var(--off-white);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      border: 1px solid var(--gray-200);
      position: relative;
    }
    .testimonial-card::before {
      content: '"';
      font-family: 'Playfair Display', serif;
      font-size: 80px;
      color: var(--gold);
      opacity: 0.3;
      position: absolute;
      top: 10px;
      left: 20px;
      line-height: 1;
    }
    .stars { color: #F5A623; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
    .testimonial-text {
      font-size: 15px;
      color: var(--gray-800);
      line-height: 1.7;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }
    .testimonial-author { display: flex; align-items: center; gap: 12px; }
    .author-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--navy-light), var(--gold-dark));
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 16px;
      flex-shrink: 0;
    }
    .author-name { font-size: 14px; font-weight: 700; color: var(--navy); }
    .author-meta { font-size: 12px; color: var(--gray-400); margin-top: 2px; }
    .recovered-badge {
      display: inline-block;
      background: #E8F5E9;
      color: var(--green-ok);
      font-size: 12px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 20px;
      margin-top: 6px;
      border: 1px solid #A5D6A7;
    }

    /* ── WHY US ── */
    .whyus-section {
      padding: 80px 24px;
      background: var(--off-white);
    }
    .whyus-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
      max-width: 1000px;
      margin: 0 auto;
    }
    .whyus-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 24px;
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }
    .whyus-icon {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
    }
    .whyus-text h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
    .whyus-text p { font-size: 13.5px; color: var(--gray-600); line-height: 1.6; }

    /* ── FAQ ── */
    .faq-section {
      padding: 80px 24px;
      background: var(--white);
    }
    .faq-list {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-item {
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .faq-question {
      width: 100%;
      background: var(--white);
      border: none;
      padding: 20px 24px;
      text-align: left;
      font-size: 16px;
      font-weight: 600;
      color: var(--navy);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      transition: background 0.2s;
    }
    .faq-question:hover { background: var(--off-white); }
    .faq-question.active { background: var(--navy); color: var(--white); }
    .faq-icon { font-size: 20px; flex-shrink: 0; transition: transform 0.3s; }
    .faq-question.active .faq-icon { transform: rotate(45deg); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.2s;
      background: var(--off-white);
    }
    .faq-answer.open { max-height: 300px; }
    .faq-answer p {
      padding: 18px 24px;
      font-size: 15px;
      color: var(--gray-600);
      line-height: 1.7;
    }

    /* ── CTA BLOCK ── */
    .cta-section {
      padding: 80px 24px;
      background: linear-gradient(135deg, var(--navy) 0%, #0A2540 100%);
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
    }
    .cta-box {
      max-width: 680px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .cta-badge {
      display: inline-block;
      background: rgba(217,64,64,0.2);
      border: 1px solid rgba(217,64,64,0.5);
      color: #FF8A80;
      font-size: 12px;
      font-weight: 700;
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 20px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .cta-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .cta-title span { color: var(--gold); }
    .cta-desc {
      font-size: 17px;
      color: rgba(255,255,255,0.7);
      margin-bottom: 36px;
      line-height: 1.7;
    }
    .cta-features {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }
    .cta-feature {
      display: flex;
      align-items: center;
      gap: 6px;
      color: rgba(255,255,255,0.75);
      font-size: 14px;
      font-weight: 500;
    }
    .cta-feature .check { color: var(--green-ok); }

    /* ── FOOTER ── */
    .site-footer {
      background: #080F18;
      color: rgba(255,255,255,0.6);
      padding: 56px 24px 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 48px;
      max-width: 1100px;
      margin: 0 auto 40px;
    }
    .footer-brand .brand-mark { font-size: 24px; display: block; margin-bottom: 10px; }
    .footer-brand p { font-size: 14px; line-height: 1.7; max-width: 300px; }
    .footer-col h4 {
      font-size: 13px;
      font-weight: 700;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li {
      font-size: 14px;
      padding: 5px 0;
      color: rgba(255,255,255,0.55);
    }
    .footer-col ul li::before { content: '→ '; color: var(--gold); font-size: 12px; }
    .footer-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
    .footer-link {
      background: rgba(201,168,76,0.15);
      border: 1px solid rgba(201,168,76,0.35);
      color: var(--gold-light);
      font-size: 13px;
      font-weight: 600;
      padding: 8px 18px;
      border-radius: 6px;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.2s;
    }
    .footer-link:hover { background: rgba(201,168,76,0.25); }
    .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); max-width: 1100px; margin: 0 auto 24px; }
    .footer-bottom {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-copy { font-size: 13px; }
    .footer-legal-note {
      font-size: 12px;
      color: rgba(255,255,255,0.35);
      max-width: 500px;
      text-align: right;
    }

    /* ── FLOATING CTA ── */
    .float-cta {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 200;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
    }
    .float-btn {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
      color: var(--navy);
      font-size: 14px;
      font-weight: 700;
      padding: 14px 22px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      box-shadow: 0 6px 28px rgba(201,168,76,0.5);
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.2s;
      animation: pulse-btn 2.5s ease-in-out infinite;
    }
    .float-btn:hover { transform: scale(1.04); box-shadow: 0 10px 36px rgba(201,168,76,0.6); }
    @keyframes pulse-btn {
      0%, 100% { box-shadow: 0 6px 28px rgba(201,168,76,0.5); }
      50% { box-shadow: 0 6px 36px rgba(201,168,76,0.75); }
    }
    .float-label {
      background: var(--red-flag);
      color: white;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 20px;
      letter-spacing: 0.05em;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .site-header .wrap { padding: 12px 16px; }
      .header-badge { display: none; }
      .brand-mark { font-size: 18px; }
      .brand-tag { font-size: 10px; }
      .header-cta { font-size: 12px; padding: 8px 14px; }
      .hero-block { padding: 48px 16px 56px; }
      .hero-label { font-size: 12px; padding: 5px 12px; }
      .hero-headline { font-size: clamp(28px, 7vw, 40px); margin-bottom: 16px; }
      .hero-desc { font-size: 16px; margin-bottom: 28px; }
      .hero-cta-group { flex-direction: column; align-items: center; margin-bottom: 28px; }
      .btn-primary, .btn-secondary { width: 100%; max-width: 320px; justify-content: center; }
      .hero-trust { gap: 16px; flex-wrap: wrap; justify-content: center; }
      .hero-trust-item { font-size: 12px; }
      .urgency-bar { padding: 12px 16px; font-size: 12px; line-height: 1.5; }
      .urgency-bar span { display: inline; }
      #countdown { font-size: 14px; }
      .stats-section { padding: 40px 16px; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .stat-card { padding: 20px 16px; }
      .stat-num { font-size: 32px; }
      .stat-txt { font-size: 11px; }
      .trust-section { padding: 36px 16px; }
      .trust-logos { gap: 12px; }
      .trust-logo-item { padding: 8px 14px; font-size: 11px; }
      .section-wrap { padding: 0 16px; }
      .section-header { margin-bottom: 36px; }
      .section-title { font-size: clamp(22px, 5vw, 28px); }
      .section-sub { font-size: 15px; }
      .problem-section, .services-section, .process-section,
      .testimonials-section, .whyus-section, .faq-section { padding: 48px 0; }
      .problem-grid, .services-grid, .whyus-grid { gap: 16px; }
      .problem-card, .service-card { padding: 20px; }
      .service-num { font-size: 36px; }
      .service-card h3 { font-size: 17px; }
      .service-card p { font-size: 14px; }
      .process-steps::before { display: none; }
      .process-steps { gap: 24px; grid-template-columns: 1fr; }
      .step-circle { width: 64px; height: 64px; font-size: 24px; }
      .step-num { right: calc(50% - 40px); }
      .process-step h3 { font-size: 15px; }
      .process-step p { font-size: 13px; }
      .testimonial-card { padding: 24px 20px; }
      .testimonial-text { font-size: 14px; }
      .whyus-item { padding: 18px; }
      .whyus-icon { width: 40px; height: 40px; font-size: 18px; }
      .whyus-text h3 { font-size: 14px; }
      .whyus-text p { font-size: 13px; }
      .faq-question { padding: 16px 18px; font-size: 15px; }
      .faq-answer p { padding: 14px 18px; font-size: 14px; }
      .faq-answer.open { max-height: 400px; }
      .cta-section { padding: 48px 16px; }
      .cta-badge { font-size: 11px; }
      .cta-title { font-size: clamp(22px, 5vw, 28px); }
      .cta-desc { font-size: 15px; margin-bottom: 28px; }
      .cta-features { gap: 12px; margin-bottom: 28px; }
      .cta-feature { font-size: 13px; }
      .btn-primary { font-size: 15px; padding: 14px 28px; }
      .site-footer { padding: 40px 16px 28px; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .footer-brand p { max-width: 100%; }
      .footer-legal-note { text-align: left; max-width: 100%; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .float-cta { bottom: 20px; right: 16px; left: 16px; align-items: stretch; }
      .float-btn { justify-content: center; width: 100%; padding: 14px 20px; }
      .float-label { align-self: center; }
    }

    @media (max-width: 480px) {
      .site-header .wrap { padding: 10px 12px; }
      .brand { gap: 8px; }
      .brand-mark { font-size: 16px; }
      .brand-tag { font-size: 9px; }
      .brand-divider { height: 22px; }
      .header-cta { font-size: 11px; padding: 6px 12px; }
      .hero-block { padding: 36px 12px 44px; }
      .hero-label { font-size: 11px; padding: 4px 10px; }
      .hero-headline { font-size: 26px; line-height: 1.2; }
      .hero-desc { font-size: 15px; margin-bottom: 24px; }
      .hero-cta-group { margin-bottom: 24px; }
      .btn-primary { font-size: 14px; padding: 14px 24px; max-width: 100%; }
      .hero-trust { gap: 12px; }
      .hero-trust-item { font-size: 11px; }
      .urgency-bar { padding: 10px 12px; font-size: 11px; }
      #countdown { font-size: 13px; }
      .stats-section { padding: 32px 12px; }
      .stats-grid { grid-template-columns: 1fr; gap: 12px; }
      .stat-card { padding: 18px; }
      .stat-num { font-size: 28px; }
      .stat-txt { font-size: 11px; }
      .trust-section { padding: 28px 12px; }
      .trust-logo-item { padding: 6px 10px; font-size: 10px; }
      .section-wrap { padding: 0 12px; }
      .section-header { margin-bottom: 28px; }
      .section-eyebrow { font-size: 10px; }
      .section-title { font-size: 22px; }
      .section-sub { font-size: 14px; }
      .problem-section, .services-section, .process-section,
      .testimonials-section, .whyus-section, .faq-section { padding: 36px 0; }
      .problem-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .problem-card, .service-card { padding: 18px; }
      .service-num { font-size: 32px; }
      .whyus-grid { grid-template-columns: 1fr; }
      .whyus-item { padding: 16px; flex-direction: column; align-items: center; text-align: center; }
      .faq-question { padding: 14px 16px; font-size: 14px; }
      .faq-answer p { padding: 12px 16px; font-size: 13px; }
      .cta-section { padding: 36px 12px; }
      .cta-title { font-size: 22px; }
      .cta-desc { font-size: 14px; }
      .site-footer { padding: 32px 12px 24px; }
      .footer-links { flex-direction: column; }
      .footer-link { width: 100%; text-align: center; }
      .float-cta { bottom: max(16px, env(safe-area-inset-bottom)); right: 12px; left: 12px; }
    }

    /* 安全区域（刘海屏/全面屏） */
    @supports (padding-bottom: env(safe-area-inset-bottom)) {
      .site-footer { padding-bottom: calc(24px + env(safe-area-inset-bottom)); }
    }

    /* ── WRAP UTIL ── */
    .wrap { max-width: 1100px; margin: 0 auto; }

/* ── TEMPLATE FORM MODAL + GOOGLE LEAD FORM ── */
body.modal-open { overflow: hidden; }
button.open-form, a.open-form { cursor: pointer; }
.template-three { max-width: 860px; }
.template-three::before { left: 18%; right: 18%; }
.form-modal,
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(6, 12, 22, 0.72);
  backdrop-filter: blur(12px);
}
.form-modal.show,
.success-modal.show { display: flex; }
.form-panel,
.success-panel {
  width: min(560px, 100%);
  max-height: min(92vh, 760px);
  overflow: auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 36px 100px rgba(0,0,0,.35);
  position: relative;
  border: 1px solid rgba(201,168,76,.35);
}
.form-panel { padding: 30px; }
.form-panel::before,
.success-panel::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--navy-light));
  border-radius: 24px 24px 0 0;
}
.modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.form-panel-head { padding-right: 34px; margin-bottom: 18px; }
.form-panel-head h2 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: clamp(28px, 5vw, 38px);
  line-height: 1.08;
  margin-bottom: 10px;
}
.form-panel-head p { color: var(--gray-600); font-size: 15px; }
.lead-form { display: grid; gap: 14px; }
.lead-form label {
  display: block;
  font-weight: 800;
  color: var(--navy);
  font-size: 14px;
}
.lead-form input,
.lead-form textarea {
  width: 100%;
  display: block;
  margin-top: 7px;
  border: 1px solid #D8DEE8;
  border-radius: 14px;
  padding: 14px 14px;
  font: inherit;
  color: var(--gray-800);
  background: #FBFCFE;
  outline: none;
  transition: border-color .16s, box-shadow .16s, background .16s;
}
.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--gold-dark);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201,168,76,.18);
}
.lead-form textarea { min-height: 118px; resize: vertical; }
.lead-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray-600);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.5;
}
.lead-form .consent input {
  width: auto;
  min-width: 16px;
  margin: 3px 0 0;
  accent-color: var(--gold-dark);
}
.submit-btn {
  border: 0;
  border-radius: 16px;
  padding: 15px 18px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  font-size: 16px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(201,168,76,.28);
}
.submit-btn:disabled { opacity: .68; cursor: not-allowed; }
.form-note { margin: 0; color: var(--gray-600); text-align: center; font-size: 12px; line-height: 1.55; }
.form-note.is-error { color: #B42318; font-weight: 700; }
.form-note.is-ok { color: #067647; font-weight: 700; }
.success-panel {
  padding: 34px 28px;
  text-align: center;
}
.success-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 4px auto 18px;
  border-radius: 22px;
  background: rgba(39,174,96,.12);
  color: var(--green-ok);
  font-size: 34px;
  font-weight: 950;
}
.success-panel h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--navy);
  margin-bottom: 10px;
}
.success-panel p { color: var(--gray-600); margin-bottom: 12px; }
.success-panel small { color: var(--gray-400); }
@media (max-width: 768px) {
  .form-panel { padding: 24px 18px; border-radius: 20px; }
  .form-panel::before, .success-panel::before { border-radius: 20px 20px 0 0; }
  .form-panel-head { padding-right: 28px; }
  .lead-form input, .lead-form textarea { padding: 13px; }
  .template-three::before { display: none; }
}
