/* =======================================================
   ECOURSE META ADS COURSE - PREMIUM LIGHT CYBER STYLING
   ======================================================= */

:root {
  /* Colors - Clean Sekenspace Light Theme */
  --ink: #0f172a;               /* Sekenspace deep slate text */
  --ink-soft: rgba(255, 255, 255, 0.85); /* Glassmorphic card fill */
  --ink-line: rgba(15, 23, 42, 0.06); /* Soft dark borders (Pinterest style) */
  --paper: #f8fafc;             /* Base clean light background */
  --paper-2: #f1f5f9;           /* Secondary section background fill */
  --blue: #0066fe;              /* Vibrant primary brand blue */
  --blue-deep: #0052cc;         /* Hover blue */
  --signal: #0066fe;            /* CTA base */
  --signal-deep: #0052cc;       
  --text: #0f172a;              /* Slate-900 main text */
  --muted: #475569;             /* Slate-600 secondary text */
  --muted-light: #94a3b8;       /* Slate-400 hint text */
  --white: #ffffff;             
  --danger-red: #ef4444;        
  --success-green: #10b981;     
  
  /* Soft Light Glows */
  --glow-blue: rgba(0, 102, 254, 0.08);
  --glow-emerald: rgba(16, 185, 129, 0.06);
  --glow-indigo: rgba(99, 102, 241, 0.08);

  /* Layout - Rounded corners customized to Pinterest guidelines */
  --radius: 24px;
  --maxw: 1100px;
  --nav-height: 70px;
}

/* Base resets & global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: 
    radial-gradient(circle at 10% 10%, var(--glow-blue) 0%, transparent 40rem),
    radial-gradient(circle at 90% 40%, var(--glow-indigo) 0%, transparent 45rem),
    radial-gradient(circle at 50% 80%, var(--glow-emerald) 0%, transparent 45rem),
    var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Container wrapper */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.center {
  text-align: center;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--text);
}

h1 {
  font-size: clamp(34px, 5.5vw, 54px);
}

h2 {
  font-size: clamp(26px, 4.2vw, 38px);
}

h3 {
  font-size: 19px;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
  font-variant-numeric: tabular-nums;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

/* Kicker / Badge */
.kicker {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0, 102, 254, 0.08);
  border: 1px solid rgba(0, 102, 254, 0.15);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.kicker-green {
  color: var(--success-green);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.kicker-blue {
  color: var(--blue);
  background: rgba(0, 102, 254, 0.08);
  border: 1px solid rgba(0, 102, 254, 0.15);
}

.sec-title {
  margin-bottom: 14px;
}

.sec-sub {
  color: var(--muted);
  max-width: 600px;
  font-size: 16px;
  margin-bottom: 36px;
}

/* Glassmorphism Card Style (Pinterest UI Customization) */
.card-glass {
  background: var(--ink-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.03); /* Soft, diffused shadows */
  transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), 
              border-color 0.25s ease, 
              box-shadow 0.25s ease;
}

.card-glass:hover {
  border-color: rgba(0, 102, 254, 0.15);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--blue), #4f46e5);
  color: #ffffff;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 15.5px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              box-shadow .2s ease, 
              filter 0.2s ease;
  box-shadow: 0 8px 24px rgba(0, 102, 254, .18);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 102, 254, .3);
  filter: brightness(1.05);
}

.btn:active {
  transform: translateY(0);
}

.btn.blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 102, 254, .18);
}

.btn.lg {
  padding: 16px 34px;
  font-size: 17.5px;
  border-radius: 14px;
}

/* STICKY HEADER NAVBAR */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-line);
  transition: transform 0.3s ease, background 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--text);
}

.nav-logo .dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--blue);
  box-shadow: 0 0 10px rgba(0, 102, 254, 0.4);
}

.nav-logo span {
  color: var(--blue);
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
}

.nav-cta .btn {
  padding: 10px 18px;
  font-size: 13.5px;
  border-radius: 8px;
  box-shadow: none;
}

@media(max-width: 768px) {
  .nav-links {
    display: none;
  }
}

/* ==========================================
   SECTIONS
   ========================================== */

section {
  padding: 96px 0; /* Generous padding for clean space */
  position: relative;
}

