/* ============================================================
   Bhugesh Investments LLC — Main Stylesheet
   Design System: "Terracotta & Midnight"
   ============================================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
  /* Palette */
  --color-deep: #0d1117;
  --color-surface: #161b22;
  --color-surface-raised: #1c2433;
  --color-cream: #faf7f2;
  --color-terracotta: #d4705a;
  --color-terracotta-hover: #c05a45;
  --color-sage: #7a9b8a;
  --color-sage-hover: #6a8b7a;
  --color-gold: #c9a24e;
  --color-gold-hover: #b8923e;
  --color-sky: #5b9bd5;
  --color-sky-hover: #4a8bc5;
  --color-text: #1a1d23;
  --color-text-light: #faf7f2;
  --color-text-muted: #6e6b64;
  --color-border: #e0dbd2;
  --color-border-dark: #2a3344;
  --color-error: #c73e3e;
  --color-success: #3b8c5e;

  /* Typography */
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'SF Mono', 'Cascadia Code', 'Consolas', monospace;

  /* Sizing & Rhythm */
  --max-width: 1200px;
  --nav-height: 72px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-terracotta);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--color-terracotta-hover);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-deep);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* --- Navigation --- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease;
}
.site-nav.scrolled {
  box-shadow: var(--shadow-sm);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-deep);
  text-decoration: none;
}
.nav-brand:hover { color: var(--color-terracotta); }
.nav-logo {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--color-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream);
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-md);
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--color-border);
  color: var(--color-deep);
}

.nav-cta {
  background: var(--color-deep) !important;
  color: var(--color-cream) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: var(--radius-md) !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--color-terracotta) !important;
  color: var(--color-cream) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-deep);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero Section --- */
.hero {
  padding: calc(var(--nav-height) + 3rem) 0 4rem;
  overflow: hidden;
  position: relative;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-content {
  max-width: 540px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-deep);
  color: var(--color-gold);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--color-terracotta);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero h1 {
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--color-terracotta);
}
.hero p {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-deep);
  color: var(--color-cream);
  border-color: var(--color-deep);
}
.btn-primary:hover {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
  color: var(--color-cream);
}
.btn-secondary {
  background: transparent;
  color: var(--color-deep);
  border-color: var(--color-border);
}
.btn-secondary:hover {
  border-color: var(--color-deep);
  background: var(--color-deep);
  color: var(--color-cream);
}
.btn-terracotta {
  background: var(--color-terracotta);
  color: var(--color-cream);
  border-color: var(--color-terracotta);
}
.btn-terracotta:hover {
  background: var(--color-terracotta-hover);
  border-color: var(--color-terracotta-hover);
  color: var(--color-cream);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-geo {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
}
.hero-geo .ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  inset: 0;
}
.hero-geo .ring:nth-child(2) {
  inset: 12%;
  border-color: var(--color-gold);
  border-width: 1px;
  border-style: dashed;
}
.hero-geo .ring:nth-child(3) {
  inset: 30%;
  background: var(--color-deep);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-geo .ring:nth-child(4) {
  inset: 50%;
  background: var(--color-terracotta);
  border: none;
  opacity: 0.15;
}
.hero-geo-center {
  position: absolute;
  inset: 30%;
  background: var(--color-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--color-cream);
  text-align: center;
  padding: 1rem;
}
.hero-geo-center .big-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
}
.hero-geo-center .big-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 0.3rem;
}

/* Floating accent nodes */
.hero-node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-deep);
  border: 2px solid var(--color-cream);
  box-shadow: 0 0 0 4px var(--color-terracotta);
}
.hero-node.n1 { top: 8%; right: 18%; }
.hero-node.n2 { bottom: 22%; left: 8%; background: var(--color-gold); box-shadow: 0 0 0 4px var(--color-gold); opacity: 0.3; }
.hero-node.n3 { top: 45%; right: 5%; width: 8px; height: 8px; box-shadow: 0 0 0 4px var(--color-sky); }

/* --- Services Section --- */
.services {
  padding: 5rem 0;
  background: var(--color-deep);
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--color-terracotta);
  opacity: 0.06;
  pointer-events: none;
}
.services::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--color-sky);
  opacity: 0.05;
  pointer-events: none;
}
.services .section-label { color: var(--color-gold); }
.services .section-title { color: var(--color-cream); }
.services .section-subtitle { color: #b0aca5; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-terracotta), var(--color-gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-dark);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.service-icon.sys { background: rgba(212,112,90,0.15); color: var(--color-terracotta); }
.service-icon.net { background: rgba(201,162,78,0.15); color: var(--color-gold); }
.service-icon.sec { background: rgba(91,155,213,0.15); color: var(--color-sky); }
.service-icon.dat { background: rgba(122,155,138,0.15); color: var(--color-sage); }
.service-icon.dev { background: rgba(212,112,90,0.15); color: var(--color-terracotta); }
.service-icon.cld { background: rgba(201,162,78,0.15); color: var(--color-gold); }
.service-card h3 {
  color: var(--color-cream);
  margin-bottom: 0.6rem;
}
.service-card p {
  color: #b0aca5;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- About Section --- */
.about {
  padding: 5rem 0;
}
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-block {
  background: var(--color-deep);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  color: var(--color-cream);
  position: relative;
}
.about-block::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(250,247,242,0.1);
  border-radius: calc(var(--radius-xl) - 4px);
  pointer-events: none;
}
.about-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.about-stat {
  text-align: center;
}
.about-stat .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  display: block;
  line-height: 1;
}
.about-stat .lbl {
  font-size: 0.8rem;
  color: #b0aca5;
  margin-top: 0.3rem;
}
.about-content h2 { margin-bottom: 1.25rem; }
.about-content .lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}
.about-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
  margin-bottom: 0;
}
.about-features li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-terracotta);
  border-radius: 50%;
  margin-top: 0.55rem;
  flex-shrink: 0;
}

