/* ===================================
   VoXe — Stylesheet
   =================================== */

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

:root {
  --red: #D42B2B;
  --navy: #1B2A4A;
  --black: #111111;
  --white: #FFFFFF;
  --gray-light: #F5F5F5;
  --gray: #E5E5E5;
  --text: #333333;
  --text-muted: #666666;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1100px;
  --radius: 12px;
  --shadow: 0 2px 20px rgba(0,0,0,0.07);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== LAYOUT ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }
section { padding: 88px 0; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(38px, 5.5vw, 66px); font-weight: 800; line-height: 1.05; color: var(--navy); letter-spacing: -1.5px; }
h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; line-height: 1.15; color: var(--navy); letter-spacing: -0.5px; }
h3 { font-size: 20px; font-weight: 600; color: var(--navy); line-height: 1.3; }
p { color: var(--text); }
.lead { font-size: 19px; line-height: 1.75; color: var(--text-muted); }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 14px; }
.section-sub { font-size: 18px; color: var(--text-muted); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: 16px;
  transition: all 0.2s; cursor: pointer; border: none;
  text-decoration: none; font-family: var(--font);
}
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: #2a2a2a; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.btn-large { padding: 18px 38px; font-size: 17px; }
.btn-ghost { background: transparent; color: var(--navy); padding: 14px 0; font-weight: 600; }
.btn-ghost:hover { opacity: 0.65; }
.btn-red { background: var(--red); color: white; }
.btn-red:hover { background: #b82424; transform: translateY(-1px); }

/* ===== NAV ===== */
nav {
  position: sticky; top: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray);
  z-index: 1000;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; }
.logo-mark em { color: var(--red); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--text); transition: color 0.2s; }
.nav-links a:hover { color: var(--navy); }
.nav-links a.btn { color: var(--white); }
.nav-links a.btn:hover { color: var(--white); }
.nav-mobile-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-mobile-btn span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 4px 0; transition: 0.2s; }

/* ===== HERO ===== */
.hero { padding: 96px 0 80px; background: var(--white); overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fef2f2; color: var(--red);
  padding: 6px 14px; border-radius: 50px;
  font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; }
.hero h1 { margin-bottom: 24px; }
.hero .lead { margin-bottom: 40px; max-width: 500px; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 48px; padding-top: 32px; border-top: 1px solid var(--gray); }
.stat strong { display: block; font-size: 28px; font-weight: 800; color: var(--navy); line-height: 1; letter-spacing: -1px; }
.stat span { font-size: 13px; color: var(--text-muted); margin-top: 4px; display: block; }

/* Phone mockup */
.hero-visual { display: flex; justify-content: center; align-self: start; }
.phone-wrap {
  background: var(--gray-light); border-radius: 28px;
  padding: 28px 24px; max-width: 360px; width: 100%;
  border: 1px solid var(--gray); box-shadow: var(--shadow);
}
.phone-header {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px solid var(--gray);
}
.phone-icon {
  width: 40px; height: 40px; background: var(--red);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 18px; color: white; flex-shrink: 0;
}
.phone-meta strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); }
.phone-meta span { font-size: 12px; color: var(--text-muted); }
.chat { display: flex; flex-direction: column; gap: 10px; }
.bubble { padding: 11px 16px; border-radius: 18px; font-size: 14px; line-height: 1.4; max-width: 88%; }
.bubble.in { background: var(--white); border: 1px solid var(--gray); color: var(--text); align-self: flex-start; }
.bubble.out { background: var(--navy); color: var(--white); align-self: flex-end; }
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.bubble-animate { animation: bubbleIn 0.35s ease forwards; }

/* ===== HOW IT WORKS ===== */
.how { background: var(--gray-light); }
.section-header { text-align: center; max-width: 580px; margin: 0 auto 64px; }
.section-header h2 { margin-bottom: 16px; }
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; }
.step { text-align: center; padding: 0 24px; }
.step-num {
  width: 60px; height: 60px; border-radius: 50%; background: var(--navy);
  color: white; font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: 15px; }