/* Hero Area */
.hero {
  color: var(--text);
  position: relative;
  overflow: hidden;
  padding: 140px 0 96px 0;
  border-bottom: 1px solid var(--ink-line);
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 102, 254, 0.08), transparent 45rem),
    radial-gradient(circle at 10% 80%, rgba(16, 185, 129, 0.04), transparent 30rem),
    #f8fcff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--ink-line) 1px, transparent 1px),
                    linear-gradient(90deg, var(--ink-line) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .18;
  -webkit-mask-image: radial-gradient(700px 500px at 50% 30%, #000, transparent 80%);
  mask-image: radial-gradient(700px 500px at 50% 30%, #000, transparent 80%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media(max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--ink-line);
  background: rgba(15, 23, 42, 0.04);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.pulse-red {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4d4d;
  box-shadow: 0 0 0 0 rgba(255, 77, 77, .4);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 77, 77, .4); }
  70% { box-shadow: 0 0 0 9px rgba(255, 77, 77, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
}

.hero h1 .highlight {
  color: var(--blue);
  position: relative;
  background: linear-gradient(120deg, #0052cc, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p.lead {
  margin-top: 20px;
  font-size: clamp(16px, 2vw, 18.5px);
  color: var(--muted);
  max-width: 54ch;
  line-height: 1.65;
}

.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 30px;
}

@media(max-width: 860px) {
  .hero .cta-row {
    justify-content: center;
  }
}

.hero .fineprint {
  font-size: 13.5px;
  color: var(--muted);
}

.hero .fineprint b {
  color: var(--blue);
}

.hero-figure {
  position: relative;
}

.hero-figure::after {
  content: "";
  position: absolute;
  inset: -15px;
  background: radial-gradient(circle, var(--glow-blue) 0%, transparent 60%);
  z-index: -1;
  border-radius: 30px;
}

.hero-figure img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--ink-line);
  box-shadow: 0 25px 65px rgba(15, 23, 42, 0.07);
}

/* Guarantee Box */
.adsera-garansi-box {
  position: relative;
  margin-top: 28px;
  width: 100%;
  padding: 24px;
  border-radius: 20px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  gap: 18px;
  align-items: center;
  text-align: left;
  background: rgba(16, 185, 129, 0.05);
  border: 1.5px solid rgba(16, 185, 129, .2);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.adsera-garansi-box::before {
  content: "";
  position: absolute;
  top: -70px;
  left: -45%;
  width: 36%;
  height: 230%;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, .06), transparent);
  transform: rotate(18deg);
  animation: adseraGaransiShine 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes adseraGaransiShine {
  0% { left: -45%; opacity: 0; }
  15% { opacity: 1; }
  45% { left: 125%; opacity: 0; }
  100% { left: 125%; opacity: 0; }
}

.adsera-garansi-dot-1, .adsera-garansi-dot-2 {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: #10B981;
  box-shadow: 0 0 12px rgba(16, 185, 129, .3);
  animation: adseraGaransiPulse 2.8s ease-in-out infinite;
}

.adsera-garansi-dot-1 {
  top: 24px;
  left: 28px;
  width: 7px;
  height: 7px;
  opacity: .75;
}

.adsera-garansi-dot-2 {
  right: 28px;
  bottom: 24px;
  width: 5px;
  height: 5px;
  opacity: .45;
  animation-delay: 1.2s;
}

@keyframes adseraGaransiPulse {
  0%, 100% { transform: scale(1); opacity: .45; }
  50% { transform: scale(1.3); opacity: 1; }
}

.adsera-garansi-icon-wrap {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, .1);
  border: 1px solid rgba(16, 185, 129, .2);
}

.adsera-garansi-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.adsera-garansi-content {
  position: relative;
  z-index: 2;
}

.adsera-garansi-label {
  margin-bottom: 4px;
  color: #10B981;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.adsera-garansi-title {
  margin: 0 0 6px 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
}

.adsera-garansi-desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

@media(max-width: 640px) {
  .adsera-garansi-box {
    padding: 18px;
    gap: 14px;
    align-items: flex-start;
  }
  .adsera-garansi-icon-wrap {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
  .adsera-garansi-icon {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
  .adsera-garansi-title {
    font-size: 18px;
  }
  .adsera-garansi-desc {
    font-size: 13px;
  }
}

/* Problems section */
.prob {
  background: var(--paper);
  padding: 80px 0;
}

.prob-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 48px;
}

@media(max-width: 680px) {
  .prob-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.prob-card {
  border-top: 4px solid var(--danger-red); /* Danger red top accent for pain points */
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.015);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.prob-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(239, 68, 68, 0.05);
  border-color: var(--danger-red);
}

.prob-card .prob-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.06);
  color: var(--danger-red);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 30px;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.prob-card .prob-icon-wrap {
  font-size: 36px;
  margin-bottom: 20px;
  background: rgba(239, 68, 68, 0.04);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid rgba(239, 68, 68, 0.06);
}

.prob-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.35;
}

.prob-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

@media(max-width: 580px) {
  .prob-card {
    padding: 30px 20px;
  }
  .prob-card h3 {
    font-size: 19px;
  }
}

/* Before / After section */
.loss {
  background: var(--paper-2);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}

.transform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
}

@media(max-width: 680px) {
  .transform-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.transform-card {
  padding: 30px;
}

.transform-card.before { border-top: 3.5px solid var(--danger-red); }
.transform-card.after { border-top: 3.5px solid var(--success-green); }

.transform-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.transform-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
}

