
    /* ════════════════════════════
       DESIGN SYSTEM
    ════════════════════════════ */
    :root {
      --ink:       #0c0c0e;
      --ink-2:     #1a1a20;
      --ink-3:     #2e2e38;
      --gold:      #e8a020;
      --gold-l:    #f5c05a;
      --green:     #22c55e;
      --green-d:   #16a34a;
      --cream:     #faf7f2;
      --warm:      #f0ebe0;
      --muted:     #888898;
      --muted-l:   #b0b0be;
      --white:     #ffffff;
      --border:    rgba(255,255,255,0.08);
      --border-l:  #e8e2d8;
      --r-sm:      10px;
      --r-md:      18px;
      --r-lg:      28px;
      --r-xl:      40px;
      --shadow-sm: 0 4px 16px rgba(12,12,14,0.08);
      --shadow-md: 0 12px 40px rgba(12,12,14,0.14);
      --shadow-lg: 0 24px 72px rgba(12,12,14,0.22);
      --font-d:    'Bebas Neue', sans-serif;
      --font-b:    'DM Sans', sans-serif;
      --ease:      cubic-bezier(0.16, 1, 0.3, 1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-b);
      background: var(--ink);
      color: var(--white);
      line-height: 1.65;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container {
      width: min(1160px, 92%);
      margin: 0 auto;
    }

    /* ════ NOISE TEXTURE ════ */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.025;
      pointer-events: none;
      z-index: 9999;
    }

    /* ════ ANIMATIONS ════ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(32px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; } to { opacity: 1; }
    }
    @keyframes slideRight {
      from { opacity: 0; transform: translateX(-28px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes pulse-ring {
      0%   { transform: scale(1); opacity: 0.6; }
      100% { transform: scale(1.55); opacity: 0; }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-10px); }
    }
    @keyframes shimmer {
      0%   { background-position: -400px 0; }
      100% { background-position: 400px 0; }
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ════ TYPOGRAPHY ════ */
    h1, h2, h3 { font-family: var(--font-d); letter-spacing: 0.01em; }

    h1 { font-size: clamp(52px, 8vw, 100px); line-height: 0.94; }
    h2 { font-size: clamp(36px, 5vw, 60px); line-height: 1.05; }
    h3 { font-size: clamp(20px, 2.5vw, 26px); line-height: 1.2; }

    /* ════ BUTTONS ════ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 26px;
      border-radius: 999px;
      font-family: var(--font-b);
      font-weight: 700;
      font-size: 15px;
      cursor: pointer;
      transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s;
      border: none;
    }
    .btn:hover { transform: translateY(-2px); }

    .btn-green {
      background: var(--green);
      color: var(--ink);
      box-shadow: 0 8px 28px rgba(34,197,94,0.30);
    }
    .btn-green:hover { background: #4ade80; box-shadow: 0 12px 36px rgba(34,197,94,0.44); }

    .btn-gold {
      background: var(--gold);
      color: var(--ink);
      box-shadow: 0 8px 28px rgba(232,160,32,0.28);
    }
    .btn-gold:hover { background: var(--gold-l); box-shadow: 0 12px 36px rgba(232,160,32,0.42); }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.22);
    }
    .btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

    .btn-ghost {
      background: rgba(255,255,255,0.07);
      color: var(--white);
      backdrop-filter: blur(10px);
    }
    .btn-ghost:hover { background: rgba(255,255,255,0.13); }

    /* ════ BADGE ════ */
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 16px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .badge-gold {
      background: rgba(232,160,32,0.14);
      color: var(--gold-l);
      border: 1px solid rgba(232,160,32,0.28);
    }
    .badge-green {
      background: rgba(34,197,94,0.12);
      color: #4ade80;
      border: 1px solid rgba(34,197,94,0.26);
    }
    .badge-dot::before {
      content: '';
      display: inline-block;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: currentColor;
      animation: pulse-ring 1.6s infinite;
    }

    /* ════════════════════════════
       HEADER / NAV
    ════════════════════════════ */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 0;
      transition: background 0.3s, box-shadow 0.3s;
    }
    header.scrolled {
      background: rgba(12,12,14,0.88);
      backdrop-filter: blur(20px);
      box-shadow: 0 1px 0 rgba(255,255,255,0.06);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 0;
    }

    .logo {
      font-family: var(--font-d);
      font-size: 26px;
      letter-spacing: 0.04em;
      color: var(--white);
    }
    .logo em { color: var(--gold); font-style: normal; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      font-size: 14px;
      font-weight: 500;
      color: var(--muted-l);
    }
    .nav-links a:not(.btn):hover { color: var(--white); }

    /* ════════════════════════════
       HERO
    ════════════════════════════ */
    .hero {
      min-height: 100svh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 120px 0 80px;
    }

    /* Grid lines background */
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 70% at 65% 50%, rgba(232,160,32,0.07) 0%, transparent 65%),
                  radial-gradient(ellipse 60% 80% at 20% 80%, rgba(34,197,94,0.06) 0%, transparent 55%);
    }

    /* Big number watermark */
    .hero-watermark {
      position: absolute;
      right: -2%;
      top: 50%;
      transform: translateY(-50%);
      font-family: var(--font-d);
      font-size: clamp(200px, 30vw, 420px);
      line-height: 1;
      color: rgba(255,255,255,0.025);
      user-select: none;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 48px;
      align-items: center;
    }

    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
    }

    .hero h1 {
      color: var(--white);
      margin-bottom: 24px;
    }
    .hero h1 .accent { color: var(--gold); }

    .hero-sub {
      font-size: 18px;
      color: var(--muted-l);
      max-width: 520px;
      margin-bottom: 36px;
      line-height: 1.7;
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 48px;
    }

    .stat-row {
      display: flex;
      gap: 36px;
      flex-wrap: wrap;
    }
    .stat-item { }
    .stat-num {
      font-family: var(--font-d);
      font-size: 38px;
      color: var(--gold);
      line-height: 1;
    }
    .stat-label {
      font-size: 13px;
      color: var(--muted);
      margin-top: 4px;
    }

    /* Hero card */
    .hero-card {
      background: var(--ink-2);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: var(--r-lg);
      padding: 28px;
      position: relative;
      overflow: hidden;
      animation: float 5s ease-in-out infinite;
    }
    .hero-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--green));
    }

    .card-visual {
      aspect-ratio: 1 / 1;
      border-radius: var(--r-md);
      background: linear-gradient(135deg, var(--ink-3) 0%, #151520 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-d);
      font-size: 22px;
      color: var(--muted);
      letter-spacing: 0.08em;
      text-align: center;
      margin-bottom: 20px;
      position: relative;
      overflow: hidden;
    }
    .card-visual::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(232,160,32,0.06), rgba(34,197,94,0.06));
    }

    .card-pill {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 999px;
      padding: 10px 16px;
      font-size: 14px;
    }
    .card-pill strong { color: var(--green); }

    .card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }
    .card-tag {
      padding: 6px 12px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 999px;
      font-size: 12px;
      color: var(--muted-l);
    }

    /* ════════════════════════════
       MARQUEE STRIP
    ════════════════════════════ */
    .marquee-wrap {
      background: var(--gold);
      padding: 14px 0;
      overflow: hidden;
      position: relative;
    }
    .marquee-track {
      display: flex;
      gap: 0;
      animation: marquee 24s linear infinite;
      white-space: nowrap;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      padding: 0 28px;
      font-family: var(--font-d);
      font-size: 15px;
      color: var(--ink);
      letter-spacing: 0.06em;
    }
    .marquee-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(12,12,14,0.35);
      flex-shrink: 0;
    }

    /* ════════════════════════════
       SECTION BASE
    ════════════════════════════ */
    section { padding: 96px 0; }

    .section-tag {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .section-head { margin-bottom: 52px; }
    .section-head h2 { margin-bottom: 16px; }
    .section-head p {
      font-size: 18px;
      color: var(--muted-l);
      max-width: 560px;
      line-height: 1.7;
    }
    .section-head.centered { text-align: center; }
    .section-head.centered p { margin: 0 auto; }

    /* ════════════════════════════
       PROBLEMS
    ════════════════════════════ */
    #masalah { background: var(--ink-2); }

    .problem-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      border-radius: var(--r-lg);
      overflow: hidden;
    }
    .problem-cell {
      background: var(--ink);
      padding: 40px;
      position: relative;
      transition: background 0.3s;
    }
    .problem-cell:hover { background: #121218; }
    .problem-cell:nth-child(3) { grid-column: span 2; }

    .problem-num {
      font-family: var(--font-d);
      font-size: 80px;
      color: rgba(255,255,255,0.04);
      line-height: 1;
      position: absolute;
      top: 20px;
      right: 28px;
    }
    .problem-icon {
      font-size: 28px;
      margin-bottom: 20px;
    }
    .problem-cell h3 { margin-bottom: 10px; }
    .problem-cell p { color: var(--muted-l); font-size: 16px; }
    .problem-cell:nth-child(3) {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: center;
    }
    .problem-cell:nth-child(3) .problem-left { }
    .problem-cell:nth-child(3) .problem-right {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .tip-pill {
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(34,197,94,0.08);
      border: 1px solid rgba(34,197,94,0.18);
      border-radius: 12px;
      padding: 12px 16px;
      font-size: 14px;
      color: var(--muted-l);
    }
    .tip-pill .icon { font-size: 18px; }

    /* ════════════════════════════
       SERVICES
    ════════════════════════════ */
    #layanan { background: var(--cream); color: var(--ink); }
    #layanan .section-tag { color: var(--ink-3); opacity: 0.6; }
    #layanan .section-head p { color: #666; }
    #layanan h2 { color: var(--ink); }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .service-card {
      background: var(--white);
      border: 1px solid var(--border-l);
      border-radius: var(--r-md);
      padding: 32px;
      position: relative;
      overflow: hidden;
      transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
    }
    .service-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--green-d));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s var(--ease);
    }
    .service-card:hover::before { transform: scaleX(1); }
    .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

    .service-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: linear-gradient(135deg, #fff3d4, #fde68a);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 20px;
    }
    .service-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--ink); }
    .service-card p { color: #666; font-size: 15px; line-height: 1.65; }

    /* ════════════════════════════
       PROCESS
    ════════════════════════════ */
    #proses { background: var(--ink); }

    .process-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }

    .process-steps {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .step-item {
      display: flex;
      gap: 24px;
      position: relative;
    }
    .step-item:not(:last-child) .step-line {
      position: absolute;
      left: 22px;
      top: 48px;
      bottom: -24px;
      width: 2px;
      background: linear-gradient(to bottom, var(--gold), rgba(232,160,32,0.1));
    }

    .step-num-wrap {
      flex-shrink: 0;
      position: relative;
    }
    .step-num {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--gold);
      color: var(--ink);
      font-family: var(--font-d);
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 2;
    }

    .step-body { padding: 0 0 40px; }
    .step-body h3 { color: var(--white); margin-bottom: 8px; font-size: 22px; }
    .step-body p { color: var(--muted-l); font-size: 15px; }

    .process-side {
      display: flex;
      flex-direction: column;
      gap: 20px;
      position: sticky;
      top: 100px;
    }

    .info-card {
      background: var(--ink-2);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--r-md);
      padding: 28px;
    }
    .info-card h3 { color: var(--white); margin-bottom: 10px; font-size: 22px; }
    .info-card p { color: var(--muted-l); font-size: 15px; }

    .time-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 16px;
      padding: 8px 14px;
      background: rgba(232,160,32,0.1);
      border: 1px solid rgba(232,160,32,0.22);
      border-radius: 999px;
      font-size: 14px;
      color: var(--gold-l);
      font-weight: 600;
    }

    /* ════════════════════════════
       PRICING
    ════════════════════════════ */
    #harga { background: var(--ink-2); }

    .price-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .price-card {
      background: var(--ink);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--r-lg);
      padding: 36px 32px;
      position: relative;
      overflow: hidden;
      transition: transform 0.28s var(--ease), border-color 0.28s;
    }
    .price-card:hover { transform: translateY(-5px); border-color: rgba(232,160,32,0.35); }
    .price-card.featured {
      border-color: var(--gold);
      background: linear-gradient(160deg, #1a1608 0%, var(--ink) 100%);
    }
    .price-card.featured::before {
      content: 'PALING POPULER';
      position: absolute;
      top: 18px; right: 18px;
      background: var(--gold);
      color: var(--ink);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.1em;
      padding: 5px 10px;
      border-radius: 999px;
    }

    .price-label {
      font-size: 13px;
      color: var(--muted);
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .price-name { font-size: 28px; color: var(--white); margin-bottom: 4px; }
    .price-amount {
      font-family: var(--font-d);
      font-size: 52px;
      color: var(--gold);
      line-height: 1.1;
      margin: 16px 0;
    }
    .price-amount sub {
      font-size: 20px;
      color: var(--muted-l);
      font-family: var(--font-b);
      font-weight: 400;
    }
    .price-desc { color: var(--muted-l); font-size: 15px; margin-bottom: 24px; }
    .price-divider {
      height: 1px;
      background: rgba(255,255,255,0.07);
      margin: 20px 0;
    }

    .price-card {
  display: flex;
  flex-direction: column;
}

.price-cta {
  margin-top: auto;
  padding-top: 24px;
}

.price-cta .btn {
  width: 100%;
  justify-content: center;
}

    .checklist {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .checklist li {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--muted-l);
      font-size: 15px;
    }
    .checklist li::before {
      content: '';
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: rgba(34,197,94,0.15);
      border: 1.5px solid rgba(34,197,94,0.4);
      flex-shrink: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%2322c55e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
    }

    /* ════════════════════════════
       WHY US
    ════════════════════════════ */
    #keunggulan { background: var(--ink); }

    .why-layout {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 64px;
      align-items: center;
    }

    .why-visual {
      background: var(--ink-2);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: var(--r-xl);
      padding: 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .why-stat {
      background: var(--ink);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: var(--r-md);
      padding: 24px;
      text-align: center;
    }
    .why-stat-num {
      font-family: var(--font-d);
      font-size: 42px;
      color: var(--gold);
      line-height: 1;
    }
    .why-stat-label { color: var(--muted); font-size: 13px; margin-top: 6px; }

    .why-stat.accent-green .why-stat-num { color: var(--green); }
    .why-stat.full { grid-column: span 2; background: linear-gradient(135deg, rgba(232,160,32,0.08), rgba(34,197,94,0.06)); border-color: rgba(232,160,32,0.2); }

    .why-list {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .why-item {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }
    .why-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: rgba(232,160,32,0.1);
      border: 1px solid rgba(232,160,32,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }
    .why-body h3 { color: var(--white); margin-bottom: 6px; font-size: 20px; }
    .why-body p { color: var(--muted-l); font-size: 15px; }

    /* ════════════════════════════
       CTA BANNER
    ════════════════════════════ */
    .cta-section { padding: 0 0 96px; background: var(--ink); }
    .cta-banner {
      background: linear-gradient(135deg, #1a1408, #0e160b);
      border: 1px solid rgba(232,160,32,0.2);
      border-radius: var(--r-xl);
      padding: 72px 64px;
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 40px;
      align-items: center;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(232,160,32,0.12) 0%, transparent 70%);
    }
    .cta-banner::after {
      content: '';
      position: absolute;
      bottom: -60px; left: -60px;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
    }

    .cta-banner h2 { font-size: clamp(34px, 4vw, 54px); color: var(--white); margin-bottom: 14px; }
    .cta-banner p { color: var(--muted-l); font-size: 17px; line-height: 1.7; }
    .cta-actions { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 2; }
    .cta-actions .btn { width: 100%; justify-content: center; font-size: 16px; padding: 16px 28px; }
    .cta-note { font-size: 13px; color: var(--muted); text-align: center; margin-top: 6px; }

    /* ════════════════════════════
       FAQ
    ════════════════════════════ */
    #faq { background: var(--cream); color: var(--ink); }
    #faq .section-tag { opacity: 0.55; }
    #faq h2 { color: var(--ink); }
    #faq .section-head p { color: #666; }

    .faq-list { display: flex; flex-direction: column; gap: 0; max-width: 820px; }

    .faq-item {
      border-bottom: 1px solid var(--border-l);
    }
    .faq-item:first-child { border-top: 1px solid var(--border-l); }

    .faq-q {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 24px 0;
      font-family: var(--font-b);
      font-size: 17px;
      font-weight: 600;
      color: var(--ink);
      transition: color 0.2s;
    }
    .faq-q:hover { color: var(--green-d); }
    .faq-q.open { color: var(--green-d); }

    .faq-arrow {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: var(--warm);
      border: 1px solid var(--border-l);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.3s var(--ease), background 0.2s;
      font-size: 16px;
    }
    .faq-q.open .faq-arrow { transform: rotate(45deg); background: var(--green-d); color: white; }

    .faq-a {
      font-size: 15px;
      color: #555;
      line-height: 1.7;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s var(--ease), padding 0.3s;
    }
    .faq-a.open { max-height: 200px; padding-bottom: 20px; }

    /* ════════════════════════════
       FOOTER
    ════════════════════════════ */
    footer {
      background: #030306;
      border-top: 1px solid rgba(255,255,255,0.05);
      padding: 52px 0 36px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 52px;
    }
    .footer-logo {
      font-family: var(--font-d);
      font-size: 28px;
      margin-bottom: 14px;
    }
    .footer-logo em { color: var(--gold); font-style: normal; }
    .footer-desc { color: var(--muted); font-size: 15px; line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
    .footer-social { display: flex; gap: 12px; }
    .social-btn {
      width: 38px; height: 38px;
      border-radius: 10px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
      transition: background 0.2s;
    }
    .social-btn:hover { background: rgba(255,255,255,0.12); }

    .footer-col h4 {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 18px;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { color: var(--muted-l); font-size: 15px; transition: color 0.2s; }
    .footer-links a:hover { color: var(--white); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }
    .footer-bottom p { color: var(--muted); font-size: 14px; }
    .footer-legal { display: flex; gap: 20px; }
    .footer-legal a { color: var(--muted); font-size: 14px; transition: color 0.2s; }
    .footer-legal a:hover { color: var(--white); }

    /* ════════════════════════════
       FLOATING WA
    ════════════════════════════ */
    /* ════════════════════════════
   FLOATING WHATSAPP PREMIUM
════════════════════════════ */

/* Ring pulse */
@keyframes wa-ring {
  0% {
    transform: scale(1);
    opacity: .65;
  }
  70% {
    transform: scale(2);
    opacity: .15;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

/* Entry animation */
@keyframes wa-entry {
  from {
    opacity: 0;
    transform: translateY(30px) scale(.85);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Breathing glow */
@keyframes wa-breathe {
  0%,100% {
    box-shadow:
      0 8px 30px rgba(18,140,62,.35),
      0 2px 8px rgba(0,0,0,.18);
  }
  50% {
    box-shadow:
      0 16px 50px rgba(18,140,62,.55),
      0 4px 16px rgba(0,0,0,.22);
  }
}

/* Floating bubble */
.floating-wa{
  position:fixed;
  right:28px;
  bottom:28px;
  z-index:300;

  display:flex;
  align-items:stretch;

  border-radius:20px;
  overflow:hidden;
  text-decoration:none;

  backdrop-filter:blur(10px);

  animation:
    wa-entry .65s cubic-bezier(.34,1.56,.64,1) .8s both,
    wa-breathe 3s ease-in-out 2s infinite;

  transition:
    transform .25s cubic-bezier(.34,1.56,.64,1),
    border-radius .25s ease,
    box-shadow .25s ease;
}

/* hover */
.floating-wa:hover{
  transform:translateY(-6px) scale(1.03);
  border-radius:24px;
}

/* click */
.floating-wa:active{
  transform:scale(.96);
}

/* Icon area */
.wa-icon-block{
  width:60px;
  background:linear-gradient(
    180deg,
    #0f7a38 0%,
    #0c6b31 100%
  );

  display:flex;
  align-items:center;
  justify-content:center;

  flex-shrink:0;
  position:relative;
}

/* Icon */
.wa-icon-block svg{
  width:28px;
  height:28px;
  fill:#fff;
  position:relative;
  z-index:2;
}

/* Online indicator */
.wa-online{
  position:absolute;
  top:8px;
  right:8px;

  width:10px;
  height:10px;

  border-radius:50%;
  background:#86efac;
  border:2px solid #0f7a38;
  z-index:3;
}

/* Ring effect */
.wa-online::after{
  content:'';
  position:absolute;
  inset:-5px;

  border-radius:50%;
  border:1.5px solid rgba(134,239,172,.45);

  animation:wa-ring 2s ease-out infinite;
}

/* Divider */
.wa-divider{
  width:1px;
  background:rgba(0,0,0,.18);
  flex-shrink:0;
}

/* Text area */
.wa-text-block{
  background:linear-gradient(
    180deg,
    #16a34a 0%,
    #15803d 100%
  );

  padding:0 22px 0 16px;
  min-width:155px;

  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:3px;
}

/* Label small */
.wa-label-top{
  font-family:var(--font-b);
  font-size:10px;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,.62);
  line-height:1;
}

/* Main text */
.wa-label-main{
  font-family:var(--font-d);
  font-size:22px;
  letter-spacing:.05em;
  color:#fff;
  line-height:1.05;
}

/* Mobile mode */
@media (max-width:600px){
  .floating-wa{
    width:60px;
    height:60px;
    border-radius:50%;
    right:18px;
    bottom:18px;
    overflow:visible;
    animation:wa-entry .65s cubic-bezier(.34,1.56,.64,1) .8s both;
  }

  .wa-divider,
  .wa-text-block{
    display:none;
  }

  .wa-icon-block{
    width:60px;
    height:60px;
    border-radius:50%;
  }

  .wa-icon-block svg{
    width:30px;
    height:30px;
  }
}

    /* ════════════════════════════
       BREADCRUMB
    ════════════════════════════ */
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 28px;
    }
    .breadcrumb a:hover { color: var(--white); }
    .breadcrumb span { color: var(--muted-l); }

    /* ════════════════════════════
       RESPONSIVE
    ════════════════════════════ */
    @media (max-width: 960px) {
      .hero-inner, .process-layout, .why-layout,
      .cta-banner, .footer-grid { grid-template-columns: 1fr; }

      .hero-inner .hero-card { display: none; }
      .problem-grid, .service-grid, .price-grid { grid-template-columns: 1fr 1fr; }
      .problem-cell:nth-child(3) { grid-column: span 2; grid-template-columns: 1fr; }
      .cta-banner { padding: 48px 32px; }
      .why-visual { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 600px) {
      .nav-links { display: none; }
      h1 { font-size: 52px; }
      .problem-grid, .service-grid, .price-grid { grid-template-columns: 1fr; }
      .problem-cell:nth-child(3) { grid-column: span 1; }
      .stat-row { gap: 20px; }
      .why-visual { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .floating-wa { right: 18px; bottom: 18px; border-radius: 50%; width: 58px; height: 58px; animation: wa-entry 0.65s cubic-bezier(0.34,1.56,0.64,1) 1.2s both; }
      .floating-wa .wa-divider, .floating-wa .wa-text-block { display: none; }
      .wa-icon-block { width: 58px; border-radius: 50%; }
      .hero-cta { flex-direction: column; }
      section { padding: 64px 0; }
    }
