/* ============================================================
   ESCAPE VELOCITY AI — Landing Page Styles
   Dark space theme. Mobile-first. Breakpoints: 768px, 1024px
============================================================ */

/* === CSS VARIABLES ========================================= */
:root {
  /* Brand */
  --orange:        #ff6b35;
  --orange-dark:   #e85c28;
  --blue-glow:     #4d8eff;
  --white:         #ffffff;

  /* Dark theme surfaces */
  --bg:            #080d1a;
  --bg-surface:    #0d1525;
  --bg-surface-2:  #121e36;
  --navy:          #1a2840;
  --navy-dark:     #060c18;

  /* Text on dark */
  --text:          rgba(255, 255, 255, 0.87);
  --text-muted:    rgba(255, 255, 255, 0.52);
  --text-subtle:   rgba(255, 255, 255, 0.32);

  /* Borders */
  --border:        rgba(255, 255, 255, 0.08);
  --border-glow:   rgba(77, 142, 255, 0.30);

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.5), 0 2px 4px rgba(0,0,0,0.3);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.6), 0 4px 12px rgba(0,0,0,0.4);
  --glow-blue:  0 0 30px rgba(77, 142, 255, 0.18);
  --glow-orange: 0 0 30px rgba(255, 107, 53, 0.25);

  /* Misc */
  --surface:    var(--bg-surface);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --font:       -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --transition: 0.2s ease;
}

/* === RESET & BASE ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* === LAYOUT ================================================ */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: 4rem 0; }

.section-surface { background: var(--bg-surface); }

.section-subhead {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 580px;
  margin: 0.75rem auto 2.5rem;
  text-align: center;
  line-height: 1.65;
}

/* === TYPOGRAPHY ============================================ */
h1, h2, h3, h4 {
  color: var(--white);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 6vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); text-align: center; }
h3 { font-size: 1.25rem; }
h4 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

p { line-height: 1.7; color: var(--text); }

/* === BUTTONS =============================================== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  text-align: center;
  cursor: pointer;
  line-height: 1.4;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: var(--glow-orange);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--glow-orange);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  display: inline-block;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition);
}
.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-sm   { padding: 0.5rem 1rem;   font-size: 0.875rem; }
.btn-lg   { padding: 1rem 2rem;     font-size: 1.125rem; }
.btn-full { width: 100%; display: block; }

/* === BADGE ================================================= */
.badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.12);
  color: var(--orange);
  border: 1px solid rgba(255, 107, 53, 0.35);
  padding: 0.4rem 1rem;
  border-radius: 99px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* ============================================================
   NAV
============================================================ */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 13, 26, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.nav-logo {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav-hamburger:hover { background: rgba(255,255,255,0.06); }

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Hamburger → X when open */
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(8, 13, 26, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
}
.nav-links.nav-open { display: flex; }

.nav-links a {
  padding: 0.65rem 0;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  font-size: 1rem;
  transition: color var(--transition);
  border-bottom: 1px solid var(--border);
}
.nav-links a:last-child { border-bottom: none; margin-top: 0.75rem; }
.nav-links a:hover { color: var(--orange); }
.nav-links .btn-sm { margin-top: 0.25rem; width: 100%; text-align: center; }

/* ============================================================
   HERO — Space glow effect
============================================================ */
.hero {
  padding: 5rem 0 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 100% 65% at 50% 115%, rgba(77, 142, 255, 0.32) 0%, rgba(20, 40, 90, 0.15) 45%, transparent 70%),
    radial-gradient(ellipse 70% 50% at 30% 20%, rgba(77, 142, 255, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(255, 107, 53, 0.05) 0%, transparent 55%),
    var(--bg);
}

/* Star field */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 12%  18%, rgba(255,255,255,0.65) 0%, transparent 100%),
    radial-gradient(1px 1px at 82%  12%, rgba(255,255,255,0.55) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 55%  8%, rgba(255,255,255,0.80) 0%, transparent 100%),
    radial-gradient(1px 1px at 38%  32%, rgba(255,255,255,0.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 72%  42%, rgba(255,255,255,0.50) 0%, transparent 100%),
    radial-gradient(1px 1px at 20%  62%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 90%  55%, rgba(255,255,255,0.40) 0%, transparent 100%),
    radial-gradient(1px 1px at 5%   80%, rgba(255,255,255,0.30) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 65%  75%, rgba(255,255,255,0.60) 0%, transparent 100%),
    radial-gradient(1px 1px at 48%  88%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 25%  45%, rgba(255,255,255,0.30) 0%, transparent 100%),
    radial-gradient(1px 1px at 95%  28%, rgba(255,255,255,0.45) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* Horizon glow line */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(77, 142, 255, 0.6) 30%,
    rgba(255, 107, 53, 0.4) 50%,
    rgba(77, 142, 255, 0.6) 70%,
    transparent 100%
  );
  box-shadow: 0 0 50px 15px rgba(77, 142, 255, 0.12);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-headline {
  margin-bottom: 1.25rem;
  color: var(--white);
  text-shadow: 0 0 60px rgba(77, 142, 255, 0.3);
}

.hero-subhead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-secondary-link {
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color var(--transition);
}
.hero-secondary-link:hover { color: var(--orange); }

/* ============================================================
   STATS STRIP
============================================================ */
.stats-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
  text-align: center;
}

