/* ============================================================
   NORVAS TECH — REDESIGNED STYLESHEET
   Modern, human-crafted. Drop-in replacement for existing CSS.
   Uses only existing classes. Colors preserved: navy + blue + white.
   ============================================================ */

@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');

/* ── ROOT TOKENS ─────────────────────────────────────────── */
:root {
  --navy:       #0d1b3e;
  --navy-mid:   #162550;
  --navy-light: #1e3470;
  --blue:       #2563eb;
  --blue-bright:#3b82f6;
  --blue-pale:  #dbeafe;
  --sky:        #e0f2fe;
  --white:      #ffffff;
  --off-white:  #f8faff;
  --text-dark:  #0d1b3e;
  --text-mid:   #374163;
  --text-muted: #6b7bb4;
  --border:     rgba(37,99,235,0.12);
  --border-mid: rgba(37,99,235,0.22);
  --shadow-sm:  0 2px 12px rgba(13,27,62,0.07);
  --shadow-md:  0 8px 40px rgba(13,27,62,0.12);
  --shadow-lg:  0 20px 60px rgba(13,27,62,0.18);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --ff-head:    'Syne', sans-serif;
  --ff-body:    'DM Sans', sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── BASE RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-head);
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--text-mid); line-height: 1.75; }

/* ── LAYOUT HELPERS ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── NAVIGATION ──────────────────────────────────────────── */
nav, .navbar, header nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,27,62,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0 2.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo / brand */
nav .navbar-brand,
nav a.navbar-brand,
.navbar-brand {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white) !important;
  letter-spacing: -0.03em;
}

/* Nav links */
nav .nav-link,
.navbar-nav .nav-link,
nav ul li a {
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7) !important;
  padding: 0.4rem 0.9rem !important;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.01em;
}

nav .nav-link:hover,
.navbar-nav .nav-link:hover,
nav ul li a:hover {
  color: var(--white) !important;
  background: rgba(255,255,255,0.08);
}

/* ── CTA BUTTONS ─────────────────────────────────────────── */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--ff-body);
  font-size: 0.925rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.01em;
  white-space: nowrap;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37,99,235,0.35);
}

.cta-button:hover {
  background: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,99,235,0.45);
  color: var(--white);
}

.cta-button:active { transform: translateY(0); }

.cta-button.secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  box-shadow: none;
}

.cta-button.secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  box-shadow: none;
}

/* Nav get-started button */
.btn-primary,
nav .btn,
.navbar .btn-primary {
  background: var(--blue) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  padding: 0.5rem 1.4rem !important;
  box-shadow: 0 4px 14px rgba(37,99,235,0.4) !important;
  transition: all var(--transition) !important;
}

.btn-primary:hover {
  background: var(--blue-bright) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(37,99,235,0.5) !important;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy);
  overflow: hidden;
  padding: 6rem 2rem 5rem;
}

/* Layered geometric background — no AI icons, just geometry */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 30%, rgba(37,99,235,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(30,52,112,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 55% 10%, rgba(59,130,246,0.15) 0%, transparent 55%);
  pointer-events: none;
}

/* Grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

/* Blue accent on key word */
.hero-content h1 em,
.hero-content h1 span {
  font-style: normal;
  color: var(--blue-bright);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator bar below hero */
.hero-stats,
.hero-badges {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ── SECTION TITLES ──────────────────────────────────────── */
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--blue);
  border-radius: 100px;
  margin: 0.75rem auto 0;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* ── HOW IT WORKS ────────────────────────────────────────── */
.features {
  padding: 6rem 2rem;
  background: var(--off-white);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-mid);
}

.feature-card:hover::before { opacity: 1; }

/* Step number badge */
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.feature-card h3::before {
  content: attr(data-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 0.6rem;
  vertical-align: middle;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon i,
.feature-icon .fas,
.feature-icon .fa {
  font-size: 1.4rem;
  color: var(--blue);
}

/* ── DASHBOARD PREVIEW ───────────────────────────────────── */
.dashboard-preview {
  padding: 6rem 2rem;
  background: var(--white);
}

.dashboard-preview .container { max-width: 1100px; }

.preview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .preview-content { grid-template-columns: 1fr; gap: 2.5rem; }
}

.preview-text h3 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.preview-text ul {
  list-style: none;
  margin-bottom: 2rem;
}

.preview-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}

