/* ============================================
   NAVAGAM INNOVATION HUB — Refined Design System
   ============================================ */

/* CSS VARIABLES — Official Navagam Palette */
:root {
  --bg-color: #010828;
  --cream: #EFF4FF;
  --neon: #6FFF00;          /* Strict micro-accent only */
  --navy-deep: #0F2744;     /* Primary surface */
  --royal-blue: #1E4E8C;    /* Secondary brand */
  --teal: #14B8A6;          /* Primary accent & highlight */
  --dark-text: #1E293B;
  --glass-bg: rgba(15, 39, 68, 0.5);
  --glass-border: rgba(255, 255, 255, 0.12);
  --font-grotesk: 'Anton', sans-serif;
  --font-condiment: 'Condiment', cursive;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-color);
  color: var(--cream);
  font-family: var(--font-grotesk);
  text-transform: uppercase;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
}

img, video {
  display: block;
}

.font-condiment {
  font-family: var(--font-condiment);
  text-transform: none;
}

.font-mono {
  font-family: var(--font-mono);
}

.teal-text {
  color: var(--teal);
}

/* ============================================
   LIQUID GLASS EFFECT
   ============================================ */
.liquid-glass {
  background: var(--glass-bg);
  background-blend-mode: luminosity;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.2px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.08) 20%,
    rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.08) 80%, rgba(255,255,255,0.25) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ============================================
   TEXTURE OVERLAY
   ============================================ */
.texture-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  background-image: url('texture.svg');
  background-size: cover;
  mix-blend-mode: lighten;
  opacity: 0.35;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container-main {
  max-width: 1720px;
  margin: 0 auto;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 768px) {
  .container-main {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .container-main {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}

/* Section Title Utility */
.section-title {
  font-family: var(--font-grotesk);
  font-size: 32px;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--cream);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 44px;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 54px;
  }
}

.section-subtitle {
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--teal);
  margin-top: 10px;
}

/* ============================================
   UNIFIED BUTTON SYSTEM
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 28px;
  border-radius: 24px;
  font-family: var(--font-grotesk);
  font-size: 15px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--royal-blue), var(--teal));
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
  background: linear-gradient(135deg, #245cb0, #16d0bb);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 28px;
  border-radius: 24px;
  font-family: var(--font-grotesk);
  font-size: 15px;
  text-transform: uppercase;
  background: rgba(15, 39, 68, 0.65);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

/* ============================================
   SECTION 1: HERO
   ============================================ */
