/* ─── Custom Properties ───────────────────────────────────────────── */
:root {
  --navy:       #0F1B2D;
  --navy-mid:   #1C2E4A;
  /* Brand palette extracted from logo mark */
  --teal:       #3DBDBD;
  --teal-dark:  #2D9898;
  --teal-light: #60CECE;
  --purple:     #7B7DDC;
  /* --gold aliases keep all existing var(--gold) references working */
  --gold:       var(--teal);
  --gold-dark:  var(--teal-dark);
  --gold-light: var(--teal-light);
  --text:       #1A1F36;
  --text-mid:   #4B5563;
  --text-light: #9CA3AF;
  --bg:         #F7F9FC;
  --white:      #FFFFFF;
  --border:     #E5E7EB;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow:     0 4px 20px rgba(15,27,45,0.10);
  --shadow-lg:  0 16px 48px rgba(15,27,45,0.16);
  --shadow-gold: 0 6px 24px rgba(61,189,189,0.35);

  --header-h:   110px;
  --ease:       0.3s ease;
  --max-w:      1200px;
  --pad:        96px;
}

/* ─── Accessibility ───────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── Reset ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  /* -webkit-font-smoothing: antialiased; */
  overflow-x: hidden;
}
img, svg { display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
abbr { text-decoration: none; cursor: default; }

/* ─── Typography ──────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Raleway', system-ui, sans-serif;
  line-height: 1.15;
  font-weight: 700;
}

/* ─── Layout ──────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: var(--pad) 0; }

.section-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ─── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--ease);
  white-space: nowrap;
  line-height: 1;
}

.btn-lg { padding: 15px 36px; font-size: 0.95rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-accent {
  background: linear-gradient(135deg, var(--purple) 0%, var(--teal) 100%);
  color: var(--white);
  border-color: transparent;
}
.btn-accent:hover {
  background: linear-gradient(135deg, #6A6CC8 0%, var(--teal-dark) 100%);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-service {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  margin-top: auto;
  align-self: flex-start;
}
.btn-service:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ─── Header ──────────────────────────────────────────────────────── */
.header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-h);
  z-index: 100;
  transition: background var(--ease), box-shadow var(--ease), backdrop-filter var(--ease);
}

.header.scrolled {
  background: rgba(10, 18, 30, 0.96);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  transition: opacity var(--ease);
}
.logo:hover { opacity: 0.88; }

.logo-img {
  display: block;
  width: 320px;
  height: 78px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: rgba(255,255,255,0.8);
  font-family: 'Raleway', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--ease), background var(--ease);
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-cta { margin-left: 14px; padding: 10px 22px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--ease);
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Hero ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 45%, rgba(123,125,220,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 15% 80%, rgba(61,189,189,0.12) 0%, transparent 55%),
    linear-gradient(145deg, #0A1421 0%, #0F1B2D 25%, #172640 55%, #0F1B2D 80%, #080F1A 100%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,   transparent, transparent 79px, rgba(255,255,255,0.022) 80px),
    repeating-linear-gradient(90deg,  transparent, transparent 79px, rgba(255,255,255,0.022) 80px);
  pointer-events: none;
}

.hero-geo {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: min(520px, 45vw);
  height: min(520px, 45vw);
  color: var(--gold);
  pointer-events: none;
  opacity: 0.9;
}

.hero-geo svg { width: 100%; height: 100%; }

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-h);
  padding-bottom: 48px;
}

.hero-text { max-width: 580px; }

.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.07;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  color: rgba(255,255,255,0.35);
  animation: hero-bounce 2.2s ease-in-out infinite;
}
@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ─── About ───────────────────────────────────────────────────────── */
.about { background: var(--white); }

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

.about-content .section-title { margin-bottom: 22px; }

.about-text {
  color: var(--text-mid);
  line-height: 1.8;
  font-size: 1.02rem;
  margin-bottom: 14px;
}

.about-content .btn { margin-top: 18px; }

.video-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  aspect-ratio: 16 / 10;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.video-placeholder-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.play-icon {
  width: 72px;
  height: 72px;
  color: var(--gold);
  margin-bottom: 10px;
  transition: transform var(--ease), opacity var(--ease);
}
.video-placeholder:hover .play-icon {
  transform: scale(1.1);
  opacity: 0.85;
}

.video-label {
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.video-sublabel {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 20px;
  box-shadow: var(--shadow-sm);
}

.about-stat {
  background: var(--white);
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.stat-num {
  font-family: 'Raleway', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 0.68rem;
  color: var(--text-mid);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ─── Services ────────────────────────────────────────────────────── */
.services { background: var(--bg); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--ease), box-shadow var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.service-label {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.service-desc {
  color: var(--text-mid);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}

/* ─── How It Works ────────────────────────────────────────────────── */
.how-it-works { background: var(--navy); }

.how-it-works .section-title { color: var(--white); }
.how-it-works .section-sub   { color: rgba(255,255,255,0.6); }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr 48px 1fr;
  align-items: stretch;
  margin-bottom: 60px;
  gap: 0;
}

.step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 30px 22px;
  height: 100%;
  box-sizing: border-box;
  transition: background var(--ease), transform var(--ease);
}
.step-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}

.step-num {
  font-family: 'Raleway', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: -6px;
  /* user-select: none;*/
  
}

.step-icon {
  width: 34px;
  height: 34px;
  color: var(--gold);
  margin-bottom: 14px;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.855rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 52px;
  color: rgba(196,148,42,0.5);
}
.step-connector::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(196,148,42,0.7), rgba(196,148,42,0.2));
  border-radius: 2px;
}

