/* ============================================================
   UMKM Admin — Landing Page Stylesheet
   Estetika: Warm Professional · Biru Tua + Emerald + Krem
   Font: Sora (headline) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:      #0d1b2a;
  --navy-mid:  #1a2f45;
  --navy-soft: #233a52;
  --emerald:   #059669;
  --emerald-l: #10b981;
  --emerald-xl:#d1fae5;
  --amber:     #f59e0b;
  --sky:       #38bdf8;
  --cream:     #faf8f4;
  --cream-d:   #f0ece4;
  --white:     #ffffff;
  --text:      #1e293b;
  --text-mid:  #475569;
  --text-soft: #94a3b8;
  --border:    #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(13,27,42,.08);
  --shadow:    0 8px 32px rgba(13,27,42,.12);
  --shadow-lg: 0 20px 60px rgba(13,27,42,.18);
  --r:         16px;
  --r-sm:      10px;
  --r-lg:      24px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ────────────────────────────────────────────── */
.sora { font-family: 'Sora', sans-serif; }
h1,h2,h3,h4 { font-family: 'Sora', sans-serif; line-height: 1.2; color: var(--navy); }

/* ── Utilities ─────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-emerald { color: var(--emerald); }
.text-white { color: var(--white); }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--emerald-xl); color: var(--emerald);
  font-size: 12px; font-weight: 700; letter-spacing: .6px;
  text-transform: uppercase; padding: 5px 14px;
  border-radius: 20px; margin-bottom: 16px;
}

.section-label {
  font-size: 13px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--emerald);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800; color: var(--navy);
  margin-bottom: 16px; line-height: 1.15;
}
.section-sub {
  font-size: 17px; color: var(--text-mid);
  max-width: 560px; margin: 0 auto;
  line-height: 1.7;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600; cursor: pointer;
  border: none; transition: all .25s ease;
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--emerald);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(5,150,105,.35);
}
.btn-primary:hover {
  background: var(--emerald-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(5,150,105,.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-lg { padding: 18px 40px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

.btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-wa:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
}

/* ── Navbar ─────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 0 24px;
  transition: all .3s ease;
}
#navbar .nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  transition: padding .3s;
}
#navbar.scrolled {
  background: rgba(13,27,42,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
}
#navbar.scrolled .nav-inner { padding: 14px 0; }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo .logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--emerald), var(--sky));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.nav-logo span {
  font-family: 'Sora', sans-serif;
  font-weight: 700; font-size: 17px; color: var(--white);
}

.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: 14px; font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all .3s;
}

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 998;
  background: var(--navy);
  flex-direction: column; align-items: center;
  justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white); font-size: 22px;
  font-family: 'Sora', sans-serif; font-weight: 600;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--emerald-l); }

/* ── HERO ──────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 80px;
}

/* Geometric background */
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(5,150,105,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(56,189,248,.12) 0%, transparent 50%);
}
.hero-grid-bg {
  position: absolute; inset: 0; opacity: .04;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Floating orbs */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(5,150,105,.25), transparent 70%);
  top: -100px; right: -100px;
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(56,189,248,.2), transparent 70%);
  bottom: -80px; left: 5%;
  animation: orbFloat 9s ease-in-out infinite alternate-reverse;
}
@keyframes orbFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(20px, -30px) scale(1.08); }
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  padding: 80px 0;
  max-width: 1160px; margin: 0 auto; width: 100%;
  padding-left: 24px; padding-right: 24px;
}

.hero-left {}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(5,150,105,.15);
  border: 1px solid rgba(5,150,105,.3);
  color: var(--emerald-l);
  font-size: 13px; font-weight: 600;
  padding: 7px 16px; border-radius: 20px;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--emerald-l);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.3); }
}

