@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
  --bg-deep: #050913;
  --bg-surface: #0a1324;
  --bg-card: rgba(12, 22, 40, 0.75);
  --bg-card-hover: rgba(18, 32, 58, 0.9);
  --bg-glass: rgba(255, 255, 255, 0.04);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 136, 255, 0.35);
  --border-active: #0088ff;

  --primary: #005f98;
  --primary-dark: #003c5e;
  --primary-electric: #0088ff;
  --accent-cyan: #00d2ff;
  --accent-sky: #38bdf8;
  --accent-red: #c73434;
  --accent-amber: #f59e0b;
  --accent-purple: #8b5cf6;

  --accent-emerald: #0088ff;
  --accent-neon: #38bdf8;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --whatsapp: #25d366;
  --whatsapp-glow: rgba(37, 211, 102, 0.35);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px -10px rgba(0, 136, 255, 0.3);
  --shadow-neon: 0 0 25px rgba(0, 136, 255, 0.45);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(0, 136, 255, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 10% 40%, rgba(0, 95, 152, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(0, 210, 255, 0.08) 0%, transparent 45%);
  background-attachment: fixed;
}

/* Background grid noise effect */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* Typography */
h1, h2, h3, h4, .brand-font {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #ffffff;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 15%, #bae6fd 60%, var(--primary-electric) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #00d2ff 0%, #0088ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Top Announcement Banner */
.top-ticker {
  background: linear-gradient(90deg, rgba(0, 95, 152, 0.3) 0%, rgba(0, 136, 255, 0.25) 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #bae6fd;
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.top-ticker span.badge {
  background: var(--primary-electric);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(5, 9, 19, 0.82);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-img-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 4px 15px rgba(0, 136, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #ffffff;
  padding: 2px;
}

.logo-shield {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-electric) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 136, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.1;
  font-family: var(--font-display);
}
.brand-name span {
  color: var(--primary-electric);
}

.brand-sub {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

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

.nav-links a:hover {
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 24px;
  font-size: 14.5px;
  font-weight: 700;
  font-family: var(--font-body);
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-electric) 0%, var(--primary) 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 136, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 136, 255, 0.5);
}

.btn-wa {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 16px var(--whatsapp-glow);
}

.btn-wa:hover {
  background: #22bf5b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

/* Hero Section */
.hero {
  padding: 90px 0 80px;
  text-align: center;
  position: relative;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(0, 136, 255, 0.1);
  border: 1px solid rgba(0, 136, 255, 0.28);
  font-size: 13px;
  font-weight: 700;
  color: #7dd3fc;
  margin-bottom: 24px;
}

.hero-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-electric);
  box-shadow: 0 0 10px var(--primary-electric);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.08;
  max-width: 960px;
  margin: 0 auto 24px;
}

.hero p.lead {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto 40px;
  font-weight: 500;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 13.5px;
  font-weight: 600;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust-item svg {
  color: var(--accent-emerald);
}

/* Interactive Mockup Window */
.hero-mockup-wrapper {
  margin-top: 60px;
  position: relative;
}

.mockup-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, rgba(6, 182, 212, 0.1) 40%, transparent 70%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

.mockup-window {
  background: rgba(14, 19, 31, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mockup-header {
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.window-title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mockup-body {
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

@media (max-width: 900px) {
  .mockup-body {
    grid-template-columns: 1fr;
    padding: 18px;
  }
}

.preview-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: transform 0.2s, border-color 0.2s;
}

.preview-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-2px);
}

.preview-tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-neon);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.preview-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
}

.preview-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* Pain vs Gain Section */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-subtitle {
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-neon);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 18px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
}

/* Comparison Grid */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

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

.comp-col {
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
}

.comp-col.bad {
  background: rgba(239, 68, 68, 0.03);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.comp-col.good {
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.35);
  box-shadow: 0 0 40px -15px rgba(16, 185, 129, 0.2);
}

.comp-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.comp-badge {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.comp-col.bad .comp-badge { background: rgba(239, 68, 68, 0.15); color: #f87171; }
.comp-col.good .comp-badge { background: rgba(16, 185, 129, 0.18); color: var(--accent-neon); }

.comp-title {
  font-size: 20px;
  font-weight: 800;
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}

.comp-item .icon {
  flex-shrink: 0;
  margin-top: 3px;
  width: 20px;
  height: 20px;
}
.comp-col.bad .comp-item .icon { color: #f87171; }
.comp-col.good .comp-item .icon { color: var(--accent-neon); }

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--accent-neon);
}

.feature-title {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
}

.feature-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Case Study Section */
.case-study {
  background: linear-gradient(180deg, rgba(14, 19, 31, 0.6) 0%, rgba(7, 9, 14, 0.8) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
}

.case-study-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-size: 12px;
  font-weight: 800;
  color: #fcd34d;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.case-study-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 850px) {
  .case-study-content {
    grid-template-columns: 1fr;
  }
}

.case-study-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  color: var(--accent-neon);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

/* How It Works Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

.step-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.07);
  position: absolute;
  top: 18px;
  right: 22px;
  line-height: 1;
}

.step-title {
  font-size: 20px;
  font-weight: 800;
  margin: 14px 0 10px;
}

.step-desc {
  font-size: 14.5px;
  color: var(--text-muted);
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.active {
  border-color: rgba(16, 185, 129, 0.35);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: var(--accent-neon);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 22px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
}

/* Commercial Contact Section */
.cta-banner {
  background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.2) 0%, rgba(14, 19, 31, 0.95) 75%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.cta-banner h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 36px;
}

.wa-direct-card {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: rgba(37, 211, 102, 0.12);
  border: 1.5px solid rgba(37, 211, 102, 0.4);
  padding: 16px 28px;
  border-radius: var(--radius-lg);
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  transition: all 0.25s ease;
}

.wa-direct-card:hover {
  background: rgba(37, 211, 102, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--whatsapp-glow);
}

.wa-icon-large {
  width: 44px;
  height: 44px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.5);
}

/* Sticky WhatsApp Floater */
.sticky-wa-floater {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-wa-floater:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.6);
}

.sticky-wa-floater svg {
  width: 24px;
  height: 24px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 50px 0 100px;
  background: #05070a;
  font-size: 14px;
  color: var(--text-dim);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent-neon);
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .sticky-wa-floater span.floater-text {
    display: none;
  }
  .sticky-wa-floater {
    padding: 16px;
    border-radius: 50%;
  }
}
