/* =============================================
   MAILCLIKS — GLOBAL STYLES
   ============================================= */

:root {
  --bg: #0A0A12;
  --bg2: #111118;
  --bg3: #1A1A24;
  --card: #14141E;
  --card-border: rgba(255,255,255,0.06);
  --accent: #D4A853;
  --accent2: #E8C47A;
  --accent-glow: rgba(212,168,83,0.12);
  --text: #F0EDE6;
  --text-muted: #8E8B82;
  --text-faint: #4A4840;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --font-head: 'DM Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--white);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: 40px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #060E1A 0%, #0a1628 50%, #060E1A 100%);
  border-bottom: 1px solid rgba(212,168,83,0.1);
}
.top-bar-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-bar-item {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.25s;
}
.top-bar-item svg {
  opacity: 0.6;
  transition: opacity 0.25s;
}
.top-bar-item:hover {
  color: var(--white);
}
.top-bar-item:hover svg {
  opacity: 1;
}
.top-bar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.1);
}
.top-bar-right {
  display: flex;
  align-items: center;
}
.top-bar-badge {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 12px;
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: 50px;
  background: rgba(212,168,83,0.06);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 40px; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(8,18,32,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.4s, box-shadow 0.4s;
}
.navbar::before {
  content: '';
  position: absolute;
  bottom: 0; left: 48px; right: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,83,0.3), transparent);
}
.navbar:hover {
  background: rgba(8,18,32,0.96);
}
.nav-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.5px;
  margin-right: auto;
}
.logo-icon { color: var(--accent); font-size: 18px; }
.nav-logo {
  height: 200px;
  object-fit: contain;
  margin: -72px -24px -72px -32px;
  clip-path: inset(32% 6% 32% 6%);
}
.footer-logo {
  height: 160px;
  object-fit: contain;
  margin: -52px -18px -52px -26px;
  clip-path: inset(30% 6% 30% 6%);
}
.nav-links {
  display: flex;
  gap: 6px;
  margin-right: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 20px;
  border-radius: 8px;
  white-space: nowrap;
  position: relative;
  transition: color 0.3s, background 0.3s;
  cursor: pointer;
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}
.nav-links a.active {
  color: var(--white);
  background: rgba(212,168,83,0.1);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(212,168,83,0.5);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, #E8C47A 100%);
  color: #060E1A;
  padding: 10px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.35s;
  white-space: nowrap;
  box-shadow:
    0 2px 12px rgba(212,168,83,0.25),
    0 0 0 1px rgba(212,168,83,0.15) inset;
}
.btn-nav svg {
  transition: transform 0.3s;
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 24px rgba(212,168,83,0.35),
    0 0 0 1px rgba(212,168,83,0.2) inset;
}
.btn-nav:hover svg {
  transform: translateX(3px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #060E1A;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  letter-spacing: 0.2px;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,200,255,0.3); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid var(--card-border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* =============================================
   SECTIONS / LAYOUT
   ============================================= */
.page { padding-top: 108px; min-height: 100vh; }
.section { padding: 90px 40px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent);
  border: 1px solid rgba(0,200,255,0.25);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}
.accent { color: var(--accent); }
.accent2 { color: var(--accent2); }

/* =============================================
   HOME PAGE — HERO
   ============================================= */
.hero {
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  padding: 70px 40px 90px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,168,83,0.18) 0%, rgba(212,168,83,0.04) 60%, transparent 80%);
  top: -200px; right: -150px;
  opacity: 1;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(180,130,60,0.12) 0%, transparent 70%);
  bottom: -150px; left: -120px;
  opacity: 1;
}
.hero-orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(212,168,83,0.1) 0%, transparent 70%);
  top: 40%; left: 35%;
  opacity: 1;
  animation: pulse-orb 6s ease-in-out infinite;
}
@keyframes pulse-orb {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.7; }
}
/* Center glow behind the title area */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 25%; left: 15%;
  width: 600px; height: 500px;
  background: radial-gradient(ellipse, rgba(212,168,83,0.07) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,168,83,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,83,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 80%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-inner .hero-visual {
  display: flex;
  justify-content: center;
  background: linear-gradient(145deg, rgba(212,168,83,0.06) 0%, rgba(212,168,83,0.02) 100%);
  border: 1px solid rgba(212,168,83,0.1);
  border-radius: 24px;
  padding: 40px 32px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,83,0.08);
  border: 1px solid rgba(212,168,83,0.2);
  color: var(--accent);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: 0.3px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero-title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  padding: 20px 0;
  margin-bottom: 32px;
  border-top: 1px solid rgba(212,168,83,0.12);
  border-bottom: 1px solid rgba(212,168,83,0.12);
}
.stat-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