.preview-text ul li:last-child { border-bottom: none; }

.preview-text ul li i,
.preview-text ul li .fas {
  color: var(--blue);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.preview-image {
  position: relative;
}

.preview-image::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, var(--blue-pale) 0%, transparent 70%);
  border-radius: var(--radius-xl);
  z-index: 0;
}

.preview-image img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

/* ── PRICING ─────────────────────────────────────────────── */
.pricing {
  padding: 6rem 2rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(37,99,235,0.2) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 20%, rgba(59,130,246,0.15) 0%, transparent 55%);
  pointer-events: none;
}

.pricing::after {
  content: '';
  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;
  pointer-events: none;
}

.pricing-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing .section-title { color: var(--white); }
.pricing .section-title::after { background: var(--blue-bright); }
.pricing .section-subtitle { color: rgba(255,255,255,0.6); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
  backdrop-filter: blur(8px);
}

.pricing-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.2);
}

.pricing-card.featured {
  background: var(--blue);
  border-color: var(--blue-bright);
  transform: scale(1.03);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-card h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}

.pricing-card.featured h3 { color: rgba(255,255,255,0.8); }

.pricing-card .price {
  /*font-family: var(--ff-head);*/
  /*font-size: 2.8rem !important;*/
  /*font-weight: 800;*/
  color: var(--white);
  margin-bottom: 0.25rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0;
}

.pricing-features {
  list-style: none;
  margin: 1.75rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}

.pricing-features li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  /*padding: 0.5rem 0;*/
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-features li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li::before {
  background: rgba(255,255,255,0.25);
}

.pricing-note {
  text-align: center;
  margin-top: 2.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
}

.pricing-note i, .pricing-note .fas { margin-right: 0.4rem; }

/* ── INSTANT ACCESS ──────────────────────────────────────── */
.instant-access {
  padding: 6rem 2rem;
  background: var(--off-white);
}

.instant-access .container { max-width: 1100px; }

.access-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3.5rem !important;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.access-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright), var(--navy-light));
}

@media (max-width: 768px) {
  .access-content { grid-template-columns: 1fr; gap: 2rem; padding: 2rem !important; }
}

.access-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
}

.access-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.access-text ul { list-style: none; }

.access-text ul li {
  font-size: 0.95rem;
  color: var(--text-mid);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.access-text ul li:last-child { border-bottom: none; }

.access-text ul li strong {
  color: var(--navy);
  font-weight: 600;
}

.access-text ul li::before {
  content: '→';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.access-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ── OUR PLATFORM / ABOUT ────────────────────────────────── */
.content-section {
  padding: 6rem 2rem;
  background: var(--white);
  max-width: 900px;
  margin: 0 auto;
}

.content-section:nth-of-type(even) {
  background: var(--off-white);
  max-width: 100%;
  padding: 6rem 2rem;
}

.content-section:nth-of-type(even) > * {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.content-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.content-card h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.content-card h4 {
  font-size: 1.1rem;
  color: var(--navy);
  margin: 2rem 0 0.6rem;
  font-weight: 600;
}

.content-card p {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Platform feature blocks */
.platform-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.platform-feature {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}

.platform-feature:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
}

.platform-feature i,
.platform-feature .fas {
  font-size: 1.4rem;
  color: var(--blue);
  margin-bottom: 0.75rem;
  display: block;
}

.platform-feature h4 {
  font-size: 1rem;
  margin: 0 0 0.4rem;
}

.platform-feature p {
  font-size: 0.875rem;
  margin: 0;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
  cursor: pointer;
}

.faq-item:last-child { border-bottom: none; }

.faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  transition: color var(--transition);
  user-select: none;
}

.faq-item h3::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}

.faq-item.active h3::after {
  transform: rotate(45deg);
}

.faq-item h3:hover { color: var(--blue); }

.faq-item p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding-bottom: 1.25rem;
  display: none;
}

.faq-item.active p { display: block; }

/* ── GET STARTED BANNER ──────────────────────────────────── */
.get-started {
  padding: 6rem 2rem;
  background: var(--navy);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.get-started::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(37,99,235,0.25) 0%, transparent 65%);
  pointer-events: none;
}

