/* ==========================================================================
   GriLEX - Premium Stylesheet
   Modern, Ultra-responsive, High-contrast Dark/Glass Design
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cabinet+Grotesk:wght@700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Brand Palette */
  --navy-deep: #070B14;
  --navy-dark: #0A0F1D;
  --navy-card: rgba(15, 23, 42, 0.75);
  --navy-card-border: rgba(56, 189, 248, 0.18);
  --navy-surface: #1E293B;

  --sky-brand: #0284C7;
  --sky-light: #38BDF8;
  --sky-glow: rgba(56, 189, 248, 0.25);

  --gold-brand: #F59E0B;
  --gold-light: #FBBF24;
  --gold-glow: rgba(245, 158, 11, 0.3);

  --emerald-brand: #10B981;
  --emerald-light: #34D399;
  --emerald-glow: rgba(16, 185, 129, 0.25);

  --crimson-brand: #EF4444;
  --crimson-light: #F87171;

  --purple-brand: #8B5CF6;
  --purple-light: #A78BFA;

  /* Text Colors */
  --text-primary: #FFFFFF;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;

  /* Typography */
  --font-heading: 'Cabinet Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Glassmorphism & Borders */
  --bg-card: rgba(15, 23, 42, 0.72);
  --bg-card-hover: rgba(30, 41, 59, 0.85);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(56, 189, 248, 0.5);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 35px var(--sky-glow);
  --shadow-gold-glow: 0 0 35px var(--gold-glow);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--navy-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Background Ambient Glow */
.bg-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.28;
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.orb-1 {
  width: 550px;
  height: 550px;
  background: var(--sky-brand);
  top: -150px;
  left: -100px;
}

.orb-2 {
  width: 480px;
  height: 480px;
  background: var(--purple-brand);
  top: 40%;
  right: -150px;
  animation-delay: -6s;
}

.orb-3 {
  width: 500px;
  height: 500px;
  background: var(--gold-brand);
  bottom: -150px;
  left: 20%;
  animation-delay: -12s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 60px) scale(1.08); }
  100% { transform: translate(-30px, 30px) scale(0.95); }
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

p {
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--sky-light) 60%, #93C5FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #FFFBEB 0%, var(--gold-light) 60%, #D97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.badge-brand {
  background: rgba(2, 132, 199, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: var(--sky-light);
}

.badge-gold {
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: var(--gold-light);
}

.badge-green {
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: var(--emerald-light);
}

.badge-crimson {
  background: rgba(239, 68, 68, 0.18);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: var(--crimson-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--sky-brand) 0%, #2563EB 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(2, 132, 199, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.5);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-brand) 0%, #D97706 100%);
  color: #070B14;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.5);
}

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

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

/* Glass Cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-focus);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

/* Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

.brand-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.4);
}

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

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--sky-light);
}

.nav-links a.active {
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--sky-light);
  border-radius: 2px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  padding: 80px 0 100px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.3rem;
  margin: 18px 0 20px;
  letter-spacing: -1px;
}

.hero-content p.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 10px 20px;
  transition: all 0.25s ease;
}

.store-button:hover {
  border-color: var(--sky-light);
  transform: translateY(-2px);
  background: rgba(30, 41, 59, 0.95);
}

.store-icon {
  font-size: 1.8rem;
}

.store-text small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.store-text strong {
  display: block;
  font-size: 1rem;
  font-family: var(--font-heading);
  color: #FFFFFF;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
}

.stat-item h4 {
  font-size: 1.8rem;
  color: var(--sky-light);
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Interactive Phone Mockup Simulator */
.hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-card {
  width: 100%;
  max-width: 375px;
  background: #0F172A;
  border: 2px solid rgba(56, 189, 248, 0.4);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 25px 60px -15px rgba(2, 132, 199, 0.45);
  position: relative;
}

.phone-screen {
  background: #080D1A;
  border-radius: 30px;
  padding: 16px 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Phone Status Bar */
.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  padding: 0 4px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #FFFFFF;
}

.phone-quiz-card {
  background: rgba(30, 41, 59, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.quiz-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--sky-light);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.quiz-question {
  font-size: 0.84rem;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

/* Interactive Option Pills */
.quiz-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 0.78rem;
  margin-bottom: 7px;
  background: rgba(15, 23, 42, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  cursor: pointer;
  user-select: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.quiz-option:hover {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateX(3px);
  color: #FFFFFF;
}

.quiz-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.quiz-option.correct {
  background: rgba(16, 185, 129, 0.22) !important;
  border-color: #10B981 !important;
  color: #A7F3D0 !important;
  font-weight: 700;
}

.quiz-option.correct .quiz-letter {
  background: #10B981;
  color: #070B14;
}

.quiz-option.incorrect {
  background: rgba(239, 68, 68, 0.22) !important;
  border-color: #EF4444 !important;
  color: #FECACA !important;
  font-weight: 700;
}

.quiz-option.incorrect .quiz-letter {
  background: #EF4444;
  color: #FFFFFF;
}

/* AI Feedback Box inside Mockup */
.phone-ai-box {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.2), rgba(124, 58, 237, 0.2));
  border: 1.5px solid rgba(56, 189, 248, 0.4);
  border-radius: 16px;
  padding: 12px;
  font-size: 0.76rem;
  color: #E2E8F0;
  line-height: 1.45;
  display: none;
  animation: slideUpFade 0.3s ease-out forwards;
}

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

.phone-ai-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  color: #38BDF8;
  margin-bottom: 6px;
  font-size: 0.78rem;
}

