/* ═══════════════════════════════════════
   FONT STACK
   Roboto Condensed  → impact headings (h1, h2)
   Roboto 700/900    → section labels, subheadings
   Roboto 300/400    → body text
═══════════════════════════════════════ */

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --red:        #D93933;
  --red-dark:   #B02020;
  --navy:       #0C1A29;
  --navy-mid:   #102336;
  --navy-light: #1A3A54;
  --text:       #F3F8FF;
  --sub:        #B6C6D3;
  --muted:      #627A8B;
  --green:      #5BD67A;
  --amber:      #FFB74D;
  --stroke:     rgba(255,255,255,0.10);
  --surface:    rgba(255,255,255,0.05);
  --max:        1160px;
  --radius:     12px;
}

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

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

/* ═══════════════════════════════════════
   DYNAMIC SECTIONS
═══════════════════════════════════════ */
.dynamic-section {
  padding: 80px 0;
  position: relative;
}

/* Background image support for all sections */
.dynamic-section[style*="background-image"],
.story[style*="background-image"],
.features[style*="background-image"],
.packages[style*="background-image"],
.testimonials[style*="background-image"],
.contact[style*="background-image"],
.stat-strip[style*="background-image"],
.cta-strip[style*="background-image"] {
  position: relative;
}

/* Background overlay support */
.section-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Ensure content appears above overlay */
.story > .container,
.features > .container,
.packages > .container,
.testimonials > .container,
.contact > .container,
.cta-strip > .container,
.stat-strip > .container,
.stat-strip > .stat-grid,
.dynamic-section > .container {
  position: relative;
  z-index: 1;
}

.dynamic-section h2 {
  margin-bottom: 24px;
}

.dynamic-text .content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.8;
}

.dynamic-image {
  text-align: center;
}

.dynamic-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 24px auto;
}

.dynamic-gallery {
  padding: 80px 0;
}

.dynamic-gallery .section-sub {
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 24px;
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.gallery-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.dynamic-video {
  padding: 80px 0;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.video-item {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
}

.video-item h3 {
  margin-bottom: 12px;
}

.video-item p {
  margin-bottom: 16px;
  color: var(--sub);
}

.video-embed,
.video-direct {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.video-embed iframe,
.video-direct video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .videos-grid {
    grid-template-columns: 1fr;
  }
  
  .dynamic-section {
    padding: 60px 0;
  }
}

/* ═══════════════════════════════════════
   HEADINGS — Roboto Condensed
═══════════════════════════════════════ */
h1, h2 {
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-weight: 900;
}
h3, h4 { font-family: 'Roboto', sans-serif; }

/* ═══════════════════════════════════════
   TYPOGRAPHY HELPERS
═══════════════════════════════════════ */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 18px;
  color: var(--sub);
  font-weight: 300;
  max-width: 620px;
  margin: 12px auto 0;
}
.text-red { color: var(--red); }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}
.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 4px 20px rgba(217,57,51,0.3);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { background: rgba(255,255,255,0.07); }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-outline-pkg {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--stroke);
  color: var(--text);
  transition: all 0.2s;
}
.btn-outline-pkg:hover { background: var(--surface); }
.btn-primary-pkg {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  background: var(--red);
  color: white;
  transition: all 0.2s;
}
.btn-primary-pkg:hover { background: var(--red-dark); }

/* ═══════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(12,26,41,0.97);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--stroke);
}
.nav-container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: white;
}
.logo-icon { display: flex; align-items: center; }
.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--sub);
  transition: color 0.2s;
}
.nav-link:hover { color: white; }
.nav-link.active { color: white; }
.nav-link.nav-cta {
  background: var(--red);
  color: white;
  padding: 9px 20px;
  border-radius: 7px;
  font-size: 14px;
}
.nav-link.nav-cta:hover { background: var(--red-dark); color: white; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.bar {
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('./assets/hero-background-4.png') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(12,26,41,0.88) 0%, rgba(12,26,41,0.75) 60%, rgba(10,18,28,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 0 24px;
}
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(217,57,51,0.4);
  background: rgba(217,57,51,0.1);
  font-size: 13px;
  font-weight: 500;
  color: var(--red);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.hero-content h1 {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 19px;
  color: var(--sub);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-tagline {
  margin-top: 18px;
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sub);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* ═══════════════════════════════════════
   STAT STRIP
═══════════════════════════════════════ */
.stat-strip {
  border-bottom: 1px solid var(--stroke);
  padding: 32px 0;
  position: relative;
}
.stat-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat { text-align: center; padding: 12px 40px; }
.stat-value { font-size: 26px; font-weight: 700; color: var(--red); }
.stat-label { font-size: 13px; color: var(--sub); font-weight: 300; margin-top: 2px; }
.stat-divider {
  width: 1px; height: 40px;
  background: var(--stroke);
}