.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 8, 40, 0.75) 0%, rgba(1, 8, 40, 0.45) 50%, rgba(1, 8, 40, 0.9) 100%),
              linear-gradient(90deg, rgba(1, 8, 40, 0.85) 0%, rgba(1, 8, 40, 0.35) 60%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Header */
.hero-header {
  position: relative;
  z-index: 20;
  padding-top: 24px;
  padding-bottom: 12px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Controlled Logo Environment */
.logo {
  font-family: var(--font-grotesk);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 39, 68, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 18px 8px 10px;
  border-radius: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.logo-img-wrapper {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.logo-img {
  height: 32px;
  width: 32px;
  object-fit: contain;
}

.logo-text {
  color: var(--cream);
  font-size: 14px;
  white-space: nowrap;
}

/* Navbar */
.navbar {
  display: none;
  border-radius: 28px;
  padding: 12px 32px;
  gap: 28px;
  align-items: center;
}

@media (min-width: 1024px) {
  .navbar {
    display: flex;
  }
}

.nav-link {
  font-family: var(--font-grotesk);
  font-size: 13px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  white-space: nowrap;
  color: var(--cream);
}

.nav-link:hover {
  color: var(--teal);
}

/* Header Contact Controls */
.social-icons-desktop {
  display: none;
  align-items: center;
  gap: 10px;
}

@media (min-width: 1024px) {
  .social-icons-desktop {
    display: flex;
  }
}

.social-icons-mobile {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

@media (min-width: 1024px) {
  .social-icons-mobile {
    display: none;
  }
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  color: var(--cream);
  background: rgba(15, 39, 68, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.social-btn:hover {
  background: var(--royal-blue);
  color: var(--cream);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 64px;
  padding-top: 90px;
}

.hero-text-block {
  position: relative;
  max-width: 920px;
}

.hero-heading {
  font-family: var(--font-grotesk);
  font-size: 42px;
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--cream);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

@media (min-width: 640px) {
  .hero-heading {
    font-size: 58px;
  }
}

@media (min-width: 768px) {
  .hero-heading {
    font-size: 70px;
    line-height: 1;
  }
}

@media (min-width: 1024px) {
  .hero-heading {
    font-size: 80px;
  }
}

.hero-subtext {
  font-size: 15px;
  color: rgba(239, 244, 255, 0.9);
  line-height: 1.65;
  max-width: 680px;
  margin-top: 24px;
  text-transform: none;
}

@media (min-width: 768px) {
  .hero-subtext {
    font-size: 16px;
  }
}

.hero-badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  font-size: 12px;
  color: var(--teal);
  letter-spacing: 0.08em;
}

.hero-badge-strip span {
  background: rgba(20, 184, 166, 0.12);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(20, 184, 166, 0.3);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

/* ============================================
   SECTION 2: ABOUT & PHILOSOPHY
   ============================================ */
.about-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--bg-color);
}

@media (min-width: 1024px) {
  .about-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.about-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.35;
}

.about-content {
  position: relative;
  z-index: 10;
}

.about-top-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 1024px) {
  .about-top-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.about-heading {
  font-family: var(--font-grotesk);
  font-size: 38px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
}

@media (min-width: 640px) {
  .about-heading {
    font-size: 50px;
  }
}

@media (min-width: 1024px) {
  .about-heading {
    font-size: 60px;
  }
}

.about-paragraph {
  font-size: 15px;
  color: rgba(239, 244, 255, 0.9);
  max-width: 580px;
  line-height: 1.7;
  text-transform: none;
}

@media (min-width: 768px) {
  .about-paragraph {
    font-size: 16px;
  }
}

/* Standout Core Philosophy Banner */
.philosophy-banner {
  margin-top: 56px;
  border-radius: 28px;
  padding: 36px 44px;
  border-left: 4px solid var(--teal);
  background: rgba(15, 39, 68, 0.6);
}

@media (min-width: 768px) {
  .philosophy-banner {
    padding: 48px 56px;
    margin-top: 64px;
  }
}

.philosophy-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--teal);
  display: block;
  margin-bottom: 14px;
}

.philosophy-quote {
  font-family: var(--font-grotesk);
  font-size: 24px;
  line-height: 1.35;
  color: var(--cream);
  letter-spacing: 0.02em;
}

@media (min-width: 640px) {
  .philosophy-quote {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {
  .philosophy-quote {
    font-size: 40px;
  }
}

/* ============================================
   SECTION 3: PROGRAMS & SUSTAINABLE MODEL
   ============================================ */
.programs-section {
  background: var(--bg-color);
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (min-width: 1024px) {
  .programs-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

/* 3-Step Model Grid */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 56px;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  border-radius: 28px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease;
  background: var(--glass-bg);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 184, 166, 0.4);
}

.step-badge {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--teal);
  background: rgba(20, 184, 166, 0.12);
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 22px;
  width: fit-content;
  border: 1px solid rgba(20, 184, 166, 0.25);
}

.step-title {
  font-family: var(--font-grotesk);
  font-size: 34px;
  margin-bottom: 16px;
  color: var(--cream);
}

.step-desc {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(239, 244, 255, 0.88);
  text-transform: none;
}

/* Bilingual Learning Showcase */
.bilingual-section {
  margin-top: 64px;
  border-radius: 28px;
  padding: 36px;
  background: rgba(15, 39, 68, 0.4);
}

@media (min-width: 768px) {
  .bilingual-section {
    padding: 56px;
  }
}

.bilingual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .bilingual-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.badge-tag {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--teal);
  display: block;
  margin-bottom: 16px;
}

.bilingual-en {
  font-size: 24px;
  line-height: 1.35;
  margin-bottom: 12px;
  color: var(--cream);
}

.bilingual-hi {
  font-size: 19px;
  line-height: 1.45;
  color: var(--teal);
  margin-bottom: 24px;
  text-transform: none;
}

.learning-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(239, 244, 255, 0.88);
  text-transform: none;
  align-items: center;
}

.learning-flow span {
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.innovation-heading {
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.innovation-hindi {
  font-size: 19px;
  color: rgba(239, 244, 255, 0.8);
  margin-bottom: 24px;
  text-transform: none;
}

.innovation-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.innovation-badges span {
  background: rgba(20, 184, 166, 0.15);
  color: var(--teal);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(20, 184, 166, 0.3);
}

/* ============================================
   SECTION 4: TECHNOLOGY ECOSYSTEM (10 DOMAINS)
   ============================================ */
.collection-section {
  background: var(--bg-color);
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (min-width: 1024px) {
  .collection-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.collection-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 56px;
  gap: 24px;
}

@media (min-width: 1024px) {
  .collection-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.collection-heading {
  font-family: var(--font-grotesk);
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
}

@media (min-width: 768px) {
  .collection-heading {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .collection-heading {
    font-size: 58px;
  }
}

/* Domain Counter Stack */
.see-all-btn {
  flex-shrink: 0;
}

.see-all-text {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 12px;
}

.see-big {
  font-family: var(--font-grotesk);
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  color: var(--teal);
}

.see-small-stack {
  display: flex;
  flex-direction: column;
  font-family: var(--font-grotesk);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
}

.teal-bar {
  background: var(--teal);
  height: 4px;
  width: 100%;
  margin-top: 6px;
  border-radius: 2px;
}

/* 10-Domain Tech Grid (3 Columns desktop, 2 Tablet, 1 Mobile) */
.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 640px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tech Card Design */
.tech-card {
  border-radius: 28px;
  padding: 28px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--glass-bg);
}

.tech-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 184, 166, 0.4);
}

.tech-image-wrap {
  width: 100%;
  height: 200px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
  background: rgba(10, 24, 50, 0.8);
  position: relative;
}

.tech-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tech-card:hover .tech-card-img {
  transform: scale(1.04);
}

.tech-card-badge {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 8px;
  display: block;
}

.tech-card-title {
  font-family: var(--font-grotesk);
  font-size: 26px;
  color: var(--cream);
  margin-bottom: 12px;
}

.tech-card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(239, 244, 255, 0.85);
  margin-bottom: 24px;
  text-transform: none;
}

/* Card Explore Action Button */
.tech-explore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 20px;
  border-radius: 16px;
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.25);
  color: var(--cream);
  font-size: 14px;
  font-family: var(--font-grotesk);
  transition: all 0.3s ease;
}

.tech-explore-btn:hover {
  background: var(--royal-blue);
  border-color: var(--teal);
  color: var(--teal);
}

.tech-explore-btn svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   SECTION 5: STUDENT LEARNING JOURNEY
   ============================================ */
.journey-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--bg-color);
}

