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

:root {
  --bg: #0a0d14;
  --bg-2: #0f1420;
  --bg-3: #141928;
  --bg-card: #151b2e;
  --bg-card-hover: #1a2238;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(99,179,237,0.3);

  --blue: #3b82f6;
  --blue-light: #60a5fa;
  --blue-dark: #2563eb;
  --cyan: #22d3ee;
  --gradient: linear-gradient(135deg, #3b82f6 0%, #22d3ee 100%);

  --text-1: #f0f4ff;
  --text-2: #94a3b8;
  --text-3: #64748b;

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

  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.5);
  --shadow-blue: 0 0 40px rgba(59,130,246,0.15);

  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

::selection { background: rgba(59,130,246,0.3); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--text-1); }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient);
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: linear-gradient(90deg, rgba(59,130,246,0.25), rgba(34,211,238,0.25));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(59,130,246,0.3);
  color: var(--text-2);
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  padding: 8px 48px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  letter-spacing: 0.01em;
}

.announcement-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse-dot 2s ease infinite;
  vertical-align: middle;
}

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

.announcement-close {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: var(--text-3);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
.announcement-close:hover { color: var(--text-1); }

/* ============================================================
   UTILITIES
   ============================================================ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

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

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 16px; }
.section-header p { color: var(--text-2); font-size: 1.05rem; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-sm { padding: 8px 18px; font-size: 0.875rem; border-radius: var(--radius-sm); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--gradient);
  color: #fff;
  padding: 11px 22px;
  box-shadow: 0 4px 20px rgba(59,130,246,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(59,130,246,0.45);
  filter: brightness(1.08);
}

.btn-cta-hero {
  font-size: 1.1rem;
  padding: 16px 48px;
  box-shadow: 0 6px 32px rgba(59,130,246,0.45), 0 0 60px rgba(34,211,238,0.15);
  letter-spacing: 0.01em;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease, filter 0.25s ease;
}
.btn-cta-hero:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 48px rgba(59,130,246,0.6), 0 0 80px rgba(34,211,238,0.25);
  filter: brightness(1.1);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-1);
  border: 1px solid var(--border);
  padding: 11px 22px;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

/* ============================================================
   NAV
   ============================================================ */
.nav-wrapper {
  position: fixed;
  top: var(--bar-h, 36px); left: 0; right: 0;
  z-index: 150;
  transition: top var(--transition), background var(--transition), border-color var(--transition);
}
.nav-wrapper.bar-gone { top: 0; }

.nav-wrapper.scrolled {
  background: rgba(10,13,20,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-1);
}
.logo-icon { font-size: 1.2rem; }
.logo-img { height: 36px; width: auto; border-radius: 8px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a { color: var(--text-2); font-size: 0.925rem; font-weight: 500; transition: color var(--transition); }
.nav-links a:hover { color: var(--text-1); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-2); border-radius: 2px; transition: var(--transition); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--bar-h, 36px) + 60px);
  padding-bottom: 72px;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 90% at 78% 100%, rgba(59,130,246,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 70% 40%,  rgba(34,211,238,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 70% 40% at 30% 0%,   rgba(59,130,246,0.10) 0%, transparent 60%),
    var(--bg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr clamp(300px, 36%, 460px);
  gap: clamp(48px, 7vw, 110px);
  align-items: flex-end;
  padding-top: 60px;
}

.hero-text {
  text-align: left;
  position: relative;
  z-index: 2;
  padding-bottom: 72px;
}

/* Photo breaks out — no box, just the person */
.hero-photo-wrap {
  position: relative;
  width: 100%;
  align-self: flex-end;
  flex-shrink: 0;
}

/* Blue glow blob behind the person */
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 70%;
  background: radial-gradient(ellipse at 50% 80%, rgba(59,130,246,0.30) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom center;
  -webkit-mask-image: linear-gradient(to bottom,
    black 0%,
    black 70%,
    transparent 100%
  );
  mask-image: linear-gradient(to bottom,
    black 0%,
    black 70%,
    transparent 100%
  );
}

/* Badge floating over the glow at bottom */
.hero-photo-badge {
  position: absolute;
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,13,20,0.70);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-1);
  white-space: nowrap;
}

.hero-photo-badge svg { width: 13px; height: 13px; stroke: var(--cyan); flex-shrink: 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue-light);
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-2);
  max-width: 520px;
  margin: 0 0 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 20px 36px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-value { font-size: 1.25rem; font-weight: 700; color: var(--text-1); }
