/* ==========================================================================
   THE RAI FELLOW - CSS STYLE SYSTEM (GOLD & PURPLE THEME)
   Author: Antigravity AI
   ========================================================================== */

/* --- Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Syne:wght@400;500;700;800&display=swap');

/* --- Design Tokens / Variables --- */
:root {
  /* Color Palette (Matched to logo purple and gold) */
  --bg-primary: #0a060f; /* Deep obsidian with logo purple tint */
  --bg-secondary: #120c1a; /* Dark secondary purple-gray */
  --card-bg: rgba(49, 27, 65, 0.35); /* Translucent plum background */
  --card-hover-bg: rgba(66, 36, 87, 0.55); /* Slightly brighter, more saturated plum */
  
  --accent-gold: #dfc067; /* Gold from logo graphic */
  --accent-gold-glow: rgba(223, 192, 103, 0.15);
  --accent-gold-dark: #b19542; /* Darker tone of gold */
  
  --accent-purple: #a855f7; /* High-glowing purple for highlights */
  --accent-purple-glow: rgba(168, 85, 247, 0.15);
  --accent-purple-dark: #7e22ce;
  --logo-purple: #311b41; /* Base logo dark purple */
  
  --text-primary: #f9fafb;
  --text-secondary: #e5e7eb;
  --text-muted: #9ca3af;
  
  --border-light: rgba(223, 192, 103, 0.12); /* Gold-tinted border */
  --border-glow: rgba(223, 192, 103, 0.3);
  --border-glow-purple: rgba(168, 85, 247, 0.3);

  /* Fonts */
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Sizing / Layout */
  --max-width: 1200px;
  --header-height: 80px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* --- Global Background Mesh Gradients --- */
.ambient-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.glow-1 {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: var(--accent-purple-glow);
  filter: blur(80px);
  animation: floatGlow 15s infinite alternate ease-in-out;
}

.glow-2 {
  position: absolute;
  top: 45%;
  left: -20%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: var(--accent-gold-glow);
  filter: blur(100px);
  animation: floatGlow 20s infinite alternate-reverse ease-in-out;
}

.glow-3 {
  position: absolute;
  bottom: 5%;
  right: -10%;
  width: 45vw;
  height: 45vw;
  border-radius: 50%;
  background: var(--accent-purple-glow);
  filter: blur(80px);
  animation: floatGlow 18s infinite alternate ease-in-out;
}

@keyframes floatGlow {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(50px, 40px) scale(1.15);
  }
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
}

h2 .gradient-text {
  color: var(--accent-gold);
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 1rem;
}

p {
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  line-height: 1.7;
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--text-primary);
}

/* --- Common Components --- */

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 0;
}

/* Glassmorphism Card style */
.glass-panel {
  background: var(--card-bg);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  background: var(--card-hover-bg);
  border-color: rgba(223, 192, 103, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Interactive Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--bg-primary);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(223, 192, 103, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(223, 192, 103, 0.35);
  color: var(--bg-primary);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-light);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  background: rgba(223, 192, 103, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(223, 192, 103, 0.1);
}

/* Badge tags */
.badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 50px;
  background: rgba(223, 192, 103, 0.08);
  color: var(--accent-gold);
  border: 1px solid rgba(223, 192, 103, 0.25);
  margin-bottom: 1.25rem;
}

.badge-cyan {
  background: rgba(168, 85, 247, 0.08);
  color: var(--accent-purple);
  border-color: rgba(168, 85, 247, 0.25);
}

/* --- Section Title --- */
.section-title-wrapper {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-title-wrapper h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-gold);
  margin: 1rem auto 0 auto;
  border-radius: 2px;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(10, 6, 15, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  max-width: var(--max-width);
  width: 90%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
}

.logo-img {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--accent-gold);
  box-shadow: 0 0 10px rgba(223, 192, 103, 0.2);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

nav ul li a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
}

nav ul li a:hover {
  color: var(--text-primary);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition-smooth);
}

nav ul li a:hover::after {
  width: 100%;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 1.5rem;
  z-index: 110;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  z-index: 10;
}

.hero-tagline {
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  color: #ffffff;
}

.hero-tagline span {
  color: var(--accent-gold);
}

.hero-description {
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(223, 192, 103, 0.15);
  z-index: 3;
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 6s ease-in-out;
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.08);
}

/* Floating AI Guardrail Circles */
.visual-ring {
  position: absolute;
  border: 1px dashed var(--border-glow);
  border-radius: 50%;
  animation: rotateRing 40s linear infinite;
  pointer-events: none;
}

.ring-1 {
  width: 580px;
  height: 580px;
  border-color: rgba(223, 192, 103, 0.12);
  z-index: 1;
}

.ring-2 {
  width: 650px;
  height: 650px;
  border-color: rgba(168, 85, 247, 0.12);
  animation-duration: 60s;
  animation-direction: reverse;
  z-index: 0;
}