/* Social Proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trusted-avatars {
  display: flex;
}
.trusted-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg3), var(--card));
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-right: -8px;
}
.trusted-avatar:last-child {
  margin-right: 0;
}
.trusted-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  color: var(--text-muted);
}
.trusted-text strong {
  color: var(--white);
}
.trusted-stars {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 2px;
}

/* Hero Visual */
.hero-visual { display: flex; justify-content: flex-end; }
.email-card {
  background: linear-gradient(160deg, var(--card) 0%, rgba(20,20,30,0.95) 100%);
  border: 1px solid rgba(212,168,83,0.12);
  border-radius: 20px;
  padding: 28px;
  width: 100%;
  max-width: 400px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    0 0 40px rgba(212,168,83,0.04);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--card-border);
}
.card-avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.card-name { font-size: 14px; font-weight: 600; color: var(--white); }
.card-email { font-size: 12px; color: var(--text-muted); }
.card-badge-live {
  margin-left: auto;
  background: rgba(212,168,83,0.1);
  border: 1px solid rgba(212,168,83,0.3);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}
.card-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.mini-stat {
  background: var(--bg3);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}
.mini-stat-num {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
}
.mini-stat-label { font-size: 10px; color: var(--text-muted); margin-top: 2px; }
.progress-row { margin-bottom: 14px; }
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.progress-bar {
  height: 6px;
  background: var(--bg3);
  border-radius: 3px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), #4040FF);
  transition: width 1.5s ease;
}
.card-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--card-border);
  font-size: 12px;
}
.status-dot { width: 8px; height: 8px; background: #00E676; border-radius: 50%; display: inline-block; margin-right: 5px; }

/* =============================================
   WHY MAILCLIKS
   ============================================= */
.why-section { background: var(--bg2); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.why-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.why-card:hover { border-color: rgba(0,200,255,0.3); transform: translateY(-4px); }
.why-icon {
  width: 52px; height: 52px;
  background: var(--accent-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.why-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* =============================================
   FEATURES PREVIEW (HOME)
   ============================================= */
.features-preview { background: var(--bg); }
.features-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.fp-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.3s;
}
.fp-card:hover { border-color: rgba(0,200,255,0.25); }
.fp-icon {
  min-width: 46px; height: 46px;
  background: var(--accent-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.fp-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 7px; }
.fp-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-inner h2 { font-size: clamp(22px, 2.5vw, 34px); font-weight: 800; letter-spacing: -0.5px; }
.cta-inner p { font-size: 16px; color: var(--text-muted); margin-top: 8px; }

/* CTA SECTION — Full Width */
.cta-section {
  position: relative;
  background: linear-gradient(160deg, var(--bg2) 0%, var(--bg3) 50%, var(--bg2) 100%);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
}
.cta-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,168,83,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
.cta-section .section-title {
  font-size: clamp(28px, 3.5vw, 46px);
}
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============================================
   FEATURES PAGE
   ============================================= */
.features-hero {
  padding: 120px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.features-hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,200,255,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.features-hero .section-title { font-size: clamp(30px, 4vw, 50px); }
.features-list { background: var(--bg); padding: 0 40px 90px; }
.feature-item {
  max-width: 1100px;
  margin: 0 auto 40px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 36px;
  align-items: start;
  transition: border-color 0.3s, transform 0.3s;
}
.feature-item:hover { border-color: rgba(0,200,255,0.3); transform: translateX(6px); }
.feature-big-icon {
  width: 72px; height: 72px;
  background: var(--accent-glow);
  border: 1px solid rgba(0,200,255,0.2);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.feature-content h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.feature-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 680px;
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.ftag {
  background: var(--bg3);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 50px;
}

/* =============================================
   PRICING PAGE
   ============================================= */
.pricing-hero {
  padding: 120px 40px 60px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-note {
  display: inline-block;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.25);
  color: var(--accent2);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-top: 18px;
}
.pricing-section { padding: 20px 40px 90px; }
.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Pricing Configurator (Brevo-style) */
.pricing-configurator {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
.pricing-config-left {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 36px;
}

/* Tier Classification */
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}
.tier-item {
  background: var(--bg3);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 12px 14px;
  text-align: center;
  transition: all 0.3s;
  cursor: default;
}
.tier-item.active {
  border-color: var(--accent);
  background: rgba(30,144,255,0.08);
}
.tier-name {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.tier-item.active .tier-name {
  color: var(--accent);
}
.tier-range {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}
.pricing-tabs {
  display: flex;
  background: var(--bg3);
  border-radius: 50px;
  padding: 4px;
  margin-bottom: 36px;
  overflow-x: auto;
}
.pricing-tab {
  flex: 1;
  padding: 10px 18px;
  border: none;
  border-radius: 50px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  text-align: center;
}
.pricing-tab.active {
  background: var(--accent);
  color: #060E1A;
}
.pricing-tab:hover:not(.active) { color: var(--white); }

/* Volume Slider */
.pricing-volume { margin-bottom: 32px; }
.pricing-volume h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.pricing-volume .volume-sublabel {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.volume-value {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
}
.volume-slider {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 6px;
  background: rgba(212,168,83,0.18);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  border: none;
  margin: 8px 0;
  display: block;
}
.volume-slider::-webkit-slider-runnable-track {
  height: 6px;
  background: rgba(212,168,83,0.18);
  border-radius: 4px;
  border: none;
}
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--bg);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(212,168,83,0.4);
  margin-top: -8px;
}
.volume-slider::-moz-range-track {
  height: 6px;
  background: rgba(212,168,83,0.18);
  border-radius: 4px;
  border: none;
}
.volume-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--bg);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(212,168,83,0.4);
}
.volume-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-faint);
}
.recommended-badge {
  display: inline-block;
  background: rgba(0,200,255,0.08);
  border: 1px solid rgba(0,200,255,0.2);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 12px;
}

/* Add-ons */
.pricing-addons { margin-bottom: 32px; }
.pricing-addons h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.addon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--card-border);
}
.addon-row:last-child { border-bottom: none; }
.addon-info h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.addon-info p { font-size: 12px; color: var(--text-muted); }

