/* ===== TOKENS ===== */
:root {
  --navy: #0d1b2e;
  --navy-mid: #122240;
  --navy-light: #1a3052;
  --gold: #c9a84c;
  --gold-light: #e2c17a;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --white: #ffffff;
  --off-white: #f5f3ee;
  --text-muted: rgba(255, 255, 255, 0.55);
  --text-body: rgba(255, 255, 255, 0.8);
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(201, 168, 76, 0.3);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1160px;
  --section-pad: 120px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.gold { color: var(--gold); }
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 15px 32px;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-full { width: 100%; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(13, 27, 46, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 20px 40px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-body);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 76px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201, 168, 76, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(26, 48, 82, 0.8) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 120px;
  max-width: 820px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 520px;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  padding-right: 48px;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin-right: 48px;
  flex-shrink: 0;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.4;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== MARQUEE ===== */
.marquee-wrap {
  overflow: hidden;
  background: var(--gold);
  padding: 14px 0;
}
.marquee {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
  width: max-content;
}
.marquee span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SERVICES ===== */
.services {
  padding: var(--section-pad) 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 24px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--white);
}
.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 24px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* ===== PROCESS ===== */
.process {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy) 100%);
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.step-number {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 700;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.step-content h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}
.step-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
}
.process-connector {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-top: 48px;
  flex-shrink: 0;
}

/* ===== WHY SCALE ===== */
.why {
  padding: var(--section-pad) 0;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.why-left .section-title { margin-bottom: 24px; }
.why-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 40px;
}
.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.why-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
}
.why-icon svg { width: 100%; height: 100%; }
.why-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.why-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--navy-mid);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.testimonial-card p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 48px;
}
.cta-skip {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.cta-skip-link {
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid var(--border-gold);
  transition: color var(--transition), border-color var(--transition);
}
.cta-skip-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cta-form input,
.cta-form select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  color: var(--white);
  font-size: 15px;
  transition: border-color var(--transition);
  width: 100%;
}
.cta-form select {
  appearance: none;
  cursor: pointer;
}
.cta-form input::placeholder { color: rgba(255,255,255,0.35); }
.cta-form input:focus,
.cta-form select:focus {
  outline: none;
  border-color: var(--gold);
}
.cta-form select option { background: var(--navy-mid); color: var(--white); }

/* ===== FOOTER ===== */
.footer {
  background: #0a1520;
  border-top: 1px solid var(--border);
  padding-top: 72px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo { margin-bottom: 16px; display: inline-block; }
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}
.footer-links {
  display: flex;
  gap: 80px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding: 24px 40px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== ABOUT ===== */
.about {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
}
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 96px;
}
.about-intro-text .section-title { margin-bottom: 28px; }
.about-lead {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 20px;
  font-weight: 300;
}
.about-body-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}
.about-mission-card {
  background: var(--navy-light);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
.about-mission-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.about-mission-card::after {
  content: '\201C';
  position: absolute;
  top: -24px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 160px;
  color: var(--gold-dim);
  line-height: 1;
  pointer-events: none;
}
.about-mission-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.about-mission-text {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.6;
  color: var(--white);
  font-style: italic;
}

.about-origin {
  padding-top: 80px;
  border-top: 1px solid var(--border);
}
.about-origin .section-eyebrow { margin-bottom: 12px; }
.about-origin-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 44px;
  max-width: 560px;
}
.about-origin-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 72px;
}
.about-origin-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
}
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-pillar {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: var(--transition);
}
.about-pillar:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.pillar-num {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 16px;
}
.about-pillar h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.about-pillar p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ===== INDUSTRIES ===== */
.industries {
  padding: 96px 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.industries-inner {
  text-align: center;
}
.industries-inner .section-title {
  margin-bottom: 20px;
}
.industries-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 560px;
  margin: 0 auto 48px;
}
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.industry-pill:hover {
  background: rgba(201, 168, 76, 0.16);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.15);
}
.industry-pill svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ===== COMPARISON TABLE ===== */
.comparison {
  padding: var(--section-pad) 0;
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.comparison-table th {
  background: var(--navy-mid);
  padding: 20px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.comparison-table th:first-child {
  text-align: left;
  border-radius: var(--radius-lg) 0 0 0;
}

.comparison-table th.scale-col-head {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 13px;
  border-radius: 0 var(--radius-lg) 0 0;
  border-left: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

.comparison-table td {
  padding: 18px 28px;
  font-size: 15px;
  text-align: center;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table td.row-label {
  text-align: left;
  font-weight: 600;
  color: var(--white);
  font-size: 14px;
}

.comparison-table td.scale-col {
  background: var(--gold-dim);
  color: var(--white);
  font-weight: 600;
  border-left: 1px solid var(--border-gold);
  border-right: 1px solid var(--border-gold);
}

.comparison-table tbody tr:hover td:not(.scale-col) {
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table tbody tr:hover td.scale-col {
  background: rgba(201, 168, 76, 0.22);
}

.yes {
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
}

.yes-neutral {
  color: var(--text-body);
  font-size: 18px;
}

.no {
  color: var(--text-muted);
  font-size: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --section-pad: 90px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { gap: 60px; }
  .about-intro { gap: 48px; }
  .about-pillars { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px; }
  .container { padding: 0 24px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding-top: 48px; padding-bottom: 80px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat { padding-right: 0; }
  .stat-divider { display: none; }
  .hero-scroll { display: none; }

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

  .process-steps { flex-direction: column; align-items: center; gap: 32px; }
  .process-connector { width: 1px; height: 40px; margin: 0; background: linear-gradient(to bottom, transparent, var(--gold), transparent); }

  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-right { grid-template-columns: 1fr; }

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

  .about-intro { grid-template-columns: 1fr; gap: 40px; margin-bottom: 60px; }
  .about-origin-body { grid-template-columns: 1fr; gap: 24px; }
  .about-pillars { grid-template-columns: 1fr; }
  .about-origin { padding-top: 56px; }

  .industries { padding: 72px 0; }
  .industry-pill { padding: 12px 20px; font-size: 14px; }

  .comparison-table th,
  .comparison-table td { padding: 14px 16px; font-size: 13px; }
  .comparison-table td.row-label { font-size: 13px; min-width: 160px; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { gap: 40px; }
  .footer-bottom { padding: 24px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .footer-links { flex-direction: column; gap: 32px; }
}
