/* ============================================================
   RADIOWORKS, LLC — Professional Website Stylesheet
   ============================================================ */

:root {
  /* Color System */
  --bg-deep: #080e1a;
  --bg-primary: #0c1225;
  --bg-card: #111b33;
  --bg-card-hover: #152040;
  --bg-surface: #161f3d;
  --border-subtle: #1e2d50;
  --border-medium: #263860;
  --accent-cyan: #06b6d4;
  --accent-cyan-dim: #0891b2;
  --accent-blue: #3b82f6;
  --accent-indigo: #6366f1;
  --accent-teal: #14b8a6;
  --text-primary: #eef2f8;
  --text-secondary: #a0b0cc;
  --text-muted: #667799;
  --text-inverse: #080e1a;
  --gradient-hero: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #6366f1 100%);
  --gradient-card: linear-gradient(145deg, rgba(6, 182, 212, 0.06) 0%, rgba(99, 102, 241, 0.04) 100%);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow-cyan: 0 0 30px rgba(6, 182, 212, 0.15);
  --shadow-glow-blue: 0 0 30px rgba(59, 130, 246, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  --max-width: 1260px;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ============================================================
   Typography
   ============================================================ */

h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; }

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent-cyan);
  border-radius: 1px;
}

.section-title {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 620px;
  line-height: 1.7;
}

/* ============================================================
   Container & Layout
   ============================================================ */

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

section { padding: 5rem 0; position: relative; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ============================================================
   Header / Navigation
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.9rem 0;
  transition: background var(--transition-base), box-shadow var(--transition-base), padding var(--transition-base);
}

.site-header.scrolled {
  background: rgba(8, 14, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-hero);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  flex-shrink: 0;
}

.logo-text .logo-name { display: block; line-height: 1.15; }
.logo-text .logo-domain {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.nav-links { display: flex; align-items: center; gap: 2rem; }

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  border-radius: 1px;
  transition: width var(--transition-base);
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.3rem;
  background: var(--gradient-hero);
  color: #fff !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  transition: opacity var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast) !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.92; transform: translateY(-1px); box-shadow: var(--shadow-glow-cyan); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   Hero Section
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.hero h1 .highlight {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-hero);
  color: #fff;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.25);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(6, 182, 212, 0.35); }

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-medium);
}

.btn-outline:hover { border-color: var(--accent-cyan); background: rgba(6, 182, 212, 0.04); }

.btn-ghost {
  background: transparent;
  color: var(--accent-cyan);
  padding: 0.75rem 0.5rem;
}

.btn-ghost:hover { color: var(--accent-blue); }

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

.hero-orb {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--gradient-hero);
  opacity: 0.12;
  filter: blur(60px);
  position: absolute;
  animation: orb-float 6s ease-in-out infinite;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(10px, -15px) scale(1.05); }
  66% { transform: translate(-5px, 10px) scale(0.95); }
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-card.offset {
  position: absolute;
  top: 50px;
  right: -30px;
  width: 85%;
  z-index: -1;
  opacity: 0.5;
}

.hero-card-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.hero-card h4 { margin-bottom: 0.3rem; font-size: 0.95rem; }

.hero-card p {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.5;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.hero-stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   Services Section
   ============================================================ */

.services {
  background: var(--bg-primary);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-label { justify-content: center; }
.section-header .section-label::before { display: none; }
.section-header .section-label::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent-cyan);
  border-radius: 1px;
}

.section-header .section-subtitle { margin: 0 auto; }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-hero);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-medium);
}

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

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  border: 1px solid var(--border-subtle);
}

.service-card h3 { margin-bottom: 0.6rem; font-size: 1.05rem; }
.service-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-cyan);
  transition: gap var(--transition-fast);
}

.service-card .service-link:hover { gap: 0.6rem; }

/* ============================================================
   Industries Section
   ============================================================ */

.industries { background: var(--bg-deep); }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.industry-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.industry-item:hover {
  border-color: var(--accent-cyan);
  background: var(--bg-card-hover);
}

.industry-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-cyan);
  flex-shrink: 0;
}

.industry-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.industry-item:hover span { color: var(--text-primary); }

/* ============================================================
   About Section
   ============================================================ */

.about { background: var(--bg-primary); }

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-shape {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  opacity: 0.08;
}