.transform-card.before .transform-icon { background: #ffe4e6; color: var(--danger-red); }
.transform-card.after .transform-icon { background: #d1fae5; color: var(--success-green); }

.transform-card h3 {
  font-size: 20px;
}

.transform-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.transform-card li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.5;
}

.transform-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.transform-card.before li::before { background: var(--danger-red); }
.transform-card.after li::before { background: var(--success-green); }

/* System / Features Grid */
.solution {
  background: var(--paper);
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.feat {
  padding: 26px;
}

.feat .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0, 102, 254, .08);
  border: 1px solid rgba(0, 102, 254, 0.15);
  color: var(--blue);
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 19px;
}

.feat h3 {
  font-size: 18px;
  color: var(--text);
}

.feat p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.55;
}

/* Curriculum Accordion Silabus */
.cur {
  background: var(--paper-2);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}

.days-wrap {
  margin-top: 38px;
  display: grid;
  gap: 16px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.day-accordion {
  border: 1px solid var(--ink-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.day-accordion:hover {
  border-color: rgba(0, 102, 254, 0.15);
  box-shadow: 0 10px 25px rgba(0, 102, 254, 0.04);
}

.day-accordion.active {
  border-color: rgba(0, 102, 254, 0.3);
  box-shadow: 0 15px 30px rgba(0, 102, 254, 0.06);
  background: #ffffff;
}

.day-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  user-select: none;
}

.day-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.day-num span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 2px;
}

.day-title-wrap {
  flex: 1;
}

.day-title-wrap h3 {
  font-size: 18px;
  margin-bottom: 2px;
}

.day-title-wrap .day-desc {
  font-size: 13.5px;
  color: var(--muted);
}

.day-chev {
  font-size: 18px;
  color: var(--blue);
  transition: transform 0.25s;
}

.day-accordion.active .day-chev {
  transform: rotate(180deg);
}

.day-content-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.day-content-inner {
  padding: 0 26px 26px 82px;
  border-top: 1px dashed rgba(15, 23, 42, 0.05);
  margin-top: 0;
}

.day-content-inner ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}

@media(min-width: 600px) {
  .day-content-inner ul {
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
  }
}

.day-content-inner li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.45;
}

.day-content-inner li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-size: 12px;
}

@media(max-width: 580px) {
  .day-trigger {
    padding: 18px;
    gap: 14px;
  }
  .day-num {
    font-size: 22px;
  }
  .day-title-wrap h3 {
    font-size: 16px;
  }
  .day-content-inner {
    padding: 0 18px 18px 18px;
  }
}

/* INTERACTIVE AD WASTE CALCULATOR */
.calc-container {
  max-width: 700px;
  margin: 38px auto 0;
  padding: 30px;
}

.calc-grid {
  display: grid;
  gap: 24px;
}

.calc-input-block {
  display: grid;
  gap: 16px;
}

.calc-field {
  display: grid;
  gap: 8px;
}

.calc-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
}

.calc-field label span.val {
  color: var(--blue);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
}

.calc-range-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.calc-range-wrapper input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(15, 23, 42, 0.08);
  outline: none;
}

.calc-range-wrapper input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 102, 254, 0.2);
  transition: transform 0.1s;
}

.calc-range-wrapper input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-result-box {
  background: rgba(239, 68, 68, 0.04);
  border: 1.5px solid rgba(239, 68, 68, 0.12);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.calc-result-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--danger-red);
}

.calc-result-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--danger-red);
  font-weight: 700;
  margin-bottom: 4px;
}

.calc-waste-amt {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--danger-red);
  font-weight: 700;
  margin-bottom: 8px;
}

.calc-waste-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.45;
}

.calc-save-badge {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--success-green);
  background: rgba(16, 185, 129, 0.08);
  padding: 4px 12px;
  border-radius: 99px;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

/* =======================================================
   PEMATERI SECTION (Pinterest Redesign UI/UX)
   ======================================================= */
.spk {
  background: var(--paper);
  padding: 110px 0;
}

.spk-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 50px;
}

.spk-block {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 54px;
  align-items: center;
  background: var(--ink-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--ink-line);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.03);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.spk-block:hover {
  border-color: rgba(0, 102, 254, 0.15);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.spk-visual {
  position: relative;
  width: 100%;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
}

.spk-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.spk-block:hover .spk-img {
  transform: scale(1.03);
}

.spk-stat-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  z-index: 5;
  text-align: center;
}

.spk-stat-badge .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
}

.spk-stat-badge .lbl {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.spk-floating-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--blue);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 102, 254, 0.25);
  z-index: 5;
}

.spk-details {
  display: flex;
  flex-direction: column;
}

.spk-details h2 {
  font-size: clamp(24px, 3.5vw, 30px);
  color: var(--text);
  margin-bottom: 4px;
}

.spk-subtitle {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 24px;
  font-family: 'Space Grotesk', sans-serif;
}