.stat-label { font-size: 0.78rem; color: var(--text-3); white-space: nowrap; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

.hero-scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block; width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 12px; position: relative;
}
.hero-scroll-indicator span::after {
  content: ''; position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--blue-light); border-radius: 2px;
  animation: scroll-dot 1.6s ease infinite;
}
@keyframes scroll-dot {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  80% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 0 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 6px 20px;
  white-space: nowrap;
}
.trust-item svg { width: 15px; height: 15px; color: var(--blue-light); flex-shrink: 0; }

.trust-sep {
  width: 1px; height: 18px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--bg-2); padding-top: 60px; }

/* Steps grid — equal height columns */
.steps {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr 48px 1fr;
  align-items: start;
  gap: 0;
  padding: 12px 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}

.step-num-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue-light);
  margin-bottom: 14px;
}

.step-icon {
  width: 60px; height: 60px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  margin-bottom: 20px;
  transition: background 0.3s, border-color 0.3s;
}
.step:hover .step-icon {
  background: rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.4);
}
.step-icon svg { width: 26px; height: 26px; }

.step--last .step-icon {
  background: rgba(34,211,238,0.08);
  border-color: rgba(34,211,238,0.25);
}

.step h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 0.875rem; color: var(--text-2); line-height: 1.6; max-width: 180px; }
.step p strong { color: var(--text-1); }

.step-line {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 74px;
  position: relative;
}
.step-line::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(59,130,246,0.15), rgba(34,211,238,0.7), rgba(59,130,246,0.15));
  border-radius: 2px;
}
.step-line::after {
  content: '›';
  position: absolute;
  right: -6px;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--cyan);
  font-weight: 700;
  margin-top: -1px;
}

.step-connector { display: none; }
.step-number { display: none; }
.step-arrow { display: none; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}

.service-icon {
  width: 48px; height: 48px;
  background: var(--gradient);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: #fff;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--text-2); line-height: 1.6; }

.service-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.2);
  padding: 2px 10px;
  border-radius: 100px;
  margin-top: 14px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg-2); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.reviews-grid--2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

.review-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }

.review-text {
  font-size: 0.925rem;
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px; height: 40px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.review-author strong { display: block; font-size: 0.875rem; color: var(--text-1); }
.review-author span { font-size: 0.775rem; color: var(--text-3); }

.trustpilot-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}
.trustpilot-stars { color: #00b67a; font-size: 1.1rem; letter-spacing: 2px; }
.trustpilot-cta p { font-size: 0.9rem; color: var(--text-2); }

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

.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-image-wrap { position: relative; }

.about-image-bg {
  position: absolute; inset: -20px;
  background: var(--gradient);
  border-radius: var(--radius-xl);
  opacity: 0.08; filter: blur(20px);
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  object-fit: contain;
  object-position: center;
  width: 100%;
  max-height: 520px;
  height: auto;
  display: block;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.about-badge {
  position: absolute;
  bottom: 24px; right: -16px;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 0.8rem; font-weight: 600;
  color: var(--blue-light);
  display: flex; align-items: center; gap: 8px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.about-badge svg { width: 16px; height: 16px; }

.about-content .section-label { margin-bottom: 16px; }
.about-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 20px; }
.about-lead { font-size: 1.05rem; margin-bottom: 16px; }
.about-content p { color: var(--text-2); margin-bottom: 14px; }

.about-features { display: flex; flex-direction: column; gap: 10px; margin: 28px 0 32px; }

.about-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--text-2);
}
.about-feature svg { width: 16px; height: 16px; color: var(--cyan); flex-shrink: 0; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--bg-2); }

.pricing-cards { display: flex; gap: 24px; max-width: 700px; margin: 0 auto; }

.pricing-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pricing-card--featured {
  border-color: rgba(59,130,246,0.4);
  background: linear-gradient(160deg, rgba(59,130,246,0.08) 0%, var(--bg-card) 60%);
  box-shadow: var(--shadow-blue);
}

.pricing-badge {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; background: var(--gradient);
  padding: 3px 12px; border-radius: 100px;
  margin-bottom: 20px; align-self: flex-start;
}

.pricing-icon {
  width: 48px; height: 48px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light); margin-bottom: 16px;
}
.pricing-icon svg { width: 22px; height: 22px; }
.pricing-card h3 { font-size: 1.15rem; margin-bottom: 16px; }

.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 24px; }
.price-amount { font-size: 2.8rem; font-weight: 800; }
.price-currency { font-size: 1rem; color: var(--text-2); font-weight: 500; }

.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pricing-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text-2);
}
.pricing-list li::before {
  content: '';
  display: block; width: 6px; height: 6px;
  background: var(--gradient); border-radius: 50%; flex-shrink: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg); }