.journey-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}

.journey-step {
  border-radius: 20px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
  background: var(--glass-bg);
}

.journey-step:hover {
  transform: translateY(-2px);
  border-color: var(--teal);
}

.journey-num {
  font-size: 11px;
  color: var(--teal);
}

.journey-name {
  font-family: var(--font-grotesk);
  font-size: 18px;
  color: var(--cream);
}

.journey-arrow {
  color: rgba(20, 184, 166, 0.6);
  font-size: 18px;
}

/* ============================================
   SECTION 6: LAB SOLUTIONS & WORKFLOW
   ============================================ */
.solutions-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--bg-color);
}

@media (min-width: 1024px) {
  .solutions-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .workflow-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.workflow-item {
  border-radius: 18px;
  padding: 20px 16px;
  text-align: center;
  background: var(--glass-bg);
}

.workflow-num {
  font-size: 11px;
  color: var(--teal);
  margin-bottom: 8px;
  display: block;
}

.workflow-text {
  font-family: var(--font-grotesk);
  font-size: 15px;
  color: var(--cream);
  line-height: 1.25;
}

/* Ecosystem Grid */
.ecosystem-box {
  margin-top: 56px;
  border-radius: 28px;
  padding: 40px;
  background: rgba(15, 39, 68, 0.45);
}

.ecosystem-banner-title {
  font-family: var(--font-grotesk);
  font-size: 28px;
  margin-bottom: 24px;
  color: var(--cream);
}

.ecosystem-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.eco-pill {
  background: rgba(20, 184, 166, 0.12);
  color: var(--cream);
  border: 1px solid rgba(20, 184, 166, 0.3);
  padding: 12px 22px;
  border-radius: 24px;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.eco-tagline {
  margin-top: 28px;
  font-size: 16px;
  color: var(--teal);
}

/* Package Cards */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 56px;
}

@media (min-width: 768px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pkg-card {
  border-radius: 28px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--glass-bg);
}

.pkg-name {
  font-family: var(--font-grotesk);
  font-size: 32px;
  color: var(--cream);
  margin-bottom: 12px;
}

.pkg-desc {
  font-size: 14px;
  color: rgba(239, 244, 255, 0.88);
  line-height: 1.65;
  margin-bottom: 28px;
  text-transform: none;
}

/* Policy Alignment Strip */
.policy-strip {
  margin-top: 48px;
  border-radius: 24px;
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(15, 39, 68, 0.4);
}

.policy-title {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--teal);
}

