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

:root {
  /* Color Palette - Updated to exactly match Brand Identity Document */
  --deep-navy: #0B132B;
  --deep-navy-rgb: 11, 19, 43;
  --electric-blue: #2563FF;
  --electric-blue-glow: rgba(37, 99, 255, 0.4);
  --aqua: #00C7B7;
  --coral-purple: #7C5CFF; /* Lilac */
  --light-grey: #F2F4F7;
  --white: #FFFFFF;
  --warm-coral: #FF6B5A; /* Coral accent */
  
  /* Gradations */
  --grad-primary: linear-gradient(135deg, var(--electric-blue) 0%, var(--coral-purple) 100%);
  --grad-aqua: linear-gradient(135deg, var(--electric-blue) 0%, var(--aqua) 100%);
  --grad-dark: linear-gradient(180deg, #070d1e 0%, #0B132B 100%);
  
  /* Typography */
  --font-headings: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Spacing & Borders */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 25px var(--electric-blue-glow);
}

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

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

body {
  font-family: var(--font-body);
  background-color: #060b1a;
  color: var(--light-grey);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: #9db1d6;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Base Layout Utility */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* Glow decoration elements */
.ambient-glow {
  position: absolute;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 255, 0.12) 0%, rgba(124, 92, 255, 0.04) 50%, rgba(0,0,0,0) 100%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

/* Brand Motif Pattern Elements */
.brand-motif-bg {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 250px;
  height: 250px;
  opacity: 0.05;
  background-image: radial-gradient(var(--electric-blue) 2px, transparent 2px),
                    linear-gradient(45deg, transparent 46%, var(--coral-purple) 49%, var(--coral-purple) 51%, transparent 55%);
  background-size: 24px 24px, 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(11, 19, 43, 0.75);
  transition: var(--transition-smooth);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 2px 8px rgba(37, 99, 255, 0.12)) brightness(1.05);
}

.logo:hover {
  transform: translateY(-1px) scale(1.02);
  filter: drop-shadow(0 4px 16px rgba(37, 99, 255, 0.35)) brightness(1.2);
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 576px) {
  .logo-img {
    height: 30px;
  }
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: #9db1d6;
  display: inline-block;
  line-height: 1;
}

.nav-links a:hover {
  color: var(--white);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  gap: 8px;
}

.btn-primary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 99, 255, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

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

.btn-aqua {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: 0 0 25px rgba(124, 92, 255, 0.3);
}

.btn-aqua:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(124, 92, 255, 0.5);
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 180px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(124, 92, 255, 0.1);
  border: 1px solid rgba(124, 92, 255, 0.2);
  border-radius: var(--radius-full);
  color: #b5a4ff;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 24px;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
    letter-spacing: -1px;
  }
}