.faq-list {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: rgba(59,130,246,0.25); }

.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  font-weight: 600; font-size: 0.975rem;
  cursor: pointer; list-style: none; user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }

.faq-icon { flex-shrink: 0; color: var(--text-3); transition: transform var(--transition), color var(--transition); }
.faq-icon svg { width: 18px; height: 18px; display: block; }
.faq-item[open] .faq-icon { transform: rotate(180deg); color: var(--blue-light); }

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-2); font-size: 0.925rem; line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg-2); }

.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.contact-info .section-label { margin-bottom: 16px; }
.contact-info h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.contact-info > p { color: var(--text-2); margin-bottom: 40px; font-size: 1.05rem; }

.contact-features { display: flex; flex-direction: column; gap: 20px; }

.contact-feature { display: flex; align-items: flex-start; gap: 16px; }

.contact-feature-icon {
  width: 40px; height: 40px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light); flex-shrink: 0;
}
.contact-feature-icon svg { width: 18px; height: 18px; }
.contact-feature strong { display: block; font-size: 0.925rem; margin-bottom: 2px; }
.contact-feature span { font-size: 0.85rem; color: var(--text-2); }

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--text-2); }
.required { color: var(--blue-light); }
.form-optional { font-weight: 400; color: var(--text-3); font-size: 0.8rem; }

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-1);
  font-family: inherit; font-size: 0.925rem;
  padding: 11px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical; outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-3); }
.form-group input:focus, .form-group textarea:focus {
  border-color: rgba(59,130,246,0.5);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
.form-group.has-error input, .form-group.has-error textarea { border-color: #ef4444; }

.form-error { font-size: 0.78rem; color: #ef4444; display: none; }
.form-group.has-error .form-error { display: block; }

.btn-arrow { width: 16px; height: 16px; transition: transform var(--transition); }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.form-note { margin-top: 12px; font-size: 0.75rem; color: var(--text-3); text-align: center; }

.form-success { text-align: center; padding: 40px 20px; }
.success-icon {
  width: 64px; height: 64px;
  background: rgba(34,211,238,0.1);
  border: 2px solid var(--cyan); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--cyan);
}
.success-icon svg { width: 28px; height: 28px; }
.form-success h3 { margin-bottom: 10px; }
.form-success p { color: var(--text-2); }

/* ============================================================
   TRUSTPILOT
   ============================================================ */
.trustpilot-section { background: var(--bg-3); padding: 60px 0; }
.trustpilot-inner { text-align: center; }
.trustpilot-inner .section-header { margin-bottom: 32px; }
.trustpilot-inner h2 { font-size: 1.75rem; margin-bottom: 10px; }
.trustpilot-inner p { color: var(--text-2); }

.tp-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--text-1);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.tp-review-btn:hover {
  background: rgba(0,182,122,0.1);
  border-color: rgba(0,182,122,0.4);
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-3); border-top: 1px solid var(--border); padding-top: 60px; }

.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }

.footer-brand .nav-logo { margin-bottom: 14px; font-size: 1rem; }
.footer-brand p { font-size: 0.875rem; color: var(--text-2); max-width: 280px; line-height: 1.6; margin-bottom: 12px; }

.footer-address { font-size: 0.8rem; color: var(--text-3); font-style: normal; line-height: 1.6; }

.footer-links h4, .footer-contact h4 {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 16px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: var(--text-2); transition: color var(--transition); }
.footer-links a:hover { color: var(--text-1); }
.footer-contact p { font-size: 0.9rem; color: var(--text-2); margin-bottom: 4px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0; text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-3); }
.footer-bottom a { color: var(--text-3); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--blue-light); }

/* ============================================================
   FLOATING CALL BUTTON
   ============================================================ */
.float-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  background: var(--gradient);
  color: #fff;
  border-radius: 50px;
  padding: 11px 18px 11px 14px;
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.82rem;
  box-shadow: 0 6px 20px rgba(59,130,246,0.22);
  transition: var(--transition);
  text-decoration: none;
}
.float-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 28px rgba(59,130,246,0.32);
}
.float-cta svg { width: 16px; height: 16px; }
.float-cta-label { white-space: nowrap; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px; left: 28px;
  z-index: 200;
  width: 44px; height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--bg-card-hover); color: var(--text-1); transform: translateY(-2px); }
.back-to-top svg { width: 18px; height: 18px; }

/* ============================================================
   SOCIAL PROOF TOAST
   ============================================================ */