.hero-h1 {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800; color: var(--white);
  line-height: 1.08; margin-bottom: 24px;
}
.hero-h1 .accent {
  background: linear-gradient(135deg, var(--emerald-l), var(--sky));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px; color: rgba(255,255,255,.65);
  line-height: 1.75; margin-bottom: 40px;
  max-width: 480px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 32px; margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-stat-val {
  font-family: 'Sora', sans-serif;
  font-size: 28px; font-weight: 800; color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px; color: rgba(255,255,255,.45);
  margin-top: 4px;
}

/* App mockup */
.hero-right {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.mockup-wrap {
  position: relative; width: 100%;
}
.mockup-frame {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.05),
    0 40px 80px rgba(0,0,0,.5),
    0 0 60px rgba(5,150,105,.15);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform .5s ease;
}
.mockup-frame:hover {
  transform: perspective(1000px) rotateY(-1deg) rotateX(0deg);
}
.mockup-bar {
  background: var(--navy);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #ffbd2e; }
.mockup-dot:nth-child(3) { background: #28c940; }
.mockup-bar .url-bar {
  flex: 1; background: rgba(255,255,255,.06);
  border-radius: 4px; padding: 4px 10px;
  font-size: 11px; color: rgba(255,255,255,.3);
  margin-left: 8px;
}
.mockup-img { width: 100%; display: block; }

/* Floating badge */
.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  animation: floatBadge 4s ease-in-out infinite alternate;
}
.float-badge .icon-wrap {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.float-badge-1 { bottom: 20px; left: -40px; }
.float-badge-1 .icon-wrap { background: var(--emerald-xl); }
.float-badge-2 { top: 30px; right: -30px; }
.float-badge-2 .icon-wrap { background: #fef3c7; }
@keyframes floatBadge {
  from { transform: translateY(0px); }
  to   { transform: translateY(-10px); }
}

/* ── PROBLEM SECTION ───────────────────────────────────────── */
#problem {
  background: var(--cream);
  position: relative; overflow: hidden;
}
#problem::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--emerald), var(--sky), var(--amber));
}
.problem-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-top: 56px;
}
.problem-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 28px 28px 24px;
  border-left: 4px solid var(--amber);
  box-shadow: var(--shadow-sm);
  display: flex; gap: 18px; align-items: flex-start;
  transition: transform .25s, box-shadow .25s;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.problem-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: #fff8e1;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.problem-card h3 {
  font-size: 15px; font-weight: 700; color: var(--navy);
  margin-bottom: 6px;
}
.problem-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.6; }

/* ── SOLUTION ──────────────────────────────────────────────── */
#solution {
  background: var(--white);
  overflow: hidden;
}
.solution-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.solution-img-wrap {
  position: relative;
}
.solution-img-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.solution-img-frame img { width: 100%; }
.solution-chip {
  position: absolute;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--r-sm);
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-lg);
}
.solution-chip-1 { bottom: -20px; left: -20px; }
.solution-chip-2 { top: -16px; right: -16px; background: var(--emerald); }

.solution-points { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.solution-point {
  display: flex; gap: 14px; align-items: flex-start;
}
.solution-point-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--emerald-xl);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.solution-point h4 { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.solution-point p  { font-size: 13.5px; color: var(--text-mid); }

/* ── FEATURES ──────────────────────────────────────────────── */
#features {
  background: var(--navy);
  position: relative; overflow: hidden;
}
#features::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(5,150,105,.15), transparent 60%);
}
#features .section-title { color: var(--white); }
#features .section-sub { color: rgba(255,255,255,.55); }
#features .section-label { color: var(--emerald-l); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 56px;
  background: rgba(255,255,255,.05);
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.feature-card {
  background: rgba(255,255,255,.03);
  padding: 36px 28px;
  transition: background .25s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
  opacity: 0; transition: opacity .3s;
}
.feature-card:hover { background: rgba(255,255,255,.06); }
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
  background: rgba(5,150,105,.15);
  border: 1px solid rgba(5,150,105,.2);
}
.feature-card h3 {
  font-size: 17px; font-weight: 700; color: var(--white);
  margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.65; }