.spk-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 20px;
}

.spk-timeline::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 31px;
  width: 2px;
  background: var(--blue);
  opacity: 0.15;
}

.spk-time-item {
  position: relative;
  display: flex;
  gap: 16px;
}

.spk-time-node {
  position: relative;
  z-index: 2;
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--blue);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 0 10px rgba(0, 102, 254, 0.1);
}

.spk-time-content {
  flex: 1;
}

.spk-time-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  font-family: 'Space Grotesk', sans-serif;
}

.spk-time-content p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}

@media(max-width: 860px) {
  .spk-block {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 30px;
  }
  .spk-visual {
    max-width: 300px;
    height: 320px;
    margin: 0 auto;
  }
}

/* Who it is for Section */
.who-for {
  background: var(--paper-2);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.who {
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
}

.who::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at top right, var(--glow, rgba(0, 102, 254, 0.05)), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.who:hover::before {
  opacity: 1;
}

.who:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover, rgba(0, 102, 254, 0.25));
  box-shadow: 0 20px 45px var(--shadow, rgba(15, 23, 42, 0.06));
}

.who * {
  position: relative;
  z-index: 2;
}

.who .emo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--bg, rgba(0, 102, 254, 0.08));
  border: 1px solid var(--border, rgba(0, 102, 254, 0.15));
  font-size: 24px;
  margin-bottom: 20px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.who:hover .emo {
  transform: scale(1.15) rotate(6deg);
}

.who h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.who p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Testimonials (Pinterest Overlapping Avatar Concept) */
.tst {
  background: var(--paper);
  padding: 110px 0;
}

.tst-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 80px;
}

.tst-title span {
  color: var(--blue);
}

.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

@media(max-width: 860px) {
  .tst-grid {
    grid-template-columns: 1fr;
    gap: 75px;
  }
}

.tst-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  padding: 65px 28px 32px 28px;
  text-align: center;
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.02);
  transition: transform 0.25s, box-shadow 0.25s;
}

.tst-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
}

.tst-card.highlighted {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
  box-shadow: 0 20px 45px rgba(0, 102, 254, 0.15);
}

.tst-card.highlighted:hover {
  box-shadow: 0 25px 55px rgba(0, 102, 254, 0.22);
}

.tst-avatar-wrapper {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  z-index: 10;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 6px;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.tst-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.tst-avatar-wrapper.rizal .tst-avatar {
  background-color: #38bdf8;
}

.tst-avatar-wrapper.dewi .tst-avatar {
  background-color: #fda4af;
}

.tst-avatar-wrapper.fajar .tst-avatar {
  background-color: #cbd5e1;
}

.tst-card.highlighted .tst-avatar-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tst-card .stars {
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: var(--blue);
}

.tst-card.highlighted .stars {
  color: #ffffff;
}

.tst-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.tst-card.highlighted h3 {
  color: #ffffff;
}

.tst-card .role {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.tst-card.highlighted .role {
  color: rgba(255, 255, 255, 0.8);
}

.tst-card .quote-icon {
  width: 32px;
  height: 32px;
  color: var(--blue);
  margin: 0 auto 12px auto;
  display: block;
}

.tst-card.highlighted .quote-icon {
  color: #ffffff;
}

.tst-card p.tst-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.tst-card.highlighted p.tst-text {
  color: rgba(255, 255, 255, 0.9);
}

/* Bonus Stack Section */
.bonus-sec {
  background: var(--paper-2);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}

.bonus-stack {
  max-width: 660px;
  margin: 38px auto 0;
  box-shadow: 0 25px 60px rgba(15,23,42,0.04);
}

.bonus-stack .bhead {
  background: #0f172a;
  color: #ffffff;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.bonus-stack .bhead .g {
  font-size: 22px;
}

.brow {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-top: 1px solid var(--ink-line);
}

.brow .bi {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0, 102, 254, .08);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 20px;
  border: 1px solid rgba(0, 102, 254, 0.15);
}

.brow .bt {
  flex: 1;
  min-width: 0;
}

.brow .bt b {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  display: block;
  color: var(--text);
  line-height: 1.3;
}

.brow .bt span {
  font-size: 12.5px;
  color: var(--muted);
  display: block;
  margin-top: 3px;
}

.brow .bv {
  text-align: right;
  white-space: nowrap;
}

.brow .bv s {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 13px;
  color: var(--muted-light);
  display: block;
}

.brow .bv em {
  font-style: normal;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: var(--success-green);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.btotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: #090d16;
  color: #ffffff;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.btotal .l {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.btotal .l span {
  display: block;
  font-size: 12px;
  color: var(--muted-light);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  margin-top: 4px;
}

.btotal .r {
  text-align: right;
}

.btotal .r s {
  font-family: 'JetBrains Mono', monospace;
  color: var(--muted-light);
  font-size: 14px;
}

.btotal .r b {
  font-family: 'JetBrains Mono', monospace;
  font-size: 30px;
  color: var(--blue);
  display: block;
  line-height: 1;
  margin-top: 2px;
}

.btotal .r b small {
  font-size: 18px;
}

/* Pricing Section */
.price {
  background: var(--paper);
}

/* Enhanced Dual Pricing Grid System - Harmonized Light Cyber Theme */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 38px auto 0;
  align-items: stretch;
}