.step-arrow { font-size: 22px; color: var(--red); margin-top: 22px; padding: 0 8px; opacity: 0.6; }

/* ===== DEMO ===== */
.demo-section { background: var(--white); text-align: center; }
.demo-section .section-header { margin-bottom: 48px; }
.demo-card {
  max-width: 700px; margin: 0 auto; background: var(--navy);
  border-radius: 24px; padding: 40px 48px;
  display: flex; align-items: center; gap: 32px;
}
.demo-play {
  flex-shrink: 0; width: 72px; height: 72px; background: var(--red);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform 0.2s;
  box-shadow: 0 4px 20px rgba(212,43,43,0.4);
}
.demo-play:hover { transform: scale(1.07); }
.demo-play svg { width: 26px; height: 26px; fill: white; margin-left: 3px; }
.demo-info { flex: 1; text-align: left; }
.demo-info strong { display: block; color: white; font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.demo-info span { color: rgba(255,255,255,0.5); font-size: 14px; }
.demo-badge {
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.65);
  padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 500; flex-shrink: 0;
}

/* ===== FEATURES ===== */
.features { background: var(--gray-light); }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-card {
  background: var(--white); border: 1px solid var(--gray);
  border-radius: var(--radius); padding: 32px; transition: box-shadow 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow); }
.feature-icon {
  width: 48px; height: 48px; background: #fef2f2;
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 20px;
}
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 15px; line-height: 1.65; }

/* ===== GEO SECTION ===== */
.geo-section { background: var(--gray-light); padding: 56px 0; }
.geo-inner { max-width: 860px; margin: 0 auto; }
.geo-inner h2 { font-size: 32px; color: var(--navy); margin-bottom: 28px; }
.geo-inner strong, .text-block strong { font-weight: inherit; }
.geo-inner > p { font-size: 17px; line-height: 1.85; color: var(--text-muted); margin-bottom: 20px; }
.geo-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.geo-fact { background: var(--white); border-radius: 12px; padding: 18px 24px; border: 1px solid var(--border); }
.geo-fact strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.7px; }
.geo-fact span { font-size: 15px; color: var(--text-muted); line-height: 1.5; }
@media (max-width: 600px) { .geo-facts { grid-template-columns: 1fr; } }

/* ===== PROOF ===== */
.proof { background: var(--navy); text-align: center; padding: 48px 0; }
.proof-inner { max-width: 700px; margin: 0 auto; }
.proof-quote { font-size: 20px; font-weight: 500; color: rgba(255,255,255,0.9); line-height: 1.5; font-style: italic; margin-bottom: 16px; }
.proof-meta { color: rgba(255,255,255,0.4); font-size: 14px; }
.carousel { position: relative; }
.carousel-track { position: relative; min-height: 60px; }
.carousel-slide { display: none; animation: fadeIn 0.4s ease; }
.carousel-slide.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 32px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,0.25); cursor: pointer; padding: 0; transition: background 0.2s; }
.carousel-dot.active { background: var(--red); }

/* ===== CTA ===== */
.cta-section { background: var(--white); text-align: center; padding: 56px 0; }
.cta-inner { max-width: 580px; margin: 0 auto; }
.cta-inner h2 { margin-bottom: 24px; color: var(--navy); }
.cta-inner p { font-size: 18px; color: var(--text-muted); margin-bottom: 48px; line-height: 1.75; }
.cta-fine { margin-top: 24px; font-size: 14px; color: var(--text-muted); }