/* Toggle Switch */
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-switch .slider {
  position: absolute;
  inset: 0;
  background: var(--bg3);
  border-radius: 24px;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid var(--card-border);
}
.toggle-switch .slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--text-muted);
  border-radius: 50%;
  transition: 0.3s;
}
.toggle-switch input:checked + .slider { background: var(--accent); border-color: var(--accent); }
.toggle-switch input:checked + .slider::before { left: 22px; background: #060E1A; }

/* Summary Sidebar */
.pricing-summary {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 32px;
  position: sticky;
  top: 90px;
}
.billing-toggle {
  display: flex;
  background: var(--bg3);
  border-radius: 50px;
  padding: 3px;
  margin-bottom: 28px;
}
.billing-option {
  flex: 1;
  padding: 8px 16px;
  border: none;
  border-radius: 50px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.billing-option.active {
  background: var(--accent);
  color: #060E1A;
}
.summary-plan-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}
.summary-rows { margin-bottom: 24px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--card-border);
  font-size: 14px;
}
.summary-row:last-child { border-bottom: none; }
.summary-row .label { color: var(--text-muted); }
.summary-row .value { color: var(--white); font-weight: 600; }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 20px;
  border-top: 1px solid var(--card-border);
  margin-bottom: 6px;
}
.summary-total .label { font-size: 14px; color: var(--text-muted); }
.summary-total .price {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}
.summary-original {
  text-align: right;
  font-size: 12px;
  color: var(--text-faint);
  margin-bottom: 24px;
}
.btn-summary {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  background: var(--accent);
  color: #060E1A;
  border: none;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-summary:hover { opacity: 0.88; transform: translateY(-1px); }

/* Home Pricing Section */
.home-pricing { background: var(--bg2); }
.home-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card.popular {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(0,200,255,0.07) 0%, var(--card) 60%);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #060E1A;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.plan-emails {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.plan-price {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 4px;
}
.plan-price sup { font-size: 20px; letter-spacing: 0; vertical-align: top; margin-top: 8px; display: inline-block; }
.plan-price span { font-size: 14px; color: var(--text-muted); font-weight: 400; letter-spacing: 0; }
.plan-gst { font-size: 11px; color: var(--accent); margin-top: 4px; font-weight: 500; letter-spacing: 0.5px; }
.plan-monthly { font-size: 12px; color: var(--text-muted); margin-bottom: 28px; }
.plan-divider { height: 1px; background: var(--card-border); margin-bottom: 24px; }
.plan-features { margin-bottom: 28px; }
.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.check { color: var(--accent); font-weight: 700; font-size: 14px; }
.btn-plan {
  width: 100%;
  padding: 13px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--card-border);
  background: transparent;
  color: var(--text);
  transition: all 0.2s;
}
.btn-plan:hover { border-color: var(--accent); color: var(--accent); }
.btn-plan.primary-plan {
  background: var(--accent);
  color: #060E1A;
  border-color: var(--accent);
}
.btn-plan.primary-plan:hover { opacity: 0.85; }