.policy-text {
  font-size: 15px;
  color: rgba(239, 244, 255, 0.9);
  line-height: 1.65;
  text-transform: none;
}

/* ============================================
   SECTION 7: CTA
   ============================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--bg-color);
}

@media (min-width: 1024px) {
  .cta-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.cta-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.45;
}

.cta-content {
  position: relative;
  z-index: 10;
}

.cta-text-block {
  position: relative;
  max-width: 840px;
}

.cta-heading {
  font-family: var(--font-grotesk);
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.25;
  color: var(--cream);
}

@media (min-width: 640px) {
  .cta-heading {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .cta-heading {
    font-size: 52px;
  }
}

.join-us {
  display: block;
  margin-bottom: 18px;
  color: var(--teal);
}

.cta-subtext {
  font-size: 15px;
  color: rgba(239, 244, 255, 0.9);
  max-width: 600px;
  margin-top: 24px;
  line-height: 1.65;
  text-transform: none;
}

@media (min-width: 768px) {
  .cta-subtext {
    font-size: 16px;
  }
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

/* ============================================
   FOOTER — Clean Institutional Style (No Founder Name)
   ============================================ */
.site-footer {
  background: #000414;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 56px 0 36px 0;
  position: relative;
  z-index: 10;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 2fr 2fr 1fr;
    align-items: flex-start;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-box {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo-img {
  height: 36px;
  width: 36px;
  object-fit: contain;
}

.footer-title {
  font-family: var(--font-grotesk);
  font-size: 18px;
  color: var(--cream);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(239, 244, 255, 0.7);
  margin-top: 4px;
  text-transform: none;
}

.footer-details {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(239, 244, 255, 0.85);
  text-transform: none;
}

.footer-details strong {
  color: var(--teal);
}

.footer-details a {
  color: var(--cream);
  text-decoration: underline;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(239, 244, 255, 0.5);
  text-transform: none;
}

@media (min-width: 768px) {
  .footer-copyright {
    text-align: right;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  background: rgba(239, 244, 255, 0.15);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(239, 244, 255, 0.3);
}
