/* =====================================================
   SAJJAD NAEEM — Personal Brand Website
   Styles: Modern, Minimal, Premium
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0a0e27;
  --deep-navy:   #060817;
  --blue:        #2563eb;
  --blue-hover:  #1d4ed8;
  --teal:        #0d9488;
  --electric:    #38bdf8;
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --light-grey:  #e2e8f0;
  --border:      #cbd5e1;
  --text:        #0f172a;
  --muted:       #64748b;
  --card-bg:     #ffffff;
  --hero-grad:   linear-gradient(135deg, #060817 0%, #0a1a4e 50%, #0a0e27 100%);
  --section-pad: 5rem 1.5rem;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.14);
  --transition:  0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 700; }

p { font-size: 1.05rem; color: var(--muted); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-label.light {
  color: var(--electric);
  background: rgba(56, 189, 248, 0.12);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.35); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

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

.btn-lg { padding: 1rem 2.4rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.875rem; }

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 1.5rem;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.navbar.scrolled {
  background: rgba(6, 8, 23, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
  padding: 0.85rem 1.5rem;
}

.navbar.light-page {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.navbar.light-page .nav-logo { color: var(--navy); }
.navbar.light-page .nav-link { color: var(--text); }
.navbar.light-page .nav-link:hover { color: var(--blue); }

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.nav-logo span { color: var(--electric); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); }

.nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  border-radius: 7px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--blue-hover); transform: translateY(-1px); }

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

/* ── Hero ── */
.hero {
  background: var(--hero-grad);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(37,99,235,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(13,148,136,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--electric);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

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

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

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.hero-photo-wrap {
  position: relative;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #1e3a8a, #0f2461);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.hero-photo-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.4;
}

.hero-photo-placeholder span {
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-photo-card {
  position: absolute;
  bottom: -1.5rem;
  left: -2rem;
  background: white;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-photo-card-icon {
  width: 40px; height: 40px;
  background: rgba(37,99,235,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero-photo-card-text .num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.hero-photo-card-text .label {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── Authority Section ── */
.authority {
  background: var(--navy);
  padding: 3rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.authority-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.authority-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}

.authority-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.1);
}

.authority-items {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.authority-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

.authority-item svg {
  color: var(--electric);
  flex-shrink: 0;
}

/* ── Section Base ── */
.section {
  padding: var(--section-pad);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.05rem; }

/* ── Services Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

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

.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(37,99,235,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.service-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--text); }
.service-card p { font-size: 0.95rem; }

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 1.25rem;
  transition: gap var(--transition);
}
.service-card .card-link:hover { gap: 0.6rem; }

/* ── Founder Section ── */
.founder-section {
  background: var(--off-white);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

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

.founder-image {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #dbeafe, #eff6ff);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
}

.founder-img-placeholder svg { width: 48px; height: 48px; opacity: 0.4; }
.founder-img-placeholder span { font-size: 0.85rem; }

.video-placeholder {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 120px;
  height: 80px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.video-placeholder:hover { transform: scale(1.05); }

.play-btn {
  width: 40px; height: 40px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn::after {
  content: '';
  border: 0 solid transparent;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid white;
  margin-left: 3px;
}

.founder-content { padding: 1rem 0; }
.founder-content h2 { margin-bottom: 1.5rem; }

.founder-story p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.founder-signature {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.founder-sign-text .name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  font-style: italic;
  line-height: 1;
}

.founder-sign-text .title {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ── Case Studies ── */
.case-studies-section { background: var(--white); }

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.case-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.case-card-top {
  padding: 2rem;
  background: linear-gradient(135deg, var(--navy), #1e3a8a);
  position: relative;
  overflow: hidden;
}

.case-card-top::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.case-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--electric);
  background: rgba(56,189,248,0.12);
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.case-card-top h3 {
  color: white;
  font-size: 1.1rem;
  line-height: 1.35;
}

.case-card-body { padding: 1.5rem 2rem 2rem; }
.case-card-body p { font-size: 0.92rem; margin-bottom: 1.25rem; }

.case-metric {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--off-white);
  border-radius: 8px;
}

.case-metric-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.case-metric-text {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.3;
}

/* ── Lead Magnet ── */
.lead-magnet {
  background: var(--hero-grad);
  position: relative;
  overflow: hidden;
}

.lead-magnet::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(37,99,235,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.lead-magnet-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lead-magnet h2 { color: white; margin-bottom: 1rem; }
.lead-magnet p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }

.lead-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lead-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.lead-feature svg { color: var(--electric); flex-shrink: 0; }

.lead-form-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}

.lead-form-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.lead-form-card .subtitle {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--light-grey);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

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

.form-submit-full {
  width: 100%;
  padding: 0.9rem;
  font-size: 0.95rem;
  border-radius: 8px;
  background: var(--blue);
  color: white;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.form-submit-full:hover { background: var(--blue-hover); transform: translateY(-2px); }

.form-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* ── Products ── */
.products-section { background: var(--off-white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: white;
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.product-card-header {
  padding: 2rem;
  text-align: center;
  background: var(--off-white);
  border-bottom: 1px solid var(--light-grey);
  position: relative;
}

.product-emoji { font-size: 2.5rem; margin-bottom: 0.75rem; }

.product-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--blue);
  color: white;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
}

.product-card h3 { font-size: 1.1rem; color: var(--text); }

.product-card-body { padding: 1.75rem; }
.product-card-body p { font-size: 0.9rem; margin-bottom: 1.25rem; }

.product-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.product-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.product-feature::before {
  content: '✓';
  font-weight: 700;
  color: var(--teal);
  font-size: 0.8rem;
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.product-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text);
}

.product-price-label {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── Testimonials ── */
.testimonials-section { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--blue);
  font-family: Georgia, serif;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

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

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--muted);
}

.stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--hero-grad);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(37,99,235,0.25) 0%, transparent 70%);
}

.cta-banner-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-banner h2 { color: white; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 540px; margin-left: auto; margin-right: auto; }

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: var(--deep-navy);
  padding: 4rem 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1140px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.footer-brand .logo span { color: var(--electric); }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.5); max-width: 260px; }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--blue); border-color: var(--blue); color: white; }

