    :root {
      --gold: #C9A84C;
      --gold-light: #F0D080;
      --gold-pale: #FDF6E3;
      --emerald: #C9A84C;
      --emerald-mid: #DFBA55;
      --emerald-light: #FDF6E3;
      --cream: #FDFAF3;
      --ink: #1A1A1A;
      --ink-mid: #3D3D3D;
      --ink-soft: #6B6B6B;
      --sand: #F5EDD5;
      --white: #FFFFFF;
      --border: rgba(201, 168, 76, 0.25);
      --shadow: 0 8px 40px rgba(201, 168, 76, 0.10);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--ink);
      overflow-x: hidden;
    }

    /* ─── HEADER / NAV ─── */
    nav {
      position: fixed;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 100;
      width: 92%;
      max-width: 1200px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 24px;
      background: rgba(253, 250, 243, 0.85);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(201, 168, 76, 0.15);
      box-shadow: 0 8px 32px rgba(201, 168, 76, 0.06);
      border-radius: 100px;
      transition: all 0.3s ease;
    }

    .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .logo img {
      height: 44px;
      width: auto;
      object-fit: contain;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 32px;
    }

    nav ul a {
      text-decoration: none;
      color: var(--ink-mid);
      font-size: 14px;
      font-weight: 500;
      transition: color 0.2s;
    }

    nav ul a:hover {
      color: var(--gold);
    }

    .nav-cta {
      background: var(--emerald);
      color: var(--white) !important;
      padding: 10px 22px;
      border-radius: 100px;
      font-weight: 600 !important;
      transition: background 0.2s, transform 0.15s !important;
      position: relative;
      overflow: visible;
      z-index: 1;
    }

    .nav-cta::before {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 100px;
      background: var(--gold);
      filter: blur(14px);
      opacity: 0.4;
      z-index: -1;
      animation: btnGlow 2.5s ease-in-out infinite;
    }

    .nav-cta:hover {
      background: var(--emerald-mid) !important;
      color: var(--white) !important;
      transform: translateY(-1px);
    }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      padding: 120px max(5%, calc((100% - 1200px) / 2)) 80px;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 70% 50%, rgba(201, 168, 76, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
    }

    .animated-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      z-index: -1;
      opacity: 0.6;
      animation: drift 15s infinite alternate ease-in-out;
    }

    .blob-1 {
      top: 10%;
      left: -10%;
      width: 400px;
      height: 400px;
      background: rgba(201, 168, 76, 0.25);
      animation-duration: 20s;
    }

    .blob-2 {
      bottom: -10%;
      right: -5%;
      width: 500px;
      height: 500px;
      background: rgba(201, 168, 76, 0.15);
      animation-duration: 25s;
      animation-delay: -5s;
    }

    .blob-3 {
      top: 40%;
      left: 40%;
      width: 300px;
      height: 300px;
      background: rgba(240, 208, 128, 0.25);
      animation-duration: 18s;
      animation-delay: -10s;
    }

    @keyframes drift {
      0% {
        transform: translate(0, 0) scale(1);
      }

      33% {
        transform: translate(5vw, 10vh) scale(1.1);
      }

      66% {
        transform: translate(-5vw, 5vh) scale(0.9);
      }

      100% {
        transform: translate(10vw, -5vh) scale(1.05);
      }
    }

    .hero-pattern {
      position: absolute;
      inset: 0;
      opacity: 0.03;
      background-image: repeating-linear-gradient(45deg,
          var(--emerald) 0,
          var(--emerald) 1px,
          transparent 0,
          transparent 50%);
      background-size: 20px 20px;
    }

    .hero-content {
      position: relative;
      max-width: 680px;
      animation: fadeUp 0.8s ease both;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold-pale);
      border: 1px solid var(--gold);
      color: var(--emerald);
      font-size: 13px;
      font-weight: 600;
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 28px;
      letter-spacing: 0.3px;
    }

    .badge-dot {
      width: 7px;
      height: 7px;
      background: var(--gold);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.6;
        transform: scale(0.8);
      }
    }

    h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 5vw, 60px);
      font-weight: 700;
      line-height: 1.15;
      color: var(--ink);
      margin-bottom: 24px;
    }

    h1 em {
      font-style: italic;
      color: var(--emerald);
    }

    h1 .gold {
      color: var(--gold);
      font-style: normal;
    }

    .hero-desc {
      font-size: 18px;
      color: var(--ink-soft);
      line-height: 1.75;
      margin-bottom: 40px;
      font-weight: 300;
    }

    .hero-cta-group {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      align-items: center;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--emerald-mid);
      color: var(--white);
      padding: 16px 32px;
      border-radius: 100px;
      font-weight: 700;
      font-size: 16px;
      text-decoration: none;
      transition: transform 0.2s, background 0.2s, color 0.2s;
      box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
      position: relative;
      overflow: visible;
      z-index: 1;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 100px;
      background: var(--gold);
      filter: blur(18px);
      opacity: 0.45;
      z-index: -1;
      animation: btnGlow 2.5s ease-in-out infinite;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      background: var(--emerald-mid);
      color: var(--white);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--emerald);
      font-weight: 600;
      font-size: 16px;
      text-decoration: none;
      transition: gap 0.2s;
    }

    .btn-secondary:hover {
      gap: 12px;
      color: var(--gold);
    }

    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 56px;
      padding-top: 40px;
      border-top: 1px solid var(--border);
      flex-wrap: wrap;
    }

    .stat-item {}

    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 700;
      color: var(--emerald);
      line-height: 1;
    }

    .stat-label {
      font-size: 13px;
      color: var(--ink-soft);
      margin-top: 4px;
      font-weight: 400;
    }

    .hero-visual {
      position: absolute;
      right: max(5%, calc((100% - 1200px) / 2));
      top: 0;
      bottom: 0;
      width: 42%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-card-float {
      position: relative;
      width: 100%;
      max-width: 480px;
      display: flex;
      justify-content: center;
      animation: float 5s ease-in-out infinite;
    }

    .hero-image {
      width: auto;
      max-width: 100%;
      height: auto;
      max-height: 75vh;
      display: block;
      object-fit: contain;
      filter: drop-shadow(0 20px 40px rgba(201, 168, 76, 0.15));
    }

    .hero-blob {
      position: absolute;
      z-index: -1;
      top: 50%;
      left: 50%;
      width: 480px;
      height: 480px;
      background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
      transform: translate(-50%, -50%);
      opacity: 0.3;
      border-radius: 50%;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-12px);
      }
    }

    .badge-float {
      position: absolute;
      background: var(--emerald);
      color: var(--white);
      border-radius: 16px;
      padding: 10px 16px;
      font-size: 13px;
      font-weight: 600;
      white-space: nowrap;
    }

    .badge-float.b1 {
      top: -16px;
      right: -20px;
      animation: float 4s ease-in-out 0.5s infinite;
    }

    .badge-float.b2 {
      bottom: -16px;
      left: -20px;
      background: var(--emerald-mid);
      color: var(--ink);
      animation: float 4s ease-in-out 1s infinite;
    }

    .floating-wa {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 60px;
      height: 60px;
      background-color: #25D366;
      color: #FFF;
      border-radius: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      z-index: 1000;
      transition: transform 0.2s;
      animation: wa-pulse 2s infinite;
    }

    .floating-wa:hover {
      animation: wa-wiggle 1s ease-in-out infinite;
      background-color: #075E54;
    }

    .floating-wa svg {
      width: 32px;
      height: 32px;
      fill: currentColor;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      z-index: 110;
    }

    .menu-toggle span {
      width: 28px;
      height: 3px;
      background: var(--ink);
      border-radius: 4px;
      transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

    .mobile-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
      z-index: 90;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .mobile-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    @media (max-width: 900px) {
      .hero {
        flex-direction: column;
        padding-top: 140px;
        text-align: center;
      }

      .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .hero-cta-group {
        justify-content: center;
      }

      .hero-stats {
        justify-content: center;
        gap: 24px;
      }

      .hero-visual {
        position: relative;
        width: 100%;
        right: auto;
        top: auto;
        bottom: auto;
        margin-top: 40px;
      }

      .hero-card-float {
        width: 90%;
        max-width: 320px;
      }

      .badge-float.b1 {
        right: -10px;
        top: -10px;
      }

      .badge-float.b2 {
        left: -10px;
        bottom: -10px;
      }

      .menu-toggle {
        display: flex;
      }

      nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 320px;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px 40px;
        margin: 0;
        gap: 24px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.05);
        transition: right 0.3s ease;
        display: flex;
      }

      nav ul.active {
        right: 0;
      }
    }

    /* ─── MASALAH ─── */
    .section {
      padding: 96px max(5%, calc((100% - 1200px) / 2));
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .section>* {
      width: 100%;
    }

    .section-label {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3.5vw, 42px);
      line-height: 1.25;
      color: var(--ink);
      margin-bottom: 16px;
    }

    .section-title em {
      font-style: italic;
      color: var(--emerald);
    }

    .section-desc {
      font-size: 17px;
      color: var(--ink-soft);
      line-height: 1.75;
      max-width: 540px;
      font-weight: 300;
    }

    .pain-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 56px;
    }

    .pain-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px 28px;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .pain-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }

    .pain-icon {
      width: 48px;
      height: 48px;
      background: var(--gold-pale);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      font-size: 22px;
    }

    .pain-title {
      font-weight: 600;
      font-size: 16px;
      color: var(--ink);
      margin-bottom: 8px;
    }

    .pain-desc {
      font-size: 14px;
      color: var(--ink-soft);
      line-height: 1.7;
      font-weight: 300;
    }

    .pain-solution {
      margin-top: 14px;
      font-size: 13px;
      color: var(--emerald);
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* ─── KELAS ─── */
    .kelas-section {
      background: rgb(9 9 9 / 81%);
      position: relative;
      overflow: hidden;
    }

    .kelas-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(-45deg,
          rgba(255, 255, 255, 0.03) 0,
          rgba(255, 255, 255, 0.03) 1px,
          transparent 0,
          transparent 20px);
    }

    .kelas-section .section-title {
      color: var(--white);
    }

    .kelas-section .section-desc {
      color: rgba(255, 255, 255, 0.7);
    }

    .kelas-section .section-label {
      color: var(--gold-light);
    }

    .kelas-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      margin-top: 56px;
    }

    @media (max-width: 900px) {
      .pain-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 700px) {
      .pain-grid {
        grid-template-columns: 1fr;
      }

      .kelas-grid {
        grid-template-columns: 1fr;
      }
    }

    .kelas-card {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 24px;
      padding: 40px 36px;
      position: relative;
      overflow: hidden;
      transition: background 0.2s;
    }

    .kelas-card:hover {
      background: rgba(255, 255, 255, 0.11);
    }

    .kelas-card.featured {
      background: rgba(201, 168, 76, 0.15);
      border-color: var(--gold);
    }

    .kelas-badge {
      display: inline-block;
      background: var(--emerald-mid);
      color: var(--ink);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 100px;
      margin-bottom: 20px;
    }

    .kelas-name {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      color: var(--white);
      margin-bottom: 10px;
    }

    .kelas-desc {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.7;
      margin-bottom: 24px;
      font-weight: 300;
    }

    .kelas-target {
      font-size: 13px;
      color: var(--gold-light);
      font-weight: 500;
      margin-bottom: 6px;
    }

    .kelas-entry {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.8);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .check-icon {
      width: 18px;
      height: 18px;
      background: var(--gold);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--ink);
      font-size: 11px;
      flex-shrink: 0;
    }

    /* ─── HARGA ─── */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 56px;
    }

    @media (max-width: 900px) {
      .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 700px) {
      .pricing-grid {
        grid-template-columns: 1fr;
      }
    }

    .price-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px 28px;
      transition: transform 0.2s, box-shadow 0.2s;
      position: relative;
    }

    .price-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }

    .price-card.popular {
      border: 2px solid var(--emerald);
    }

    .popular-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--emerald);
      color: var(--white);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 100px;
      white-space: nowrap;
    }

    .price-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--ink-soft);
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .price-amount {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 700;
      color: var(--emerald);
      line-height: 1;
      margin-bottom: 4px;
    }

    .price-period {
      font-size: 13px;
      color: var(--ink-soft);
      margin-bottom: 20px;
    }

    .price-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 24px;
    }

    .price-features li {
      font-size: 13px;
      color: var(--ink-mid);
      display: flex;
      align-items: center;
      gap: 8px;
      line-height: 1.5;
    }

    .price-features li::before {
      content: '✓';
      color: var(--emerald);
      font-weight: 700;
      flex-shrink: 0;
    }

    .price-saving {
      font-size: 12px;
      color: var(--gold);
      font-weight: 600;
      background: var(--gold-pale);
      padding: 4px 10px;
      border-radius: 100px;
      display: inline-block;
      margin-bottom: 16px;
    }

    .btn-price {
      display: block;
      text-align: center;
      padding: 12px;
      border-radius: 100px;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      transition: all 0.2s;
    }

    .btn-price.outline {
      border: 1.5px solid var(--emerald);
      color: var(--emerald);
    }

    .btn-price.outline:hover {
      background: var(--emerald-mid);
      color: var(--white);
      border-color: var(--gold);
    }

    .btn-price.filled {
      background: var(--emerald);
      color: var(--white);
      position: relative;
      overflow: visible;
      z-index: 1;
    }

    .btn-price.filled::before {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 100px;
      background: var(--gold);
      filter: blur(16px);
      opacity: 0.4;
      z-index: -1;
      animation: btnGlow 2.5s ease-in-out infinite;
    }

    .btn-price.filled:hover {
      background: var(--emerald-mid);
      color: var(--white);
    }

    /* ─── NILAI ─── */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 56px;
      border: 1px solid var(--border);
      border-radius: 24px;
      overflow: hidden;
    }

    @media (max-width: 700px) {
      .values-grid {
        grid-template-columns: 1fr;
      }
    }

    .value-item {
      padding: 40px 32px;
      background: var(--white);
      border-right: 1px solid var(--border);
      transition: background 0.2s;
    }

    .value-item:last-child {
      border-right: none;
    }

    .value-item:hover {
      background: var(--emerald-light);
    }

    .value-num {
      font-family: 'Playfair Display', serif;
      font-size: 48px;
      color: rgba(201, 168, 76, 0.15);
      line-height: 1;
      margin-bottom: 14px;
    }

    .value-title {
      font-size: 17px;
      font-weight: 600;
      color: var(--emerald);
      margin-bottom: 10px;
    }

    .value-desc {
      font-size: 14px;
      color: var(--ink-soft);
      line-height: 1.7;
      font-weight: 300;
    }

    /* ─── TESTIMONI CAROUSEL ─── */
    .testi-section {
      background: var(--sand);
    }

    .testi-carousel {
      position: relative;
      overflow: hidden;
      margin-top: 56px;
    }

    .testi-carousel-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      width: 100%;
    }

    .testi-slide {
      width: 100%;
      min-width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      flex-shrink: 0;
      box-sizing: border-box;
    }

    @media (max-width: 900px) {
      .testi-slide {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .testi-slide {
        grid-template-columns: 1fr;
      }
    }

    .testi-carousel-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 40px;
    }

    .testi-dots {
      display: flex;
      gap: 10px;
      align-items: center;
      justify-content: center;
    }

    .testi-dot {
      border-radius: 50%;
      border: none;
      cursor: pointer;
      padding: 0;
      outline: none;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .testi-dot.dot-center {
      width: 14px;
      height: 14px;
      background: var(--gold);
      box-shadow: 0 0 12px rgba(201, 168, 76, 0.5);
    }

    .testi-dot.dot-side {
      width: 8px;
      height: 8px;
      background: rgba(201, 168, 76, 0.35);
    }

    .testi-dot.dot-side:hover {
      background: rgba(201, 168, 76, 0.6);
      transform: scale(1.2);
    }

    .testi-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px 28px;
      position: relative;
    }

    .testi-quote {
      font-family: 'Playfair Display', serif;
      font-size: 48px;
      color: var(--gold);
      line-height: 0.8;
      margin-bottom: 12px;
    }

    .testi-text {
      font-size: 15px;
      color: var(--ink-mid);
      line-height: 1.8;
      margin-bottom: 24px;
      font-style: italic;
      font-weight: 300;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .testi-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--emerald-light);
      border: 2px solid var(--emerald);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 16px;
      color: var(--emerald);
      flex-shrink: 0;
    }

    .testi-avatar-img {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--emerald);
      flex-shrink: 0;
    }

    .testi-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
    }

    .testi-origin {
      font-size: 12px;
      color: var(--ink-soft);
      margin-top: 2px;
    }

    .testi-theme {
      font-size: 11px;
      color: var(--emerald);
      font-weight: 600;
      background: var(--emerald-light);
      padding: 4px 10px;
      border-radius: 100px;
      display: inline-block;
      margin-top: 10px;
    }

    /* ─── CTA ─── */
    .cta-section {
      background: linear-gradient(rgba(10, 15, 12, 0.78), rgba(10, 15, 12, 0.78)), url('images/bg.png');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      text-align: center;
      position: relative;
      overflow: hidden;
      padding: 140px max(5%, calc((100% - 1200px) / 2));
    }

    .cta-section::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
      pointer-events: none;
    }

    .cta-inner {
      position: relative;
      z-index: 1;
    }

    .cta-section .section-title {
      color: var(--white);
      margin-bottom: 20px;
    }

    .cta-section .section-desc {
      color: rgba(255, 255, 255, 0.75);
      margin: 0 auto 40px;
      max-width: 500px;
    }

    .cta-section .section-label {
      color: var(--gold-light);
    }

    .cta-btns {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-gold {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--emerald-mid);
      color: var(--white);
      padding: 16px 36px;
      border-radius: 100px;
      font-weight: 700;
      font-size: 16px;
      text-decoration: none;
      transition: transform 0.2s, opacity 0.2s;
      position: relative;
      overflow: visible;
      z-index: 1;
    }

    .btn-gold::before {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 100px;
      background: var(--gold-light);
      filter: blur(20px);
      opacity: 0.5;
      z-index: -1;
      animation: btnGlow 2.5s ease-in-out infinite;
    }

    .btn-gold:hover {
      transform: translateY(-2px);
      opacity: 0.9;
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.12);
      color: var(--white);
      padding: 16px 36px;
      border-radius: 100px;
      font-weight: 600;
      font-size: 16px;
      text-decoration: none;
      border: 1px solid rgba(255, 255, 255, 0.25);
      transition: background 0.2s;
    }

    .btn-ghost:hover {
      background: var(--emerald-mid);
      color: var(--white);
      border-color: var(--gold);
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--ink);
      color: rgba(255, 255, 255, 0.6);
      padding: 56px max(5%, calc((100% - 1200px) / 2)) 36px;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 40px;
      flex-wrap: wrap;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      margin-bottom: 32px;
    }

    .footer-brand .logo {
      color: var(--gold-light);
    }

    .footer-brand p {
      font-size: 14px;
      margin-top: 10px;
      max-width: 260px;
      line-height: 1.7;
    }

    .footer-links h4 {
      color: var(--white);
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 16px;
    }

    .footer-links ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links ul a {
      text-decoration: none;
      color: rgba(255, 255, 255, 0.55);
      font-size: 14px;
      transition: color 0.2s;
    }

    .footer-links ul a:hover {
      color: var(--gold);
    }

    /* ─── SOCIAL ICONS ─── */
    .social-icons {
      display: flex;
      flex-direction: row !important;
      align-items: center;
      gap: 12px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .social-icons li a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(201, 168, 76, 0.3);
      border-radius: 50%;
      color: rgba(255, 255, 255, 0.7) !important;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      backdrop-filter: blur(4px);
    }

    .social-icons li a:hover {
      background: var(--gold);
      color: #1a1a1a !important;
      border-color: var(--gold);
      transform: translateY(-4px) scale(1.1);
      box-shadow: 0 10px 20px rgba(201, 168, 76, 0.35);
    }

    .social-icons li a svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    .footer-goakal-link {
      display: inline-block;
      margin-top: 14px;
      font-size: 13px;
      font-weight: 500;
      color: var(--gold-light);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-goakal-link:hover {
      color: var(--gold);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      flex-wrap: wrap;
      gap: 10px;
    }

    .footer-bottom a {
      color: var(--gold-light);
      text-decoration: none;
    }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(28px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: none;
    }

    /* Divider ornament */
    .ornament {
      text-align: center;
      margin: 0 0 20px;
      font-size: 22px;
      color: var(--gold);
      letter-spacing: 12px;
    }

    /* ─── FAQ ─── */
    .faq-section {
      background: var(--cream);
    }

    .faq-container {
      max-width: 800px;
      margin: 40px auto 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .faq-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .faq-item.active {
      border-color: #c59627;
      box-shadow: 0 8px 24px rgba(197, 150, 39, 0.15);
    }

    .faq-question {
      width: 100%;
      text-align: left;
      padding: 24px;
      background: transparent;
      border: none;
      font-family: inherit;
      font-size: 16px;
      font-weight: 600;
      color: var(--ink);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.4s ease;
    }

    .faq-item.active .faq-question {
      color: #c59627;
    }

    .faq-icon {
      position: relative;
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }

    .faq-icon::before,
    .faq-icon::after {
      content: '';
      position: absolute;
      background: var(--ink-soft);
      border-radius: 2px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-item.active .faq-icon::before,
    .faq-item.active .faq-icon::after {
      background: #c59627;
    }

    .faq-icon::before {
      top: 9px;
      left: 0;
      width: 20px;
      height: 2px;
    }

    .faq-icon::after {
      top: 0;
      left: 9px;
      width: 2px;
      height: 20px;
    }

    .faq-item.active .faq-icon::after {
      transform: rotate(90deg);
      opacity: 0;
    }

    .faq-item.active .faq-icon::before {
      transform: rotate(180deg);
      opacity: 1;
    }

    .faq-answer-wrapper {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-item.active .faq-answer-wrapper {
      grid-template-rows: 1fr;
    }

    .faq-answer {
      overflow: hidden;
      padding: 0 24px;
      color: var(--ink-soft);
      font-size: 15px;
      line-height: 1.7;
      font-weight: 300;
      opacity: 0;
      transform: translateY(-8px);
      transition: all 0.4s ease;
    }

    .faq-item.active .faq-answer {
      padding-bottom: 24px;
      opacity: 1;
      transform: translateY(0);
    }



    @keyframes wa-wiggle {

      0%,
      100% {
        transform: scale(1.1) rotate(0deg);
      }

      25% {
        transform: scale(1.1) rotate(10deg);
      }

      50% {
        transform: scale(1.1) rotate(-10deg);
      }

      75% {
        transform: scale(1.1) rotate(5deg);
      }
    }

    @keyframes wa-pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.6);
      }

      70% {
        box-shadow: 0 0 0 20px rgba(201, 168, 76, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
      }
    }








    @keyframes btnGlow {

      0%,
      100% {
        opacity: 0.35;
        transform: scale(1);
      }

      50% {
        opacity: 0.6;
        transform: scale(1.05);
      }
    }