.pricing-included {
  max-width: 1100px;
  margin: 50px auto 0;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px;
}
.pricing-included h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 28px;
  text-align: center;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.included-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.inc-icon { font-size: 20px; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero {
  padding: 120px 40px 80px;
  max-width: 900px;
  margin: 0 auto;
}
.about-main {
  background: var(--bg2);
  padding: 80px 40px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 18px;
}
.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-stat-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.about-stat-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}
.about-stat-label { font-size: 12px; color: var(--text-muted); }

.values-section { padding: 80px 40px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 50px auto 0;
}
.value-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  border-top: 3px solid var(--accent);
}
.value-card h3 { font-size: 18px; font-weight: 800; margin: 14px 0 10px; }
.value-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.value-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--text-faint);
}

.promise-section {
  background: var(--bg2);
  padding: 80px 40px;
}
.promise-list {
  max-width: 860px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.promise-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px 28px;
  transition: border-color 0.3s;
}
.promise-item:hover { border-color: rgba(0,200,255,0.25); }
.promise-icon { font-size: 24px; min-width: 36px; text-align: center; }
.promise-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.promise-item p { font-size: 13px; color: var(--text-muted); }

/* =============================================
   ABOUT PAGE — JOURNEY STYLE
   ============================================= */
.about-story-hero {
  padding: 140px 40px 80px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hero-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  color: var(--text-faint);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  animation: bobDown 2s ease-in-out infinite;
}
@keyframes bobDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Problem Section */
.about-problem {
  background: var(--bg2);
  padding: 80px 40px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.problem-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  border-top: 3px solid rgba(255, 80, 80, 0.4);
  transition: transform 0.3s, border-color 0.3s;
}
.problem-card:hover {
  transform: translateY(-4px);
  border-top-color: rgba(255, 80, 80, 0.7);
}
.problem-icon { font-size: 28px; margin-bottom: 16px; }
.problem-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.problem-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Journey Timeline */
.about-journey {
  padding: 80px 40px;
  background: var(--bg);
}
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}
.timeline-line {
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--card-border) 30%, var(--card-border) 70%, var(--accent) 100%);
}
.timeline-item {
  position: relative;
  padding-bottom: 48px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
  position: absolute;
  left: -40px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px solid var(--text-faint);
  z-index: 1;
}
.timeline-marker--accent {
  background: var(--accent-glow);
  border-color: var(--accent);
}
.timeline-marker--pulse {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 0 rgba(212,168,83,0.4);
  animation: timelinePulse 2s ease-in-out infinite;
}
@keyframes timelinePulse {
  0% { box-shadow: 0 0 0 0 rgba(212,168,83,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(212,168,83,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,168,83,0); }
}
.timeline-date {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.timeline-content h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.timeline-content p { font-size: 15px; color: var(--text-muted); line-height: 1.8; }
.timeline-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 14px;
  padding: 10px 18px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
}
.timeline-stat-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}
.timeline-stat-label { font-size: 14px; color: var(--text-muted); }
.timeline-item--now .timeline-content h3 { color: var(--accent); }