.get-started::after {
  content: '';
  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;
  pointer-events: none;
}

.get-started-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.get-started-content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.get-started-content p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

/* ── CONTACT SECTION ─────────────────────────────────────── */
#contact {
  padding: 6rem 2rem !important;
  background: var(--off-white) !important;
}

#contact .section-title.text-center { text-align: center; }
#contact .text-muted { color: var(--text-muted) !important; font-size: 1rem; }

#contact .card {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-md) !important;
  overflow: hidden;
}

#contact .card-body { padding: 2.5rem !important; }

/* Form elements */
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.form-control {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-md) !important;
  padding: 0.7rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12) !important;
}

.form-control::placeholder { color: #b0b8d8; }

textarea.form-control { resize: vertical; min-height: 140px; }

/* Submit button */
.btn.btn-primary.px-4.py-2 {
  background: var(--blue) !important;
  border: none !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  padding: 0.75rem 2.5rem !important;
  font-size: 0.95rem !important;
  box-shadow: 0 4px 18px rgba(37,99,235,0.35) !important;
  transition: all var(--transition) !important;
}

.btn.btn-primary.px-4.py-2:hover {
  background: var(--blue-bright) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(37,99,235,0.45) !important;
}

/* ── PRIVACY SECTION ─────────────────────────────────────── */
#privacy {
  background: var(--white);
  padding: 6rem 2rem;
}

#privacy .content-card ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.75rem 0 1.5rem;
}

#privacy .content-card ul li {
  font-size: 0.95rem;
  color: var(--text-mid);
  padding: 0.25rem 0;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer,
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 4rem 2rem 2rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 2rem; right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

/* Footer grid — work with Bootstrap columns */
footer .row { max-width: 1200px; margin: 0 auto; }

footer h5, footer h4 {
  font-family: var(--ff-head);
  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 p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

footer ul { list-style: none; padding: 0; }

footer ul li { margin-bottom: 0.5rem; }

footer ul li a,
footer a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55) !important;
  transition: color var(--transition);
}

footer ul li a:hover,
footer a:hover { color: var(--white) !important; }

/* Social icons */
footer .social-icons a,
footer .fab,
footer .fas.fa-facebook-f,
footer .fas.fa-twitter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: rgba(255,255,255,0.6) !important;
  font-size: 0.875rem;
  transition: all var(--transition);
  margin-right: 0.4rem;
}

footer .social-icons a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white) !important;
}

footer hr, footer .border-top {
  border-color: rgba(255,255,255,0.08) !important;
  margin: 2rem 0 1.5rem;
}

footer .text-muted,
footer small { color: rgba(255,255,255,0.3) !important; font-size: 0.8rem; }

/* ── CONTACT INFO STRIP (in footer) ─────────────────────── */
footer .contact-info a,
footer a[href^="mailto"],
footer a[href^="tel"] {
  color: rgba(255,255,255,0.55) !important;
  font-size: 0.875rem;
}

footer a[href^="mailto"]:hover,
footer a[href^="tel"]:hover { color: var(--blue-bright) !important; }

/* ── ALERTS ──────────────────────────────────────────────── */
.alert-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
}

.alert-danger {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
}

/* ── RECAPTCHA ───────────────────────────────────────────── */
.g-recaptcha { margin-top: 0.5rem; }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate {
  animation: fadeUp 0.65s cubic-bezier(0.22,1,0.36,1) both;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Intersection observer driven */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ── UTILITY: Bootstrap overrides ───────────────────────── */
.bg-light { background: var(--off-white) !important; }
.py-5    { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.mb-5    { margin-bottom: 3rem !important; }
.mb-3    { margin-bottom: 1.25rem !important; }
.p-4     { padding: 2.5rem !important; }
.shadow  { box-shadow: var(--shadow-md) !important; }

.col-lg-8 { max-width: 700px !important; }

/* ── RESPONSIVE TWEAKS ───────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
}

@media (max-width: 640px) {
  .hero { min-height: 80vh; }
  .cta-buttons { flex-direction: column; align-items: center; }
  nav { padding: 0 1rem; }
  .content-card { padding: 1.75rem; }
  .access-content { padding: 1.75rem !important; }
}

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 100px; }