/* ═══════════════════════════════════════
   STORY
═══════════════════════════════════════ */
.story { 
  padding: 100px 0; 
  position: relative;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}
.story-text h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.story-text p {
  color: var(--sub);
  font-weight: 300;
  margin-bottom: 16px;
  font-size: 16px;
}
.story-founders { margin-top: 40px; display: flex; flex-direction: column; gap: 28px; }
.founder-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.founder-photo {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--navy-light);
}
.founder-name { font-size: 16px; font-weight: 700; color: white; }
.founder-title { font-size: 12px; color: var(--red); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 6px; }
.founder-bio { font-size: 14px; color: var(--sub); font-weight: 300; line-height: 1.6; }
.pull-quote {
  position: sticky;
  top: 100px;
  background: var(--navy-mid);
  border: 1px solid var(--stroke);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 32px;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.7;
}
.pull-quote + .pull-quote {
  margin-top: 24px;
}
.pull-quote cite {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  font-style: normal;
  color: var(--sub);
  font-weight: 500;
}

/* ═══════════════════════════════════════
   PRODUCT
═══════════════════════════════════════ */
.product {
  padding: 100px 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--stroke);
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.platform-split {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.platform-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.platform-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(217,57,51,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--red);
}
.platform-card h3 { font-size: 24px; font-weight: 700; }
.platform-desc { color: var(--sub); font-weight: 300; font-size: 15px; }
.platform-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.platform-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--sub);
  font-weight: 300;
}
.platform-list li i { color: var(--red); font-size: 12px; flex-shrink: 0; }
.platform-screenshots {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.platform-screenshots img {
  flex: 1;
  border-radius: 10px;
  object-fit: cover;
  height: 180px;
  border: 1px solid var(--stroke);
}
.dash-mockup {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  margin-top: 8px;
}
.dash-bar {
  background: var(--navy);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--stroke);
}
.dash-dots { display: flex; gap: 5px; }
.dash-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); }
.dash-url { font-size: 11px; color: var(--muted); }
.dash-body {
  background: var(--navy-mid);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
}

/* ═══════════════════════════════════════
   AVAILABILITY FOCUS
═══════════════════════════════════════ */
.availability-focus { padding: 100px 0; border-top: 1px solid var(--stroke); }
.avail-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.avail-text h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.avail-text > p { color: var(--sub); font-weight: 300; font-size: 16px; margin-bottom: 28px; }
.avail-statuses { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.avail-status {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  background: var(--surface);
}
.avail-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.avail-green .avail-dot { background: var(--green); }
.avail-amber .avail-dot { background: var(--amber); }
.avail-red   .avail-dot { background: var(--red); }
.avail-status strong { display: block; font-weight: 600; font-size: 14px; }
.avail-status span { font-size: 13px; color: var(--sub); font-weight: 300; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--sub);
  font-weight: 300;
}
.feature-list li i { color: var(--red); font-size: 14px; flex-shrink: 0; margin-top: 2px; }

