/* === BASE === */
:root {
  --navy:    #0A1628;
  --amber:   #F59E0B;
  --amber-l: #FCD34D;
  --steel:   #E8EDF5;
  --muted:   #94A3B8;
  --dark:    #060E1A;
  --white:   #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--steel);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3, .hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--white);
}

.section-label {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.15em;
  color: var(--amber);
  font-size: 13px;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.05;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* === LAYOUT === */
section { padding: 80px 24px; }

/* === HERO === */
.hero {
  background: var(--navy);
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.hero-kicker {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.15em;
  color: var(--amber);
  font-size: 13px;
  margin-bottom: 16px;
}

.hero-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.0;
}

.accent-word { color: var(--amber); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.65;
}

.hero-proof {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.proof-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.proof-stat {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--amber);
  min-width: 80px;
}

.proof-label {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
}

/* === PHONE MOCKUP === */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.phone-wrap {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

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

.phone {
  width: 220px;
  background: #111827;
  border-radius: 36px;
  padding: 12px;
  border: 1.5px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,158,11,0.1), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  z-index: 2;
}

.phone-notch {
  width: 80px;
  height: 22px;
  background: #111827;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 8px;
  position: relative;
  z-index: 3;
}

.phone::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.phone-screen { background: #0D1628; border-radius: 26px; overflow: hidden; padding: 12px; }

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.screen-time { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 500; color: var(--steel); }

.screen-icons { display: flex; gap: 5px; align-items: center; }

.signal-bars { display: flex; gap: 2px; align-items: flex-end; height: 12px; }
.bar { width: 3px; background: var(--steel); border-radius: 1px; }
.b1 { height: 4px; } .b2 { height: 6px; } .b3 { height: 8px; } .b4 { height: 10px; }

.wifi-icon, .battery-icon { width: 14px; height: 10px; position: relative; }
.wifi-icon::after { content: ''; position: absolute; width: 10px; height: 6px; border: 1.5px solid var(--steel); border-top: none; border-radius: 0 0 4px 4px; top: 0; left: 0; }
.battery-icon::after { content: ''; position: absolute; width: 10px; height: 5px; border: 1.5px solid var(--steel); border-radius: 1px; top: 2px; left: 0; }
.batt-level { position: absolute; width: 7px; height: 3px; background: var(--amber); border-radius: 0; top: 3px; left: 1px; }

.screen-content { display: flex; flex-direction: column; gap: 8px; }

.call-banner { display: flex; align-items: center; gap: 8px; }
.call-avatar { width: 32px; height: 32px; background: var(--amber); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 11px; color: var(--navy); flex-shrink: 0; }
.call-name { font-size: 0.7rem; font-weight: 600; color: var(--white); }
.call-status { font-size: 0.6rem; color: var(--amber); }
.call-status.incoming { color: #22C55E; }

.call-waveform { display: flex; align-items: center; gap: 3px; height: 28px; padding: 0 4px; }
.wave-bar { width: 3px; background: var(--amber); border-radius: 2px; animation: wave 1.2s ease-in-out infinite; opacity: 0.8; }
.w1 { height: 14px; animation-delay: 0s; } .w2 { height: 20px; animation-delay: 0.1s; }
.w3 { height: 8px; animation-delay: 0.2s; } .w4 { height: 22px; animation-delay: 0.3s; }
.w5 { height: 16px; animation-delay: 0.4s; } .w6 { height: 10px; animation-delay: 0.5s; }
.w7 { height: 18px; animation-delay: 0.6s; } .w8 { height: 12px; animation-delay: 0.7s; }

@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.5); }
}

.call-message {
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 0.6rem;
  color: var(--steel);
  line-height: 1.5;
  font-style: italic;
}

