/* =============================================
   STRATOS TECH LLC — Design System
   Premium B2B SaaS Aesthetic
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ─── CSS Variables ─── */
:root {
  --navy:      #0A0F1E;
  --navy-2:    #0D1426;
  --navy-3:    #111827;
  --slate:     #1E2A3B;
  --slate-2:   #243044;
  --electric:  #3B7EF6;
  --electric-2:#2B6AE0;
  --cyan:      #00C4CC;
  --white:     #FFFFFF;
  --off-white: #F4F6FA;
  --muted:     #8A96A8;
  --muted-2:   #6B7585;
  --border:    rgba(255,255,255,0.08);
  --border-light: rgba(255,255,255,0.12);
  --card-bg:   rgba(255,255,255,0.04);
  --card-bg-hover: rgba(255,255,255,0.07);
  --glass:     rgba(13,20,38,0.85);

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.3);
  --shadow:     0 4px 24px rgba(0,0,0,0.35);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.45);
  --shadow-electric: 0 0 40px rgba(59,126,246,0.2);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--navy);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.display-1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 800; letter-spacing: -0.03em; }
.display-2 { font-size: clamp(1.75rem, 4vw, 3.2rem); font-weight: 700; }
.display-3 { font-size: clamp(1.35rem, 3vw, 2.25rem); font-weight: 700; }
.lead      { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--muted); font-weight: 300; line-height: 1.75; }
.label     { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--electric); }

/* ─── Layout ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section   { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ─── Navigation ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 1.25rem;
  height: 72px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition), border-bottom var(--transition);
}

.navbar.scrolled {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.brand-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--electric), var(--cyan));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.navbar-nav a:hover, .navbar-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ─── Hamburger ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile Nav ─── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--navy-2);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  flex-direction: column;
  padding: 1rem 1.25rem 1.5rem;
  gap: 0.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.mobile-nav .btn { margin-top: 0.75rem; text-align: center; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--electric), var(--electric-2));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(59,126,246,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(59,126,246,0.5);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-light);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}

.btn-lg {
  font-size: 1rem;
  padding: 0.85rem 2rem;
}

.btn-sm {
  font-size: 0.82rem;
  padding: 0.5rem 1.1rem;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 20%, rgba(59,126,246,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(0,196,204,0.07) 0%, transparent 55%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 40%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,126,246,0.12);
  border: 1px solid rgba(59,126,246,0.25);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 1.75rem;
}

.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--electric);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .accent {
  background: linear-gradient(135deg, var(--electric), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--white), rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }

/* ─── Section Headers ─── */
.section-header { max-width: 640px; margin-bottom: 4rem; }
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 { margin-top: 0.75rem; margin-bottom: 1rem; }
.section-header p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; }

/* ─── Cards ─── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}

.card:hover {
  background: var(--card-bg-hover);
  border-color: var(--border-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 52px; height: 52px;
  background: rgba(59,126,246,0.12);
  border: 1px solid rgba(59,126,246,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}

.card:hover .card-icon {
  background: rgba(59,126,246,0.2);
  border-color: rgba(59,126,246,0.4);
}

.card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; }

/* ─── Grid Layouts ─── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ─── Split Layout ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ─── Why Choose Us ─── */
.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.why-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(59,126,246,0.15), rgba(0,196,204,0.1));
  border: 1px solid rgba(59,126,246,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.why-item h4 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.why-item p  { font-size: 0.87rem; color: var(--muted); line-height: 1.6; }

/* ─── How We Work Steps ─── */
.steps-row {
  display: flex;
  gap: 0;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), var(--border-light), transparent);
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  margin: 0 auto 1.25rem;
  background: var(--slate);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--electric);
}
.step h4  { font-size: 0.95rem; margin-bottom: 0.4rem; }
.step p   { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ─── CTA Banner ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--slate) 0%, var(--slate-2) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 200px;
  background: radial-gradient(ellipse, rgba(59,126,246,0.15), transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p  { color: var(--muted); max-width: 500px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Services Page ─── */
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: rgba(59,126,246,0.35);
  background: var(--card-bg-hover);
  box-shadow: 0 8px 40px rgba(59,126,246,0.08);
  transform: translateY(-4px);
}
.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,196,204,0.1);
  border: 1px solid rgba(0,196,204,0.2);
  border-radius: 50px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1.25rem;
}