.price-card-tier {
  background: var(--ink-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--ink-line);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.04);
}

.price-card-tier.featured {
  border: 2px solid var(--success-green);
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.12);
  transform: translateY(-4px);
}

.price-card-tier.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--success-green), var(--blue), var(--success-green));
}

.price-card-tier.next-stage {
  opacity: 0.95;
  border: 1.5px dashed rgba(0, 102, 254, 0.2);
  background: rgba(248, 250, 252, 0.9);
}

.tier-top {
  padding: 28px 24px 20px;
  text-align: center;
  border-bottom: 1px solid var(--ink-line);
  position: relative;
  background: var(--paper-2);
}

.price-card-tier.featured .tier-top {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
}

.price-card-tier.next-stage .tier-top {
  background: linear-gradient(180deg, rgba(0, 102, 254, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  padding: 6px 14px;
  border-radius: 99px;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.tier-badge.prelaunch {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.12);
}

.tier-badge.launching {
  background: rgba(0, 102, 254, 0.1);
  color: var(--blue-deep);
  border: 1px solid rgba(0, 102, 254, 0.25);
}

.tier-val-old {
  font-size: 14px;
  color: var(--muted);
}

.tier-val-old s {
  font-family: 'JetBrains Mono', monospace;
  color: var(--muted);
}

.tier-price {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 52px;
  color: var(--ink);
  line-height: 1.1;
  margin: 8px 0;
}

.tier-price small {
  font-size: 24px;
  color: var(--success-green);
  margin-right: 2px;
}

.price-card-tier.next-stage .tier-price small {
  color: var(--blue);
}

.tier-save-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  margin-top: 4px;
}

.tier-save-tag.green {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.tier-save-tag.blue {
  background: rgba(0, 102, 254, 0.1);
  color: var(--blue-deep);
  border: 1px solid rgba(0, 102, 254, 0.2);
}

.tier-scarcity-box {
  margin: 16px 20px 0;
  padding: 10px 14px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px;
  font-size: 12.5px;
  color: #dc2626;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tier-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  flex: 1;
}

.tier-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}

.tier-features li .check {
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 11px;
}

.tier-features li.off {
  color: var(--muted-light);
  text-decoration: line-through;
}

.tier-features li.off .check {
  background: rgba(15, 23, 42, 0.05);
  color: var(--muted-light);
}

.tier-secure {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 14px;
}

/* Price Escalation Timeline Steps - Harmonized */
.price-timeline {
  max-width: 960px;
  margin: 36px auto 0;
  background: var(--ink-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--ink-line);
  border-radius: 20px;
  padding: 24px 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.timeline-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 18px;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 640px) {
  .timeline-steps {
    grid-template-columns: 1fr;
  }
}

.t-step {
  background: #ffffff;
  border: 1px solid var(--ink-line);
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  position: relative;
}

.t-step.active {
  background: rgba(16, 185, 129, 0.06);
  border: 1.5px solid var(--success-green);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
}

.t-step-status {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 8px;
  font-family: 'Space Grotesk', sans-serif;
}

.t-step.active .t-step-status {
  background: var(--success-green);
  color: #ffffff;
}

.t-step.next .t-step-status {
  background: rgba(0, 102, 254, 0.12);
  color: var(--blue-deep);
  border: 1px solid rgba(0, 102, 254, 0.2);
}

.t-step.normal .t-step-status {
  background: rgba(15, 23, 42, 0.06);
  color: var(--muted);
}

.t-step-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.t-step-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}

.t-step.active .t-step-price {
  color: #059669;
}

.price-card {
  max-width: 480px;
  margin: 38px auto 0;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(0, 102, 254, 0.12);
}

.price-top {
  background: #0f172a;
  color: #ffffff;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--ink-line);
}

.price-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 50% -40%, rgba(0, 102, 254, .2), transparent);
}

.price-top .badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue);
  color: #ffffff;
  font-weight: 700;
  font-size: 11.5px;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.02em;
  box-shadow: 0 0 10px rgba(0, 102, 254, 0.3);
}

.price-top .lbl {
  position: relative;
  font-size: 14.5px;
  color: var(--muted-light);
}

.price-top s {
  position: relative;
  display: block;
  color: var(--muted-light);
  font-family: 'JetBrains Mono', monospace;
  margin-top: 4px;
}

.price-top .amt {
  position: relative;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 56px;
  color: #ffffff;
  line-height: 1;
  margin-top: 4px;
}