.sp-toast {
  position: fixed;
  bottom: 100px; left: 24px;
  z-index: 201;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--cyan);
  border-radius: var(--radius);
  padding: 14px 36px 14px 14px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
  min-width: 240px; max-width: 300px;
  animation: toast-in 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes toast-in {
  from { transform: translateX(-120%); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.sp-toast[hidden] { display: none; }

.sp-toast-icon {
  width: 32px; height: 32px;
  background: rgba(34,211,238,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); flex-shrink: 0;
}
.sp-toast-icon svg { width: 14px; height: 14px; }

.sp-toast-text strong { display: block; font-size: 0.825rem; color: var(--text-1); }
.sp-toast-text span { font-size: 0.775rem; color: var(--text-2); }

.sp-toast-close {
  position: absolute; top: 8px; right: 10px;
  background: none; border: none;
  color: var(--text-3); font-size: 1rem;
  cursor: pointer; line-height: 1;
  transition: color var(--transition);
}
.sp-toast-close:hover { color: var(--text-1); }

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 300;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: min(680px, calc(100vw - 32px));
  backdrop-filter: blur(16px);
  animation: cookie-in 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes cookie-in {
  from { transform: translateX(-50%) translateY(120%); }
  to { transform: translateX(-50%) translateY(0); }
}
.cookie-banner[hidden] { display: none; }

.cookie-content {
  display: flex; align-items: center; gap: 24px;
  padding: 20px 24px; flex-wrap: wrap;
}

.cookie-text { flex: 1; min-width: 200px; }
.cookie-text strong { display: block; font-size: 0.925rem; margin-bottom: 4px; }
.cookie-text p { font-size: 0.8rem; color: var(--text-2); line-height: 1.5; }
.cookie-text a { color: var(--blue-light); }

.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { gap: 48px; }
  .contact-inner { gap: 48px; }
  /* Hero: collapse to single centered column when photo hides */
  .hero-inner { grid-template-columns: 1fr; padding-bottom: 0; }
  .hero-text { text-align: center; padding-bottom: 0; }
  .hero-sub { margin: 0 auto 40px; max-width: 560px; }
  .hero-actions { justify-content: center; }
  .hero-photo-wrap { display: none; }
  .hero { padding-bottom: 80px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-photo-wrap { display: none; }
  .hero { padding-bottom: 80px; }
  .hero-text { text-align: center; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-stats { flex-direction: row; gap: 24px; padding: 20px 28px; }
  .stat-divider { width: 1px; height: 36px; }

  .steps { grid-template-columns: 1fr; }
  .step { padding: 0 8px 32px; }
  .step p { max-width: 100%; }
  .step-line {
    padding-top: 0; padding-bottom: 0;
    flex-direction: column;
    height: 44px; width: 24px; margin: 0 auto;
  }
  .step-line::before {
    width: 2px; height: 32px;
    background: linear-gradient(180deg, rgba(59,130,246,0.2), rgba(34,211,238,0.7), rgba(59,130,246,0.2));
  }
  .step-line::after {
    content: '›';
    position: static;
    transform: rotate(90deg);
    margin-top: -4px;
    right: auto;
  }

  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .about-inner { grid-template-columns: 1fr; }
  .about-badge { right: 0; }

  .pricing-cards { flex-direction: column; max-width: 380px; }

  .contact-inner { grid-template-columns: 1fr; }

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

  .trust-strip-inner { gap: 0; }
  .trust-sep { display: none; }
  .trust-item { padding: 4px 12px; }

  .float-cta-label { display: none; }
  .float-cta { padding: 14px; border-radius: 50%; }

  .sp-toast { bottom: 80px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 0; }
  .hero-stats .stat { padding: 14px 20px; }
  .stat-divider { width: 100%; height: 1px; }
  .contact-form-wrap { padding: 24px; }
  .announcement-bar { font-size: 0.72rem; padding: 8px 40px; }
  .pricing-cards { max-width: 100%; }
}

/* iPhone safe area (notch + hjemmebarre) */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .float-cta { bottom: calc(24px + env(safe-area-inset-bottom)); }
  .mobile-nav-overlay { padding-bottom: calc(16px + env(safe-area-inset-bottom)); }
}

/* ============================================================
   MOBIL NAV OVERLAY – direkte child af body, ingen stacking issues
   ============================================================ */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: calc(var(--bar-h, 36px) + 64px);
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: #0a0d14;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav-overlay.open { display: flex; }

.mobile-nav-overlay a {
  display: block;
  padding: 18px 24px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-1);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: background var(--transition);
}
.mobile-nav-overlay a:hover { background: rgba(255,255,255,0.04); }
.mobile-nav-overlay a:last-child { border-bottom: none; }

/* ============================================================
   BOOKING MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(5, 7, 14, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-overlay.modal--open { opacity: 1; }
.modal-overlay[hidden] { display: none; }

.modal {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 640px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.modal--open .modal { transform: none; }

.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--text-2);
  cursor: pointer; line-height: 1;
  transition: var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.12); color: var(--text-1); }

.modal-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.modal-icon {
  width: 44px; height: 44px;
  background: #fff;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.modal-header h2 { font-size: 1.3rem; margin-bottom: 4px; }
.modal-header p { font-size: 0.85rem; color: var(--text-2); }

.modal-back {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-2); flex-shrink: 0;
  transition: var(--transition);
}
.modal-back:hover { color: var(--text-1); background: rgba(255,255,255,0.1); }
.modal-back svg { width: 18px; height: 18px; }

/* ---- Address search ---- */
.address-search-wrap { position: relative; margin-bottom: 16px; z-index: 100; }

.address-input-row {
  display: flex;
  gap: 10px;
}
.address-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-1);
  font-family: inherit;
  font-size: 0.925rem;
  padding: 11px 14px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.address-input::placeholder { color: var(--text-3); }