/* --- Process Section --- */
.process {
  padding: 5rem 0;
  background: var(--color-deep);
  color: var(--color-text-light);
}
.process .section-label { color: var(--color-gold); }
.process .section-title { color: var(--color-cream); }
.process .section-subtitle { color: #b0aca5; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.process-step {
  background: var(--color-surface);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  counter-increment: step;
}
.process-step .step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-terracotta);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.process-step h3 {
  color: var(--color-cream);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.process-step p {
  color: #b0aca5;
  font-size: 0.9rem;
  margin-bottom: 0;
}
.process-connector {
  display: none;
}

/* --- Industries Section --- */
.industries {
  padding: 5rem 0;
  background: var(--color-cream);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.industry-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.industry-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.industry-card .ind-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.industry-card h4 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}
.industry-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* --- Stats Section --- */
.stats {
  padding: 4rem 0;
  background: var(--color-surface-raised);
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {
  position: relative;
  z-index: 1;
}
.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}
.stat-item .stat-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b0aca5;
}
.stat-divider {
  display: none;
}

/* --- Contact Section --- */
.contact {
  padding: 5rem 0;
}
.contact .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--color-text-muted); margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-detail .cd-icon {
  width: 44px;
  height: 44px;
  background: var(--color-deep);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream);
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-detail .cd-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.15rem;
  font-weight: 500;
}
.contact-detail .cd-text span {
  color: var(--color-deep);
  font-weight: 500;
}
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-field.full {
  grid-column: 1 / -1;
}
.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-deep);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-cream);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-deep);
  box-shadow: 0 0 0 3px rgba(13,17,23,0.08);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-submit {
  margin-top: 0.5rem;
}
.form-message {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}
.form-message.success {
  display: block;
  background: #eaf5ee;
  color: var(--color-success);
  border: 1px solid #c3e6ce;
}
.form-message.error {
  display: block;
  background: #fdf0ef;
  color: var(--color-error);
  border: 1px solid #f5c6c6;
}

/* --- CTA Section --- */
.cta-section {
  padding: 5rem 0;
  background: var(--color-deep);
  text-align: center;
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--color-terracotta);
  opacity: 0.06;
  pointer-events: none;
}
.cta-section .container {
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  color: var(--color-cream);
  margin-bottom: 1rem;
}
.cta-section p {
  color: #b0aca5;
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Footer --- */
.site-footer {
  background: var(--color-surface);
  color: #b0aca5;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--color-border-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-brand {
  color: var(--color-cream);
  margin-bottom: 0.75rem;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #8b8880;
}
.footer-col h4 {
  color: var(--color-cream);
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  color: #8b8880;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer-col ul li a:hover { color: var(--color-cream); }
.footer-bottom {
  border-top: 1px solid var(--color-border-dark);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}
.footer-bottom a { color: #8b8880; }
.footer-bottom a:hover { color: var(--color-cream); }

/* --- Policy Pages --- */
.policy-page {
  padding: calc(var(--nav-height) + 3rem) 0 4rem;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.policy-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.5rem;
  color: var(--color-deep);
}
.policy-page .policy-date {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}
.policy-page h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-border);
}
.policy-page p,
.policy-page li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text);
}
.policy-page ul { margin-bottom: 1.5rem; }

/* Policy-specific nav */
.policy-nav {
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-border);
}
.policy-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { font-size: 16px; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-cream);
    flex-direction: column;
    padding: calc(var(--nav-height) + 1rem) 1.5rem 2rem;
    gap: 0;
    box-shadow: var(--shadow-xl);
    transition: right 0.3s ease;
    align-items: stretch;
  }
  .nav-links.active { right: 0; }
  .nav-links a { padding: 0.75rem 0.5rem; font-size: 1rem; }
  .nav-toggle { display: flex; }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }

  .about .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-block { padding: 2rem 1.5rem; }

  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .stats .container { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .stat-item .stat-number { font-size: 2.4rem; }

  .contact .container {
    grid-template-columns: 1fr;
  }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-brand .nav-brand { justify-content: center; }
}

@media (max-width: 480px) {
  .hero { padding-top: calc(var(--nav-height) + 2rem); }
  .hero h1 { font-size: 2rem; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; width: 100%; }
  .industries-grid { grid-template-columns: 1fr; }
  .stats .container { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
}