.stat-item { padding: 0.5rem; }

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-glow);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ============================================================
   PROBLEM
============================================================ */
.problem { text-align: center; }

.problem-header { margin-bottom: 3rem; }
.problem-header h2 { max-width: 700px; margin: 0 auto; }

.problem-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--bg-surface-2);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.problem-item:hover {
  border-color: var(--border-glow);
  box-shadow: var(--glow-blue);
}

.problem-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; margin-top: 0.1rem; }

.problem-text h3 { margin-bottom: 0.4rem; font-size: 1.125rem; }
.problem-text p  { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.65; }

/* ============================================================
   OFFER
============================================================ */
.offer { text-align: center; }
.offer h2 { margin-bottom: 0.5rem; }

.offer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: left;
}

.offer-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.offer-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--glow-blue);
  transform: translateY(-2px);
}

.offer-icon { font-size: 2.25rem; margin-bottom: 1rem; line-height: 1; }
.offer-card h3 { margin-bottom: 0.5rem; }
.offer-card p  { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.65; }

/* ============================================================
   HOW IT WORKS
============================================================ */
.how-it-works { text-align: center; }
.how-it-works h2 { margin-bottom: 0.5rem; }

.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: left;
}

.step {
  background: var(--bg-surface-2);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.step:hover {
  border-color: var(--border-glow);
  box-shadow: var(--glow-blue);
}

.step-icon { font-size: 2rem; line-height: 1; margin-bottom: 0.5rem; }

.step-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
  opacity: 0.9;
}

.step h3 { margin-bottom: 0.5rem; }
.step p  { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.65; }

/* ============================================================
   PORTFOLIO
============================================================ */
.portfolio {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Subtle ambient glow behind the two cards */
.portfolio::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 10% 50%, rgba(255, 107, 53, 0.06) 0%, transparent 65%),
    radial-gradient(ellipse 55% 60% at 90% 50%, rgba(77, 142, 255, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.portfolio .container { position: relative; z-index: 1; }

.portfolio-intro { text-align: center; margin-bottom: 3rem; }

.portfolio-label {
  display: inline-block;
  background: rgba(255, 107, 53, 0.1);
  color: var(--orange);
  border: 1px solid rgba(255, 107, 53, 0.3);
  padding: 0.3rem 0.875rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.portfolio-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Base card */
.portfolio-card {
  background: var(--bg-surface-2);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

/* Gradient shimmer line at top */
.portfolio-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--orange) 0%, rgba(255,107,53,0.3) 50%, transparent 100%);
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 107, 53, 0.25),
    0 0 50px rgba(255, 107, 53, 0.10);
  border-color: rgba(255, 107, 53, 0.45);
}

/* Blue variant for realty card */
.portfolio-card--realty {
  border-color: rgba(77, 142, 255, 0.2);
  border-left-color: var(--blue-glow);
}
.portfolio-card--realty::before {
  background: linear-gradient(90deg, var(--blue-glow) 0%, rgba(77,142,255,0.3) 50%, transparent 100%);
}
.portfolio-card--realty:hover {
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(77, 142, 255, 0.25),
    0 0 50px rgba(77, 142, 255, 0.10);
  border-color: rgba(77, 142, 255, 0.45);
}