.hero h1 span {
  display: block;
  background: linear-gradient(135deg, var(--white) 30%, #9db1d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 span.gradient-text {
  display: inline;
  background: linear-gradient(135deg, var(--electric-blue), var(--coral-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheadline {
  font-size: 1.25rem;
  color: #9db1d6;
  margin-bottom: 40px;
  max-width: 600px;
}

@media (max-width: 992px) {
  .hero-subheadline {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-ctas {
  display: flex;
  gap: 16px;
}

@media (max-width: 992px) {
  .hero-ctas {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
  }
}

/* Horizontal Trust Bar */
.trust-bar {
  background: #040813;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px 0;
  position: relative;
  z-index: 10;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 576px) {
  .trust-bar-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 576px) {
  .trust-bar-item {
    flex-direction: column;
  }
}

.trust-bar-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(37, 99, 255, 0.08);
  border: 1px solid rgba(37, 99, 255, 0.15);
  color: var(--electric-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-bar-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.trust-bar-text p {
  font-size: 0.8rem;
  color: #7b8fae;
}

/* Phone Mockup Swipe Visualizer */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.phone-container {
  width: 325px;
  height: 650px;
  background: #040814;
  border: 10px solid #1c2336;
  border-radius: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), var(--shadow-glow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  width: 140px;
  height: 24px;
  background: #1c2336;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
}

.phone-screen {
  padding: 32px 14px 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #060b19;
}

.phone-header {
  margin-top: 10px;
  margin-bottom: 12px;
}

.phone-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 2px;
}

.phone-header p {
  font-size: 0.75rem;
  color: #7b8fae;
}

.phone-card-deck {
  flex-grow: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}

.mock-card {
  position: absolute;
  width: 100%;
  height: 400px;
  background: #0b132b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s, border-color 0.4s;
  cursor: grab;
  user-select: none;
}

#card-business {
  z-index: 5;
  background: #0e1735;
  border-color: rgba(37, 99, 255, 0.2);
}

.card-top-image {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}

.bottle-gradient-art {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 120%, #2563FF 0%, #060b19 80%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottle-shadow-element {
  width: 50px;
  height: 110px;
  background: linear-gradient(180deg, #1c2c5c 0%, #2563FF 100%);
  border-radius: 16px 16px 8px 8px;
  position: relative;
  box-shadow: 0 0 30px rgba(37, 99, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bottle-shadow-element::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 17px;
  width: 16px;
  height: 12px;
  background: #0b132b;
  border-radius: 4px;
}

.bottle-shadow-element::after {
  content: '';
  position: absolute;
  top: -24px;
  left: 20px;
  width: 10px;
  height: 12px;
  background: #111;
  border-radius: 2px;
}

.nomi-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(11, 19, 43, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-info-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.card-info-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.card-price-pill {
  background: rgba(37, 99, 255, 0.12);
  color: #5d8eff;
  border: 1px solid rgba(37, 99, 255, 0.25);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.8rem;
}

.card-location-row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #7b8fae;
  margin-bottom: 12px;
}

.card-seeking-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #506484;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

#card-student {
  z-index: 4;
  transform: translateY(8px) scale(0.96);
  opacity: 0.9;
  background: #0d122b;
  border-color: rgba(124, 92, 255, 0.2);
}

.mock-card.swipe-right {
  transform: translate(120%, -30px) rotate(15deg) !important;
  opacity: 0;
}

.mock-card.swipe-left {
  transform: translate(-120%, -30px) rotate(-15deg) !important;
  opacity: 0;
}

.card-badge {
  align-self: flex-start;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-purple {
  background: rgba(124, 92, 255, 0.12);
  color: #b5a4ff;
  border: 1px solid rgba(124, 92, 255, 0.25);
}

.badge-aqua {
  background: rgba(0, 199, 183, 0.1);
  color: var(--aqua);
  border: 1px solid rgba(0, 199, 183, 0.25);
}

.card-subtitle {
  font-size: 0.8rem;
  color: var(--electric-blue);
  font-weight: 600;
  margin-bottom: 12px;
}

.card-body {
  font-size: 0.85rem;
  color: #9db1d6;
  flex-grow: 1;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0;
}

.card-tag {
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.65rem;
  color: var(--light-grey);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
  margin-top: 12px;
}

.card-footer-info {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #506484;
}

.info-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.phone-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 6px;
  z-index: 10;
}

.control-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn-dislike {
  background: rgba(255, 255, 255, 0.05);
  color: var(--light-grey);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-dislike:hover {
  background: rgba(255, 107, 90, 0.1);
  border-color: var(--warm-coral);
  color: var(--warm-coral);
  transform: scale(1.1);
}

.btn-like {
  background: rgba(255, 255, 255, 0.05);
  color: var(--warm-coral);
  border: 1px solid rgba(255, 107, 90, 0.2);
}

.btn-like:hover {
  background: rgba(255, 107, 90, 0.15);
  border-color: var(--warm-coral);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 107, 90, 0.3);
}

.phone-nav-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 12px 2px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  background: #040814;
}

.phone-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #506484;
  font-size: 0.6rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.phone-nav-item.active {
  color: var(--electric-blue);
}

.phone-nav-item svg {
  stroke-width: 2px;
}

.swipe-tip {
  text-align: center;
  font-size: 0.65rem;
  color: #506484;
  margin-top: 10px;
}

/* Section Header standard styling */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
}

.section-header .subtitle {
  color: var(--electric-blue);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: inline-block;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -1px;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
}

/* What Locally Does Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  z-index: 2;
  position: relative;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: rgba(11, 19, 43, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition-smooth);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(37, 99, 255, 0.08);
  border: 1px solid rgba(37, 99, 255, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric-blue);
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.feature-card:nth-child(2) .feature-icon {
  background: rgba(255, 107, 90, 0.08);
  border-color: rgba(255, 107, 90, 0.15);
  color: var(--warm-coral);
}

.feature-card:nth-child(3) .feature-icon {
  background: rgba(124, 92, 255, 0.08);
  border-color: rgba(124, 92, 255, 0.15);
  color: var(--coral-purple);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
}

/* How It Works Steps */
.steps-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1100px) {
  .steps-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .steps-container {
    grid-template-columns: 1fr;
  }
}

.step-card {
  position: relative;
  text-align: center;
}

.step-num {
  width: 50px;
  height: 50px;
  background: var(--deep-navy);
  border: 2px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--electric-blue);
  position: relative;
  z-index: 2;
}

.step-card::after {
  content: '';
  position: absolute;
  top: 25px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(37, 99, 255, 0.3), rgba(255, 255, 255, 0.02));
  z-index: 1;
}

@media (max-width: 1100px) {
  .step-card::after {
    display: none;
  }
}

.step-card:last-child::after {
  display: none;
}

.step-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.9rem;
}