/* ─── Pricing ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: all var(--transition);
}
.pricing-card.featured {
  background: linear-gradient(145deg, rgba(59,126,246,0.1), rgba(0,196,204,0.05));
  border-color: rgba(59,126,246,0.4);
  box-shadow: 0 0 60px rgba(59,126,246,0.1);
  transform: scale(1.03);
}
.pricing-card:hover:not(.featured) {
  background: var(--card-bg-hover);
  border-color: var(--border-light);
  transform: translateY(-4px);
}
.pricing-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--electric), var(--cyan));
  border-radius: 50px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.5rem;
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.pricing-desc { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.75rem; }
.pricing-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.pricing-price span { font-size: 0.9rem; font-weight: 400; color: var(--muted); font-family: var(--font-body); }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }
.pricing-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}
.pricing-feature .check {
  color: var(--electric);
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}
.pricing-feature.na { color: var(--muted-2); }
.pricing-feature.na .check { color: var(--muted-2); }

/* ─── Contact Form ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(59,126,246,0.1);
  border: 1px solid rgba(59,126,246,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-item h4 { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.3rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
.contact-item p  { font-size: 0.92rem; color: var(--white); line-height: 1.5; }

.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}
.form-control {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-control::placeholder { color: var(--muted); }
.form-control:focus {
  border-color: rgba(59,126,246,0.6);
  box-shadow: 0 0 0 3px rgba(59,126,246,0.12);
  background: rgba(59,126,246,0.04);
}
.form-control.is-invalid { border-color: #f56565; }
.invalid-feedback { font-size: 0.8rem; color: #fc8181; margin-top: 0.4rem; display: block; }
textarea.form-control { resize: vertical; min-height: 130px; }
.honeypot-field { display: none !important; }

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.alert-success { background: rgba(72,199,142,0.1); border: 1px solid rgba(72,199,142,0.3); color: #68d391; }
.alert-error   { background: rgba(245,101,101,0.1); border: 1px solid rgba(245,101,101,0.3); color: #fc8181; }

/* ─── About Page ─── */
.about-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual { position: relative; }
.about-visual-inner {
  background: linear-gradient(135deg, var(--slate), var(--slate-2));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
}
.about-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.about-icon-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 0.75rem;
  font-size: 1.75rem;
  transition: all var(--transition);
}
.about-icon-box:hover {
  border-color: rgba(59,126,246,0.4);
  background: rgba(59,126,246,0.08);
}
.value-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border-left: 3px solid var(--electric);
  transition: all var(--transition);
}
.value-card:hover { border-left-color: var(--cyan); background: var(--card-bg-hover); }
.value-card h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.value-card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ─── Legal Pages ─── */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 1.35rem; margin: 2.5rem 0 0.85rem; color: var(--white); }
.legal-content h3 { font-size: 1.05rem; margin: 1.75rem 0 0.6rem; color: rgba(255,255,255,0.85); }
.legal-content p  { font-size: 0.93rem; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.legal-content ul li { font-size: 0.93rem; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 0.4rem; list-style: disc; }
.legal-content a { color: var(--electric); }
.legal-content a:hover { text-decoration: underline; }
.legal-meta {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 3rem;
}

/* ─── Footer ─── */
.footer {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  padding: 5rem 1.25rem 2.5rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-brand p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; margin-top: 1rem; max-width: 280px; }
.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.88rem; color: var(--muted); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: var(--muted-2); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.82rem; color: var(--muted-2); transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  padding: 160px 1.25rem 80px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(59,126,246,0.1) 0%, transparent 70%),
    var(--navy);
  border-bottom: 1px solid var(--border);
}
.page-hero .label { margin-bottom: 1rem; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { color: var(--muted); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

/* ─── Divider ─── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ─── Animations ─── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: span 3; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card.featured { transform: scale(1); }
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-hero-split { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .steps-row { flex-direction: column; gap: 2rem; }
  .steps-row::before { display: none; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  .navbar-nav, .navbar-cta { display: none; }
  .hamburger { display: flex; }

  .section { padding: 60px 0; }
  .section-sm { padding: 40px 0; }
  .container { padding: 0 1rem; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  .split { grid-template-columns: 1fr; gap: 2rem; }
  .about-hero-split { grid-template-columns: 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }

  .form-row { display: flex; flex-direction: column; gap: 0; }

  .steps-row { flex-direction: column; gap: 2rem; }
  .steps-row::before { display: none; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .cta-banner { padding: 2rem 1.25rem; border-radius: var(--radius-lg); }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .footer-brand { grid-column: span 2; }
  .footer-grid .footer-col:last-child { grid-column: span 1; }

  .about-visual-inner { padding: 1.75rem; }
  .page-hero { padding: 120px 1rem 60px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE
   ═══════════════════════════════════════ */
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid .footer-brand { grid-column: span 1; }
  .footer-grid .footer-col:last-child { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-stats { grid-template-columns: 1fr 1fr; }

  .pricing-grid { max-width: 100%; }

  .cta-banner { padding: 1.75rem 1rem; }

  .about-icon-grid { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
  .about-icon-box { padding: 0.9rem 0.5rem; font-size: 1.4rem; }
}