/* ================================================================
   ROOT TO AZADI LTD — Professional Stylesheet
   Single color family: Deep Navy #0A2540
   ================================================================ */

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

/* ── CSS Variables ── */
:root {
  --navy-900: #050f1c;
  --navy-800: #0a2540;
  --navy-700: #0d3159;
  --navy-600: #1a4a7a;
  --navy-500: #2563a8;
  --navy-400: #3b7fd4;
  --navy-300: #6fa8e8;
  --navy-200: #b8d4f5;
  --navy-100: #deeaf9;
  --navy-50:  #f0f6fd;

  --text-dark:  #0a1628;
  --text-mid:   #334155;
  --text-light: #64748b;
  --text-xlight:#94a3b8;

  --white: #ffffff;
  --off-white: #f8fafc;
  --border: #e2e8f0;
  --border-light: #f1f5f9;

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-xs: 0 1px 2px rgba(10,37,64,.06);
  --shadow-sm: 0 2px 8px rgba(10,37,64,.08);
  --shadow:    0 4px 16px rgba(10,37,64,.10);
  --shadow-md: 0 8px 24px rgba(10,37,64,.12);
  --shadow-lg: 0 16px 48px rgba(10,37,64,.14);
  --shadow-xl: 0 24px 64px rgba(10,37,64,.18);

  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --max-w: 1240px;
  --trans: .22s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-sans); color: var(--text-dark); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; }

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

/* ── Typography ── */
h1 { font-family: var(--font-serif); font-size: clamp(2.2rem,5vw,4rem); font-weight: 800; line-height: 1.15; color: var(--text-dark); letter-spacing: -.02em; }
h2 { font-family: var(--font-serif); font-size: clamp(1.75rem,3.5vw,2.75rem); font-weight: 700; line-height: 1.2; color: var(--text-dark); letter-spacing: -.015em; }
h3 { font-family: var(--font-sans); font-size: 1.2rem; font-weight: 700; line-height: 1.3; color: var(--text-dark); }
h4 { font-family: var(--font-sans); font-size: .95rem; font-weight: 700; color: var(--text-dark); }
p  { color: var(--text-light); line-height: 1.75; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy-500);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--navy-500);
  border-radius: 2px;
}

.section-title { margin-bottom: 16px; }
.section-lead  { max-width: 580px; font-size: 1.05rem; margin-bottom: 56px; color: var(--text-mid); }
.section-lead.centered { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
/* ── Universal button — single design across entire site ── */
.btn,
.btn-primary,
.btn-outline,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .005em;
  padding: 14px 30px;
  border-radius: 14px;
  border: none;
  background: #ffffff;
  color: var(--navy-800);
  box-shadow: 0 2px 14px rgba(10,37,64,.14);
  transition: background .18s ease, transform .15s ease, box-shadow .18s ease;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover,
.btn-primary:hover,
.btn-outline:hover,
.btn-ghost:hover {
  background: #e8f0fb;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(10,37,64,.18);
}
.btn:active,
.btn-primary:active,
.btn-outline:active,
.btn-ghost:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(10,37,64,.12);
}
.btn-lg { padding: 15px 38px; font-size: .97rem; }
.btn i  { font-size: .85em; }

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background var(--trans), box-shadow var(--trans);
  padding: 0;
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.navbar .container {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 40px;
}
.nav-brand {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: color var(--trans);
  flex-shrink: 0;
}
.navbar.scrolled .nav-brand { color: var(--navy-800); }
.nav-brand span { color: var(--navy-300); }
.navbar.scrolled .nav-brand span { color: var(--navy-500); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--trans);
}
.navbar.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.14);
}
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--navy-800);
  background: var(--navy-50);
}

.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-btn-ghost {
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--trans);
}
.navbar.scrolled .nav-btn-ghost { color: var(--text-mid); }
.nav-btn-ghost:hover { color: var(--white); background: rgba(255,255,255,.12); }
.navbar.scrolled .nav-btn-ghost:hover { color: var(--navy-800); background: var(--navy-50); }

.nav-btn-cta {
  background: #ffffff;
  color: var(--navy-800);
  border: none;
  font-size: .875rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 14px;
  transition: background .18s ease, transform .15s ease, box-shadow .18s ease;
  box-shadow: 0 2px 14px rgba(10,37,64,.14);
}
.navbar.scrolled .nav-btn-cta {
  background: #ffffff;
  color: var(--navy-800);
}
.nav-btn-cta:hover {
  background: #e8f0fb;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(10,37,64,.18);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans);
}
.navbar.scrolled .hamburger span { background: var(--navy-800); }