/* Availability card UI mock */
.avail-card {
  background: var(--navy-mid);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  overflow: hidden;
}
.avail-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--stroke);
  font-size: 14px;
  font-weight: 600;
}
.live-badge { font-size: 11px; color: var(--green); font-weight: 500; }
.avail-rows { padding: 8px 0; }
.avail-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  transition: background 0.15s;
}
.avail-row:hover { background: rgba(255,255,255,0.03); }
.avail-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.avail-info { flex: 1; }
.avail-name { font-size: 13px; font-weight: 500; }
.avail-role { font-size: 11px; color: var(--sub); font-weight: 300; }
.status-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
.status-available { background: rgba(91,214,122,0.12); color: var(--green); }
.status-delayed   { background: rgba(255,183,77,0.12); color: var(--amber); }
.status-unavailable { background: rgba(217,57,51,0.12); color: var(--red); }
.avail-summary {
  display: flex;
  gap: 8px;
  padding: 14px 20px;
  border-top: 1px solid var(--stroke);
}
.avail-sum-item {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 0;
  border-radius: 6px;
}
.avail-sum-green { background: rgba(91,214,122,0.10); color: var(--green); }
.avail-sum-amber { background: rgba(255,183,77,0.10); color: var(--amber); }
.avail-sum-red   { background: rgba(217,57,51,0.10); color: var(--red); }

/* ═══════════════════════════════════════
   FEATURES
═══════════════════════════════════════ */
.features {
  padding: 100px 0;
  border-top: 1px solid var(--stroke);
  position: relative;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s, background 0.2s;
}
.feature-card:hover {
  border-color: rgba(217,57,51,0.3);
  background: rgba(255,255,255,0.06);
}
.feature-icon {
  font-size: 20px;
  color: var(--red);
  margin-bottom: 14px;
}
.feature-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--sub); font-weight: 300; line-height: 1.6; }

/* ═══════════════════════════════════════
   PACKAGES
═══════════════════════════════════════ */
.packages {
  padding: 100px 0;
  border-top: 1px solid var(--stroke);
  position: relative;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 0 auto 32px;
  max-width: 900px;
  width: 100%;
  justify-items: stretch;
}
.packages .section-header {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}
.packages .packages-note {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.package-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.package-featured {
  background: var(--navy-mid);
  border-color: var(--red);
  box-shadow: 0 0 0 1px rgba(217,57,51,0.2), 0 20px 40px rgba(0,0,0,0.3);
}
.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.package-header { display: flex; flex-direction: column; gap: 10px; }
.package-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(217,57,51,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--red);
}
.package-header h3 { font-size: 22px; font-weight: 700; }
.package-desc { font-size: 14px; color: var(--sub); font-weight: 300; line-height: 1.6; }
.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--sub);
  font-weight: 300;
}
.package-features li i { color: var(--red); font-size: 11px; flex-shrink: 0; margin-top: 3px; }
.package-features li:first-child { font-weight: 500; color: var(--text); }
.packages-note {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials {
  padding: 100px 0;
  border-top: 1px solid var(--stroke);
  position: relative;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-quote { color: var(--red); font-size: 20px; }
.testimonial > p {
  font-size: 14px;
  color: var(--sub);
  font-weight: 300;
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--stroke);
}
.author-initial {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(217,57,51,0.15);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; font-weight: 600; }
.testimonial-author span { font-size: 12px; color: var(--sub); font-weight: 300; }

/* ═══════════════════════════════════════
   CTA STRIP
═══════════════════════════════════════ */
.cta-strip {
  padding: 80px 0;
  border-top: 1px solid var(--stroke);
  position: relative;
}
.cta-content {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.cta-content p {
  color: var(--sub);
  font-weight: 300;
  margin-bottom: 28px;
  font-size: 16px;
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact {
  padding: 100px 0;
  border-top: 1px solid var(--stroke);
  position: relative;
}
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  min-width: 160px;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}
.contact-card:hover {
  border-color: rgba(217,57,51,0.4);
  background: rgba(255,255,255,0.07);
}
.contact-icon { font-size: 24px; color: var(--red); }
.contact-label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sub); }
.contact-value { font-size: 13px; color: var(--text); font-weight: 400; text-align: center; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--stroke);
  padding: 48px 0 28px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: white;
}
.footer-brand > p { font-size: 13px; color: var(--muted); font-weight: 300; }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a { font-size: 13px; color: var(--sub); font-weight: 300; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid var(--stroke); padding-top: 20px; }
.footer-bottom p { font-size: 12px; color: var(--muted); text-align: center; }

/* ═══════════════════════════════════════
   SCREENSHOT SHOWCASE
═══════════════════════════════════════ */
.showcase {
  padding: 100px 0 80px;
  background: var(--navy-mid);
  border-top: 1px solid var(--stroke);
}

