/* ============================================================
   BALHENCE — Apple-Inspired Minimalist Stylesheet
   Light theme, massive whitespace, scroll animations
   ============================================================ */

:root {
  /* Surfaces */
  --bg:          #ffffff;
  --bg-alt:      #f5f5f7;
  --bg-dark:     #1d1d1f;
  --bg-dark-alt: #111111;

  /* Text */
  --text-primary:   #1d1d1f;
  --text-secondary: #6e6e73;
  --text-tertiary:  #86868b;
  --text-on-dark:   #f5f5f7;
  --text-on-dark-secondary: #a1a1a6;

  /* Accent */
  --accent:       #0071e3;
  --accent-hover: #0077ed;
  --accent-light: rgba(0, 113, 227, 0.08);
  --accent-muted: rgba(0, 113, 227, 0.12);

  /* Status */
  --green:  #34c759;
  --amber:  #ff9f0a;
  --red:    #ff3b30;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  5rem;
  --space-2xl: 7.5rem;
  --space-3xl: 10rem;

  /* Typography */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1.0625rem;
  --text-lg:   1.3125rem;
  --text-xl:   1.75rem;
  --text-2xl:  2.5rem;
  --text-3xl:  3.5rem;
  --text-4xl:  4.5rem;

  /* Layout */
  --max-w:      980px;
  --max-w-wide: 1200px;
  --max-w-text: 600px;

  /* Radius */
  --radius:     16px;
  --radius-sm:  10px;
  --radius-pill: 980px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.08);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.06), 0 0 1px rgba(0,0,0,0.08);

  /* Motion */
  --ease:     cubic-bezier(0.25, 0.1, 0.25, 1.0);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur:      0.6s;
  --dur-sm:   0.3s;
}

/* ── Dark Theme ──────────────────────────────────────────── */
[data-theme="dark"] {
  --bg:          #000000;
  --bg-alt:      #111111;
  --bg-dark:     #000000;
  --bg-dark-alt: #0a0a0a;

  --text-primary:   #f5f5f7;
  --text-secondary: #a1a1a6;
  --text-tertiary:  #6e6e73;
  --text-on-dark:   #f5f5f7;
  --text-on-dark-secondary: #a1a1a6;

  --accent:       #2997ff;
  --accent-hover: #40a9ff;
  --accent-light: rgba(41, 151, 255, 0.12);
  --accent-muted: rgba(41, 151, 255, 0.15);

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.5);
  --shadow-card: 0 1px 4px rgba(0,0,0,0.3), 0 0 1px rgba(255,255,255,0.05);
}

[data-theme="dark"] nav {
  background: rgba(0, 0, 0, 0.72);
}

[data-theme="dark"] nav.scrolled {
  border-bottom-color: rgba(255,255,255,0.08);
}

[data-theme="dark"] .nav-links a { color: var(--text-secondary); }
[data-theme="dark"] .nav-links a:hover,
[data-theme="dark"] .nav-links a.active { color: var(--text-primary); }

[data-theme="dark"] .hamburger span { background: var(--text-primary); }

[data-theme="dark"] .stat-card { border-right-color: rgba(255,255,255,0.06); }

[data-theme="dark"] .service-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .blog-card,
[data-theme="dark"] .team-card {
  background: var(--bg-alt);
  box-shadow: var(--shadow-card);
}

[data-theme="dark"] .why-card {
  background: var(--bg-alt);
  box-shadow: none;
  border: 1px solid rgba(255,255,255,0.06);
}

[data-theme="dark"] .highlight-card { background: var(--bg-alt); }

[data-theme="dark"] .brand-story {
  border-top-color: rgba(255,255,255,0.06);
  border-bottom-color: rgba(255,255,255,0.06);
}

[data-theme="dark"] .faq-item {
  border-bottom-color: rgba(255,255,255,0.06);
}
[data-theme="dark"] .faq-item:first-child {
  border-top-color: rgba(255,255,255,0.06);
}