.steps-cta { text-align: center; }

/* ─── Plans ───────────────────────────────────────────────────────── */
.plans { background: var(--bg); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease);
  box-shadow: var(--shadow-sm);
}
.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.plan-card.plan-featured {
  border-color: var(--gold);
  background: var(--navy);
  transform: scale(1.04) translateY(0);
  box-shadow: var(--shadow-lg), 0 0 0 3px rgba(196,148,42,0.18);
}
.plan-card.plan-featured:hover {
  transform: scale(1.04) translateY(-5px);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 22px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(196,148,42,0.4);
}

.plan-header { margin-bottom: 28px; }

.plan-name {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.plan-featured .plan-name { color: var(--white); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 10px;
}

.price-currency {
  font-family: 'Raleway', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
}

.price-amount {
  font-family: 'Raleway', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.plan-featured .price-amount { color: var(--white); }

.price-period {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 400;
}
.plan-featured .price-period { color: rgba(255,255,255,0.5); }

.plan-ideal {
  font-size: 0.82rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.5;
}
.plan-featured .plan-ideal { color: rgba(255,255,255,0.55); }

.plan-features {
  flex: 1;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-mid);
}
.plan-featured .plan-features li { color: rgba(255,255,255,0.82); }

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: rgba(196,148,42,0.12);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
}
.plan-featured .check-icon { background: rgba(196,148,42,0.22); }

.plan-btn { width: 100%; }

.plans-footnote {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Contact ─────────────────────────────────────────────────────── */
.contact { background: var(--white); }

/* Full-width heading above the 3-col grid */
.contact-header {
  max-width: 660px;
  margin-bottom: 52px;
}

.contact-title {
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-sub {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* 3-column grid: social | details | form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.6fr;
  gap: 40px;
  align-items: start;
}

/* Shared column label (replaces section-eyebrow inside columns) */
.contact-col-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* Col 1 – Social */
.contact-social .social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all var(--ease);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

/* Col 2 – Contact details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

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

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact-icon svg { width: 20px; height: 20px; }

.contact-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}

.contact-value {
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
}
a.contact-value:hover { color: var(--gold); }

/* Why Us */
.why-us-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--text-light);
  font-family: 'Raleway', sans-serif;
}

.why-us-list { display: flex; flex-direction: column; gap: 10px; }

.why-us-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 500;
}
.why-us-list svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--gold);
}

/* ─── Form ────────────────────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 26px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

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

.req { color: var(--gold); margin-left: 1px; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 38px;
  cursor: pointer;
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,148,42,0.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.10);
}

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

.contact-form .btn-accent { padding: 14px 26px; font-size: 0.95rem; margin-top: 4px; }

.form-success {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.22);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-top: 14px;
  color: #15803d;
}
.form-success[hidden] { display: none; }
.form-success svg { width: 28px; height: 28px; min-width: 28px; color: #22c55e; }
.form-success strong { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 2px; }
.form-success p { font-size: 0.82rem; opacity: 0.85; }

/* ─── Footer ──────────────────────────────────────────────────────── */
.footer { background: var(--navy); padding: 32px 0; }

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-left { display: flex; flex-direction: column; gap: 12px; }

.footer-logo {
  background: none;
  padding: 0;
}

.footer-logo .logo-img {
  background: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  height: 32px;
  width: auto;
  display: block;
  -webkit-filter: none;
  filter: none;
}
.footer-logo:hover .logo-img { opacity: 0.9; }

.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }

.footer-nav a {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  transition: color var(--ease);
}
.footer-nav a:hover { color: var(--gold); }

/* ─── Scroll Animations ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.10s; }
.fade-up-delay-2 { transition-delay: 0.20s; }
.fade-up-delay-3 { transition-delay: 0.30s; }

/* ─── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .step-connector { display: none; }
}

@media (max-width: 900px) {
  :root { --pad: 72px; }

  .about-grid   { grid-template-columns: 1fr; gap: 48px; }
  .plans-grid   { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .plan-card.plan-featured { transform: none; }
  .plan-card.plan-featured:hover { transform: translateY(-5px); }
  /* Contact: collapse to 2-col (social+details side by side, form below) */
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-form-wrap { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --pad: 56px; }

  /* Mobile nav */
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(10,18,30,0.98);
    -webkit-backdrop-filter:blur(16px);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    gap: 4px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    z-index: 99;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link { padding: 12px 16px; }
  .nav-cta  { margin: 10px 0 0; }

  .services-grid { grid-template-columns: 1fr; }
  .steps-grid    { grid-template-columns: 1fr; gap: 16px; }

  .contact-grid     { grid-template-columns: 1fr; }
  .contact-form-wrap { grid-column: auto; padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 500px) {
  :root { --pad: 48px; --header-h: 168px; }

  /* Logo stays full size (320x78); header stacks to two rows so the
     hamburger never gets squeezed off-screen by the wide logo. */
  .header .container { padding: 0 10px; }
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 8px;
    padding: 10px 0;
  }
  .logo {
    order: 1;
    flex-basis: 100%;
    justify-content: center;
    padding: 8px;
  }
  .nav-toggle { order: 2; }

  .hero-headline { font-size: 2.4rem; }
  .hero-actions  { flex-direction: column; }
  .hero-geo      { opacity: 0.4; width: 280px; height: 280px; }

  .about-stats { grid-template-columns: repeat(2, 1fr); }

  .social-links { flex-direction: column; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-nav   { gap: 14px; }
}