.showcase-phones {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 48px;
}

.showcase-phone {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

/* All phone frames use identical sizing - no lead variation */

.phone-frame-outer {
  border-radius: 38px;
  overflow: hidden;
  background: var(--navy);
  box-shadow:
    0 0 0 7px #1A3A54,
    0 0 0 8px rgba(255,255,255,0.06),
    0 20px 48px rgba(0,0,0,0.55);
  position: relative;
  width: 100%;
  max-width: 100%;
}

.phone-frame-outer img {
  width: 100%;
  display: block;
  border-radius: 32px;
  /* Exact iPhone 17 Pro aspect ratio */
  aspect-ratio: 1206 / 2622;
  object-fit: cover;
  object-position: top;
}

.showcase-caption {
  margin-top: 20px;
  padding: 0 4px;
}
.showcase-caption-label {
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.showcase-caption-text {
  font-size: 13px;
  color: var(--sub);
  font-weight: 300;
  line-height: 1.5;
}

/* Strip beneath phones */
.showcase-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
}
.showcase-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sub);
}
.showcase-strip-item i { color: var(--red); font-size: 14px; }
.showcase-strip-divider { width: 1px; height: 24px; background: var(--stroke); }

/* ═══════════════════════════════════════
   DASHBOARD SHOWCASE
═══════════════════════════════════════ */
.dash-showcase {
  padding: 100px 0;
  border-top: 1px solid var(--stroke);
}

/* Shared browser chrome */
.dash-browser-frame {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  background: var(--navy-mid);
}
.dash-browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--navy);
  border-bottom: 1px solid var(--stroke);
}
.dash-browser-dots { display: flex; gap: 5px; }
.dash-browser-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.5;
}
.dash-browser-url {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.dash-browser-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Large feature screenshot */
.dash-feature {
  margin-bottom: 32px;
}
.dash-feature .dash-browser-frame img {
  max-height: 520px;
  object-position: top;
}
.dash-feature-caption {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.dash-feature-caption .showcase-caption-label { min-width: 160px; }

/* Three-column grid */
.dash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dash-grid-item .dash-browser-frame img {
  max-height: 280px;
  object-position: top;
}

/* ═══════════════════════════════════════
   TAGLINE STRIP
═══════════════════════════════════════ */
.tagline-strip {
  background: var(--navy);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  padding: 48px 0;
}
.tagline-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.tagline-quote {
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 700;
  font-style: normal;
  color: var(--text);
  text-align: center;
  padding: 12px 40px;
  letter-spacing: -0.01em;
  line-height: 1.4;
  opacity: 0.85;
}
.tagline-quote:hover { opacity: 1; transition: opacity 0.2s; }
.tagline-divider {
  width: 1px;
  height: 36px;
  background: var(--stroke);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .platform-split { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
}

@media (max-width: 1000px) {
  .story-grid { grid-template-columns: 1fr; }
  .pull-quote { position: static; }
  .avail-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .stat-divider { display: none; }
}

@media (max-width: 1050px) {
  .showcase-phones { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

@media (max-width: 900px) {
  .showcase-phones { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .dash-grid { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; }
  .tagline-row { flex-direction: column; gap: 4px; }
  .tagline-divider { display: none; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 80vw);
    height: 100vh;
    background: var(--navy-mid);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 28px 28px;
    gap: 8px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,0.4);
    border-left: 1px solid var(--stroke);
  }
  .nav-menu.open { right: 0; }
  .nav-link { font-size: 16px; padding: 8px 0; color: var(--sub); }
  .nav-link.nav-cta { margin-top: 8px; display: inline-block; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-links { gap: 16px; }
  .hero-content h1 { font-size: 42px; }
}

@media (max-width: 520px) {
  .showcase-phones { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .showcase-strip { gap: 8px; }
  .showcase-strip-divider { display: none; }
  .showcase-strip-item { padding: 6px 16px; font-size: 12px; }
  .features-grid { grid-template-columns: 1fr; }
  .platform-screenshots { flex-direction: column; }
  .platform-screenshots img { height: 200px; }
  .stat-grid { gap: 8px; }
  .stat { padding: 10px 20px; }
}