/* Comparison Section */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

.comp-card {
  background: rgba(11, 19, 43, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.comp-card:hover {
  border-color: rgba(124, 92, 255, 0.2);
  transform: translateY(-4px);
}

.comp-card.highlighted {
  background: linear-gradient(180deg, rgba(14, 23, 53, 0.7) 0%, rgba(11, 19, 43, 0.3) 100%);
  border-color: rgba(37, 99, 255, 0.25);
  box-shadow: var(--shadow-premium);
}

.comp-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(37, 99, 255, 0.12);
  color: var(--electric-blue);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comp-card.highlighted .comp-badge {
  background: rgba(124, 92, 255, 0.12);
  color: var(--coral-purple);
}

.comp-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.comp-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.comp-bullet-item {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
}

.comp-bullet-item svg {
  color: var(--electric-blue);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Trust / Verification badges */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.trust-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition-smooth);
}

.trust-card:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.08);
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: inline-block;
}

.trust-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 0.85rem;
}

/* Join the Pilot & Interactive Forms */
.join-section {
  position: relative;
}

.form-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  z-index: 2;
  position: relative;
}

.tab-btn {
  padding: 12px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 19, 43, 0.5);
  color: #9db1d6;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.15);
}

.tab-btn.active {
  background: var(--electric-blue);
  color: var(--white);
  border-color: var(--electric-blue);
  box-shadow: 0 0 20px rgba(37, 99, 255, 0.35);
}

.form-container-wrapper {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.form-box {
  background: rgba(11, 19, 43, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-premium);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: none;
  position: relative;
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (max-width: 576px) {
  .form-box {
    padding: 24px;
  }
}

.form-box.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

@media (max-width: 576px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--light-grey);
}

.form-input, .form-select {
  width: 100%;
  height: 52px;
  background: rgba(4, 8, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  box-sizing: border-box;
}

.form-textarea {
  width: 100%;
  background: rgba(4, 8, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  min-height: 120px;
  resize: vertical;
  box-sizing: border-box;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--electric-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 255, 0.1);
  background: rgba(4, 8, 20, 0.9);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239db1d6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-select option {
  background-color: #0B132B;
  color: var(--white);
}

.form-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #9db1d6;
  user-select: none;
}

.form-checkbox {
  appearance: none;
  width: 20px;
  height: 20px;
  background: rgba(4, 8, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.form-checkbox:checked {
  background: var(--electric-blue);
  border-color: var(--electric-blue);
}

.form-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 19, 43, 0.96);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-success-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(37, 99, 255, 0.08);
  border: 2px solid var(--electric-blue);
  color: var(--electric-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(37, 99, 255, 0.15);
  animation: scalePop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scalePop {
  from {
    transform: scale(0.6);
  }
  to {
    transform: scale(1);
  }
}

footer {
  background: #040813;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 60px 0 30px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
}

.footer-links {
  display: flex;
  gap: 24px;
}

@media (max-width: 576px) {
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}

.footer-links a {
  font-size: 0.9rem;
  color: #7b8fae;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #516484;
}

@media (max-width: 576px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}