[data-theme="dark"] .calc-question { background: var(--bg-alt); }
[data-theme="dark"] .calc-option span {
  background: var(--bg);
  border-color: rgba(255,255,255,0.1);
  color: var(--text-primary);
}
[data-theme="dark"] .calc-result-inner { background: var(--bg-alt); box-shadow: var(--shadow-lg); }
[data-theme="dark"] .calc-score-bar { background: rgba(255,255,255,0.08); }

[data-theme="dark"] .contact-form-box { background: var(--bg-alt); }
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
  background: var(--bg);
  border-color: rgba(255,255,255,0.1);
  color: var(--text-primary);
}
[data-theme="dark"] .form-group input::placeholder,
[data-theme="dark"] .form-group textarea::placeholder { color: rgba(255,255,255,0.2); }

[data-theme="dark"] .trust-indicator {
  background: var(--bg);
  border-color: rgba(255,255,255,0.08);
  color: var(--text-secondary);
}

[data-theme="dark"] .contact-item-icon { background: var(--bg-alt); }

[data-theme="dark"] footer { background: var(--bg-alt); border-top-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .footer-bottom { border-top-color: rgba(255,255,255,0.06); }

[data-theme="dark"] .blog-coming-soon { background: var(--bg-alt); }

[data-theme="dark"] .nav-links {
  background: rgba(0,0,0,0.92);
}

[data-theme="dark"] .testimonial-avatar { background: rgba(255,255,255,0.06); }

[data-theme="dark"] #process { background: var(--bg-alt); }

/* ── Theme Toggle ────────────────────────────────────────── */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.theme-toggle:hover { opacity: 0.7; }

.theme-toggle svg { width: 18px; height: 18px; }

.theme-toggle .icon-moon,
.theme-toggle .icon-sun { display: none; }

[data-theme="light"] .theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', sans-serif;
  font-size: var(--text-base);
  line-height: 1.47;
  color: var(--text-primary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.01em; line-height: 1.1; }
h1 { font-size: clamp(var(--text-3xl), 7vw, var(--text-4xl)); letter-spacing: -0.015em; }
h2 { font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl)); }
h3 { font-size: var(--text-lg); }
p  { color: var(--text-secondary); }
a  { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: var(--space-2xl) 0;
}

.section-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  text-align: center;
  margin-bottom: var(--space-sm);
}

.section-heading {
  text-align: center;
  margin-bottom: var(--space-xs);
}

.section-sub {
  text-align: center;
  max-width: var(--max-w-text);
  margin: 0 auto var(--space-xl);
  color: var(--text-secondary);
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: 1.5;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: var(--text-base);
  font-weight: 400;
  cursor: pointer;
  transition: all var(--dur-sm) var(--ease);
  border: none;
  text-decoration: none;
  border-radius: var(--radius-pill);
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.75rem;
}

.btn-primary:hover {
  background: var(--accent-hover);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  padding: 0;
  border: none;
}

.btn-outline:hover {
  text-decoration: underline;
}

/* ── Navigation ─────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: border-bottom var(--dur-sm) var(--ease);
  border-bottom: 0.5px solid transparent;
}

nav.scrolled {
  border-bottom: 0.5px solid rgba(0,0,0,0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  max-width: var(--max-w-wide);
  margin: 0 auto;
}

.nav-logo {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.nav-logo span {
  color: var(--accent);
  font-style: italic;
}

.nav-logo:hover { text-decoration: none; }

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

.nav-links a {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-weight: 400;
  transition: color var(--dur-sm);
}

.nav-links a:hover { color: var(--text-primary); text-decoration: none; }
.nav-links a.active { color: var(--text-primary); }

.nav-cta {
  font-size: var(--text-sm) !important;
  padding: 0.45rem 1.1rem !important;
  color: #fff !important;
  margin-left: 0.5rem;
}

.nav-cta:hover { color: #fff !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--dur-sm);
}

/* ── Hero ────────────────────────────────────────────────── */
#hero {
  padding: var(--space-3xl) 0 var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-light);
  color: var(--accent);
  font-size: var(--text-xs);
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-lg);
  border: none;
}

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

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