.price-top .amt small {
  font-size: 24px;
  color: var(--blue);
}

.price-top .warn {
  position: relative;
  font-size: 12.5px;
  color: #fca5a5;
  margin-top: 14px;
  font-weight: 600;
}

.price-body {
  padding: 30px;
}

.price-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.price-body li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--text);
}

.price-body li .c {
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--success-green);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 12px;
}

.price-body .secure {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 16px;
}

.bonus {
  max-width: 480px;
  margin: 18px auto 0;
  border: 1.5px dashed rgba(0, 102, 254, 0.25);
  border-radius: 16px;
  padding: 18px 22px;
  background: rgba(0, 102, 254, 0.04);
  display: flex;
  gap: 14px;
  align-items: center;
}

.bonus h3 {
  font-size: 15.5px;
  color: var(--text);
}

.bonus p {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 3px;
}

.bonus .val {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: var(--blue);
  font-size: 14px;
  white-space: nowrap;
}

/* Custom layout fixes for lists in pricing details */
.bonus-fix {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.bonus-fix-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

.bonus-fix-title {
  font-size: 14.5px;
}

.bonus-fix-value {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.bonus-fix-value b {
  color: var(--blue);
}

/* FAQ Section */
.faq {
  background: var(--paper);
}

.faq-list {
  max-width: 760px;
  margin: 38px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

details.faq-item {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--ink-line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .25s, box-shadow 0.25s;
  box-shadow: 0 10px 30px rgba(15,23,42,0.02);
}

details.faq-item:hover {
  border-color: rgba(15,23,42,0.12);
}

details.faq-item[open] {
  border-color: var(--blue);
  box-shadow: 0 15px 35px rgba(0,102,254,0.04);
  background: #ffffff;
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  font-family: 'Space Grotesk', sans-serif;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  user-select: none;
  color: var(--text);
}

summary::-webkit-details-marker {
  display: none;
}

summary .chev {
  flex: none;
  transition: transform 0.25s ease;
  color: var(--blue);
  font-size: 18px;
  line-height: 1;
}

details[open] summary .chev {
  transform: rotate(180deg);
}

details .ans {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

/* Final CTA Section */
.final {
  background:
    radial-gradient(circle at 50% 120%, var(--glow-blue) 0%, transparent 50rem),
    var(--paper);
  color: var(--text);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  border-top: 1px solid var(--ink-line);
}

.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--ink-line) 1px, transparent 1px),
                    linear-gradient(90deg, var(--ink-line) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .12;
}

.final .wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final h2 {
  font-size: clamp(28px, 4.8vw, 44px);
  max-width: 24ch;
  margin: 0 auto 12px;
}

.final p {
  color: var(--muted);
  margin: 0 auto;
  max-width: 56ch;
  font-size: 16.5px;
  line-height: 1.6;
}

.final .secure {
  font-size: 13px;
  color: var(--muted);
  margin-top: 18px;
}

/* Countdown boxes */
.count {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 38px 0;
}

.count .box {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--ink-line);
  border-radius: 14px;
  padding: 16px 10px;
  min-width: 82px;
  backdrop-filter: blur(8px);
}

.count .box .num {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 34px;
  color: var(--text);
  line-height: 1;
}

.count .box .lab {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 6px;
  font-weight: 600;
}

/* Floating Checkout CTA */
.floating-checkout {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(120px);
  z-index: 999;
  width: calc(100% - 32px);
  max-width: 500px;
  padding: 14px 22px;
  border-radius: 99px;
  text-decoration: none;
  text-align: center;
  background: linear-gradient(135deg, var(--blue), #4f46e5);
  color: #ffffff;
  box-shadow: 0 15px 40px rgba(0, 102, 254, .25);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease, transform .28s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, .15);
}

.floating-checkout.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.floating-checkout .float-main {
  display: block;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.1;
  font-family: 'Space Grotesk', sans-serif;
}

.floating-checkout .float-sub {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 700;
  opacity: .82;
}

@media(min-width: 768px) {
  .floating-checkout {
    right: 28px;
    left: auto;
    bottom: 28px;
    transform: translateY(120px);
    width: 320px;
  }
  .floating-checkout.show {
    transform: translateY(0);
  }
}

/* Scroll reveal animations (JS) */
.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* =======================================================
   CRO ELEMENT INTERACTIVITY: LIVE SOCIAL PROOF TOAST
   ======================================================= */
.social-toast {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 998;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--ink-line);
  padding: 12px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  max-width: 350px;
  transform: translateY(120%) scale(0.9);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.social-toast.show {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.social-toast-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #818cf8);
  color: white;
  display: grid;
  place-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.social-toast-body {
  font-size: 12.5px;
  line-height: 1.35;
  color: var(--text);
}

.social-toast-body b {
  color: var(--text);
}

.social-toast-body span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

@media(max-width: 767px) {
  .social-toast {
    left: 16px;
    bottom: 90px;
    max-width: calc(100% - 32px);
  }
}

/* =======================================================
   CRO ELEMENT INTERACTIVITY: CHAT ASSISTANT WIDGET
   ======================================================= */
.chat-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1001;
}

.chat-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #4f46e5);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 10px 30px rgba(0, 102, 254, 0.3);
  cursor: pointer;
  display: grid;
  place-items: center;
  color: white;
  font-size: 24px;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s;
}