/* ── ADVANTAGES ────────────────────────────────────────────── */
#advantages { background: var(--cream); }
.advantages-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.checklist { display: flex; flex-direction: column; gap: 16px; margin-top: 12px; }
.check-item {
  display: flex; gap: 14px; align-items: center;
  background: var(--white);
  padding: 16px 20px; border-radius: var(--r-sm);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.check-item:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.check-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--emerald-xl); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--emerald); font-size: 16px; font-weight: 700;
}
.check-item span { font-size: 15px; font-weight: 600; color: var(--navy); }

.adv-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.adv-stat {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-bottom: 3px solid var(--emerald);
}
.adv-stat .big {
  font-family: 'Sora', sans-serif;
  font-size: 38px; font-weight: 800;
  color: var(--navy); line-height: 1;
}
.adv-stat .label { font-size: 13px; color: var(--text-mid); margin-top: 6px; }

/* ── SCREENSHOTS ───────────────────────────────────────────── */
#screenshots { background: var(--white); overflow: hidden; }
.screenshots-tabs {
  display: flex; gap: 8px; justify-content: center;
  margin: 40px 0 0; flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 22px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  cursor: pointer; border: 2px solid var(--border);
  background: var(--white); color: var(--text-mid);
  transition: all .2s;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--navy); color: var(--white);
  border-color: var(--navy);
}

.screenshots-display {
  margin-top: 32px;
  position: relative;
}
.screenshot-panel {
  display: none;
  animation: fadeIn .4s ease;
}
.screenshot-panel.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.screen-frame {
  background: var(--navy-mid);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,.06);
  border: 1px solid rgba(255,255,255,.05);
}
.screen-bar {
  background: var(--navy);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
}
.screen-dot { width: 10px; height: 10px; border-radius: 50%; }
.screen-dot:nth-child(1) { background: #ff5f57; }
.screen-dot:nth-child(2) { background: #ffbd2e; }
.screen-dot:nth-child(3) { background: #28c940; }
.screen-frame img { width: 100%; display: block; }

.screen-caption {
  display: flex; gap: 24px; margin-top: 20px;
  flex-wrap: wrap; justify-content: center;
}
.screen-caption .cap-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text-mid); font-weight: 500;
}
.cap-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--emerald);
}

/* ── TESTIMONIALS ──────────────────────────────────────────── */
#testimonials { background: var(--cream); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .25s, box-shadow .25s;
  border: 1px solid var(--border);
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.testi-card::before {
  content: '"';
  position: absolute; top: 24px; right: 28px;
  font-family: 'Sora', sans-serif;
  font-size: 80px; line-height: 1;
  color: var(--emerald-xl); font-weight: 800;
}
.stars { color: #f59e0b; font-size: 16px; margin-bottom: 16px; }
.testi-text {
  font-size: 15px; line-height: 1.75; color: var(--text-mid);
  margin-bottom: 24px; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700;
  color: var(--white);
}
.av-green  { background: linear-gradient(135deg, #059669, #10b981); }
.av-blue   { background: linear-gradient(135deg, #1d4ed8, #3b82f6); }
.av-orange { background: linear-gradient(135deg, #d97706, #f59e0b); }
.testi-name { font-weight: 700; font-size: 15px; color: var(--navy); }
.testi-biz  { font-size: 12px; color: var(--text-soft); }

/* ── PRICING ───────────────────────────────────────────────── */
#pricing {
  background: var(--navy);
  position: relative; overflow: hidden;
}
#pricing::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(5,150,105,.18), transparent 60%);
}
#pricing .section-title { color: var(--white); }
#pricing .section-label { color: var(--emerald-l); }
#pricing .section-sub   { color: rgba(255,255,255,.5); }

.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 56px;
  max-width: 820px; margin-left: auto; margin-right: auto;
  position: relative; z-index: 1;
}
.pricing-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,.3);
}
.pricing-card.featured {
  background: var(--emerald);
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(5,150,105,.4);
}
.pricing-card.featured:hover {
  box-shadow: 0 30px 80px rgba(5,150,105,.5);
}
.pricing-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--amber); color: var(--navy);
  font-size: 11px; font-weight: 800; letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
}
.pricing-plan { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.pricing-card.featured .pricing-plan { color: rgba(255,255,255,.8); }
.pricing-price {
  font-family: 'Sora', sans-serif;
  font-size: 44px; font-weight: 800; color: var(--white);
  line-height: 1; margin-bottom: 4px;
}
.pricing-price sub { font-size: 18px; font-weight: 600; opacity: .7; vertical-align: top; margin-top: 10px; }
.pricing-period { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 28px; }
.pricing-divider { border: none; border-top: 1px solid rgba(255,255,255,.15); margin: 24px 0; }
.pricing-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,.85);
}
.pricing-item::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}
.pricing-card.featured .pricing-item::before { background: rgba(255,255,255,.25); }
.pricing-btn { width: 100%; text-align: center; justify-content: center; }
.pricing-card.featured .pricing-btn { background: var(--white); color: var(--emerald); }
.pricing-card.featured .pricing-btn:hover { background: var(--cream); }