/* Card header */
.portfolio-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.portfolio-icon {
  font-size: 2.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.portfolio-industry-badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.1);
  color: var(--orange);
  border: 1px solid rgba(255, 107, 53, 0.25);
  padding: 0.2rem 0.65rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.portfolio-industry-badge--blue {
  background: rgba(77, 142, 255, 0.1);
  color: var(--blue-glow);
  border-color: rgba(77, 142, 255, 0.25);
}

.portfolio-client {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Description */
.portfolio-description {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.portfolio-description strong { color: var(--white); }

/* Video list */
.portfolio-videos-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-subtle);
  margin-bottom: 0.875rem;
}

.portfolio-videos {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 2rem;
  flex: 1;
}

.portfolio-videos li {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.45;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.portfolio-videos li:last-child { border-bottom: none; }

.portfolio-videos li::before {
  content: '▶';
  color: var(--orange);
  font-size: 0.55rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.portfolio-card--realty .portfolio-videos li::before {
  color: var(--blue-glow);
}

/* CTAs */
.portfolio-cta {
  width: 100%;
  display: block;
  text-align: center;
  margin-top: auto;
}

.portfolio-cta--blue {
  background: var(--blue-glow);
  color: var(--white);
  border: 2px solid var(--blue-glow);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
}
.portfolio-cta--blue:hover {
  background: #3a7aff;
  border-color: #3a7aff;
  transform: translateY(-1px);
  box-shadow: var(--glow-blue);
}

/* ============================================================
   PRICING
============================================================ */
.pricing { text-align: center; }
.pricing h2 { margin-bottom: 0.5rem; }

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pricing-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pricing-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--glow-blue);
}

.pricing-card--featured {
  background: linear-gradient(140deg, rgba(77,142,255,0.12) 0%, rgba(18,30,54,0.95) 100%);
  border: 1px solid rgba(77, 142, 255, 0.4);
  border-top: 4px solid var(--orange);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(77, 142, 255, 0.12);
}
.pricing-card--featured:hover {
  border-color: rgba(77,142,255,0.6);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(77, 142, 255, 0.2);
}

.pricing-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.pricing-header { margin-bottom: 1.5rem; }
.pricing-header h3 { font-size: 1.375rem; margin-bottom: 0.5rem; }

.pricing-price { margin-bottom: 0.5rem; }

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.price-range { font-size: 1.5rem; font-weight: 700; }

.price-period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 0.15rem;
}

.pricing-tagline { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.5; }

.pricing-features {
  flex: 1;
  margin-bottom: 1.75rem;
}

.pricing-features li {
  padding: 0.55rem 0;
  font-size: 0.9375rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  line-height: 1.45;
}
.pricing-features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-features li:last-child { border-bottom: none; }

.pricing-footnote {
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  text-align: center;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials { text-align: center; }
.testimonials h2 { margin-bottom: 0.5rem; }

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: left;
}

.testimonial-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: var(--border-glow); }

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-text::before { content: '\201C'; }
.testimonial-text::after  { content: '\201D'; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-glow), var(--navy));
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.testimonial-info { display: flex; flex-direction: column; }
.testimonial-info strong { font-size: 0.9375rem; color: var(--white); }
.testimonial-info span   { font-size: 0.8125rem; color: var(--text-muted); }

/* ============================================================
   ABOUT
============================================================ */
.about { background: var(--bg); }

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-content h2 { text-align: left; margin-bottom: 1.5rem; }

.about-content p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.about-content p strong { color: var(--white); }
.about-content p:last-child { margin-bottom: 0; }

.about-card {
  background: linear-gradient(140deg, rgba(77,142,255,0.1) 0%, var(--bg-surface-2) 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--glow-blue);
}

.about-card-icon { font-size: 2.25rem; margin-bottom: 1rem; line-height: 1; }
.about-card h3   { color: var(--white); margin-bottom: 0.875rem; font-size: 1.25rem; }

.about-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.about-card p strong { color: var(--white); }
.about-card p:last-of-type { margin-bottom: 1.5rem; }

/* ============================================================
   GUARANTEE
============================================================ */
.guarantee { text-align: center; }

.guarantee-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 680px;
  margin: 0 auto;
}

.guarantee-icon { font-size: 3.5rem; line-height: 1; }