.chat-button:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 35px rgba(0, 102, 254, 0.4);
}

.chat-button .close-icon {
  display: none;
}

.chat-widget.open .chat-button .chat-icon {
  display: none;
}

.chat-widget.open .chat-button .close-icon {
  display: block;
}

.chat-window {
  position: absolute;
  bottom: 74px;
  right: 0;
  width: 330px;
  height: 420px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.8) translateY(20px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15), opacity 0.3s ease;
}

.chat-widget.open .chat-window {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.chat-header {
  background: #f8fafc;
  padding: 16px 20px;
  border-bottom: 1px solid var(--ink-line);
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-avatar-status {
  position: relative;
}

.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: grid;
  place-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
}

.chat-status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success-green);
  border: 2px solid #ffffff;
}

.chat-info h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
}

.chat-info p {
  font-size: 11px;
  color: var(--success-green);
  font-weight: 600;
}

.chat-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 12.5px;
  line-height: 1.4;
}

.chat-bubble.bot {
  background: rgba(15, 23, 42, 0.05);
  color: var(--text);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}

.chat-bubble.user {
  background: var(--blue);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}

.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(15, 23, 42, 0.02);
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.chat-opt-btn {
  background: #ffffff;
  border: 1px solid var(--ink-line);
  color: var(--muted);
  font-size: 11.5px;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.chat-opt-btn:hover {
  background: rgba(0, 102, 254, 0.04);
  color: var(--text);
  border-color: rgba(0, 102, 254, 0.2);
}

@media(max-width: 768px) {
  .chat-widget {
    right: 16px;
    bottom: 90px;
  }
  .chat-window {
    width: 290px;
    height: 380px;
    bottom: 64px;
  }

}

/* =======================================================
   SUKSES DITERAPKAN PADA SECTION (Pinterest Style)
   ======================================================= */
.apply-sec {
  background: var(--paper-2);
  padding: 80px 0;
  border-bottom: 1px solid var(--ink-line);
  position: relative;
}

.apply-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.15);
  color: #ea580c;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.apply-title {
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: 12px;
  color: var(--text);
}

.apply-sub {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: 15.5px;
}

.apply-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}



.apply-card {
  background: #ffffff;
  border: 1px solid var(--ink-line);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.02);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-align: left;
}

.apply-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 102, 254, 0.2);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.apply-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 102, 254, 0.06);
  border: 1px solid rgba(0, 102, 254, 0.12);
  font-size: 20px;
  display: grid;
  place-items: center;
  flex: none;
}

.apply-info {
  flex: 1;
}

.apply-info h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.apply-info p {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
}

@media(max-width: 960px) {
  .apply-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media(max-width: 580px) {
  .apply-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .apply-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 16px 10px;
    gap: 8px;
  }
  .apply-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .apply-info h4 {
    font-size: 13px;
  }
  .apply-info p {
    font-size: 10.5px;
  }
}

/* Showcase Section & Ad Results Carousel */
.showcase-sec {
  background: #ffffff;
  padding: 100px 0;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  overflow: hidden;
}

.showcase-carousel-wrapper {
  position: relative;
  width: 100%;
  margin-top: 48px;
  padding: 20px 0;
}

.showcase-carousel {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  padding: 10px 0;
}

.showcase-card {
  width: 360px;
  flex: none;
  background: #ffffff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
  filter: grayscale(100%);
  opacity: 0.35;
  transform: scale(0.92);
  transition: transform 0.4s ease, filter 0.4s ease, opacity 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  text-align: left;
  box-sizing: border-box;
  cursor: pointer;
}

.showcase-card.active {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.02);
  border-color: var(--blue);
  box-shadow: 0 20px 45px rgba(0, 102, 254, 0.08);
}

.sc-badge {
  background: rgba(0, 102, 254, 0.06);
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}

.showcase-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.sc-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
  border-bottom: 1px dashed var(--ink-line);
  padding-bottom: 16px;
}

.sc-meta-item .sc-label {
  font-size: 10.5px;
  color: var(--muted);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sc-meta-item .sc-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-top: 2px;
}

.sc-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: var(--paper-2);
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 18px;
  border: 1px solid var(--ink-line);
}

.sc-stat .sc-num {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue);
  font-family: 'Space Grotesk', sans-serif;
}