/* Mobile Nav Drawer */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(10,37,64,.6);
  backdrop-filter: blur(4px);
}
.mobile-nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 300px; height: 100%;
  background: var(--white);
  z-index: 300;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-nav-drawer.open { transform: translateX(0); }
.mobile-nav-overlay.open { display: block; }
.mobile-nav-close {
  align-self: flex-end;
  background: var(--navy-50);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-800);
  font-size: 1.1rem;
  margin-bottom: 24px;
}
.mobile-nav-drawer a {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  padding: 13px 16px;
  border-radius: var(--radius);
  transition: all var(--trans);
  display: flex; align-items: center; gap: 10px;
}
.mobile-nav-drawer a:hover, .mobile-nav-drawer a.active {
  background: var(--navy-50);
  color: var(--navy-800);
}
.mobile-nav-drawer .btn { margin-top: 16px; width: 100%; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(5,15,28,.92) 0%, rgba(10,37,64,.80) 55%, rgba(13,49,89,.60) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
.hero-content .eyebrow { color: var(--navy-300); }
.hero-content .eyebrow::before { background: var(--navy-300); }
.hero-content h1 { color: var(--white); margin-bottom: 24px; }
.hero-content h1 em { font-style: normal; color: var(--navy-300); }
.hero-content p {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
}
.hero-trust-item i { color: var(--navy-300); font-size: .8rem; }

/* Hero Card */
.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-xl);
  padding: 36px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.hero-card-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy-300);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-card-label i { font-size: .9rem; }
.hero-price-block {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hero-price {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-price sup { font-size: 1.4rem; vertical-align: top; margin-top: 8px; display: inline-block; }
.hero-price-note { color: rgba(255,255,255,.55); font-size: .82rem; margin-top: 6px; }
.hero-resource-list { display: flex; flex-direction: column; gap: 13px; }
.hero-resource-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 500;
}
.hero-resource-item i {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-300);
  font-size: .85rem;
  flex-shrink: 0;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--navy-800);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.1);
}
.stat-item {
  background: var(--navy-800);
  padding: 28px 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: var(--navy-300); }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.55); font-weight: 500; letter-spacing: .04em; }

/* ── Section Base ── */
.section { padding: 100px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy-800); }
.centered { text-align: center; }

/* ── Feature Split Layout ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.split-image:hover img { transform: scale(1.03); }
.split-image-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--navy-800);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}
.split-image-badge i { font-size: 1.4rem; color: var(--navy-300); }
.split-image-badge-text strong { display: block; font-size: .95rem; color: var(--white); }
.split-image-badge-text span { font-size: .78rem; color: rgba(255,255,255,.6); }

/* ── Value List ── */
.value-list { display: flex; flex-direction: column; gap: 24px; margin: 36px 0; }
.value-row { display: flex; gap: 18px; align-items: flex-start; }
.value-icon {
  width: 44px; height: 44px;
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-800);
  font-size: 1rem;
  flex-shrink: 0;
}
.value-row h4 { margin-bottom: 4px; font-size: 1rem; }
.value-row p  { font-size: .88rem; line-height: 1.7; }