/* ── FAQ ───────────────────────────────────────────────────── */
#faq { background: var(--white); }
.faq-list {
  max-width: 740px; margin: 48px auto 0;
  display: flex; flex-direction: column; gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%; background: none; border: none;
  text-align: left; cursor: pointer;
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 600; color: var(--navy);
  transition: color .2s;
  gap: 16px;
}
.faq-q:hover { color: var(--emerald); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--cream-d);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700;
  color: var(--navy); transition: all .3s;
}
.faq-item.open .faq-icon {
  background: var(--emerald); color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  font-size: 15px; color: var(--text-mid); line-height: 1.75;
  padding: 0;
}
.faq-item.open .faq-a {
  max-height: 200px; padding-bottom: 20px;
}

/* ── CTA SECTION ───────────────────────────────────────────── */
#cta {
  background: var(--emerald);
  position: relative; overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(255,255,255,.08), transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 50%, rgba(0,0,0,.1), transparent 60%);
}
.cta-inner {
  text-align: center;
  position: relative; z-index: 1;
  padding: 80px 0;
}
.cta-inner h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800; color: var(--white);
  margin-bottom: 16px; line-height: 1.15;
}
.cta-inner p {
  font-size: 18px; color: rgba(255,255,255,.75);
  margin-bottom: 40px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-note {
  margin-top: 24px; font-size: 13px;
  color: rgba(255,255,255,.55);
}

/* ── FOOTER ────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--emerald), var(--sky));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.footer-brand .logo span {
  font-family: 'Sora', sans-serif;
  font-weight: 700; font-size: 17px; color: var(--white);
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.75; max-width: 280px; }

.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-col a, .footer-col p {
  display: block; font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px; transition: color .2s;
}
.footer-col a:hover { color: var(--emerald-l); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,.3);
  flex-wrap: wrap; gap: 12px;
}

/* WhatsApp floating */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 990;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,.6);
}
.wa-float .wa-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: #25d366; opacity: .4;
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .4; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ── SCROLL ANIMATIONS ─────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .float-badge-1 { left: 0; }
  .float-badge-2 { right: 0; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; padding-top: 40px; }
  .hero-h1 { font-size: 36px; }
  .hero-sub { margin-left: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; gap: 28px; }
  .hero-right { order: -1; }
  .float-badge { display: none; }
  .mockup-frame { transform: none; }

  .problem-grid { grid-template-columns: 1fr; }
  .solution-inner { grid-template-columns: 1fr; gap: 40px; }
  .solution-chip { display: none; }
  .advantages-inner { grid-template-columns: 1fr; gap: 40px; }
  .testi-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { text-align: center; justify-content: center; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 30px; }
  .btn-lg  { padding: 16px 28px; font-size: 15px; }
}