.address-input:focus {
  border-color: rgba(59,130,246,0.5);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.btn-spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn-spinner[hidden] { display: none !important; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Autocomplete dropdown – position:fixed so it escapes all overflow/stacking contexts */
.address-dropdown {
  position: fixed;
  background: #1a2035;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  list-style: none;
  z-index: 99999;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.address-dropdown[hidden] { display: none; }

.addr-dd__item {
  padding: 11px 14px;
  font-size: 0.875rem;
  color: var(--text-2);
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), color var(--transition);
}
.addr-dd__item:last-child { border-bottom: none; }
.addr-dd__item:hover { background: rgba(59,130,246,0.1); color: var(--text-1); }
.addr-dd__none { padding: 11px 14px; font-size: 0.875rem; color: var(--text-3); }

.map-error {
  margin-top: 8px;
  font-size: 0.82rem;
  color: #ef4444;
  padding: 8px 12px;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius-sm);
}
.map-error[hidden] { display: none; }

/* ---- Leaflet map ---- */
.map-container {
  height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 16px;
}

/* Leaflet popup dark override */
.leaflet-popup-content-wrapper {
  background: var(--bg-card) !important;
  color: var(--text-1) !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow) !important;
  border-radius: var(--radius-sm) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.85rem !important;
}
.leaflet-popup-tip { background: var(--bg-card) !important; }
.leaflet-popup-close-button { color: var(--text-2) !important; }

/* Map marker pins */
.map-pin {
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}
.map-pin--base {
  width: 38px; height: 38px;
  background: var(--gradient);
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
}
.map-pin--dest { font-size: 1.6rem; }

/* ---- Price estimate ---- */
.price-estimate {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 20px;
}
.price-estimate[hidden] { display: none; }

.price-est-header {
  margin-bottom: 14px;
}
.price-est-distance {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-2);
}
.price-est-distance svg { width: 15px; height: 15px; color: var(--blue-light); flex-shrink: 0; }
.price-est-distance strong { color: var(--text-1); }

.price-est-rows { border-top: 1px solid var(--border); padding-top: 14px; }

.price-est-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-2);
  padding: 6px 0;
}
.price-est-row--fee span:last-child { color: #f59e0b; }

.price-est-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-1);
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 12px;
}
.price-est-total strong {
  font-size: 1.3rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-est-note {
  font-size: 0.75rem;
  color: var(--text-3);
  margin: 12px 0 16px;
  line-height: 1.5;
}

/* ---- Booking summary (step 2) ---- */
.bsummary {
  background: rgba(59,130,246,0.06);
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 20px;
}
.bsummary__title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-light);
  margin-bottom: 10px;
}
.bsummary__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-2);
  padding: 4px 0;
}
.bsummary__row--fee span:last-child { color: #f59e0b; }
.bsummary__total {
  display: flex;
  justify-content: space-between;
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--text-1);
  border-top: 1px solid rgba(59,130,246,0.15);
  margin-top: 8px;
  padding-top: 8px;
}
.bsummary__total strong { color: var(--cyan); }

/* ---- 2-col form row ---- */
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ---- Done screen ---- */
.modal-done {
  text-align: center;
  padding: 20px 0;
}
.modal-done h2 { margin: 16px 0 10px; }
.modal-done p { color: var(--text-2); font-size: 0.925rem; margin-bottom: 24px; max-width: 380px; margin-left: auto; margin-right: auto; }

@media (max-width: 520px) {
  .modal { padding: 24px 18px; }
  .form-row-2 { grid-template-columns: 1fr; }
  /* address-dropdown width set by JS */
}