.guarantee-content h2 { margin-bottom: 1rem; }
.guarantee-content p  {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.guarantee-content .btn { margin-top: 0.5rem; }

/* ============================================================
   FAQ
============================================================ */
.faq { background: var(--bg); }
.faq h2 { margin-bottom: 2.5rem; }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
  background: none;
  border: none;
  cursor: pointer;
}
.faq-question:hover { color: var(--orange); }

.faq-chevron {
  font-size: 1.375rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform var(--transition), color var(--transition);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.faq-open .faq-chevron {
  transform: rotate(90deg);
  color: var(--orange);
}

.faq-answer { display: none; padding: 0 0 1.25rem; }
.faq-item.faq-open .faq-answer { display: block; }

.faq-answer p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.7; }

/* ============================================================
   BOOKING / CONTACT
============================================================ */
.booking {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  text-align: center;
}

.booking h2 { color: var(--white); margin-bottom: 0.5rem; }
.booking .section-subhead { color: var(--text-muted); }

.booking-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 2.5rem;
  text-align: left;
}

.booking-calendar h3,
.booking-form h3 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.cal-embed-wrapper {
  width: 100%;
  min-height: 660px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.cal-embed-wrapper > div {
  width: 100%;
  height: 100%;
  min-height: 660px;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9375rem;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-subtle); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-glow);
  background: rgba(77,142,255,0.07);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option { background: var(--bg-surface-2); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 90px; }

/* Honeypot — must be visually hidden but not display:none (too obvious to bots) */
.form-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 3rem 1.5rem;
}

.form-success-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.12);
  color: var(--orange);
  font-size: 1.75rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.form-success h4 {
  font-size: 1.375rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.form-success p { color: var(--text-muted); }
.form-success a { color: var(--orange); text-decoration: underline; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--navy-dark);
  color: var(--text-muted);
  padding: 3.5rem 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.footer-tagline { font-size: 0.875rem; line-height: 1.6; max-width: 260px; }

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 0.75rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }

.footer-contact a {
  font-size: 0.875rem;
  color: var(--orange);
  transition: opacity var(--transition);
  display: block;
  margin-bottom: 0.75rem;
}
.footer-contact a:hover { opacity: 0.8; }
.footer-founding { font-size: 0.8125rem; color: var(--text-subtle); }

.footer-bottom { padding: 1.25rem 0; text-align: center; }
.footer-bottom p { font-size: 0.8125rem; color: var(--text-subtle); }

/* ============================================================
   MOBILE STICKY FAB
============================================================ */
.mobile-fab {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  background: var(--orange);
  color: var(--white);
  padding: 0.875rem 1.375rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9375rem;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.mobile-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 107, 53, 0.6);
}
@media (max-width: 767px) { .mobile-fab { display: block; } }

/* ============================================================
   RESPONSIVE — TABLET (768px+)
============================================================ */
@media (min-width: 768px) {
  section { padding: 5.5rem 0; }

  /* Nav */
  .nav-hamburger { display: none; }
  .nav-links {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    position: static;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    gap: 0.25rem;
  }
  .nav-links a {
    padding: 0.4rem 0.75rem;
    border-bottom: none;
    font-size: 0.9375rem;
  }
  .nav-links a:last-child { margin-top: 0; }
  .nav-links .btn-sm { margin-top: 0; width: auto; }

  /* Hero */
  .hero { padding: 7rem 0 6rem; }
  .hero-actions { flex-direction: row; justify-content: center; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }

  /* Problem */
  .problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .problem-item:last-child { grid-column: 1 / -1; }

  /* Offer */
  .offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .offer-card:last-child { grid-column: 1 / -1; }

  /* Steps */
  .steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  /* Portfolio */
  .portfolio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* Testimonials */
  .testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  /* Booking */
  .booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  /* Footer */
  .footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — DESKTOP (1024px+)
============================================================ */
@media (min-width: 1024px) {
  section { padding: 7rem 0; }

  .problem-grid { grid-template-columns: repeat(3, 1fr); }
  .problem-item:last-child { grid-column: auto; }

  .offer-grid { grid-template-columns: repeat(3, 1fr); }
  .offer-card:last-child { grid-column: auto; }

  .steps-grid { grid-template-columns: repeat(4, 1fr); }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
  }
  .pricing-card--featured {
    transform: scale(1.03);
  }

  /* About */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: start;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: auto; }
}