/* ===== FOOTER ===== */
footer { background: var(--navy); padding: 56px 0 32px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 32px;
}
.footer-brand .logo-mark { font-size: 20px; color: white; }
.footer-desc { color: rgba(255,255,255,0.45); font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-col h4 { color: white; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.5); font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-col span { display: block; color: rgba(255,255,255,0.3); font-size: 13px; margin-bottom: 10px; }
.footer-bottom { display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 8px; }

/* ===== PAGE HERO ===== */
.page-hero { background: var(--navy); padding: 72px 0 64px; text-align: center; }
.page-hero h1 { color: white; font-size: clamp(32px, 4vw, 52px); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 18px; max-width: 480px; margin: 0 auto; }

.page-hero-red { background: var(--red); padding: 72px 0 64px; text-align: center; }
.page-hero-red h1 { color: white; font-size: clamp(28px, 4vw, 52px); margin-bottom: 16px; }
.page-hero-red p { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 540px; margin: 0 auto; }

/* ===== PRISER PAGE ===== */
.price-wrap { max-width: 560px; margin: 0 auto; }
.price-card { background: var(--white); border: 2px solid var(--navy); border-radius: 20px; overflow: hidden; }
.price-header { background: var(--navy); padding: 32px; text-align: center; }
.price-header h3 { color: white; font-size: 22px; margin-bottom: 6px; }
.price-header span { color: rgba(255,255,255,0.55); font-size: 14px; }
.price-body { padding: 40px; }
.price-amount { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--gray); }
.price-amount strong { font-size: 56px; font-weight: 800; color: var(--navy); letter-spacing: -2px; }
.price-amount .unit { font-size: 20px; color: var(--text-muted); font-weight: 500; }
.price-setup { font-size: 14px; color: var(--text-muted); margin-top: 8px; }
.price-features { margin-bottom: 40px; }
.price-features li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 0; font-size: 15px; color: var(--text);
  border-bottom: 1px solid var(--gray-light);
}
.price-features li:last-child { border-bottom: none; }
.check { color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.price-cta { width: 100%; justify-content: center; border-radius: 12px; padding: 18px !important; }

.price-faq { background: var(--gray-light); }
.price-faq h2 { text-align: center; margin-bottom: 56px; }
.price-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 860px; margin: 0 auto; }

/* ===== FAQ PAGE ===== */
.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.faq-cat h3 {
  font-size: 16px; font-weight: 700; color: var(--red);
  margin-bottom: 32px; padding-bottom: 12px;
  border-bottom: 2px solid #ffd5d5; text-transform: uppercase;
  letter-spacing: 0.5px;
}
.faq-item { margin-bottom: 32px; }
.faq-item h4 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.faq-item p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ===== BOOK DEMO ===== */
.book-section { background: var(--gray-light); }
.book-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: stretch; }
.book-calendly { display: flex; align-items: center; justify-content: center; }
.book-text h2 { margin-bottom: 16px; }
.book-text p { color: var(--text-muted); margin-bottom: 24px; }
.book-points { margin-bottom: 32px; }
.book-points li { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; font-size: 15px; color: var(--text); }
.book-points li::before { content: "✓"; color: var(--red); font-weight: 700; flex-shrink: 0; }
.calendly-placeholder {
  background: white; border: 2px dashed var(--gray);
  border-radius: 16px; padding: 48px 32px; text-align: center;
}
.calendly-placeholder .cp-icon { font-size: 40px; margin-bottom: 16px; }
.calendly-placeholder h3 { margin-bottom: 8px; }
.calendly-placeholder p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.book-popup-box {
  background: var(--navy); border-radius: 16px; padding: 48px 40px;
  text-align: center; width: 100%;
}
.bp-icon { font-size: 40px; margin-bottom: 16px; }
.book-popup-box h3 { font-size: 22px; margin-bottom: 10px; color: #fff; }
.book-popup-box > p { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.6; margin-bottom: 28px; }

/* Contact form */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--gray);
  border-radius: 10px; font-size: 15px; font-family: var(--font);
  transition: border-color 0.2s; outline: none; color: var(--text); background: var(--white);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { height: 110px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; border-radius: 12px; }