.booking-card {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.booking-label { font-family: 'Bebas Neue', sans-serif; font-size: 0.7rem; color: #22C55E; letter-spacing: 0.1em; }
.booking-row { display: flex; align-items: center; gap: 6px; }
.booking-icon { width: 12px; height: 12px; background: #22C55E; border-radius: 2px; flex-shrink: 0; }
.booking-detail { font-size: 0.6rem; color: var(--steel); }

.ai-badge { display: flex; align-items: center; gap: 5px; font-size: 0.6rem; color: var(--muted); justify-content: center; }
.ai-dot { width: 6px; height: 6px; background: #22C55E; border-radius: 50%; animation: pulse 2s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.phone-shadow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 30px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.4) 0%, transparent 70%);
  z-index: 1;
}

/* === STAKES === */
.stakes { background: var(--dark); }

.stakes-inner { max-width: 1200px; margin: 0 auto; }

.stakes-headline-row { margin-bottom: 48px; }

.stakes-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
}

.stakes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}

.stake-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 28px;
}

.stake-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--amber);
  margin-bottom: 12px;
  line-height: 1;
}

.stake-text { font-size: 0.95rem; color: var(--muted); line-height: 1.65; }

.stake-card-cta {
  grid-column: 1 / -1;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: center;
}

.stake-cta-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--white);
  line-height: 1.1;
}

.stake-cta-body { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }

/* === HOW IT WORKS === */
.how-it-works { background: var(--navy); }

.hiw-inner { max-width: 1200px; margin: 0 auto; }

.hiw-steps {
  display: flex;
  gap: 0;
  align-items: stretch;
  margin: 48px 0 40px;
}

.hiw-step {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.hiw-connector {
  display: flex;
  align-items: center;
  padding: 0 8px;
  align-self: center;
}

.connector-line {
  width: 32px;
  height: 1px;
  background: rgba(245,158,11,0.3);
}

.connector-arrow { display: flex; }

.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  color: var(--amber);
  letter-spacing: 0.1em;
}

.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1.1;
}

.step-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

.step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

.visual-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.r1 { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3); }
.r2 { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3); }
.r3 { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3); }

.visual-center { position: relative; z-index: 2; }

.hiw-after {
  max-width: 680px;
  padding: 24px 28px;
  background: rgba(245,158,11,0.05);
  border-left: 3px solid var(--amber);
  border-radius: 0 8px 8px 0;
}

.after-text { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }

/* === INDUSTRIES === */
.industries { background: var(--dark); }

.ind-inner { max-width: 1200px; margin: 0 auto; }

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

.ind-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.2s ease;
}

.ind-card:hover { border-color: rgba(245,158,11,0.3); }

.ind-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,158,11,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--amber);
}

.ind-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 8px;
}

.ind-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

.ind-card-ask {
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ind-ask-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  color: var(--amber);
  margin-bottom: 8px;
}

.ind-ask-body { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* === DIFFERENTIATORS === */
.differentiators { background: var(--navy); }

.diff-inner { max-width: 1200px; margin: 0 auto; }

.diff-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.diff-item { padding: 28px; }

.diff-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(245,158,11,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.diff-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
}

.diff-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* === CLOSING === */
.closing {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: center;
}

.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}

.closing-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.closing-cta {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}
.closing-cta:hover { background: var(--amber-l); transform: translateY(-1px); }
.closing-cta:active { transform: translateY(0); }

.closing-vision {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vision-item { display: flex; align-items: center; gap: 14px; }

.vision-dot {
  width: 10px;
  height: 10px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

.vision-text {
  font-size: 1rem;
  color: var(--steel);
  line-height: 1.4;
}

/* === FOOTER === */
.footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.05); padding: 48px 24px 32px; }

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 24px;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-tagline { font-size: 0.875rem; color: var(--muted); }

.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.footer-col-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.footer-col-items { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

.footer-bottom { max-width: 1200px; margin: 0 auto; }

.footer-copy { font-size: 0.8rem; color: var(--muted); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { order: -1; }
  .phone-wrap { transform: scale(0.9); }
  .stakes-grid { grid-template-columns: 1fr 1fr; }
  .stake-card-cta { grid-column: 1 / -1; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .closing-inner { grid-template-columns: 1fr; }
  .hiw-steps { flex-direction: column; }
  .hiw-connector { transform: rotate(90deg); padding: 4px 0; }
  .connector-line { width: 24px; }
}

@media (max-width: 640px) {
  section { padding: 60px 20px; }
  .stakes-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-headline { font-size: 3rem; }
  .stake-card-cta { grid-template-columns: 1fr; }
}