.sc-stat .sc-lbl {
  font-size: 9.5px;
  color: var(--muted);
  line-height: 1.25;
  margin-top: 2px;
}

.sc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Showcase Navigation */
.showcase-nav {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 60px;
}

.showcase-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--ink-line);
  background: #ffffff;
  color: var(--text);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.showcase-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 254, 0.1);
}


@media(max-width: 580px) {
  .showcase-card {
    width: 290px;
    padding: 20px;
  }
}

/* Brand Solution Banner */
.brand-solution-sec {
  padding: 60px 0;
  background: var(--paper);
}

.brand-solution-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 50px 60px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(241, 245, 249, 0.95));
  border: 1px solid rgba(0, 102, 254, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 25px 60px rgba(0, 102, 254, 0.04);
}

.brand-solution-content {
  flex: 1;
  text-align: left;
}

.brand-solution-content .kicker {
  margin-bottom: 12px;
}

.brand-solution-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 18px;
}

.brand-solution-content p {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--muted);
  line-height: 1.7;
}

.brand-solution-visual {
  width: 120px;
  height: 120px;
  background: rgba(0, 102, 254, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 102, 254, 0.08);
  border: 1px solid rgba(0, 102, 254, 0.1);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media(max-width: 768px) {
  .brand-solution-card {
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px 30px;
    gap: 30px;
  }
  .brand-solution-content {
    text-align: center;
  }
  .brand-solution-visual {
    width: 100px;
    height: 100px;
    font-size: 48px;
  }
}

/* =======================================================
   BUKTI SCREENSHOT DASHBOARD ADS MANAGER SECTION (SLIDESHOW)
   ======================================================= */
.ads-proof-sec {
  padding: 80px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--ink-line);
  position: relative;
  overflow: hidden;
}

.proof-slider-wrapper {
  position: relative;
  width: 100%;
  margin-top: 36px;
  overflow: hidden;
  padding: 12px 0 24px;
}

.proof-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.proof-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 310px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  user-select: none;
}

.proof-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 102, 254, 0.14);
  border-color: rgba(0, 102, 254, 0.35);
}

.proof-card.active {
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15);
}

.proof-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f172a;
  overflow: hidden;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.proof-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  transition: transform 0.35s ease;
}

.proof-card:hover .proof-img-box img {
  transform: scale(1.04);
}

.proof-zoom-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.proof-card:hover .proof-zoom-icon {
  background: #0066fe;
  border-color: #0066fe;
}

.proof-card-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}

.proof-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 10px;
}

.proof-badge.green { background: rgba(16, 185, 129, 0.12); color: #059669; border: 1px solid rgba(16, 185, 129, 0.25); }
.proof-badge.blue { background: rgba(0, 102, 254, 0.12); color: #0052cc; border: 1px solid rgba(0, 102, 254, 0.25); }
.proof-badge.purple { background: rgba(147, 51, 234, 0.12); color: #7e22ce; border: 1px solid rgba(147, 51, 234, 0.25); }
.proof-badge.orange { background: rgba(249, 115, 22, 0.12); color: #c2410c; border: 1px solid rgba(249, 115, 22, 0.25); }

.proof-card-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.proof-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  padding: 12px;
  background: rgba(15, 23, 42, 0.03);
  border-radius: 12px;
  font-size: 12px;
  color: var(--muted);
  margin-top: auto;
}

.proof-metrics span { color: #64748b; font-size: 11px; display: block; }
.proof-metrics b { color: #0f172a; font-family: 'JetBrains Mono', monospace; font-size: 12.5px; font-weight: 700; }

/* SLIDESHOW CONTROLS */
.proof-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.proof-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--ink-line);
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  transition: all 0.2s ease;
}

.proof-btn:hover {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  box-shadow: 0 8px 20px rgba(0, 102, 254, 0.25);
  transform: scale(1.06);
}

.proof-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.proof-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: rgba(15, 23, 42, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

.proof-dot.active {
  width: 28px;
  background: var(--blue);
}

/* LIGHTBOX MODAL STYLING */
.proof-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 16px;
}

.proof-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 17, 0.88);
  backdrop-filter: blur(12px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
  background: #ef4444;
  transform: scale(1.1);
}

.lightbox-header {
  padding: 16px 20px;
  background: rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.lightbox-title {
  color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: block;
}

.lightbox-hint {
  color: #94a3b8;
  font-size: 11.5px;
  margin-top: 2px;
  display: block;
}

.lightbox-img-wrap {
  padding: 16px;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b0f19;
  flex: 1;
}

.lightbox-img-wrap img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
  .proof-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 640px) {
  .proof-card {
    flex: 0 0 88%;
    min-width: unset;
  }
  .proof-card-info h4 {
    font-size: 14px;
  }
  .proof-metrics {
    grid-template-columns: 1fr;
  }
  .lightbox-content {
    max-height: 94vh;
    border-radius: 14px;
  }
}
