
    :root {
      --bg: #080c14;
      --bg2: #0d1220;
      --bg3: #111827;
      --gold: #d4a843;
      --gold-light: #f0c96a;
      --gold-dim: rgba(212,168,67,0.15);
      --teal: #2dd4bf;
      --teal-dim: rgba(45,212,191,0.12);
      --green: #22c55e;
      --green-dim: rgba(34,197,94,0.12);
      --text: #e8ecf4;
      --text-muted: #8a97b0;
      --border: rgba(255,255,255,0.07);
      --card-bg: rgba(255,255,255,0.04);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1,h2,h3,h4 { font-family: 'Syne', sans-serif; line-height: 1.2; }

    a { color: inherit; text-decoration: none; }

    /* ─── HERO LAYOUT ─── */
    .hero-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3rem;
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .hero-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    /* ─── MASCOT ─── */
    .hero-mascot {
      flex-shrink: 0;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      animation: mascotFloat 4s ease-in-out infinite;
    }

    .mascot-img {
      width: auto;
      height: auto;
      max-width: 280px;
      max-height: 340px;
      object-fit: contain;
      filter:
        drop-shadow(0 0 30px rgba(30, 120, 220, 0.35))
        drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
    }

    @keyframes mascotFloat {
      0%, 100% { transform: translateY(0px); }
      50%       { transform: translateY(-12px); }
    }

    @media (max-width: 900px) {
      .hero-inner {
        flex-direction: column-reverse;
        gap: 1.5rem;
      }
      .mascot-img {
        max-width: 180px;
        max-height: 220px;
      }
    }

    @media (max-width: 480px) {
      .mascot-img {
        max-width: 140px;
        max-height: 170px;
      }
    }

    /* ─── NOISE TEXTURE OVERLAY ─── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      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)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 5;
      opacity: 0.4;
    }

    /* ─── NAVBAR ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 900;
      padding: 0 5%;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(8,12,20,0.85);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 0.02em;
    }

    .nav-logo .dot {
      width: 8px; height: 8px;
      background: var(--gold);
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%,100% { box-shadow: 0 0 0 0 rgba(212,168,67,0.5); }
      50% { box-shadow: 0 0 0 8px rgba(212,168,67,0); }
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--text-muted);
    }

    .nav-links a:hover { color: var(--text); }

    .nav-cta {
      background: var(--gold);
      color: #000;
      padding: 0.5rem 1.3rem;
      border-radius: 6px;
      font-family: 'Syne', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      transition: background 0.2s, transform 0.2s;
    }

    .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 5% 80px;
      position: relative;
      overflow: hidden;
    }

    /* Radial glow blobs */
    .hero::after {
      content: '';
      position: absolute;
      top: 10%; left: 50%;
      transform: translateX(-50%);
      width: 700px; height: 700px;
      background: radial-gradient(ellipse, rgba(212,168,67,0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold-dim);
      border: 1px solid rgba(212,168,67,0.3);
      padding: 0.4rem 1rem;
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--gold-light);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 2rem;
      animation: fadeDown 0.8s ease both;
    }

    .hero-badge .blink {
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
      animation: blink 1.5s ease-in-out infinite;
    }

    @keyframes blink {
      0%,100% { opacity: 1; } 50% { opacity: 0.2; }
    }

    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero h1 {
      font-size: clamp(2rem, 6vw, 5.5rem); /* turun dari 2.8rem → 2rem */
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.05;
      max-width: 900px;
      animation: fadeUp 0.9s 0.1s ease both;
    }

    @media (max-width: 480px) {
      .hero h1 {
        font-size: clamp(1.75rem, 8vw, 2rem); /* 8vw = fluid, pas di semua lebar */
        letter-spacing: -0.01em;
      }
    }

    .hero h1 .accent { color: var(--gold); }
    .hero h1 .accent-teal { color: var(--teal); }
    .hero h1 .accent-green { color: var(--green); }

    .hero-sub {
      margin-top: 1.5rem;
      font-size: 1.15rem;
      color: var(--text-muted);
      max-width: 580px;
      font-weight: 300;
      animation: fadeUp 0.9s 0.2s ease both;
    }

    .hero-actions {
      margin-top: 2.5rem;
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
      animation: fadeUp 0.9s 0.3s ease both;
    }

    .btn-primary {
      background: var(--gold);
      color: #000;
      padding: 0.85rem 2rem;
      border-radius: 8px;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.02em;
      border: none;
      cursor: pointer;
      transition: all 0.2s;
    }

    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,168,67,0.3); }

    .btn-outline {
      background: transparent;
      color: var(--text);
      padding: 0.85rem 2rem;
      border-radius: 8px;
      font-family: 'Syne', sans-serif;
      font-weight: 600;
      font-size: 0.95rem;
      border: 1px solid var(--border);
      cursor: pointer;
      transition: all 0.2s;
    }

    .btn-outline:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.05); }

    /* Stats strip */
    .hero-stats {
      margin-top: 4rem;
      display: flex;
      gap: 3rem;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-end;
      animation: fadeUp 0.9s 0.4s ease both;
    }

    .stat { text-align: center; }

    .stat-num {
      font-family: 'Syne', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--gold);
      height: 3rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

    /* Scroll indicator */
    .scroll-hint {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: var(--text-muted);
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      animation: fadeUp 1s 0.8s ease both;
    }

    .scroll-arrow {
      width: 20px; height: 30px;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 10px;
      position: relative;
      display: flex;
      justify-content: center;
    }

    .scroll-arrow::after {
      content: '';
      width: 4px; height: 8px;
      background: var(--gold);
      border-radius: 2px;
      position: absolute;
      top: 5px;
      animation: scrollDown 1.5s ease-in-out infinite;
    }

    @keyframes scrollDown {
      0% { top: 5px; opacity: 1; }
      100% { top: 14px; opacity: 0; }
    }

    /* ─── SECTION COMMONS ─── */
    section { padding: 100px 5%; }

    .section-tag {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.75rem;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      max-width: 700px;
    }

    .section-desc {
      color: var(--text-muted);
      font-size: 1.05rem;
      max-width: 560px;
      margin-top: 1rem;
      font-weight: 300;
    }

    .section-header { margin-bottom: 4rem; }

    /* ─── SERVICES ─── */
    #layanan { background: var(--bg2); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .service-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2rem;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s, transform 0.3s;
    }

    .service-card:hover {
      border-color: rgba(212,168,67,0.3);
      transform: translateY(-4px);
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .service-card:hover::before { opacity: 1; }

    .service-icon {
      width: 52px; height: 52px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.25rem;
    }

    .icon-gold { background: var(--gold-dim); }
    .icon-teal { background: var(--teal-dim); }
    .icon-blue { background: rgba(99,179,237,0.1); }

    .service-card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .service-card p {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.7;
    }

    .service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1.25rem;
    }

    .tag {
      background: rgba(255,255,255,0.06);
      border: 1px solid var(--border);
      padding: 0.2rem 0.65rem;
      border-radius: 100px;
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    /* ─── HOW IT WORKS ─── */
    #cara-kerja { background: var(--bg); }

    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 0;
      position: relative;
    }

    .steps::before {
      content: '';
      position: absolute;
      top: 28px; left: 14%;
      right: 14%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
    }

    .step {
      text-align: center;
      padding: 0 1.5rem;
    }

    .step-num {
      width: 56px; height: 56px;
      background: var(--bg2);
      border: 2px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--gold);
      margin: 0 auto 1.5rem;
      position: relative;
      z-index: 1;
    }

    .step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
    .step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

    /* ─── SEGMENTS ─── */
    #segmen { background: var(--bg2); }

    .segments {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .segment-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2rem;
      transition: all 0.3s;
    }

    .segment-card:hover {
      border-color: rgba(45,212,191,0.3);
      background: rgba(45,212,191,0.04);
    }

    .seg-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .seg-emoji { font-size: 2rem; }

    .seg-title { font-size: 1.15rem; font-weight: 700; }
    .seg-sub { font-size: 0.8rem; color: var(--teal); font-weight: 500; margin-top: 2px; }

    .seg-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

    .seg-features li {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      font-size: 0.88rem;
      color: var(--text-muted);
    }

    .seg-features li::before {
      content: '→';
      color: var(--teal);
      font-size: 0.8rem;
      margin-top: 2px;
      flex-shrink: 0;
    }

    /* ─── CTA BAND ─── */
    .cta-band {
      background: linear-gradient(135deg, #0d1a2e, #12211a);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 80px 5%;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-band::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      width: 600px; height: 300px;
      background: radial-gradient(ellipse, rgba(45,212,191,0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-band h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800;
      margin-bottom: 1rem;
    }

    .cta-band p {
      color: var(--text-muted);
      margin-bottom: 2rem;
      font-size: 1rem;
      font-weight: 300;
    }

    /* ─── CONTACT ─── */
    #kontak { background: var(--bg); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    .contact-info h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .contact-info p {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .contact-items { display: flex; flex-direction: column; gap: 1rem; }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .contact-item .ci-icon {
      width: 36px; height: 36px;
      background: var(--gold-dim);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }

    .form-group label {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 0.75rem 1rem;
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.2s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: rgba(212,168,67,0.5); }

    .form-group textarea { resize: vertical; min-height: 110px; }

    .form-group select option { background: #111827; }

    /* ─── FOOTER ─── */
    footer {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      padding: 60px 5% 40px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand p {
      color: var(--text-muted);
      font-size: 0.88rem;
      line-height: 1.7;
      margin-top: 1rem;
      max-width: 260px;
    }

    .footer-col h5 {
      font-family: 'Syne', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }

    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

    .footer-col ul li a {
      font-size: 0.88rem;
      color: var(--text-muted);
      transition: color 0.2s;
    }

    .footer-col ul li a:hover { color: var(--text); }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.82rem;
      color: var(--text-muted);
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-bottom a { color: var(--gold); }

    /* ─── TRUST BADGES ─── */
    .trust-bar {
      background: var(--bg3);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 20px 5%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      color: var(--text-muted);
      font-weight: 500;
    }

    .trust-item .ti-icon { color: var(--gold); font-size: 1rem; }

    /* ─── RESPONSIVE ─── */
    .nav-hamburger { display: none; }

    @media (max-width: 768px) {
      nav .nav-links { display: none; }
      nav .nav-cta { display: none; }

      .nav-hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
      }
      .nav-hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--text);
        border-radius: 2px;
        transition: all 0.25s ease;
      }
      .nav-hamburger[aria-expanded="true"] span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
      }
      .nav-hamburger[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
      }
      .nav-hamburger[aria-expanded="true"] span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
      }

      nav.nav-open {
        background: #080c14;
        z-index: 9999;
      }
      nav.nav-open .nav-links {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        min-height: 50vh;
        background: #080c14;
        padding: 1.5rem 5% 2rem;
        gap: 0;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
      }
      nav.nav-open .nav-links li {
        border-bottom: 1px solid var(--border);
        list-style: none;
      }
      nav.nav-open .nav-links li a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        color: var(--text);
      }
      nav.nav-open .nav-cta {
        display: inline-block;
        margin-top: 1.5rem;
        text-align: center;
      }
      .steps::before { display: none; }
      .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .form-row { grid-template-columns: 1fr; }
      .hero-stats { gap: 1.5rem; }
    }

    @media (max-width: 480px) {
      .footer-grid { grid-template-columns: 1fr; }
    }

    .text-gold       { color: var(--gold); }
    .text-gold-light { color: var(--gold-light); }
    .text-teal       { color: var(--teal); }

    .d-block    { display: block; }
    .text-nowrap { white-space: nowrap; }

    .nav-logo-accent { color: var(--gold); }

    .nav-logo-link {
      color: inherit;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .nav-logo--lg { font-size: 1.2rem; }

    /* ─── LOGO IMAGE ─── */
    .nav-logo-img {
      height: auto;
      width: auto;
      max-height: 36px;
      max-width: 36px;
      object-fit: contain;
      flex-shrink: 0;
      filter: drop-shadow(0 0 6px rgba(30, 120, 220, 0.45));
      transition: filter 0.3s, transform 0.3s;
    }

    .nav-logo:hover .nav-logo-img {
      filter: drop-shadow(0 0 10px rgba(212, 168, 67, 0.55));
      transform: scale(1.05);
    }

    .nav-logo-img--footer {
      max-height: 42px;
      max-width: 42px;
    }

    @media (max-width: 768px) {
      .nav-logo-img {
        max-height: 30px;
        max-width: 30px;
      }
      .nav-logo-img--footer {
        max-height: 34px;
        max-width: 34px;
      }
    }

    @media (max-width: 480px) {
      .nav-logo-img {
        max-height: 26px;
        max-width: 26px;
      }
      .nav-logo-img--footer {
        max-height: 30px;
        max-width: 30px;
      }
    }

    .stat-num--sm {
      font-size:      1.15rem;
      letter-spacing: -0.01em;
    }

    .section-header--center {
      text-align:   center;
      margin-left:  auto;
      margin-right: auto;
      max-width:    600px;
    }

    .section-title--center { margin: 0 auto; }

    .section-desc--center { margin: 1rem auto 0; }

    .btn-primary--full {
      width:           100%;
      justify-content: center;
      display:         flex;
    }

    .btn-success {
      background: #22c55e !important;
      cursor:     default;
    }

    .btn-success:hover {
      background:  #22c55e !important;
      transform:   none;
      box-shadow:  none;
    }

    .char-count {
      float:       right;
      color:       var(--text-muted);
      font-weight: 400;
    }

    .form-status {
      font-size:   0.88rem;
      line-height: 1.5;
      min-height:  0;
      padding:     0;
      border-radius: 6px;
      transition:  all 0.2s;
    }

    .form-status:not(:empty) {
      padding: 0.75rem 1rem;
    }

    .form-status--success {
      background: rgba(34, 197, 94, 0.12);
      border:     1px solid rgba(34, 197, 94, 0.3);
      color:      #86efac;
    }

    .form-status--error {
      background: rgba(239, 68, 68, 0.12);
      border:     1px solid rgba(239, 68, 68, 0.3);
      color:      #fca5a5;
    }

    /* ─── SERVICE TIER BADGES ─── */
    .service-tiers {
      display: flex;
      gap: 0.5rem;
      margin-top: 1rem;
      flex-wrap: wrap;
    }

    .tier-badge {
      padding: 0.25rem 0.75rem;
      border-radius: 100px;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.03em;
    }

    .tier-badge--free {
      background: rgba(34, 197, 94, 0.12);
      border: 1px solid rgba(34, 197, 94, 0.3);
      color: #86efac;
    }

    .tier-badge--pro {
      background: var(--gold-dim);
      border: 1px solid rgba(212, 168, 67, 0.3);
      color: var(--gold-light);
    }

    /* ─── PRICING ─── */
    #harga { background: var(--bg); }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
    }

    .pricing-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: border-color 0.3s, transform 0.3s;
    }

    .pricing-card:hover {
      border-color: rgba(212, 168, 67, 0.3);
      transform: translateY(-4px);
    }

    .pricing-card--popular {
      border-color: var(--gold);
      background: rgba(212, 168, 67, 0.06);
    }

    .pricing-badge {
      display: inline-block;
      padding: 0.2rem 0.75rem;
      border-radius: 100px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 1rem;
      width: fit-content;
    }

    .pricing-badge--free {
      background: rgba(34, 197, 94, 0.15);
      color: #86efac;
    }

    .pricing-badge--popular {
      background: var(--gold-dim);
      color: var(--gold-light);
    }

    .pricing-role {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
    }

    .pricing-tier {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 1rem;
    }

    .pricing-price {
      display: flex;
      align-items: baseline;
      gap: 0.25rem;
      margin-bottom: 1.5rem;
    }

    .pricing-amount {
      font-family: 'Syne', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--gold);
    }

    .pricing-period {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .pricing-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      margin-bottom: 2rem;
      flex-grow: 1;
    }

    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .pricing-features li::before {
      content: '✓';
      color: var(--teal);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .pricing-cta {
      margin-top: auto;
      text-align: center;
      display: block;
    }

    .pricing-note {
      text-align: center;
      color: var(--text-muted);
      font-size: 0.82rem;
      margin-top: 2rem;
      font-style: italic;
    }

    /* ─── CTA NOTE ─── */
    .pricing-note--services { margin-top: 2rem; }

    .tracking-px { display: none; visibility: hidden; }

    /* ─── FAQ ─── */
    #faq { background: var(--bg2); }

    .faq-list {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .faq-item {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 0;
      overflow: hidden;
      transition: border-color 0.2s;
    }

    .faq-item:hover {
      border-color: rgba(212, 168, 67, 0.25);
    }

    .faq-item summary {
      padding: 1rem 1.25rem;
      cursor: pointer;
      font-family: 'Syne', sans-serif;
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--text);
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .faq-item summary::-webkit-details-marker { display: none; }

    .faq-item summary::after {
      content: '+';
      color: var(--gold);
      font-size: 1.4rem;
      font-weight: 300;
      flex-shrink: 0;
      transition: transform 0.2s;
    }

    .faq-item[open] summary::after {
      content: '−';
    }

    .faq-item p {
      padding: 0 1.25rem 1.25rem;
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.7;
      margin: 0;
    }

    .faq-item p a {
      color: var(--gold);
    }

    .faq-item p a:hover {
      color: var(--gold-light);
    }

    .faq-register-pills {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.6rem;
      padding: 0 1.25rem 1.25rem;
    }

    .faq-pill {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
      background: var(--gold-dim);
      border: 1px solid rgba(212, 168, 67, 0.3);
      color: var(--gold-light) !important;
      padding: 0.65rem 1rem;
      border-radius: 8px;
      font-family: 'Syne', sans-serif;
      font-weight: 600;
      font-size: 0.85rem;
      text-decoration: none !important;
      transition: all 0.2s ease;
    }

    .faq-pill:hover {
      background: rgba(212, 168, 67, 0.22);
      border-color: rgba(212, 168, 67, 0.5);
      color: var(--gold-light) !important;
      transform: translateY(-1px);
    }

    @media (max-width: 600px) {
      .faq-register-pills { grid-template-columns: 1fr; }
    }

    .services-cta {
      display: flex;
      justify-content: center;
      margin-top: 2.5rem;
    }

    .btn-soft-gold {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--gold-dim);
      color: var(--gold-light);
      border: 1px solid rgba(212, 168, 67, 0.35);
      padding: 0.85rem 1.75rem;
      border-radius: 10px;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.02em;
      text-decoration: none;
      transition: all 0.25s ease;
    }

    .btn-soft-gold:hover {
      background: rgba(212, 168, 67, 0.22);
      border-color: rgba(212, 168, 67, 0.55);
      color: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(212, 168, 67, 0.18);
    }

    .cta-note {
      font-size: 0.82rem !important;
      font-style: italic;
      color: var(--text-muted);
      margin-bottom: 2rem;
      opacity: 0.8;
    }

    /* ─── CONTACT CTA CARD ─── */
    .contact-cta-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .cta-card-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }

    .cta-card-icon { font-size: 2rem; }

    .cta-card-header h4 {
      font-size: 1.25rem;
      font-weight: 700;
    }

    .cta-card-desc {
      color: var(--text-muted);
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
      max-width: 320px;
    }

    .cta-card-steps {
      list-style: none;
      counter-reset: cta-step;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      margin-bottom: 2rem;
      text-align: left;
    }

    .cta-card-steps li {
      counter-increment: cta-step;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.88rem;
      color: var(--text-muted);
    }

    .cta-card-steps li::before {
      content: counter(cta-step);
      width: 28px;
      height: 28px;
      background: var(--gold-dim);
      border: 1px solid rgba(212, 168, 67, 0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Syne', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--gold-light);
      flex-shrink: 0;
    }

    @media (max-width: 768px) {
      .pricing-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 480px) {
      .pricing-grid { grid-template-columns: 1fr; }
    }

    /* ─── REGISTRATION MODAL ─── */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 950;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(4px);
      align-items: center;
      justify-content: center;
    }

    .modal-overlay.active { display: flex; }

    .modal-box {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2rem 2rem 2.25rem;
      width: 90%;
      max-width: 380px;
      position: relative;
      text-align: center;
      animation: fadeUp 0.25s ease;
    }

    .modal-close {
      position: absolute;
      top: 0.75rem;
      right: 1rem;
      background: none;
      border: none;
      color: var(--text-muted);
      font-size: 1.5rem;
      cursor: pointer;
      transition: color 0.2s;
      line-height: 1;
    }

    .modal-close:hover { color: var(--text); }

    .modal-box h4 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: var(--text);
    }

    .modal-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      width: 100%;
      padding: 0.85rem 1.5rem;
      border-radius: 10px;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.02em;
      transition: all 0.2s;
      cursor: pointer;
      text-decoration: none;
      border: none;
    }

    .modal-btn svg { flex-shrink: 0; }

    .modal-btn--tg {
      background: #2AABEE;
      color: #fff;
    }

    .modal-btn--tg:hover {
      background: #229ED9;
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(42, 171, 238, 0.3);
    }

    .modal-btn--web {
      background: transparent;
      color: var(--text);
      border: 1px solid var(--border);
    }

    .modal-btn--web:hover {
      border-color: rgba(255, 255, 255, 0.25);
      background: rgba(255, 255, 255, 0.05);
      color: var(--text);
      transform: translateY(-2px);
    }

    .modal-divider {
      color: var(--text-muted);
      font-size: 0.82rem;
      margin: 0.85rem 0;
    }

    /* ─── FLOATING CHAT WIDGET ────────────────────────────────────── */
    .floating-chat {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 9999;
      font-family: inherit;
    }

    .fc-toggle {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 18px 12px 14px;
      border: none;
      border-radius: 999px;
      background: linear-gradient(135deg, #d4af37, #b8941f);
      color: #080c14;
      cursor: pointer;
      box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      font-family: inherit;
      position: relative;
    }

    .fc-toggle:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
    }

    .fc-toggle .fc-icon-close { display: none; }
    .fc-toggle[aria-expanded="true"] .fc-icon-close { display: block; }

    .fc-panel {
      position: absolute;
      bottom: 76px;
      right: 0;
      width: 320px;
      background: #0f1420;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
      animation: fc-fade-in 0.2s ease-out;
    }

    .fc-panel[hidden] { display: none; }

    @keyframes fc-fade-in {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .fc-header { margin-bottom: 14px; }
    .fc-header h4 {
      margin: 0 0 4px;
      font-size: 16px;
      color: #fff;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
    }
    .fc-header p {
      margin: 0;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.65);
    }

    .fc-option {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.06);
      text-decoration: none;
      color: #fff;
      margin-bottom: 8px;
      transition: background 0.15s ease, border-color 0.15s ease;
    }

    .fc-option:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.15);
    }

    .fc-option-icon {
      flex-shrink: 0;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .fc-option--wa .fc-option-icon { background: #25d366; color: #fff; }
    .fc-option--tg .fc-option-icon { background: #0088cc; color: #fff; }

    .fc-option-text { flex: 1; display: flex; flex-direction: column; }
    .fc-option-text strong { font-size: 14px; color: #fff; }
    .fc-option-text span { font-size: 12px; color: rgba(255, 255, 255, 0.55); }
    .fc-option-arrow { color: rgba(255, 255, 255, 0.4); font-size: 18px; }

    .fc-footer {
      margin: 12px 0 0;
      padding-top: 12px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      font-size: 12px;
      color: rgba(255, 255, 255, 0.55);
      text-align: center;
    }
    .fc-footer strong { color: #d4af37; }

    @media (max-width: 480px) {
      .floating-chat { bottom: 16px; right: 16px; }
      .fc-panel { width: calc(100vw - 32px); right: -8px; }
    }

    /* ─── FC TOGGLE PILL (Quick Win #1) ──────────────────────── */
    .fc-toggle-pulse {
      position: absolute;
      inset: 0;
      border-radius: 999px;
      background: rgba(212, 175, 55, 0.4);
      animation: fc-pulse 2.5s ease-in-out infinite;
      pointer-events: none;
      z-index: -1;
    }

    @keyframes fc-pulse {
      0%, 100% { transform: scale(1); opacity: 0; }
      50% { transform: scale(1.15); opacity: 1; }
    }

    .fc-toggle-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(8, 12, 20, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .fc-toggle-label {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
      text-align: left;
    }
    .fc-toggle-label strong {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: -0.01em;
    }
    .fc-toggle-label small {
      font-size: 11px;
      opacity: 0.75;
      margin-top: 2px;
    }

    .fc-toggle[aria-expanded="true"] .fc-toggle-icon,
    .fc-toggle[aria-expanded="true"] .fc-toggle-label,
    .fc-toggle[aria-expanded="true"] .fc-toggle-pulse { display: none; }
    .fc-toggle[aria-expanded="true"] {
      width: 56px;
      height: 56px;
      padding: 0;
      border-radius: 50%;
      justify-content: center;
    }

    @media (max-width: 480px) {
      .fc-toggle-label small { display: none; }
    }

    /* ─── FC TOOLTIP (Quick Win #2) ──────────────────────────── */
    .fc-tooltip {
      position: absolute;
      bottom: 78px;
      right: 0;
      width: 270px;
      background: #0f1420;
      border: 1px solid rgba(212, 175, 55, 0.3);
      border-radius: 14px;
      padding: 14px 16px;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
      animation: fc-tooltip-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .fc-tooltip[hidden] { display: none; }
    .fc-tooltip::after {
      content: '';
      position: absolute;
      bottom: -8px;
      right: 26px;
      width: 14px;
      height: 14px;
      background: #0f1420;
      border-right: 1px solid rgba(212, 175, 55, 0.3);
      border-bottom: 1px solid rgba(212, 175, 55, 0.3);
      transform: rotate(45deg);
    }
    @keyframes fc-tooltip-in {
      from { opacity: 0; transform: translateY(10px) scale(0.95); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
    .fc-tooltip p {
      margin: 0;
      color: #fff;
      font-size: 14px;
      line-height: 1.4;
    }
    .fc-tooltip p strong { color: #d4af37; }
    .fc-tooltip-sub {
      font-size: 12px !important;
      color: rgba(255, 255, 255, 0.6) !important;
      margin-top: 4px !important;
    }
    .fc-tooltip-close {
      position: absolute;
      top: 6px;
      right: 8px;
      background: none;
      border: none;
      color: rgba(255, 255, 255, 0.4);
      font-size: 20px;
      cursor: pointer;
      line-height: 1;
      padding: 2px 6px;
    }
    .fc-tooltip-close:hover { color: #fff; }

    /* ─── FC PROMPT PILLS (Quick Win #3) ─────────────────────── */
    .fc-prompts {
      background: rgba(212, 175, 55, 0.08);
      border: 1px solid rgba(212, 175, 55, 0.2);
      border-radius: 10px;
      padding: 10px 12px;
      margin-bottom: 12px;
    }
    .fc-prompts-label {
      margin: 0 0 8px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.7);
    }
    .fc-prompt-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .fc-prompt-pill {
      font-size: 11px;
      padding: 4px 10px;
      background: rgba(212, 175, 55, 0.15);
      border: 1px solid rgba(212, 175, 55, 0.25);
      border-radius: 999px;
      color: #d4af37;
      cursor: default;
    }

    /* ─── INLINE CTAs (Quick Win #4) ─────────────────────────── */
    .hero-sub-cta {
      display: inline-block;
      margin-top: 0.5rem;
      font-size: 0.9rem;
    }
    .hero-sub-cta a { color: var(--gold-light); text-decoration: underline; }
    .hero-sub-cta a:hover { color: var(--gold); }

    .link-btn {
      background: none;
      border: none;
      color: var(--gold);
      font-family: inherit;
      font-size: inherit;
      font-weight: 600;
      cursor: pointer;
      text-decoration: underline;
      padding: 0;
    }
    .link-btn:hover { color: var(--gold-light); }

    .micro-cta-test {
      text-align: center;
      padding: 1.25rem 5%;
      border-top: 1px solid var(--border);
      background: var(--bg);
    }
    .micro-cta-test p {
      color: var(--text-muted);
      font-size: 0.9rem;
      margin: 0;
    }

    .faq-help {
      text-align: center;
      margin-top: 2rem;
    }
    .faq-help p {
      color: var(--text-muted);
      font-size: 0.9rem;
    }
/* ═══════════════════════════════════════════════════════════
   BLOG STYLES — Append to style.css
═══════════════════════════════════════════════════════════ */

/* ─── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb {
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 0 24px;
  font-size: 13px;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb li:not(:last-child)::after {
  content: '›';
  color: rgba(255, 255, 255, 0.3);
  margin-left: 8px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.15s ease;
}
.breadcrumb a:hover {
  color: #d4af37;
}
.breadcrumb li[aria-current="page"] {
  color: rgba(255, 255, 255, 0.85);
}

/* ─── Blog Post Article ─────────────────────────────────────── */
.blog-post {
  max-width: 760px;
  margin: 190px auto 80px;
  padding: 0 24px;
}

.blog-post-header {
  margin-bottom: 40px;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.blog-post-category {
  color: #d4af37;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-post-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.blog-post-title .accent {
  color: #d4af37;
}

.blog-post-lead {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* ─── Table of Contents ─────────────────────────────────────── */
.blog-toc {
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 14px;
  padding: 24px 28px;
  margin: 40px 0;
}
.blog-toc-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 14px;
  color: #fff;
}
.blog-toc ol {
  padding-left: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}
.blog-toc ol li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
}
.blog-toc a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.15s ease;
}
.blog-toc a:hover {
  color: #d4af37;
  text-decoration: underline;
}

/* ─── Blog Post Content ─────────────────────────────────────── */
.blog-post-content {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
}
.blog-post-content p {
  margin: 0 0 24px;
}
.blog-post-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin: 56px 0 20px;
  letter-spacing: -0.01em;
  scroll-margin-top: 100px;
}
.blog-post-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin: 36px 0 14px;
}
.blog-post-content ul,
.blog-post-content ol {
  padding-left: 24px;
  margin: 0 0 24px;
}
.blog-post-content li {
  margin-bottom: 8px;
}
.blog-post-content a {
  color: #d4af37;
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.15s ease;
}
.blog-post-content a:hover {
  text-decoration-color: #d4af37;
}
.blog-post-content strong {
  color: #fff;
  font-weight: 600;
}
.blog-post-content em {
  color: rgba(255, 255, 255, 0.75);
}
.blog-post-content blockquote {
  border-left: 3px solid #d4af37;
  padding: 14px 20px;
  margin: 24px 0;
  background: rgba(212, 175, 55, 0.05);
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 0 8px 8px 0;
}
.blog-post-content blockquote p {
  margin: 0;
}

/* ─── CTA Box in Article ────────────────────────────────────── */
.blog-cta-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(79, 209, 197, 0.08));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 32px 28px;
  margin: 48px 0;
  text-align: center;
}
.blog-cta-box h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}
.blog-cta-box p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 20px;
}
.blog-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.blog-cta-buttons .btn-primary {
  color: #000;
}
.blog-cta-buttons .btn-outline {
  color: #fff;
}

/* ─── Related Articles ──────────────────────────────────────── */
.blog-related {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 64px;
  padding-top: 48px;
}
.blog-related h2 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px;
}
.blog-related-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.blog-related-list a {
  display: block;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.blog-related-list a:hover {
  background: rgba(212, 175, 55, 0.06);
  border-color: rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}
.blog-related-cat {
  display: block;
  font-size: 11px;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  font-weight: 600;
}
.blog-related-list strong {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   BLOG INDEX/ARCHIVE
═══════════════════════════════════════════════════════════ */

.blog-hero {
  padding: 120px 24px 40px;
}

.blog-categories {
  max-width: 1200px;
  margin: 0 auto 32px;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.blog-cat-pill {
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.15s ease;
}
.blog-cat-pill:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
  color: #fff;
}
.blog-cat-pill--active {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
  color: #d4af37;
  font-weight: 600;
}

.blog-list {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.blog-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 175, 55, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.blog-card-link {
  display: block;
  padding: 24px 26px;
  text-decoration: none;
  color: inherit;
}
.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
}
.blog-card-cat {
  color: #d4af37;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.blog-card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 16px;
}
.blog-card-cta {
  display: inline-block;
  color: #d4af37;
  font-size: 13px;
  font-weight: 600;
}

.blog-card--soon {
  opacity: 0.6;
  cursor: not-allowed;
}
.blog-card--soon:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
}
.blog-card-cta--soon {
  color: rgba(255, 255, 255, 0.4);
}

/* ─── Mobile Responsive ────────────────────────────────────── */
@media (max-width: 768px) {
  .blog-post {
    margin-top: 140px;
  }
  .blog-post-content {
    font-size: 16px;
  }
  .blog-post-content h2 {
    font-size: 24px;
    margin-top: 44px;
  }
  .blog-post-content h3 {
    font-size: 18px;
  }
  .blog-toc {
    padding: 20px;
  }
  .breadcrumb {
    margin-top: 70px;
  }
  .blog-hero {
    padding: 100px 20px 30px;
  }
}

    /* ─── Blog Article Inline Style Replacements ─────────────── */
    .blog-cta-note {
      margin-top: 8px;
      font-size: 13px;
      opacity: 0.75;
    }
    .blog-cta-sub {
      margin-top: 12px;
      font-size: 14px;
      opacity: 0.75;
    }
    .blog-cta-box--compact {
      margin: 28px 0;
      padding: 20px 24px;
    }
    .blog-cta-box--warning {
      margin: 20px 0;
      padding: 16px 20px;
      background: rgba(239, 68, 68, 0.06);
      border-color: rgba(239, 68, 68, 0.2);
    }
    .blog-cta-box--tip {
      margin: 20px 0;
      padding: 16px 20px;
      background: rgba(45, 212, 191, 0.06);
      border-color: rgba(45, 212, 191, 0.25);
    }
    .blog-cta-inline {
      margin: 0;
      font-size: 14px;
    }
    .blog-code-block {
      background: rgba(45, 212, 191, 0.05);
      border: 1px solid rgba(45, 212, 191, 0.2);
      border-left: 3px solid #4FD1C7;
      border-radius: 8px;
      padding: 16px 20px;
      margin: 16px 0;
      font-family: monospace;
      font-size: 13px;
      color: #4FD1C7;
      line-height: 1.7;
      overflow-x: auto;
    }

    /* ─── LATEST ARTICLE SECTION ─────────────────────────────── */
    .latest-article {
      padding: 80px 24px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .latest-article-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 32px;
      margin-top: 48px;
    }

    .latest-article-side {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .latest-article-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 32px;
      transition: all 0.3s ease;
    }

    .latest-article-card:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(212, 175, 55, 0.3);
      transform: translateY(-2px);
    }

    .latest-article-card--featured {
      background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(79, 209, 199, 0.05));
      border-color: rgba(212, 175, 55, 0.2);
    }

    .latest-article-card--small { padding: 24px; }

    .latest-article-card--soon { opacity: 0.65; cursor: default; }
    .latest-article-card--soon:hover { transform: none; border-color: rgba(255, 255, 255, 0.1); }

    .latest-article-link { text-decoration: none; color: inherit; display: block; }

    .latest-article-meta {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }

    .latest-article-cat {
      display: inline-block;
      padding: 4px 12px;
      background: rgba(212, 175, 55, 0.15);
      color: #d4af37;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .latest-article-readtime,
    .latest-article-soon { font-size: 13px; color: rgba(255, 255, 255, 0.6); }
    .latest-article-soon { font-style: italic; }

    .latest-article-title {
      font-family: 'Syne', sans-serif;
      font-size: 28px;
      font-weight: 700;
      line-height: 1.25;
      color: #ffffff;
      margin-bottom: 16px;
    }

    .latest-article-title-sm {
      font-family: 'Syne', sans-serif;
      font-size: 17px;
      font-weight: 600;
      line-height: 1.4;
      color: #ffffff;
      margin: 0;
    }

    .latest-article-excerpt {
      font-size: 16px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.75);
      margin-bottom: 20px;
    }

    .latest-article-cta {
      display: inline-block;
      color: #d4af37;
      font-weight: 600;
      font-size: 15px;
      transition: color 0.2s ease;
    }

    .latest-article-link:hover .latest-article-cta { color: #f5d568; }

    .latest-article-footer {
      display: flex;
      justify-content: center;
      margin-top: 48px;
    }

    @media (max-width: 768px) {
      .latest-article { padding: 60px 20px; }
      .latest-article-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 36px; }
      .latest-article-card { padding: 24px; }
      .latest-article-title { font-size: 22px; }
      .latest-article-excerpt { font-size: 15px; }
    }