/* ===== OM PAGE ===== */
.split-section { background: var(--white); }
.split-section.gray { background: var(--gray-light); }
.split-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.text-block h2 { margin-bottom: 20px; }
.text-block p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; font-size: 16px; }
.text-block p:last-child { margin-bottom: 0; }
.check-list { margin-top: 24px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; font-size: 15px; color: var(--text); }
.check-list li::before { content: "✓"; color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.not-list { margin-top: 16px; }
.not-list li { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; font-size: 15px; color: var(--text-muted); }
.not-list li::before { content: "—"; color: var(--gray); font-weight: 700; flex-shrink: 0; }
.visual-card { background: var(--gray-light); border-radius: 20px; padding: 36px; border: 1px solid var(--gray); }
.result-item {
  display: flex; align-items: center; gap: 16px;
  background: white; border-radius: 12px; padding: 18px 20px;
  border: 1px solid var(--gray); margin-bottom: 12px;
}
.result-item:last-child { margin-bottom: 0; }
.result-icon { font-size: 26px; flex-shrink: 0; }
.result-item strong { display: block; color: var(--navy); font-size: 15px; font-weight: 600; }
.result-item span { color: var(--text-muted); font-size: 13px; }

.after-30 { background: var(--navy); text-align: center; }
.after-30 h2 { color: white; margin-bottom: 48px; }
.after-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 820px; margin: 0 auto; }
.after-item {
  background: rgba(255,255,255,0.07); border-radius: 16px;
  padding: 32px 24px; border: 1px solid rgba(255,255,255,0.08);
}
.after-item .ai { font-size: 36px; margin-bottom: 16px; }
.after-item strong { color: white; font-size: 17px; display: block; line-height: 1.4; }

/* ===== MOBILE NAV ===== */
.nav-mobile-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-shrink: 0; }
.nav-mobile-btn span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; transition: all 0.25s; border-radius: 2px; }
.nav-mobile-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-btn.open span:nth-child(2) { opacity: 0; }
.nav-mobile-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; background: white;
  border-top: 1px solid var(--gray);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  position: sticky; top: 62px; z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav .container {
  display: flex; flex-direction: column; padding-top: 16px; padding-bottom: 20px; gap: 4px;
}
.mobile-nav a {
  font-size: 16px; font-weight: 500; color: var(--text);
  padding: 12px 4px; border-bottom: 1px solid var(--gray-light);
  display: block; transition: color 0.15s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--navy); }
.mobile-nav .btn {
  margin-top: 8px; text-align: center; justify-content: center;
  border-bottom: none; color: white !important; padding: 14px 28px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner, .split-inner, .book-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: 1; }
  .phone-wrap { max-width: 480px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .step-arrow { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .price-faq-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .after-grid { grid-template-columns: 1fr; gap: 16px; }
  .demo-card { flex-direction: column; text-align: center; padding: 32px 28px; }
  .demo-info { text-align: center; }
  .proof-quote { font-size: 22px; }
}

@media (max-width: 640px) {
  #pricing-faq { display: none; }
  .how { display: none; }

  /* Layout */
  .container { padding: 0 20px; }
  section { padding: 64px 0; }
  .hero { padding: 56px 0 48px; }

  /* Nav */
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  .nav-inner { height: 62px; }

  /* Typography */
  h1 { font-size: clamp(32px, 9vw, 48px); }
  h2 { font-size: clamp(24px, 7vw, 36px); }
  .lead { font-size: 17px; }
  .proof-quote { font-size: 19px; line-height: 1.55; }
  .section-sub { font-size: 16px; }

  /* Hero */
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-actions .btn-large { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .stat strong { font-size: 24px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 24px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  /* Priser */
  .price-body { padding: 28px 20px; }
  .price-amount strong { font-size: 48px; }
  .price-faq-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Om */
  .split-inner { gap: 32px; }
  .visual-card { padding: 24px; }

  /* Book */
  .book-inner { gap: 32px; }

  /* Section header */
  .section-header { margin-bottom: 40px; }

  /* Page heroes */
  .page-hero { padding: 56px 0 48px; }
  .page-hero p { font-size: 16px; }
  .page-hero-red { padding: 56px 0 48px; }
  .page-hero-red p { font-size: 16px; }

  /* CTA */
  .cta-inner p { font-size: 16px; margin-bottom: 32px; }
  .btn-large { padding: 16px 28px; font-size: 16px; }
}

@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .hero-stats { gap: 16px; }
  .hero-stats .stat { flex: 1; }
}