.about-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  max-width: 240px;
}

.about-card .stat-big {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-card .stat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-text .highlight-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.about-text .highlight-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-primary);
  font-weight: 500;
}

.about-text .highlight-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-cyan);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   Process Section
   ============================================================ */

.process { background: var(--bg-deep); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1.5px;
  background: var(--border-subtle);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-cyan);
  margin: 0 auto 1rem;
  transition: all var(--transition-base);
}

.process-step:hover .step-number {
  background: var(--accent-cyan);
  color: #fff;
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

.process-step h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   CTA Section
   ============================================================ */

.cta-section {
  background: var(--bg-primary);
  text-align: center;
}

.cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h2 { margin-bottom: 0.75rem; position: relative; }
.cta-box p { color: var(--text-secondary); max-width: 500px; margin: 0 auto 1.5rem; position: relative; font-size: 0.95rem; }
.cta-box .btn { position: relative; }

/* ============================================================
   Contact Section
   ============================================================ */

.contact { background: var(--bg-deep); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info h3 { margin-bottom: 1rem; }
.contact-info > p { color: var(--text-secondary); margin-bottom: 2rem; font-size: 0.9rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item h4 { font-size: 0.85rem; margin-bottom: 0.15rem; }
.contact-item span { font-size: 0.85rem; color: var(--text-secondary); }

.contact-map {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  height: 100%;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Leaflet overrides */
.contact-map .leaflet-container {
  height: 100%;
  min-height: 380px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  font-family: var(--font-sans);
}

.contact-map .leaflet-control-zoom a {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.contact-map .leaflet-control-zoom a:hover {
  background: var(--bg-card-hover);
  color: var(--accent-cyan);
}

.contact-map .leaflet-control-attribution {
  background: rgba(12, 18, 37, 0.85);
  color: var(--text-muted);
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 3px;
}

.contact-map .leaflet-control-attribution a {
  color: var(--accent-cyan);
}

.contact-map .leaflet-popup-content-wrapper {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  line-height: 1.5;
}

.contact-map .leaflet-popup-tip {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
}

.contact-map .leaflet-popup-content {
  margin: 10px 14px;
  color: var(--text-secondary);
}

.contact-map .leaflet-popup-content strong {
  color: var(--text-primary);
  font-size: 0.85rem;
}

.contact-map .leaflet-popup-close-button {
  color: var(--text-muted) !important;
  font-size: 1.1rem;
  padding: 4px 8px 0 0;
}

.contact-map .leaflet-popup-close-button:hover {
  color: var(--accent-cyan) !important;
  background: none;
}

/* Custom map marker */
.custom-marker {
  background: none !important;
  border: none !important;
}

.marker-pin {
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  background: var(--gradient-hero);
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 10px rgba(6, 182, 212, 0.4);
}

.marker-pulse {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.3);
  position: absolute;
  top: -10px;
  left: -10px;
  animation: markerPulse 2s ease-out infinite;
}

@keyframes markerPulse {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(3.5); opacity: 0; }
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 0.8rem;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  transition: color var(--transition-fast);
}

.footer-col a:hover { color: var(--accent-cyan); }

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

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

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

.footer-bottom-links a:hover { color: var(--accent-cyan); }

/* ============================================================
   Page Header (Internal Pages)
   ============================================================ */

.page-header {
  padding: 8rem 0 3rem;
  background: var(--bg-primary);
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}

.page-header h1 {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

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

/* ============================================================
   Content Pages (Privacy / Terms)
   ============================================================ */

.content-page {
  padding: 4rem 0;
  background: var(--bg-deep);
}

.content-page .container {
  max-width: 800px;
}

.content-section {
  margin-bottom: 2.5rem;
}

.content-section h2 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.content-section h3 {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin: 1.2rem 0 0.5rem;
}

.content-section p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 0.8rem;
}

.content-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
}

.content-section ul li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.3rem;
}

.content-section .effective-date {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 2rem;
}

/* ============================================================
   Animations
   ============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }

  .mobile-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: var(--bg-primary);
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    border-left: 1px solid var(--border-subtle);
    transition: right var(--transition-base);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open { right: 0; }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-visual { display: none; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }

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

  .about-content { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual { display: none; }

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

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

  .hero-stats { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