.hero-heading {
  max-width: 16ch;
  margin: 0 auto var(--space-md);
  line-height: 1.05;
}

.hero-heading-accent {
  display: block;
  color: var(--text-secondary);
}

.hero-description {
  max-width: var(--max-w-text);
  margin: 0 auto var(--space-lg);
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.5;
}

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

.hero-trust {
  margin-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: var(--text-tertiary);
  font-size: var(--text-xs);
  font-weight: 400;
}

.hero-trust-text { margin-right: 0.25rem; }

.trust-badges {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.trust-badge {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  font-weight: 500;
}

.trust-badge::after {
  content: " ·";
  color: var(--text-tertiary);
  opacity: 0.5;
}

.trust-badge:last-child::after { content: ""; }

/* ── Stats ───────────────────────────────────────────────── */
#stats {
  padding: var(--space-xl) 0;
  background: var(--bg-alt);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-card {
  padding: var(--space-lg) var(--space-sm);
  border-right: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.stat-card:last-child { border-right: none; }

.stat-value {
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.1;
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-weight: 400;
  margin-top: var(--space-xs);
  min-height: 2.5em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}

.stat-source {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  margin-top: 4px;
  text-align: center;
}

/* ── Services ────────────────────────────────────────────── */
#services, #services-preview {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.service-card {
  background: var(--bg);
  border: none;
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--dur-sm) var(--ease),
              box-shadow var(--dur-sm) var(--ease);
}

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

.service-icon { display: none; }

.service-title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.service-desc {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.55;
}

.preview-more {
  margin-top: var(--space-lg);
  text-align: center;
}

/* ── Process ─────────────────────────────────────────────── */
#process {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

#process .section-label { color: var(--text-on-dark-secondary); }
#process .section-heading { color: var(--text-on-dark); }
#process .section-sub { color: var(--text-on-dark-secondary); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.process-card {
  padding: var(--space-lg) var(--space-sm);
}

.process-step {
  font-size: var(--text-4xl);
  font-weight: 300;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.04em;
}

.process-connector { display: none; }

.process-title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: var(--space-xs);
}

.process-desc {
  font-size: var(--text-base);
  color: var(--text-on-dark-secondary);
  line-height: 1.55;
}

/* ── About ───────────────────────────────────────────────── */
#about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-text p {
  margin-bottom: var(--space-sm);
  font-size: var(--text-base);
  line-height: 1.58;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.highlight-card {
  background: var(--bg-alt);
  border: none;
  border-radius: var(--radius);
  padding: var(--space-lg);
  text-align: center;
}