.footer-col h4 {
  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 li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: white; }

.footer-bottom {
  max-width: 1140px;
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--hero-grad);
  padding: 8rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(37,99,235,0.15) 0%, transparent 70%);
}

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

.page-hero h1 { color: white; margin-bottom: 1.25rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ── About Page ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #dbeafe, #eff6ff);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
}

.about-img-placeholder svg { width: 48px; height: 48px; opacity: 0.35; }
.about-img-placeholder span { font-size: 0.85rem; }

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

.about-content p {
  margin-bottom: 1.25rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.pillar-item {
  background: var(--off-white);
  border-radius: 10px;
  padding: 1.25rem;
}

.pillar-item h4 { font-size: 0.9rem; color: var(--text); margin-bottom: 0.35rem; }
.pillar-item p { font-size: 0.82rem; color: var(--muted); }

.timeline {
  position: relative;
  padding-left: 2rem;
  margin-top: 1.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid white;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
}

.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.25rem;
}

.timeline-item h4 { font-size: 0.95rem; color: var(--text); margin-bottom: 0.25rem; }
.timeline-item p { font-size: 0.85rem; color: var(--muted); }

/* ── Services Page ── */
.services-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  background: rgba(37,99,235,0.08);
}

.service-detail h2 { margin-bottom: 1rem; }
.service-detail p { margin-bottom: 1.5rem; }

.service-includes h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.service-includes ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-includes ul li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text);
}