/* ── Cards Grid ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--navy-800);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.card:hover { border-color: var(--navy-200); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 52px; height: 52px;
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-800);
  font-size: 1.15rem;
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.card p  { font-size: .88rem; line-height: 1.7; }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 56px;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  position: relative;
  transition: all var(--trans);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.featured {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: var(--white);
}
.pricing-card.featured * { color: inherit; }
.pricing-card.featured p { color: rgba(255,255,255,.7); }
.pricing-card.featured h3 { color: var(--navy-300); }

.pricing-popular {
  position: absolute;
  top: -1px; right: 32px;
  background: var(--navy-400);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.pricing-tier {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy-500);
  margin-bottom: 10px;
}
.pricing-card.featured .pricing-tier { color: var(--navy-300); }

.pricing-amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin: 4px 0 6px;
}
.pricing-card.featured .pricing-amount { color: var(--white); }
.pricing-amount sup { font-size: 1.3rem; vertical-align: top; margin-top: 8px; display: inline-block; }
.pricing-period { font-size: .85rem; color: var(--text-light); font-weight: 400; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,.55); }

.pricing-desc { font-size: .88rem; margin: 14px 0 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.pricing-card.featured .pricing-desc { border-color: rgba(255,255,255,.12); }

.pricing-features { display: flex; flex-direction: column; gap: 13px; margin-bottom: 32px; }
.pricing-feature {
  display: flex; align-items: center; gap: 11px;
  font-size: .875rem; font-weight: 500; color: var(--text-mid);
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,.85); }
.pricing-feature i {
  width: 20px; height: 20px;
  color: var(--navy-500);
  font-size: .8rem;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.pricing-card.featured .pricing-feature i { color: var(--navy-300); }

.pricing-btn-light,
.pricing-btn-white {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  padding: 14px;
  background: #ffffff;
  color: var(--navy-800);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .88rem;
  border-radius: 14px;
  border: none;
  box-shadow: 0 2px 14px rgba(10,37,64,.14);
  transition: background .18s ease, transform .15s ease, box-shadow .18s ease;
  text-decoration: none;
  cursor: pointer;
}
.pricing-btn-light:hover,
.pricing-btn-white:hover {
  background: #e8f0fb;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(10,37,64,.18);
}
.pricing-btn-light:active,
.pricing-btn-white:active {
  transform: translateY(0);
}

.billing-notice {
  max-width: 680px;
  margin: 40px auto 0;
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-left: 4px solid var(--navy-800);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.billing-notice i { color: var(--navy-800); font-size: 1rem; margin-top: 1px; flex-shrink: 0; }
.billing-notice p { font-size: .875rem; line-height: 1.65; color: var(--text-mid); margin: 0; }
.billing-notice a { color: var(--navy-600); text-decoration: underline; }

/* ── Testimonial / Quote ── */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.testimonial-stars { color: var(--navy-500); font-size: .9rem; margin-bottom: 16px; }
.testimonial-card blockquote {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-name { font-size: .88rem; font-weight: 700; color: var(--text-dark); }
.testimonial-role { font-size: .78rem; color: var(--text-xlight); }

/* ── Image Gallery ── */
.img-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.img-mosaic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-mosaic .img-tall { grid-row: span 2; }

/* ── Services Page ── */
.service-strip {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.service-strip:last-child { border-bottom: none; }
.service-strip-icon {
  width: 56px; height: 56px;
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-800);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.service-strip-content { flex: 1; }
.service-strip-content h3 { margin-bottom: 8px; }
.service-strip-content p { font-size: .9rem; margin-bottom: 12px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: .75rem;
  font-weight: 600;
  color: var(--navy-700);
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-radius: 999px;
  padding: 4px 12px;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
}
.contact-sidebar { display: flex; flex-direction: column; gap: 0; }
.contact-info-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-info-block:last-child { border-bottom: none; }
.contact-icon {
  width: 42px; height: 42px;
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-800);
  font-size: .95rem;
  flex-shrink: 0;
}
.contact-info-block h4 { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-xlight); margin-bottom: 4px; }
.contact-info-block p, .contact-info-block a { font-size: .92rem; color: var(--text-dark); font-weight: 500; }
.contact-info-block a:hover { color: var(--navy-600); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

label { display: block; font-size: .8rem; font-weight: 700; color: var(--text-dark); margin-bottom: 7px; letter-spacing: .01em; }
input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: all var(--trans);
  outline: none;
  appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--text-xlight); }
input:focus, textarea:focus, select:focus {
  border-color: var(--navy-800);
  box-shadow: 0 0 0 3px rgba(10,37,64,.08);
}
textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }

.form-success {
  display: none;
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-left: 4px solid var(--navy-800);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--navy-800);
  font-weight: 600;
  font-size: .9rem;
  margin-top: 16px;
  display: none;
  gap: 10px;
  align-items: center;
}