@keyframes rotateRing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   SERVICES SECTION (3 PILLARS)
   ========================================================================== */
.services {
  position: relative;
  background-color: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}

.service-card {
  padding: 3rem 2.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gold);
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(223, 192, 103, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  margin-bottom: 2rem;
  border: 1px solid rgba(223, 192, 103, 0.2);
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: 0 0 20px rgba(223, 192, 103, 0.4);
}

.service-card:nth-child(2) .service-icon {
  background: rgba(168, 85, 247, 0.08);
  color: var(--accent-purple);
  border-color: rgba(168, 85, 247, 0.2);
}

.service-card:nth-child(2):hover .service-icon {
  background: var(--accent-purple);
  color: var(--text-primary);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.service-card:nth-child(3) .service-icon {
  background: rgba(223, 192, 103, 0.08);
  color: var(--accent-gold);
  border-color: rgba(223, 192, 103, 0.2);
}

.service-card:nth-child(3):hover .service-icon {
  background: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: 0 0 20px rgba(223, 192, 103, 0.4);
}

.service-card h3 {
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  flex-grow: 1;
  margin-bottom: 2rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.service-features li::before {
  content: "✓";
  color: var(--accent-gold);
  font-weight: 700;
}

.service-card:nth-child(2) .service-features li::before {
  color: var(--accent-purple);
}

.service-link {
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.service-link span {
  transition: transform var(--transition-fast);
}

.service-card:hover .service-link span {
  transform: translateX(5px);
}

/* ==========================================================================
   FOUNDER PROFILE SECTION
   ========================================================================== */
.about {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: center;
}

.about-image-column {
  position: relative;
}

.avatar-backdrop {
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-light);
  z-index: 1;
}

.avatar-container {
  width: 100%;
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  background: var(--bg-secondary);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Avatar container with Logo as backdrop */
.avatar-graphic {
  width: 100%;
  height: 100%;
  background: #180f24;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.avatar-graphic::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--accent-gold-glow);
  filter: blur(10px);
}

.avatar-symbol {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  color: var(--accent-gold);
  z-index: 2;
}

.avatar-label {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  z-index: 2;
  text-transform: uppercase;
}

.about-details {
  z-index: 10;
}

.credentials-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.credential-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.credential-value {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent-gold);
  font-size: 1.15rem;
}

.credential-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-highlights {
  list-style: none;
  margin-top: 2rem;
}

.about-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about-highlights li strong {
  color: var(--text-primary);
}

.about-highlights li::before {
  content: "→";
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3;
}

/* ==========================================================================
   CONTACT & CONSULTATION SECTION
   ========================================================================== */
.contact {
  position: relative;
  background-color: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.contact-details-box {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(223, 192, 103, 0.08);
  border: 1px solid rgba(223, 192, 103, 0.2);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.contact-detail-content h4 {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-detail-content p, .contact-detail-content a {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin: 0;
}

.contact-detail-content a:hover {
  color: var(--accent-gold);
}

/* Form Styling */
.contact-form-panel {
  padding: 3rem 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: rgba(10, 6, 15, 0.6);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(223, 192, 103, 0.15);
  background: rgba(10, 6, 15, 0.8);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Custom dropdown select styles */
select.form-control {
  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='%239ca3af' 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 1rem center;
  background-size: 1.2rem;
  padding-right: 2.5rem;
}

.submit-btn {
  width: 100%;
  margin-top: 1rem;
}

.form-message {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  display: none;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-sm);
}

.form-message.success {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: block;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  display: block;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 2rem 0;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.footer-brand {
  max-width: 380px;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 5rem;
}

.footer-nav h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav ul li a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-nav ul li a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.social-links {
  display: flex;
  gap: 1.25rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: rgba(223, 192, 103, 0.08);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Delay modifiers for stagger effect */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* ==========================================================================
   PRIVACY POLICY PAGE DETAILS
   ========================================================================== */
.policy-page {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 5rem;
  max-width: 800px;
  margin: 0 auto;
  width: 90%;
}

.policy-header {
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 2rem;
}

.policy-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.policy-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.policy-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.5rem;
  display: block;
}

.policy-content h2::after {
  display: none;
}

.policy-content p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.policy-content ul {
  list-style-type: none;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

.policy-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.policy-content ul li::before {
  content: "•";
  color: var(--accent-gold);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablet Layout (under 1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-visual {
    margin-top: 2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image-column {
    max-width: 450px;
    margin: 0 auto;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Mobile Layout (under 768px) */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .container {
    padding: 3.5rem 0;
  }

  .mobile-nav-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(10, 6, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-light);
    z-index: 105;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    width: 100%;
  }
  
  nav ul li a {
    font-size: 1.25rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .footer-brand {
    max-width: 100%;
  }
  
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