.phone-ai-feedback-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-feedback-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 0.68rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.phone-feedback-btn:hover,
.phone-feedback-btn.voted {
  background: rgba(16, 185, 129, 0.25);
  border-color: #10B981;
  color: #FFFFFF;
}

.phone-next-btn {
  margin-top: 4px;
  width: 100%;
  padding: 7px;
  background: rgba(56, 189, 248, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sky-light);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.phone-next-btn:hover {
  background: var(--sky-brand);
  color: #FFFFFF;
}

/* Sections */
.section {
  padding: 90px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin: 14px 0 16px;
}

.section-header p {
  font-size: 1.08rem;
}

/* Feature Showcase Grids */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.feature-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 22px;
}

.icon-blue { background: rgba(2, 132, 199, 0.15); border: 1px solid rgba(2, 132, 199, 0.3); }
.icon-gold { background: rgba(245, 158, 11, 0.15); border: 1px solid rgba(245, 158, 11, 0.3); }
.icon-green { background: rgba(16, 185, 129, 0.15); border: 1px solid rgba(16, 185, 129, 0.3); }
.icon-purple { background: rgba(139, 92, 246, 0.15); border: 1px solid rgba(139, 92, 246, 0.3); }
.icon-crimson { background: rgba(239, 68, 68, 0.15); border: 1px solid rgba(239, 68, 68, 0.3); }

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

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

/* Transparency & Highlight Box */
.transparency-box {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.transparency-points {
  list-style: none;
}

.transparency-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.98rem;
  color: var(--text-primary);
}

.transparency-points li span.check {
  background: rgba(16, 185, 129, 0.2);
  color: #10B981;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Carieră MAI Interactive Tabs */
.cariera-filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.cariera-tab-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.cariera-tab-btn:hover,
.cariera-tab-btn.active {
  background: rgba(2, 132, 199, 0.25);
  border-color: var(--sky-light);
  color: #FFFFFF;
}

/* Pricing Toggle Switch */
.pricing-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  padding: 6px;
  max-width: 440px;
  margin: 0 auto 48px;
  gap: 6px;
}

.pricing-toggle-btn {
  flex: 1;
  padding: 10px 18px;
  border-radius: 9999px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.pricing-toggle-btn.active {
  background: linear-gradient(135deg, var(--sky-brand) 0%, #2563EB 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.pricing-card {
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: var(--shadow-gold-glow);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
}

.pricing-header {
  margin-bottom: 24px;
}

.pricing-header h3 {
  font-size: 1.45rem;
  margin-bottom: 6px;
}

.price {
  font-size: 2.8rem;
  font-family: var(--font-heading);
  font-weight: 900;
  color: #FFFFFF;
  margin: 16px 0 8px;
  transition: all 0.25s ease;
}

.price span.period {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  margin: 24px 0 32px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.pricing-features li.active {
  color: var(--text-primary);
  font-weight: 600;
}

/* FAQ Accordion */
.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: #FFFFFF;
  user-select: none;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--sky-light);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 350px;
  padding-bottom: 22px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* Legal Documents Layout */
.legal-page {
  padding: 60px 0 100px;
}

.legal-header {
  text-align: center;
  margin-bottom: 50px;
}

.legal-header h1 {
  font-size: 2.8rem;
  margin: 16px 0 12px;
}

.legal-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.legal-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.legal-sidebar-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: #FFFFFF;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.legal-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-nav-list a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: block;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.legal-nav-list a:hover,
.legal-nav-list a.active {
  color: var(--sky-light);
  background: rgba(56, 189, 248, 0.1);
  font-weight: 600;
}

.legal-body {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.55rem;
  margin-bottom: 16px;
  color: #FFFFFF;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
}

.legal-section h3 {
  font-size: 1.2rem;
  margin: 20px 0 10px;
  color: var(--sky-light);
}

.legal-section p {
  margin-bottom: 14px;
  font-size: 0.98rem;
  line-height: 1.7;
}

.legal-section ul {
  margin: 12px 0 18px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.legal-section li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-callout {
  background: rgba(2, 132, 199, 0.1);
  border-left: 4px solid var(--sky-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 18px 20px;
  margin: 20px 0;
  font-size: 0.95rem;
  color: #E2E8F0;
}

.legal-callout.gold {
  background: rgba(245, 158, 11, 0.1);
  border-left-color: var(--gold-brand);
}

.legal-callout.emerald {
  background: rgba(16, 185, 129, 0.1);
  border-left-color: var(--emerald-brand);
}

/* Footer */
.site-footer {
  background: #05080E;
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 30px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  margin-top: 14px;
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: #FFFFFF;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--sky-light);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
}

.footer-bottom a:hover {
  color: #FFFFFF;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .transparency-box {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .legal-container {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    top: 78px;
    left: 0;
    width: 100%;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    border-bottom: 1px solid var(--border-subtle);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }

  .nav-links.mobile-open {
    transform: translateY(0);
  }

  .nav-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Contact & Form Inputs */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: start;
}

.contact-info-card {
  padding: 36px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.contact-item-icon {
  font-size: 1.8rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(15, 23, 42, 0.85);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #FFFFFF;
  outline: none;
  transition: all 0.25s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--sky-light);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
  background: rgba(30, 41, 59, 0.95);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

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