/* Solution Section */
.about-solution {
  background: var(--bg2);
  padding: 80px 40px;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.solution-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  border-top: 3px solid var(--accent);
  transition: transform 0.3s, border-color 0.3s;
}
.solution-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--accent2);
}
.solution-icon { font-size: 28px; margin-bottom: 16px; }
.solution-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.solution-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Mission & Vision */
.about-mission {
  padding: 80px 40px;
  background: var(--bg);
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}
.mission-block {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
}
.mission-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: var(--radius) var(--radius) 0 0;
}
.mission-label {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.mission-block h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
}
.mission-block p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-hero {
  padding: 120px 40px 60px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.contact-content {
  padding: 0 40px 90px;
}
.contact-grid-new {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

/* Info Cards */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color 0.3s, transform 0.3s;
}
.contact-card:hover {
  border-color: rgba(0,200,255,0.3);
  border-left-color: var(--accent);
  transform: translateX(4px);
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--accent-glow);
  border: 1px solid rgba(0,200,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.contact-card-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.contact-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.contact-card-note {
  display: block;
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 6px;
}

/* Form Card */
.contact-form-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #4040FF, var(--accent));
}
.contact-form-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--bg2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--accent);
  color: #060E1A;
  border: none;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 8px;
}
.btn-submit:hover { opacity: 0.88; transform: translateY(-1px); }
.success-msg {
  display: none;
  text-align: center;
  padding: 20px;
  color: var(--accent);
  font-weight: 600;
  font-size: 16px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--card-border);
  padding: 60px 40px 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 0.8fr 1.4fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
}
.footer-address {
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.7;
  margin-top: 10px;
}
.footer-links h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-faint);
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works { background: var(--bg); }
.hiw-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
}
.hiw-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 36px 28px;
  flex: 1;
  max-width: 320px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.hiw-card:hover { border-color: rgba(0,200,255,0.3); transform: translateY(-4px); }
.hiw-number {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: rgba(212,168,83,0.1);
  line-height: 1;
  margin-bottom: 8px;
}
.hiw-icon {
  font-size: 36px;
  margin-bottom: 18px;
}
.hiw-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.hiw-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.hiw-connector {
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--accent);
  font-weight: 700;
  padding: 0 16px;
  opacity: 0.5;
}

/* =============================================
   STATS / NUMBERS
   ============================================= */