.highlight-value {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.highlight-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ── Brand Story ──────────────────────────────────────────── */
.brand-story {
  text-align: center;
  padding: var(--space-xl) 0;
  margin: var(--space-md) 0 var(--space-lg);
  background: none;
  border: none;
  border-left: none;
  border-radius: 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.brand-story-word {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.brand-name {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.brand-name em {
  color: var(--accent);
  font-style: italic;
}

.brand-equals {
  font-size: var(--text-xl);
  color: var(--text-tertiary);
}

.brand-meaning {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-hindi {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--text-primary);
}

.brand-meaning-text {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.brand-story-desc {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: var(--max-w-text);
  margin: 0 auto;
  line-height: 1.55;
}

/* ── Why Us ──────────────────────────────────────────────── */
#why-us { background: var(--bg-alt); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}

.why-card {
  background: var(--bg);
  border: none;
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.why-icon { display: none; }

.why-title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.why-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── Testimonials ─────────────────────────────────────────── */
#testimonials { background: var(--bg-alt); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--bg);
  border: none;
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testimonial-quote {
  font-size: var(--text-base);
  color: var(--text-primary);
  line-height: 1.6;
  font-style: normal;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: none;
  color: var(--text-secondary);
  font-size: var(--text-xs);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-company {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
}

/* ── Risk Calculator ─────────────────────────────────────── */
#risk-calculator { background: var(--bg); }

.calc-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.calc-question {
  background: var(--bg-alt);
  border: none;
  border-radius: var(--radius);
  padding: var(--space-lg);
  transition: box-shadow var(--dur-sm) var(--ease);
}

.calc-question.calc-unanswered {
  box-shadow: inset 0 0 0 2px var(--red);
  animation: shake 0.3s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-6px); }
  75%       { transform: translateX(6px); }
}

.calc-q-number {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  margin-bottom: 0.4rem;
}

.calc-q-text {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.calc-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.calc-option { cursor: pointer; }
.calc-option input[type="radio"] { display: none; }

.calc-option span {
  display: inline-block;
  padding: 0.55rem 1.25rem;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-primary);
  background: var(--bg);
  cursor: pointer;
  transition: all var(--dur-sm) var(--ease);
  user-select: none;
}

.calc-option:hover span {
  border-color: var(--accent);
}

.calc-option input:checked + span {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.calc-submit { align-self: flex-start; margin-top: var(--space-xs); }
.calc-note { font-size: var(--text-xs); color: var(--text-tertiary); margin-top: 0; }

.calc-result-inner {
  background: var(--bg);
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: var(--space-xl);
  text-align: center;
}

.calc-result-icon { font-size: 2.5rem; margin-bottom: var(--space-sm); }

.calc-score-bar {
  height: 4px;
  background: rgba(0,0,0,0.06);
  border-radius: 100px;
  overflow: hidden;
  margin: 0 auto var(--space-md);
  max-width: 240px;
}

.calc-score-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 1.2s var(--ease-out);
}

.calc-result-level {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.calc-result-message {
  font-size: var(--text-base);
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto var(--space-lg);
  line-height: 1.6;
}

.calc-result-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ── FAQ Accordion ────────────────────────────────────────── */
#faq { background: var(--bg); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  overflow: visible;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-item:first-child {
  border-top: 1px solid rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: var(--text-base);
  font-weight: 600;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: color var(--dur-sm);
}

.faq-question:hover { color: var(--text-secondary); }

.faq-icon {
  flex-shrink: 0;
  color: var(--text-tertiary);
  transition: transform 0.35s var(--ease);
  line-height: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer.open { max-height: 500px; }

.faq-answer-inner {
  padding: 0 0 var(--space-md);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.65;
}

.faq-item.active .faq-question { color: var(--text-primary); }

/* ── Achievements ────────────────────────────────────────── */
#achievements { background: var(--bg); }

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.achievement-card {
  background: var(--bg-alt);
  border: none;
  border-radius: var(--radius);
  padding: var(--space-md);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.achievement-icon { font-size: 1.5rem; flex-shrink: 0; }
.achievement-title { font-size: var(--text-base); font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.achievement-meta { font-size: var(--text-xs); color: var(--text-tertiary); }

/* ── Team ────────────────────────────────────────────────── */
#team { background: var(--bg-alt); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}

.team-card {
  background: var(--bg);
  border: none;
  border-radius: var(--radius);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin: 0 auto var(--space-sm);
  overflow: hidden;
}

.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: var(--text-base); font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.team-role { font-size: var(--text-sm); color: var(--accent); margin-bottom: 4px; }
.team-certs { font-size: var(--text-xs); color: var(--text-tertiary); margin-bottom: var(--space-sm); font-weight: 500; }
.team-bio { font-size: var(--text-sm); color: var(--text-secondary); }
.team-linkedin { display: inline-block; margin-top: var(--space-sm); font-size: var(--text-sm); }

/* ── Blog ────────────────────────────────────────────────── */
#blog { background: var(--bg); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.blog-card {
  background: var(--bg);
  border: none;
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-sm) var(--ease), box-shadow var(--dur-sm) var(--ease);
}

.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-tag { font-size: var(--text-xs); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent); margin-bottom: var(--space-xs); }
.blog-title { font-size: var(--text-base); font-weight: 600; color: var(--text-primary); margin-bottom: var(--space-xs); line-height: 1.4; }
.blog-summary { font-size: var(--text-sm); color: var(--text-secondary); flex: 1; margin-bottom: var(--space-sm); }
.blog-footer { display: flex; align-items: center; justify-content: space-between; font-size: var(--text-xs); color: var(--text-tertiary); }
.blog-read-more { color: var(--accent); font-weight: 500; }

.blog-coming-soon {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: var(--bg-alt);
  border: none;
  border-radius: var(--radius);
  color: var(--text-tertiary);
}

.blog-coming-soon .cs-icon { font-size: 2.5rem; margin-bottom: var(--space-sm); }
.blog-coming-soon h3 { color: var(--text-secondary); margin-bottom: var(--space-xs); }
.blog-coming-soon p { font-size: var(--text-base); }

/* ── Page Header (inner pages) ───────────────────────────── */
#page-header {
  padding: var(--space-2xl) 0 var(--space-xl);
  text-align: center;
}

#page-header h1 { margin: var(--space-xs) 0 var(--space-sm); }
.page-header-sub { max-width: var(--max-w-text); margin: 0 auto; font-size: var(--text-lg); color: var(--text-secondary); }

/* ── CTA Banner ──────────────────────────────────────────── */
#home-cta, #page-cta {
  background: var(--bg-dark);
  padding: var(--space-2xl) 0;
}

.cta-banner {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.cta-banner-text {
  margin-bottom: var(--space-lg);
}

.cta-banner-text h2 {
  color: var(--text-on-dark);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
  margin-bottom: var(--space-xs);
}

.cta-banner-text p {
  color: var(--text-on-dark-secondary);
  font-size: var(--text-lg);
  margin: 0;
}

/* ── Contact ─────────────────────────────────────────────── */
#contact { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info h2 { margin-bottom: var(--space-sm); text-align: left; }
.contact-info p { margin-bottom: var(--space-lg); font-size: var(--text-base); }

.contact-info .section-label { text-align: left; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-alt);
  border: none;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-form-box {
  background: var(--bg-alt);
  border: none;
  border-radius: var(--radius);
  padding: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: var(--space-sm);
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid rgba(0,0,0,0.12);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: var(--text-base);
  font-family: inherit;
  transition: border-color var(--dur-sm) var(--ease),
              box-shadow var(--dur-sm) var(--ease);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.form-group select option { background: var(--bg); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-tertiary); }

.form-submit { width: 100%; justify-content: center; font-size: var(--text-base); padding: 0.9rem; }
.form-note { font-size: var(--text-xs); color: var(--text-tertiary); text-align: center; margin-top: var(--space-sm); }

.form-success { display: none; text-align: center; padding: var(--space-lg); }
.form-success.visible { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: var(--space-sm); }

/* ── Trust Indicators ────────────────────────────────────── */
.trust-indicators {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

.trust-indicator {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--bg-alt);
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

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

.footer-logo {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  display: block;
  text-decoration: none;
}

.footer-logo:hover { text-decoration: none; }
.footer-logo span { color: var(--accent); font-style: italic; }
.footer-tagline { font-size: var(--text-sm); color: var(--text-tertiary); }

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

.footer-links a {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: color var(--dur-sm);
}

.footer-links a:hover { color: var(--text-primary); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: var(--space-sm);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: var(--text-xs);
  color: var(--text-tertiary);
}

/* ── Breaches Ticker ─────────────────────────────────────── */
#breaches-ticker {
  padding: var(--space-md) 0;
  background: var(--bg);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

[data-theme="dark"] #breaches-ticker {
  border-bottom-color: rgba(255,255,255,0.06);
}

.breach-ticker {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  overflow: hidden;
}

.breach-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
}

.breach-scroll-wrapper {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
}

.breach-scroll {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  white-space: nowrap;
  animation: scrollTicker 40s linear infinite;
}

.breach-scroll:hover {
  animation-play-state: paused;
}

@keyframes scrollTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.breach-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  color: var(--text-secondary);
}

.breach-company {
  font-weight: 600;
  color: var(--text-primary);
}

.breach-year {
  color: var(--text-tertiary);
}

.breach-impact {
  color: var(--text-secondary);
}

.breach-source {
  color: var(--text-tertiary);
  font-style: italic;
}

.breach-divider {
  color: var(--text-tertiary);
  opacity: 0.3;
  font-size: var(--text-xs);
}

/* ── Industries ──────────────────────────────────────────── */
#industries { background: var(--bg); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.industry-card {
  background: var(--bg);
  border: none;
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  transition: transform var(--dur-sm) var(--ease), box-shadow var(--dur-sm) var(--ease);
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

[data-theme="dark"] .industry-card {
  background: var(--bg-alt);
  box-shadow: var(--shadow-card);
}

.industry-name {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
}

.industry-pain {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.55;
}

.industry-stat {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--accent);
  padding: var(--space-xs) 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  margin-top: auto;
}

[data-theme="dark"] .industry-stat {
  border-top-color: rgba(255,255,255,0.06);
}

.industry-cta {
  font-size: var(--text-sm) !important;
  align-self: flex-start;
}

/* ── Sample Report ───────────────────────────────────────── */
#sample-report {
  background: var(--bg-alt);
}

