/* ═══════════════════════════════════════════════════════
   RH Partners – Main Stylesheet
   Edit bagian yang sesuai dengan nama section di bawah ini:

   SECTION LIST:
   - RESET & ROOT          → variabel warna, font, dll
   - NAVBAR                → navigasi atas
   - HERO                  → halaman utama hero
   - TICKER STRIP          → animasi teks berjalan
   - SECTION COMMONS       → judul, eyebrow, subtitle
   - SERVICES GRID         → kartu layanan
   - WORKFLOW STEPS        → alur kerja 5 langkah
   - CTA BLOCK             → blok "mulai dari mana"
   - TESTIMONIALS          → kartu testimoni
   - CTA STRIP             → banner kuning bawah
   - FAQ                   → accordion FAQ
   - FOOTER                → footer semua halaman
   - PAGE HERO             → hero halaman inner
   - DETAIL LAYOUT         → layout 2 kolom detail
   - PACKAGE CARDS         → kartu paket harga
   - ORDER FORM            → input form order
   - PAYMENT               → kartu metode bayar
   - MODAL                 → popup tanya harga WA
   - ANIMATIONS            → fade-in, keyframes
   - FLOATING WA BUTTON    → tombol WA mengambang
   ═══════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════
       RESET & ROOT
    ═══════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --gold: #F5A623;
      --gold-light: #FFD166;
      --gold-dim: rgba(245,166,35,.15);
      --bg: #0A0A0F;
      --bg2: #111118;
      --bg3: #16161F;
      --surface: #1C1C27;
      --surface2: #222230;
      --border: rgba(255,255,255,.07);
      --border-gold: rgba(245,166,35,.25);
      --text: #EEEEF5;
      --muted: #7878A0;
      --white: #fff;
      --teal: #4ECDC4;
      --font-display: 'Syne', sans-serif;
      --font-body: 'Manrope', sans-serif;
      --radius: 16px;
      --radius-lg: 24px;
      --radius-sm: 10px;
      --shadow: 0 24px 80px rgba(0,0,0,.5);
      --shadow-gold: 0 0 40px rgba(245,166,35,.15);
    }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 15px;
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    ul { list-style: none; }
    button { font-family: inherit; }

    /* ═══════════════════════════════════════
       TYPOGRAPHY
    ═══════════════════════════════════════ */
    .display { font-family: var(--font-display); }
    h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }

    /* ═══════════════════════════════════════
       LAYOUT
    ═══════════════════════════════════════ */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
    }
    @media (max-width: 768px) {
      .container { padding: 0 20px; }
    }

    /* ═══════════════════════════════════════
       BACKGROUND EFFECTS
    ═══════════════════════════════════════ */
    .noise-overlay {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      opacity: .025;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    }
    .glow-orb {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(80px);
      opacity: .35;
    }
    .glow-orb.gold { background: var(--gold); }
    .glow-orb.teal { background: var(--teal); }

    /* ═══════════════════════════════════════
       NAVBAR
    ═══════════════════════════════════════ */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0 32px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(10,10,15,.6);
      backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid var(--border);
      transition: background .3s, border-color .3s;
    }
    #navbar.scrolled {
      background: rgba(10,10,15,.92);
      border-color: rgba(255,255,255,.1);
    }
    .nav-logo {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.2rem;
      letter-spacing: .04em;
      color: var(--white);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .nav-logo-mark {
      width: 34px; height: 34px;
      background: var(--gold);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .8rem;
      font-weight: 800;
      color: #000;
      flex-shrink: 0;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .nav-link {
      padding: 8px 14px;
      border-radius: 8px;
      font-size: .82rem;
      font-weight: 500;
      color: var(--muted);
      cursor: pointer;
      transition: color .2s, background .2s;
      border: none;
      background: transparent;
    }
    .nav-link:hover, .nav-link.active { color: var(--white); background: var(--surface); }
    .nav-cta {
      padding: 9px 20px;
      background: var(--gold);
      color: #000;
      border-radius: var(--radius-sm);
      font-size: .82rem;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: opacity .2s, transform .15s;
      font-family: var(--font-display);
      letter-spacing: .02em;
    }
    .nav-cta:hover { opacity: .88; transform: translateY(-1px); }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      border: none;
      background: transparent;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: .3s;
    }
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
    }

    /* Mobile Menu */
    #mobile-menu {
      display: none;
      position: fixed;
      top: 72px; left: 0; right: 0;
      background: rgba(10,10,15,.97);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      z-index: 999;
      padding: 24px 32px;
      flex-direction: column;
      gap: 4px;
    }
    #mobile-menu.open { display: flex; }
    .mobile-link {
      padding: 12px 16px;
      border-radius: 10px;
      font-size: .9rem;
      font-weight: 500;
      color: var(--muted);
      cursor: pointer;
      transition: color .2s, background .2s;
    }
    .mobile-link:hover { color: var(--white); background: var(--surface); }
    .mobile-cta {
      margin-top: 12px;
      padding: 14px;
      background: var(--gold);
      color: #000;
      border-radius: var(--radius-sm);
      font-weight: 700;
      text-align: center;
      font-family: var(--font-display);
      cursor: pointer;
    }

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

    /* ═══════════════════════════════════════
       HERO
    ═══════════════════════════════════════ */
    .hero {
      min-height: 100vh;
      padding: 140px 0 100px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(245,166,35,.06) 0%, transparent 60%),
                  radial-gradient(ellipse 60% 50% at 10% 80%, rgba(78,205,196,.04) 0%, transparent 60%);
    }
    .hero-grid-lines {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 80px;
      align-items: center;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .75rem;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: .12em;
      text-transform: uppercase;
      background: var(--gold-dim);
      border: 1px solid var(--border-gold);
      border-radius: 100px;
      padding: 6px 14px;
      margin-bottom: 28px;
      animation: fadeUp .7s .1s both;
    }
    .hero-eyebrow::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.6rem, 5vw, 4rem);
      font-weight: 800;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 24px;
      animation: fadeUp .7s .2s both;
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold);
      font-weight: 700;
    }
    .hero-desc {
      font-size: 1rem;
      color: var(--muted);
      max-width: 520px;
      line-height: 1.75;
      margin-bottom: 40px;
      animation: fadeUp .7s .3s both;
    }
    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      animation: fadeUp .7s .4s both;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      background: var(--gold);
      color: #000;
      border-radius: var(--radius-sm);
      font-weight: 700;
      font-family: var(--font-display);
      font-size: .9rem;
      letter-spacing: .02em;
      transition: opacity .2s, transform .2s, box-shadow .2s;
      border: none;
      cursor: pointer;
      text-decoration: none;
    }
    .btn-primary:hover {
      opacity: .9;
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(245,166,35,.3);
    }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      background: transparent;
      color: var(--text);
      border-radius: var(--radius-sm);
      font-weight: 600;
      font-family: var(--font-display);
      font-size: .9rem;
      border: 1px solid var(--border);
      transition: border-color .2s, background .2s, transform .2s;
      cursor: pointer;
      text-decoration: none;
    }
    .btn-secondary:hover {
      border-color: var(--border-gold);
      background: var(--gold-dim);
      transform: translateY(-2px);
    }
    .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 52px;
      animation: fadeUp .7s .5s both;
    }
    .hero-stat { }
    .hero-stat-num {
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
    }
    .hero-stat-num span { color: var(--gold); }
    .hero-stat-label {
      font-size: .75rem;
      color: var(--muted);
      margin-top: 4px;
      font-weight: 500;
    }
    .hero-divider { width: 1px; background: var(--border); }

    /* Hero Card */
    .hero-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px;
      animation: fadeUp .8s .35s both;
      position: relative;
      overflow: hidden;
    }
    .hero-card::before {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(245,166,35,.1) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-card-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      background: rgba(78,205,196,.1);
      border: 1px solid rgba(78,205,196,.2);
      border-radius: 100px;
      font-size: .72rem;
      font-weight: 600;
      color: var(--teal);
      letter-spacing: .08em;
      margin-bottom: 20px;
    }
    .hero-card-badge::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--teal);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: .5; transform: scale(.7); }
    }
    .hero-card-title {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 4px;
    }
    .hero-card-sub {
      font-size: .8rem;
      color: var(--muted);
      margin-bottom: 24px;
    }
    .service-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 24px;
    }
    .service-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: .84rem;
      color: var(--text);
    }
    .service-item-dot {
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .hero-card-divider {
      height: 1px;
      background: var(--border);
      margin: 20px 0;
    }
    .hero-card-free {
      text-align: center;
      font-size: .75rem;
      color: var(--muted);
      letter-spacing: .06em;
      text-transform: uppercase;
    }
    .hero-card-free span { color: var(--teal); font-weight: 700; }

    @media (max-width: 960px) {
      .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .hero-card { display: none; }
    }

    /* ═══════════════════════════════════════
       TICKER STRIP
    ═══════════════════════════════════════ */
    .ticker {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 16px 0;
      overflow: hidden;
    }
    .ticker-track {
      display: flex;
      gap: 0;
      animation: tickerMove 30s linear infinite;
      width: max-content;
    }
    .ticker-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 32px;
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--muted);
      white-space: nowrap;
    }
    .ticker-sep {
      color: var(--gold);
      font-size: .7rem;
    }
    @keyframes tickerMove {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ═══════════════════════════════════════
       SECTION COMMONS
    ═══════════════════════════════════════ */
    .section { padding: 100px 0; position: relative; overflow: hidden; }
    .section-alt { background: var(--bg2); }
    .section-dark { background: var(--bg3); }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .72rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .eyebrow::before {
      content: '';
      width: 20px; height: 2px;
      background: var(--gold);
      border-radius: 2px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 16px;
    }
    .section-title em {
      font-style: italic;
      color: var(--gold);
      font-weight: 700;
    }
    .section-sub {
      font-size: .95rem;
      color: var(--muted);
      max-width: 520px;
      line-height: 1.75;
    }

    /* ═══════════════════════════════════════
       SERVICES GRID
    ═══════════════════════════════════════ */
    .services-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 56px;
      gap: 24px;
      flex-wrap: wrap;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    @media (max-width: 960px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .services-grid { grid-template-columns: 1fr; }
    }
    .svc-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      cursor: pointer;
      transition: border-color .25s, transform .25s, box-shadow .25s, background .25s;
      position: relative;
      overflow: hidden;
    }
    .svc-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s;
    }
    .svc-card:hover {
      border-color: var(--border-gold);
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0,0,0,.3);
      background: var(--surface2);
    }
    .svc-card:hover::after { transform: scaleX(1); }
    .svc-num {
      font-family: var(--font-display);
      font-size: .65rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: .1em;
      margin-bottom: 20px;
      opacity: .7;
    }
    .svc-icon {
      width: 48px; height: 48px;
      background: var(--gold-dim);
      border: 1px solid var(--border-gold);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      color: var(--gold);
    }
    .svc-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    .svc-name {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 10px;
    }
    .svc-desc {
      font-size: .82rem;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 20px;
    }
    .svc-arrow {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: .78rem;
      font-weight: 600;
      color: var(--gold);
    }
    .svc-arrow svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; }
    .svc-card:hover .svc-arrow svg { transform: translateX(4px); }

    /* ═══════════════════════════════════════
       WORKFLOW STEPS
    ═══════════════════════════════════════ */
    .workflow-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 24px;
      position: relative;
      margin-top: 60px;
    }
    .workflow-steps::before {
      content: '';
      position: absolute;
      top: 32px;
      left: calc(10% + 24px);
      right: calc(10% + 24px);
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border-gold) 20%, var(--border-gold) 80%, transparent);
    }
    @media (max-width: 900px) {
      .workflow-steps {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      .workflow-steps::before { display: none; }
    }
    .wf-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 16px;
      position: relative;
    }
    .wf-circle {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: var(--surface);
      border: 1px solid var(--border-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
      flex-shrink: 0;
      transition: background .25s, box-shadow .25s;
    }
    .wf-step:hover .wf-circle {
      background: var(--gold-dim);
      box-shadow: 0 0 24px rgba(245,166,35,.2);
    }
    .wf-circle svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    .wf-step-num {
      position: absolute;
      top: -6px; right: -6px;
      width: 20px; height: 20px;
      background: var(--gold);
      color: #000;
      border-radius: 50%;
      font-size: .65rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
    }
    .wf-title {
      font-family: var(--font-display);
      font-size: .85rem;
      font-weight: 700;
      color: var(--white);
    }
    .wf-desc {
      font-size: .78rem;
      color: var(--muted);
      line-height: 1.6;
    }

    /* ═══════════════════════════════════════
       CTA BLOCK
    ═══════════════════════════════════════ */
    .cta-block {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 64px;
      position: relative;
      overflow: hidden;
    }
    .cta-block::before {
      content: 'RH PARTNERS';
      position: absolute;
      bottom: -20px;
      right: -10px;
      font-family: var(--font-display);
      font-size: 7rem;
      font-weight: 900;
      color: rgba(255,255,255,.025);
      pointer-events: none;
      white-space: nowrap;
    }
    .cta-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 48px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .cta-title {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 12px;
    }
    .cta-title span { color: var(--gold); }
    .cta-sub {
      font-size: .9rem;
      color: var(--muted);
      max-width: 440px;
    }
    .cta-btns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      min-width: 300px;
    }
    .cta-step-btn {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 18px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: border-color .2s, background .2s;
      color: var(--text);
    }
    .cta-step-btn:hover { border-color: var(--border-gold); background: var(--gold-dim); }
    .cta-step-icon {
      width: 36px; height: 36px;
      background: var(--gold-dim);
      border: 1px solid var(--border-gold);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .cta-step-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .cta-step-label { font-size: .65rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
    .cta-step-title { font-family: var(--font-display); font-size: .82rem; font-weight: 700; color: var(--white); }
    .cta-wide {
      grid-column: span 2;
    }
    @media (max-width: 900px) {
      .cta-inner { grid-template-columns: 1fr; gap: 32px; }
      .cta-block { padding: 40px 28px; }
    }
    @media (max-width: 600px) {
      .cta-btns { grid-template-columns: 1fr; }
      .cta-wide { grid-column: span 1; }
    }

    /* ═══════════════════════════════════════
       TESTIMONIALS
    ═══════════════════════════════════════ */
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    @media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
    .testi-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      position: relative;
      transition: border-color .25s, transform .25s;
    }
    .testi-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
    .testi-quote {
      font-family: var(--font-display);
      font-size: 2rem;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 16px;
      opacity: .6;
    }
    .testi-stars {
      display: flex;
      gap: 2px;
      margin-bottom: 14px;
    }
    .testi-stars svg { width: 14px; height: 14px; fill: var(--gold); stroke: none; }
    .testi-text {
      font-size: .85rem;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .testi-av {
      width: 38px; height: 38px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: .85rem;
      font-weight: 800;
      color: #000;
      flex-shrink: 0;
    }
    .testi-name { font-family: var(--font-display); font-size: .85rem; font-weight: 700; color: var(--white); }
    .testi-role { font-size: .72rem; color: var(--muted); }

    /* ═══════════════════════════════════════
       CTA STRIP
    ═══════════════════════════════════════ */
    .cta-strip {
      background: linear-gradient(135deg, var(--gold) 0%, #E8950F 100%);
      padding: 56px 32px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-strip::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .cta-strip-title {
      font-family: var(--font-display);
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 800;
      color: #000;
      margin-bottom: 10px;
      position: relative;
    }
    .cta-strip-sub {
      font-size: .9rem;
      color: rgba(0,0,0,.65);
      margin-bottom: 28px;
      position: relative;
    }
    .btn-dark {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      background: #000;
      color: var(--gold);
      border-radius: var(--radius-sm);
      font-weight: 700;
      font-family: var(--font-display);
      font-size: .9rem;
      transition: opacity .2s, transform .2s;
      position: relative;
    }
    .btn-dark:hover { opacity: .88; transform: translateY(-2px); }

    /* ═══════════════════════════════════════
       FAQ
    ═══════════════════════════════════════ */
    .faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 720px; margin: 0 auto; }
    .faq-item {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      overflow: hidden;
      transition: border-color .2s;
    }
    .faq-item.open { border-color: var(--border-gold); }
    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 22px;
      font-size: .9rem;
      font-weight: 600;
      color: var(--white);
      cursor: pointer;
      font-family: var(--font-display);
      transition: color .2s;
    }
    .faq-q:hover { color: var(--gold); }
    .faq-icon {
      width: 28px; height: 28px;
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform .3s, background .2s, border-color .2s;
      color: var(--gold);
    }
    .faq-icon svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
    .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold-dim); border-color: var(--border-gold); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease;
    }
    .faq-item.open .faq-a { max-height: 300px; }
    .faq-a-inner { padding: 0 22px 20px; font-size: .85rem; color: var(--muted); line-height: 1.75; border-top: 1px solid var(--border); padding-top: 16px; margin-top: 0; }

    /* ═══════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════ */
    footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 72px 32px 32px;
    }
    .footer-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 56px;
    }
    @media (max-width: 900px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .footer-grid { grid-template-columns: 1fr; }
    }
    .footer-logo {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 800;
      color: var(--white);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
    }
    .footer-about {
      font-size: .82rem;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 24px;
    }
    .footer-soc {
      display: flex;
      gap: 10px;
    }
    .fsoc {
      width: 36px; height: 36px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      transition: color .2s, border-color .2s, background .2s;
    }
    .fsoc:hover { color: var(--gold); border-color: var(--border-gold); background: var(--gold-dim); }
    .fsoc svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .footer-col-title {
      font-family: var(--font-display);
      font-size: .78rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links li a, .footer-links li span {
      font-size: .83rem;
      color: var(--muted);
      cursor: pointer;
      transition: color .2s;
    }
    .footer-links li a:hover, .footer-links li span:hover { color: var(--gold); }
    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 24px;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: .78rem;
      color: var(--muted);
      flex-wrap: wrap;
      gap: 12px;
    }

    /* ═══════════════════════════════════════
       PAGE HERO (inner pages)
    ═══════════════════════════════════════ */
    .page-hero {
      padding: 120px 0 80px;
      background: var(--bg2);
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .78rem;
      color: var(--muted);
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }
    .breadcrumb a { cursor: pointer; transition: color .2s; }
    .breadcrumb a:hover { color: var(--gold); }
    .breadcrumb .sep { opacity: .4; }
    .breadcrumb .cur { color: var(--text); }
    .page-hero-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.15;
      position: relative;
      z-index: 1;
      margin-bottom: 16px;
    }
    .page-hero-title em { display: block; font-style: italic; color: var(--gold); font-weight: 700; font-size: .75em; }
    .page-hero-desc {
      font-size: .95rem;
      color: var(--muted);
      max-width: 560px;
      line-height: 1.75;
      margin-bottom: 32px;
      position: relative;
      z-index: 1;
    }
    .page-hero-line {
      width: 48px; height: 3px;
      background: var(--gold);
      border-radius: 2px;
      margin-bottom: 32px;
      position: relative;
      z-index: 1;
    }
    .page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

    /* ═══════════════════════════════════════
       DETAIL LAYOUT
    ═══════════════════════════════════════ */
    .detail-grid {
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 48px;
      align-items: start;
    }
    @media (max-width: 900px) {
      .detail-grid { grid-template-columns: 1fr; }
    }
    .detail-list { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
    .detail-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: .88rem;
      color: var(--text);
      line-height: 1.55;
    }
    .detail-list li::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 7px;
    }

    /* Info Card */
    .info-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 22px;
      margin-bottom: 16px;
    }
    .info-card.accent {
      background: var(--gold-dim);
      border-color: var(--border-gold);
    }
    .info-card-title {
      font-family: var(--font-display);
      font-size: .82rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .info-card-title svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .info-list { display: flex; flex-direction: column; gap: 8px; }
    .info-list li { font-size: .82rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
    .info-list li::before { content: ''; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
    .price-tag {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 800;
      color: var(--gold);
      margin: 10px 0 6px;
    }
    .price-note { font-size: .75rem; color: var(--muted); margin-bottom: 16px; }

    /* ═══════════════════════════════════════
       PACKAGE CARDS
    ═══════════════════════════════════════ */
    .pkg-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 48px;
    }
    @media (max-width: 900px) {
      .pkg-grid { grid-template-columns: 1fr; }
    }
    .pkg-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      position: relative;
      transition: transform .25s, border-color .25s;
    }
    .pkg-card:hover { transform: translateY(-4px); border-color: var(--border-gold); }
    .pkg-card.premium {
      background: linear-gradient(135deg, #1C1C27 0%, #1F1A10 100%);
      border-color: var(--border-gold);
    }
    .pkg-card.premium::before {
      content: 'POPULER';
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: #000;
      font-size: .65rem;
      font-weight: 800;
      letter-spacing: .1em;
      padding: 4px 14px;
      border-radius: 100px;
      font-family: var(--font-display);
    }
    .pkg-icon {
      width: 44px; height: 44px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .pkg-icon.basic { background: rgba(100,100,150,.15); }
    .pkg-icon.standard { background: rgba(245,166,35,.1); }
    .pkg-icon.premium { background: rgba(245,166,35,.15); }
    .pkg-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .pkg-name {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 4px;
    }
    .pkg-tagline { font-size: .78rem; color: var(--muted); margin-bottom: 16px; }
    .pkg-price-num {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .pkg-divider { height: 1px; background: var(--border); margin: 16px 0; }
    .pkg-feats { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
    .pkg-feat {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: .8rem;
      color: var(--muted);
      line-height: 1.5;
    }
    .pkg-feat-icon {
      width: 18px; height: 18px;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .pkg-feat-icon svg { width: 100%; height: 100%; }
    .pkg-feat.yes { color: var(--text); }
    .pkg-cta button {
      width: 100%;
      padding: 12px;
      border: none;
      border-radius: var(--radius-sm);
      font-family: var(--font-display);
      font-size: .88rem;
      font-weight: 700;
      cursor: pointer;
      transition: opacity .2s, transform .2s;
    }
    .pkg-cta .btn-basic { background: var(--surface2); color: var(--text); }
    .pkg-cta .btn-standard { background: var(--gold); color: #000; }
    .pkg-cta .btn-premium { background: var(--gold); color: #000; }
    .pkg-cta button:hover { opacity: .88; transform: translateY(-1px); }
    .pkg-compare-note {
      text-align: center;
      margin-top: 32px;
      font-size: .83rem;
      color: var(--muted);
    }
    .pkg-compare-note a { color: var(--gold); font-weight: 600; }

    /* ═══════════════════════════════════════
       ORDER FORM
    ═══════════════════════════════════════ */
    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    @media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
    .form-full { grid-column: span 2; }
    @media (max-width: 600px) { .form-full { grid-column: span 1; } }
    .form-group { display: flex; flex-direction: column; gap: 8px; }
    .form-label {
      font-size: .78rem;
      font-weight: 600;
      color: var(--text);
      font-family: var(--font-display);
      letter-spacing: .04em;
    }
    .form-label span { color: var(--gold); }
    .form-input, .form-select, .form-textarea {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 12px 16px;
      color: var(--text);
      font-size: .9rem;
      font-family: var(--font-body);
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      width: 100%;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(245,166,35,.1);
    }
    .form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237878A0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
    .form-textarea { resize: vertical; min-height: 100px; }
    .form-select option { background: var(--bg2); }

    /* ═══════════════════════════════════════
       PAYMENT
    ═══════════════════════════════════════ */
    /* ORDER+PAYMENT TABS */
    .op-tabs {
      display: flex;
      gap: 8px;
      margin-bottom: 24px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 6px;
    }
    .op-tab {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 20px;
      border-radius: 10px;
      border: none;
      background: transparent;
      color: var(--muted);
      font-family: var(--font-display);
      font-size: .88rem;
      font-weight: 700;
      cursor: pointer;
      transition: background .2s, color .2s, box-shadow .2s;
    }
    .op-tab:hover { color: var(--text); background: var(--surface2); }
    .op-tab.active { background: var(--gold); color: #000; box-shadow: 0 4px 16px rgba(245,166,35,.3); }
    .op-tab svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .op-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
    .op-card-header { display: flex; align-items: center; gap: 16px; }
    .op-card-icon { width: 48px; height: 48px; background: var(--gold-dim); border: 1px solid var(--border-gold); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .op-card-icon svg { width: 22px; height: 22px; }
    .op-card-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--white); }
    .op-card-sub { font-size: .8rem; color: var(--muted); margin-top: 3px; }
    .op-divider { height: 1px; background: var(--border); margin: 24px 0; }
    .op-next-hint { font-size: .82rem; color: var(--muted); background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 16px; }
    .op-notice { background: var(--bg); border: 1px solid var(--border-gold); border-radius: var(--radius); padding: 20px 24px; margin-top: 24px; }
    .op-notice-title { font-family: var(--font-display); font-size: .88rem; font-weight: 700; color: var(--gold); margin-bottom: 12px; }
    .op-notice ul { display: flex; flex-direction: column; gap: 8px; }
    .op-notice ul li { font-size: .83rem; color: var(--muted); padding-left: 14px; position: relative; }
    .op-notice ul li::before { content: '•'; position: absolute; left: 0; color: var(--gold); }

    .payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    @media (max-width: 900px) { .payment-grid { grid-template-columns: 1fr; } }
    .payment-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      text-align: center;
      transition: border-color .2s, transform .2s;
    }
    .payment-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
    .payment-icon {
      font-size: 2rem;
      margin-bottom: 14px;
    }
    .payment-name {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 6px;
    }
    .payment-detail { font-size: .82rem; color: var(--muted); line-height: 1.5; }
    .payment-detail strong { color: var(--gold); font-family: var(--font-display); }

    /* ═══════════════════════════════════════
       MODAL
    ═══════════════════════════════════════ */
    .modal-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(0,0,0,.75);
      backdrop-filter: blur(8px);
      align-items: center;
      justify-content: center;
    }
    .modal-backdrop.open { display: flex; }
    .modal {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 40px 36px;
      max-width: 480px;
      width: 90%;
      position: relative;
      box-shadow: var(--shadow);
    }
    .modal-close {
      position: absolute;
      top: 18px; right: 18px;
      background: var(--surface);
      border: 1px solid var(--border);
      color: var(--muted);
      width: 32px; height: 32px;
      border-radius: 50%;
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: color .2s, border-color .2s;
      line-height: 1;
    }
    .modal-close:hover { color: var(--text); border-color: var(--border-gold); }
    .modal-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 24px;
    }
    .modal-header-icon {
      width: 44px; height: 44px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .modal-header-icon svg { width: 22px; height: 22px; fill: white; }
    .modal-title {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
    }
    .modal-subtitle { font-size: .78rem; color: var(--muted); margin-top: 2px; }
    .modal-divider { height: 1px; background: var(--border); margin: 20px 0; }
    .modal-fields { display: flex; flex-direction: column; gap: 16px; }
    .modal-submit {
      margin-top: 20px;
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, #25D366, #128C7E);
      color: #fff;
      font-size: .92rem;
      font-weight: 700;
      border: none;
      border-radius: var(--radius-sm);
      cursor: pointer;
      font-family: var(--font-display);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: opacity .2s, transform .2s;
    }
    .modal-submit:hover { opacity: .9; transform: translateY(-1px); }
    .modal-submit svg { width: 18px; height: 18px; fill: white; }
    .modal-privacy { font-size: .72rem; color: var(--muted); text-align: center; margin-top: 10px; }

    /* ═══════════════════════════════════════
       REVISI MODAL
    ═══════════════════════════════════════ */
    #revisiModal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(0,0,0,.75);
      backdrop-filter: blur(8px);
      align-items: center;
      justify-content: center;
    }
    #revisiModal.open { display: flex; }

    /* ═══════════════════════════════════════
       ANIMATIONS
    ═══════════════════════════════════════ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .fade {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .fade.visible { opacity: 1; transform: translateY(0); }
    .fade.d1 { transition-delay: .1s; }
    .fade.d2 { transition-delay: .2s; }
    .fade.d3 { transition-delay: .3s; }
    .fade.d4 { transition-delay: .4s; }

    /* ═══════════════════════════════════════
       FLOATING WA BUTTON
    ═══════════════════════════════════════ */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 800;
      width: 56px; height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 32px rgba(37,211,102,.35);
      cursor: pointer;
      transition: transform .2s, box-shadow .2s;
      text-decoration: none;
    }
    .wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,.5); }
    .wa-float svg { width: 28px; height: 28px; fill: white; }

    /* ═══════════════════════════════════════
       UTILITY
    ═══════════════════════════════════════ */
    .text-center { text-align: center; }
    .mt-8 { margin-top: 32px; }
    .section-header-centered { text-align: center; margin-bottom: 56px; }
    .section-header-centered .section-sub { margin: 12px auto 0; }

    /* Scroll cue */
    .scroll-cue {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      margin-top: 60px;
      color: var(--muted);
      font-size: .7rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      animation: fadeUp .7s .7s both;
    }
    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, transparent, var(--border-gold));
      animation: scrollAnim 1.5s ease-in-out infinite;
    }
    @keyframes scrollAnim {
      0%, 100% { transform: scaleY(0); transform-origin: top; }
      50% { transform: scaleY(1); transform-origin: top; }
    }

    /* ═══════════════════════════════════════
       TESTIMONI FULL PAGE
    ═══════════════════════════════════════ */
    .testi-full-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    @media (max-width: 900px) { .testi-full-grid { grid-template-columns: 1fr; } }