/* ── PayPal ── */
.paypal-section {
  margin-top: 40px;
  background: var(--navy-800);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  color: var(--white);
}
.paypal-section h3 { color: var(--white); margin-bottom: 8px; }
.paypal-section p { color: rgba(255,255,255,.65); font-size: .9rem; margin-bottom: 28px; }
#paypal-button-container { max-width: 380px; margin: 0 auto; min-height: 48px; }
.paypal-placeholder {
  width: 100%;
  max-width: 380px;
  background: #009CDE;
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 14px 28px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 0 auto;
  transition: background var(--trans);
}
.paypal-placeholder:hover { background: #007ab8; }
.paypal-note { font-size: .76rem; color: rgba(255,255,255,.45); margin-top: 14px; }

/* ── Legal Pages ── */
.legal-hero {
  background: var(--navy-800);
  padding: 100px 0 64px;
}
.legal-hero h1 { color: var(--white); font-size: clamp(1.8rem,4vw,2.8rem); }
.legal-hero .eyebrow { color: var(--navy-300); }
.legal-hero .eyebrow::before { background: var(--navy-300); }
.legal-hero p { color: rgba(255,255,255,.65); margin-top: 10px; }

.legal-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 72px 28px 80px;
}
.legal-body h2 { font-family: var(--font-sans); font-size: 1.25rem; font-weight: 800; color: var(--text-dark); margin: 48px 0 12px; padding-top: 48px; border-top: 1px solid var(--border); }
.legal-body h2:first-of-type { border-top: none; padding-top: 0; }
.legal-body h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin: 24px 0 8px; }
.legal-body p  { font-size: .94rem; color: var(--text-mid); margin-bottom: 16px; line-height: 1.8; }
.legal-body ul { margin: 12px 0 20px 20px; }
.legal-body ul li { font-size: .94rem; color: var(--text-mid); margin-bottom: 8px; line-height: 1.7; list-style: disc; }
.legal-body a  { color: var(--navy-600); text-decoration: underline; }
.legal-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: .88rem; }
.legal-body th, .legal-body td { padding: 12px 16px; text-align: left; border: 1px solid var(--border); }
.legal-body th { background: var(--off-white); font-weight: 700; color: var(--text-dark); }
.legal-body td { color: var(--text-mid); }
.legal-effective { font-size: .8rem; color: var(--text-xlight); margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }

.alert-box {
  background: var(--navy-50);
  border-left: 4px solid var(--navy-800);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
  display: flex; gap: 12px; align-items: flex-start;
}
.alert-box i { color: var(--navy-800); font-size: .95rem; margin-top: 2px; flex-shrink: 0; }
.alert-box p { color: var(--navy-700); font-size: .875rem; font-weight: 500; margin: 0; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--navy-800);
  padding: 120px 0 72px;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero.alt-bg::after { background: var(--off-white); }
.page-hero h1 { color: var(--white); }
.page-hero .eyebrow { color: var(--navy-300); }
.page-hero .eyebrow::before { background: var(--navy-300); }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 540px; margin-top: 14px; }

/* ── CTA Section ── */
.cta-section {
  background: var(--navy-800);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(59,127,212,.12) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 540px; margin: 0 auto 36px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-note { margin-top: 20px; font-size: .8rem; color: rgba(255,255,255,.45); }
.cta-note i { margin-right: 5px; }

/* ── Footer ── */
footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.5);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 32px;
}
.footer-logo {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-logo span { color: var(--navy-300); }
.footer-brand p { font-size: .85rem; line-height: 1.75; max-width: 260px; color: rgba(255,255,255,.45); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  transition: all var(--trans);
}
.footer-social a:hover { background: var(--navy-600); color: var(--white); }

.footer-col h5 {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.85);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 11px;
  transition: color var(--trans);
}
.footer-col a:hover { color: var(--white); }
.footer-col address { font-style: normal; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-row i { color: var(--navy-400); font-size: .8rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-row span { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.5; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .8rem; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: .8rem; color: rgba(255,255,255,.35); transition: color var(--trans); }
.footer-legal a:hover { color: var(--white); }

/* ── FAQ ── */
.faq { max-width: 700px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: color var(--trans);
}
.faq-btn:hover { color: var(--navy-800); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-800);
  font-size: .8rem;
  flex-shrink: 0;
  transition: all var(--trans);
}
.faq-item.open .faq-icon { background: var(--navy-800); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 22px;
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ── About Page ── */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.team-card { text-align: center; }
.team-img { width: 100%; aspect-ratio: 1; border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 16px; background: var(--navy-50); }
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { margin-bottom: 4px; }
.team-card p { font-size: .82rem; }

/* ── Subscription Policy ── */
.sub-summary {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  margin: 32px 0;
}
.sub-box {
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
}
.sub-val { display: block; font-family: var(--font-serif); font-size: 2rem; font-weight: 800; color: var(--navy-800); line-height: 1.1; }
.sub-label { display: block; font-size: .75rem; color: var(--text-light); margin-top: 6px; }

/* ── Utilities ── */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }
.text-white { color: var(--white); }
.text-navy  { color: var(--navy-800); }
.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; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .cards-grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 48px; direction: ltr !important; }
  .split.reverse { direction: ltr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .sub-summary { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section { padding: 72px 0; }
  .contact-form-card { padding: 28px 22px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .sub-summary { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; }
}