.stats-section {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stats-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.stats-card:hover { border-color: rgba(0,200,255,0.3); transform: translateY(-4px); }
.stats-number {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 6px;
}
.stats-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.stats-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section { background: var(--bg); }
.faq-list {
  max-width: 780px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(0,200,255,0.25); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  gap: 16px;
}
.faq-toggle {
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =============================================
   TUTORIALS PAGE
   ============================================= */
.tutorials-hero {
  padding: 120px 40px 60px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.tutorials-section-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 36px;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}
.tutorials-videos { background: var(--bg); }
.tutorials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.tutorial-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.tutorial-card:hover { border-color: rgba(0,200,255,0.3); transform: translateY(-4px); }
.tutorial-video-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.play-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #060E1A;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  padding-left: 3px;
}
.tutorial-card:hover .play-icon { transform: scale(1.1); box-shadow: 0 0 24px rgba(212,168,83,0.4); }
.tutorial-card-body { padding: 20px 24px 24px; }
.tutorial-duration {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.tutorial-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.tutorial-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Guides */
.tutorials-guides { background: var(--bg2); }
.guides-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.guide-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: border-color 0.3s, transform 0.3s;
}
.guide-card:hover { border-color: rgba(0,200,255,0.3); transform: translateX(4px); }
.guide-number {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: rgba(212,168,83,0.15);
  min-width: 50px;
  line-height: 1;
}
.guide-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.guide-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.guide-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.guide-step {
  background: var(--bg3);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 50px;
}

/* =============================================
   GET STARTED / BOOK A DEMO PAGE
   ============================================= */
.demo-hero {
  padding: 120px 40px 60px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.demo-content {
  padding: 0 40px 90px;
}
.demo-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.demo-benefits h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
}
.demo-benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.demo-benefit-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--accent-glow);
  border: 1px solid rgba(0,200,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.demo-benefit-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.demo-benefit-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.demo-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 14px 20px;
  background: var(--accent-glow);
  border: 1px solid rgba(0,200,255,0.15);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}
.demo-booking-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
}
.demo-booking-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--card-border);
}
.demo-booking-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.demo-booking-header p {
  font-size: 14px;
  color: var(--text-muted);
}
/* Calendar Widget */
.demo-calendar {
  padding: 16px 24px;
  max-width: 340px;
  margin: 0 auto;
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cal-month {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.cal-nav {
  background: var(--bg3);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.cal-nav:hover { border-color: var(--accent); color: var(--accent); }
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 8px;
}
.cal-weekdays span {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 0;
}
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-day {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
}
.cal-day:not(.empty):not(.disabled):hover {
  background: var(--accent-glow);
  color: var(--accent);
}
.cal-day.empty { cursor: default; }
.cal-day.disabled {
  color: var(--text-faint);
  opacity: 0.35;
  cursor: not-allowed;
}
.cal-day.today {
  border: 1px solid var(--accent);
  color: var(--accent);
}
.cal-day.selected {
  background: var(--accent);
  color: #060E1A;
  font-weight: 700;
}

/* Time Slots */
.demo-timeslots {
  padding: 20px 24px;
  border-top: 1px solid var(--card-border);
}
.timeslot-header {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
}
.timeslot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.timeslot {
  padding: 10px 8px;
  background: var(--bg3);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}
.timeslot:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.timeslot.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #060E1A;
  font-weight: 700;
}

/* Confirm Form */
.demo-confirm {
  padding: 20px 24px;
  border-top: 1px solid var(--card-border);
}
.confirm-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--accent-glow);
  border: 1px solid rgba(0,200,255,0.15);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
.confirm-icon { font-size: 24px; }
.confirm-summary strong {
  display: block;
  font-size: 14px;
  color: var(--white);
}
.confirm-summary span {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}
.confirm-change {
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 0.2s, color 0.2s;
}
.confirm-change:hover { border-color: var(--accent); color: var(--accent); }
.confirm-form .form-group { margin-bottom: 14px; }
.demo-alt-contact {
  padding: 20px 32px;
  text-align: center;
  border-top: 1px solid var(--card-border);
}
.demo-alt-contact p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.demo-email-link {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  transition: opacity 0.2s;
}
.demo-email-link:hover { opacity: 0.8; }