.sample-report-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.sample-report-text h2 { text-align: left; }
.sample-report-text p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.55;
  margin-top: var(--space-sm);
}

.sample-report-form {
  background: var(--bg);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
}

[data-theme="dark"] .sample-report-form {
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.06);
}

.sample-report-preview {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0 var(--space-md);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: var(--space-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-primary);
}

[data-theme="dark"] .sample-report-preview {
  border-bottom-color: rgba(255,255,255,0.06);
}

.sample-report-form .form-group {
  margin-bottom: var(--space-sm);
}

.sample-dl-btn {
  width: 100%;
  justify-content: center;
}

.sample-report-success {
  display: none;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  color: var(--green);
  font-weight: 500;
  padding: var(--space-sm) 0;
}

/* ── Callback Request ────────────────────────────────────── */
#callback {
  background: var(--bg-alt);
  padding: var(--space-xl) 0;
}

.callback-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg);
  border-radius: var(--radius);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-card);
}

[data-theme="dark"] .callback-inner {
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.06);
}

.callback-icon {
  margin-bottom: var(--space-sm);
}

.callback-inner h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.callback-inner > p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.callback-fields {
  display: flex;
  gap: var(--space-xs);
  align-items: flex-start;
}

.callback-fields .form-group {
  flex: 1;
  margin-bottom: 0;
}

