/* ============================================
   ABCOM Consulting — Design System
   ============================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
  --navy-950: #0a0f1c;
  --navy-900: #0f1629;
  --navy-800: #161d35;
  --navy-700: #1e2744;
  --navy-600: #2a3456;
  --cyan-400: #06b6d4;
  --cyan-500: #0891b2;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --white: #ffffff;
  --gray-100: #f1f5f9;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--navy-950);
  color: #e2e8f0;
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  flex: 1;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

::selection {
  background-color: rgba(6, 182, 212, 0.3);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--cyan-400);
  outline-offset: 2px;
}

/* --- Layout --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-tinted { background: rgba(15, 22, 41, 0.3); }

/* --- Typography --- */
.gradient-text {
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label {
  display: inline-block;
  color: var(--cyan-400);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.heading-xl {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.heading-lg {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.heading-md {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.heading-sm {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

.text-lg { font-size: 1.125rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-gray { color: var(--gray-400); }
.text-gray-dark { color: var(--gray-500); }
.text-white { color: var(--white); }
.text-cyan { color: var(--cyan-400); }
.text-center { text-align: center; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-relaxed { line-height: 1.7; }
.max-w-2xl { max-width: 42rem; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

@media (min-width: 640px) {
  .heading-xl { font-size: 3rem; }
  .heading-lg { font-size: 2.25rem; }
}

@media (min-width: 768px) {
  .heading-xl { font-size: 3.75rem; }
}

@media (min-width: 1024px) {
  .heading-xl { font-size: 4.5rem; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-500));
  color: var(--white);
}
.btn-primary:hover { opacity: 0.9; }

.btn-secondary {
  background: var(--navy-700);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-secondary:hover { background: var(--navy-600); }

.btn-outline {
  border: 1px solid rgba(6, 182, 212, 0.5);
  color: var(--cyan-400);
}
.btn-outline:hover { background: rgba(6, 182, 212, 0.1); }

.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn-md { padding: 0.75rem 1.5rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* --- Glass Card --- */
.glass-card {
  background: rgba(15, 22, 41, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.glass-card-hover:hover {
  background: rgba(18, 25, 48, 0.75);
  border-color: rgba(6, 182, 212, 0.12);
  transform: translateY(-2px);
}

/* Gradient border pseudo-element */
.glass-card-hover::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.5), rgba(59, 130, 246, 0.5));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

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

/* --- Badge --- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-new {
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-500));
  color: var(--white);
}

/* --- Icon Box --- */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(59, 130, 246, 0.1));
  color: var(--cyan-400);
  flex-shrink: 0;
}

.icon-box svg {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-box-lg svg {
  width: 1.75rem;
  height: 1.75rem;
}

/* --- Gradient Divider --- */
.gradient-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-400), var(--blue-500), transparent);
}

/* --- Grid Layouts --- */
.grid-2 { display: grid; gap: 1.5rem; }
.grid-3 { display: grid; gap: 1.5rem; }
.grid-4 { display: grid; gap: 1.5rem; }
.grid-5 { display: grid; gap: 1rem; }

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

@media (min-width: 768px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}

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

.two-col {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.items-center { align-items: center; }
.items-start { align-items: start; }

/* --- Flex Helpers --- */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.justify-center { justify-content: center; }

.btn-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .btn-group { flex-direction: row; justify-content: center; }
}

/* ============================================
   HEADER
   ============================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
}

#site-header.scrolled {
  background: rgba(10, 15, 28, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  position: relative;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-300);
  transition: color 0.2s ease;
}

.nav-link:hover { color: var(--white); }
.nav-link.active { color: var(--cyan-400); }

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan-400), var(--blue-500));
  border-radius: 9999px;
}

.desktop-cta { display: none; }

@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
  .desktop-cta { display: inline-flex; }
  .mobile-toggle { display: none; }
}

/* Mobile Nav */
.mobile-toggle {
  display: flex;
  padding: 0.5rem;
  color: var(--gray-300);
  transition: color 0.2s;
}

.mobile-toggle:hover { color: var(--white); }

.mobile-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-toggle .icon-close { display: none; }
.mobile-toggle.open .icon-menu { display: none; }
.mobile-toggle.open .icon-close { display: block; }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 73px 0 0 0;
  background: rgba(10, 15, 28, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 49;
}

.mobile-nav.open { display: block; }

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1.5rem;
}

.mobile-nav-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-300);
  padding: 0.75rem;
  width: 100%;
  text-align: center;
  transition: color 0.2s;
}

.mobile-nav-link:hover { color: var(--white); }
.mobile-nav-link.active { color: var(--cyan-400); }

@media (min-width: 1024px) {
  .mobile-nav { display: none !important; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 4rem 0;
}

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

.footer-col { min-width: 0; }

.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-desc {
  color: var(--gray-400);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 1rem;
}

.footer-cta-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--cyan-400);
  transition: color 0.2s;
}
.footer-cta-link:hover { color: #22d3ee; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color 0.2s;
}

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

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-legal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
}

@media (min-width: 640px) { .footer-legal-inner { flex-direction: row; } }

.footer-legal-inner p {
  font-size: 0.75rem;
  color: var(--gray-500);
}

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

.footer-legal-links a {
  font-size: 0.75rem;
  color: var(--gray-500);
  transition: color 0.2s;
}

.footer-legal-links a:hover { color: var(--cyan-400); }

/* ============================================
   PAGE HEADER (shared across pages)
   ============================================ */
.page-header {
  position: relative;
  padding-top: 73px;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 182, 212, 0.05), transparent);
}