/* Demo Form */
.demo-form {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.demo-form .form-group label .required {
  color: #e74c3c;
}
.demo-form select {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg3);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  appearance: none;
  cursor: pointer;
}
.demo-form select:focus {
  outline: none;
  border-color: var(--accent);
}
.demo-form textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg3);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  resize: vertical;
}
.demo-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.captcha-group { margin-top: 4px; }
.captcha-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.captcha-question {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  background: var(--bg3);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--card-border);
}
.captcha-input {
  width: 100px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.demo-error {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #e74c3c;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
}

/* =============================================
   LEGAL PAGES (Privacy & Terms)
   ============================================= */
.legal-hero {
  padding: 120px 40px 60px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.legal-date {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 20px 40px 90px;
}
.legal-section {
  margin-bottom: 36px;
}
.legal-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}
.legal-section p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 12px;
}
.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}
.legal-section ul li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  padding: 6px 0 6px 24px;
  position: relative;
}
.legal-section ul li::before {
  content: '•';
  color: var(--accent);
  font-weight: 700;
  position: absolute;
  left: 8px;
}
.footer-legal-link {
  color: var(--text-faint);
  transition: color 0.2s;
}
.footer-legal-link:hover {
  color: var(--accent);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 30px; max-width: 100%; overflow: hidden; }
  .hero-inner .hero-visual { background: none; border: none; padding: 0; justify-content: center; }
  .hero-desc { max-width: 100%; }
  .hero-title { font-size: clamp(28px, 8vw, 40px); }
  .hero-social-proof { flex-wrap: wrap; }
  .why-grid { grid-template-columns: 1fr; }
  .features-preview-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid-new { grid-template-columns: 1fr; }
  .contact-hero { padding-left: 24px; padding-right: 24px; }
  .contact-content { padding-left: 24px; padding-right: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .feature-item { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .pricing-configurator { grid-template-columns: 1fr; }
  .pricing-summary { position: static; }
  .pricing-tabs { flex-wrap: wrap; border-radius: var(--radius); }
  .pricing-tab { border-radius: var(--radius-sm); }
  .home-pricing-grid { grid-template-columns: 1fr; }
  .hiw-grid { flex-direction: column; align-items: center; gap: 16px; }
  .hiw-connector { transform: rotate(90deg); padding: 8px 0; }
  .hiw-card { max-width: 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .faq-list { padding: 0 24px; }
  .tutorials-grid { grid-template-columns: 1fr; }
  .tutorials-hero, .demo-hero { padding-left: 24px; padding-right: 24px; }
  .demo-grid { grid-template-columns: 1fr; }
  .demo-content { padding-left: 24px; padding-right: 24px; }
  .guide-card { flex-direction: column; gap: 12px; }
  .section { padding: 60px 24px; }
  .hero { padding: 50px 24px 60px; }
  .top-bar { display: none; }
  .nav-right { display: none; }
  .nav-links { display: none; }
  .navbar {
    top: 0;
    padding: 0 20px;
    height: 60px;
  }
  .navbar::before { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(8,18,32,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 20px;
    gap: 4px;
    border-bottom: 1px solid rgba(212,168,83,0.15);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    z-index: 999;
  }
  .hamburger { display: flex; }
  .features-hero, .pricing-hero, .legal-hero { padding-left: 24px; padding-right: 24px; }
  .legal-content { padding-left: 24px; padding-right: 24px; }
  .features-list, .pricing-section { padding-left: 24px; padding-right: 24px; }
  .about-hero, .about-main, .values-section, .promise-section { padding-left: 24px; padding-right: 24px; }
  .about-story-hero, .about-problem, .about-journey, .about-solution, .about-mission { padding-left: 24px; padding-right: 24px; }
  .problem-grid, .solution-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 32px; }
  .timeline-marker { left: -32px; }
  .footer { padding: 40px 24px 0; }
  .form-row { grid-template-columns: 1fr; }
}