.service-includes ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.service-visual {
  background: linear-gradient(145deg, var(--navy), #1e3a8a);
  border-radius: 20px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

/* ── Booking Page ── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.booking-info h2 { margin-bottom: 1rem; }
.booking-info p { margin-bottom: 2rem; }

.booking-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.booking-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: 10px;
}

.booking-point-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(37,99,235,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.booking-point h4 { font-size: 0.9rem; color: var(--text); margin-bottom: 0.25rem; }
.booking-point p { font-size: 0.82rem; color: var(--muted); }

.booking-form-card {
  background: white;
  border: 1px solid var(--light-grey);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.booking-form-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.booking-form-card .sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.calendar-embed {
  width: 100%;
  min-height: 360px;
  background: var(--off-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--light-grey);
  margin-bottom: 1.5rem;
}

.calendar-embed-inner {
  text-align: center;
  color: var(--muted);
}

.calendar-embed-inner svg { width: 40px; height: 40px; opacity: 0.4; margin: 0 auto 0.75rem; }
.calendar-embed-inner p { font-size: 0.85rem; }

/* ── Resources Page ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: white;
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy), #1e3a8a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.blog-card-body { padding: 1.5rem; }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.blog-meta .cat {
  color: var(--blue);
  font-weight: 600;
}

.blog-card h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.blog-card p { font-size: 0.875rem; margin-bottom: 1rem; }

.blog-read-more {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition);
}
.blog-read-more:hover { gap: 0.5rem; }

/* ── Exit Popup ── */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,8,23,0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.exit-popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.exit-popup {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  max-width: 480px;
  width: 90%;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.exit-popup-overlay.active .exit-popup {
  transform: scale(1);
}

.exit-popup-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--off-white);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.exit-popup-close:hover { background: var(--light-grey); }

.exit-popup-emoji { font-size: 2.5rem; margin-bottom: 1rem; }
.exit-popup h3 { font-size: 1.4rem; margin-bottom: 0.75rem; color: var(--text); }
.exit-popup p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.5rem; }

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

/* ── Utilities ── */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

.bg-dark { background: var(--navy); }
.bg-off { background: var(--off-white); }

.text-white { color: white; }
.text-white h2, .text-white h3, .text-white h4 { color: white; }
.text-white p { color: rgba(255,255,255,0.7); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ── Video Card (founder section preview) ── */
.video-card {
  position: absolute;
  bottom: -1.5rem;
  left: -2rem;
  width: 220px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: var(--navy);
}
.video-card:hover { transform: scale(1.04); box-shadow: 0 24px 64px rgba(0,0,0,0.4); }

.video-thumb {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,8,23,0.88) 40%, rgba(6,8,23,0.2) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
}

.video-play-ring {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.9);
  background: rgba(37,99,235,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}
.video-card:hover .video-play-ring {
  background: var(--blue);
  transform: scale(1.1);
}

.video-card-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  margin-top: 0.25rem;
}

.video-card-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: white;
  font-family: 'Inter', sans-serif;
}

.video-card-dur {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  font-family: 'Inter', sans-serif;
}

/* ── Video Modal ── */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4,6,18,0.92);
  backdrop-filter: blur(10px);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  transform: scale(0.94);
  transition: transform 0.3s ease;
  background: #000;
}
.video-modal-overlay.active .video-modal-inner { transform: scale(1); }

.video-modal-player {
  width: 100%;
  max-height: 80vh;
  display: block;
  background: #000;
}

.video-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
  backdrop-filter: blur(4px);
}
.video-modal-close:hover { background: rgba(255,255,255,0.28); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo-wrap { display: none; }
  .founder-grid { grid-template-columns: 1fr; gap: 3rem; }
  .founder-image-wrap { max-width: 380px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .case-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lead-magnet-inner { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .booking-layout { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 4rem 1.25rem; }

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

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--deep-navy);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }

  .nav-links.open .nav-link {
    font-size: 1.4rem;
    color: white;
  }

  .nav-links.open .nav-cta {
    font-size: 1rem;
    padding: 0.85rem 2rem;
  }

  .services-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .hero-actions { flex-direction: column; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
}