.page-header-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  text-align: center;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 73px;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}

.hero-orb-1 {
  top: 25%;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  background: rgba(6, 182, 212, 0.05);
}

.hero-orb-2 {
  bottom: 25%;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  background: rgba(59, 130, 246, 0.05);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  text-align: center;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(15, 22, 41, 0.5);
}

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

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

.stat-item { text-align: center; }

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
}

@media (min-width: 640px) { .stat-value { font-size: 2.25rem; } }

.stat-label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   SERVICES OVERVIEW (Home)
   ============================================ */
.service-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cyan-400);
  transition: gap 0.2s;
}

.card-link:hover { gap: 0.5rem; }

.card-link svg {
  width: 1rem;
  height: 1rem;
}

/* ============================================
   SECTION HEADING
   ============================================ */
.section-heading {
  margin-bottom: 3rem;
}

.section-heading.centered { text-align: center; }

.section-heading p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--gray-400);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(59, 130, 246, 0.1));
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 22, 41, 0.8);
}

.cta-banner-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}

.cta-banner-orb-1 {
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(6, 182, 212, 0.05);
}

.cta-banner-orb-2 {
  bottom: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(59, 130, 246, 0.05);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .cta-banner-content { padding: 5rem 3rem; }
}

/* ============================================
   SERVICES PAGE — Detail Blocks
   ============================================ */
.service-block {
  scroll-margin-top: 6rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .service-detail { grid-template-columns: 1fr 1fr; }
  .service-detail.reverse .service-detail-content { order: 2; }
  .service-detail.reverse .service-detail-features { order: 1; }
}

.service-detail-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.service-detail-content p {
  color: var(--gray-400);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--gray-300);
}

.feature-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--cyan-400);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.features-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story p {
  color: var(--gray-400);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-story p:last-child { margin-bottom: 0; }

.value-card {
  text-align: center;
}

.value-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ============================================
   FORMS
   ============================================ */
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-300);
  margin-bottom: 0.375rem;
}

.form-label .required { color: var(--cyan-400); }
.form-label .optional { color: var(--gray-500); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-500);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--cyan-400);
  box-shadow: 0 0 0 1px var(--cyan-400);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2394a3b8'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

.form-select option {
  background: var(--navy-800);
  color: var(--white);
}

.form-textarea { resize: vertical; }

.form-hint {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 0.75rem;
}

.form-hint-left { text-align: left; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.contact-info-value {
  color: var(--gray-400);
}

/* ============================================
   PRIVACY / DSAR PAGES
   ============================================ */
.privacy-toc { margin-bottom: 3rem; }

.privacy-toc a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color 0.2s;
  display: block;
  padding: 0.25rem 0;
}

.privacy-toc a:hover { color: var(--cyan-400); }

.privacy-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.privacy-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.privacy-content p {
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy-content p:last-child { margin-bottom: 0; }

.privacy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.privacy-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.privacy-content strong { color: var(--white); }

.privacy-content a {
  color: var(--cyan-400);
  transition: opacity 0.2s;
}

.privacy-content a:hover { text-decoration: underline; }

.privacy-section {
  margin-bottom: 3rem;
  scroll-margin-top: 6rem;
}

/* Privacy table */
.privacy-table {
  width: 100%;
  font-size: 0.875rem;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.privacy-table th {
  text-align: left;
  padding: 0.75rem 1rem 0.75rem 0;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-table td {
  padding: 0.625rem 1rem 0.625rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.privacy-table .yes { color: var(--cyan-400); }

/* Summary box */
.summary-box { padding: 1.5rem; }

.summary-box h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.summary-box ul {
  font-size: 0.875rem;
}

/* DSAR request type cards */
.dsar-type-card {
  text-align: center;
  padding: 1.25rem;
}

.dsar-type-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.dsar-type-card p {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ============================================
   404 PAGE
   ============================================ */
.not-found {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 73px;
}

.not-found-code {
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-in {
  animation: fade-in 0.6s ease-out forwards;
}

.animate-fade-in-up {
  animation: fade-in-up 0.6s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.4s; opacity: 0; }

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   UTILITIES
   ============================================ */
.overflow-x-auto { overflow-x: auto; }
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.mx-auto { margin-left: auto; margin-right: auto; }
.bg-navy-dark { background: var(--navy-900); }
.hover-underline:hover { text-decoration: underline; }