.callback-fields .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.callback-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  color: var(--green);
  font-weight: 500;
  padding: var(--space-sm) 0;
}

/* ── Scroll Reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1068px) {
  :root {
    --space-2xl: 5rem;
    --space-3xl: 7.5rem;
  }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .sample-report-inner { grid-template-columns: 1fr; gap: var(--space-lg); }
}

@media (max-width: 734px) {
  :root {
    --space-2xl: 3.5rem;
    --space-3xl: 5rem;
  }

  section { padding: var(--space-xl) 0; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 0.5px solid rgba(0,0,0,0.1);
    padding: var(--space-sm) var(--space-md) var(--space-md);
    gap: var(--space-sm);
  }

  .nav-links.open { display: flex; }
  .nav-cta { display: none !important; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .process-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card { border-right: none; }
  .stat-card:nth-child(odd) { border-right: 1px solid rgba(0,0,0,0.06); }
  .stat-card:nth-child(3), .stat-card:nth-child(4) { border-top: 1px solid rgba(0,0,0,0.06); }
  .stat-value { font-size: var(--text-2xl); min-height: auto; }
  .stat-label { min-height: auto; }
  .industries-grid { grid-template-columns: 1fr; }
  .breach-ticker { flex-direction: column; align-items: flex-start; gap: var(--space-xs); }
  .callback-fields { flex-direction: column; }
  .callback-fields .btn { width: 100%; justify-content: center; }
}
