/*
 * sightsgo — Hoja de estilos principal
 * Estética: Dark Moody / editorial atmosférico
 * Sin gradientes decorativos · Sin 3D · Sin emojis
 */

/* ================================================
   1. VARIABLES
   ================================================ */
:root {
  --primary:      #0E1116;
  --secondary:    #171B22;
  --surface-alt:  #1F2530;
  --bg:           #0A0C10;
  --accent:       #C9A24B;
  --accent-hover: #DDB65E;
  --accent-steel: #7C8A9E;
  --text:         #E8E6E1;
  --text-muted:   #98A0AC;
  --border:       rgba(201, 162, 75, 0.18);
  --border-strong: rgba(201, 162, 75, 0.35);
  --overlay-dark: rgba(10, 12, 16, 0.68);

  --font-display: 'Fraunces', serif;
  --font-body:    'Manrope', sans-serif;
  --font-mono:    'Space Mono', monospace;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;

  --container-width: 1240px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================
   2. RESET & BASE
   ================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--primary);
  padding: 0.75rem 1.25rem;
  z-index: 999;
}
.skip-link:focus { left: 0; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 550;
  line-height: 1.15;
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.6vw, 2.85rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

p { margin: 0 0 var(--space-sm); color: var(--text-muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.section-number {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--accent-steel);
  text-transform: uppercase;
}

.section-head {
  max-width: 720px;
  margin-bottom: var(--space-2xl);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head p { font-size: 1.05rem; }

section { position: relative; }

.hairline {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ================================================
   3. BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.95rem 1.9rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #14100A;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 75, 0.22);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(201, 162, 75, 0.06);
}

.btn-sm { padding: 0.65rem 1.3rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 3px;
  transition: gap 0.25s var(--ease), border-color 0.25s var(--ease);
}
.link-arrow:hover { gap: 0.85em; border-color: var(--accent); }

/* ================================================
   4. HEADER
   ================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 12, 16, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(10, 12, 16, 0.92);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-mark svg { width: 26px; height: 26px; fill: var(--accent); }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  font-size: 0.94rem;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  color: var(--text-muted);
  padding: 0.3rem 0;
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.is-active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 1.5rem; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s var(--ease);
}
.header-phone i { color: var(--accent); }
.header-phone:hover { color: var(--text); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.4rem;
}
.hamburger span {
  width: 24px; height: 1.5px;
  background: var(--text);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.hamburger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.75rem 2rem;
  background: rgba(10, 12, 16, 0.98);
  border-top: 1px solid var(--border);
}
.mobile-nav a {
  padding: 0.9rem 0;
  font-size: 1.05rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav .btn { margin-top: 1rem; }

/* ================================================
   5. HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9rem 0 5rem;
  background: linear-gradient(var(--overlay-dark), var(--overlay-dark)), url('/assets/images/hero-kitchen-induction.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 40%, rgba(201, 162, 75, 0.10), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 180px rgba(0,0,0,0.55);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-copy .eyebrow { opacity: 0; animation: reveal-up 0.8s var(--ease) 0.15s forwards; }
.hero-copy h1 { opacity: 0; animation: reveal-up 0.9s var(--ease) 0.35s forwards; }
.hero-copy .hero-subhead { opacity: 0; animation: reveal-up 0.9s var(--ease) 0.55s forwards; }
.hero-copy .hero-actions { opacity: 0; animation: reveal-up 0.9s var(--ease) 0.75s forwards; }
.hero-form-wrap { opacity: 0; animation: reveal-up 1s var(--ease) 0.9s forwards; }

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-subhead {
  font-size: 1.15rem;
  max-width: 520px;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  gap: 1.1rem;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 2.2rem;
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.hero-trust-item i { color: var(--accent); font-size: 1.1rem; }

/* ================================================
   6. LEAD FORM CARD
   ================================================ */
.lead-form-card {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.lead-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}
.lead-form-card .form-intro {
  font-size: 0.92rem;
  margin-bottom: var(--space-md);
}

.form-row { margin-bottom: 1.15rem; }
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.82rem;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--primary);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.form-row input::placeholder, .form-row textarea::placeholder { color: #5B6270; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #14181F;
}
.form-row textarea { resize: vertical; min-height: 90px; }

.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2398A0AC' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.6rem;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65em;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.3rem;
}
.form-consent input { width: auto; margin-top: 0.2rem; accent-color: var(--accent); }
.form-consent a { color: var(--accent); border-bottom: 1px solid var(--border-strong); }

.form-microcopy {
  font-size: 0.8rem;
  text-align: center;
  margin-top: 0.9rem;
  color: var(--text-muted);
}

.form-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.form-feedback {
  display: none;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-bottom: 1.1rem;
}
.form-feedback.is-success {
  display: block;
  background: rgba(122, 168, 116, 0.12);
  border: 1px solid rgba(122, 168, 116, 0.35);
  color: #A8D2A2;
}
.form-feedback.is-error {
  display: block;
  background: rgba(196, 96, 78, 0.12);
  border: 1px solid rgba(196, 96, 78, 0.35);
  color: #E3A296;
}

/* ================================================
   7. CARDS / GRIDS
   ================================================ */
.grid {
  display: grid;
  gap: 1.75rem;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.1rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.card:hover {
  border-color: var(--border-strong);
  background: var(--surface-alt);
  transform: translateY(-4px);
}
.card .card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 1.3rem;
  font-size: 1.4rem;
  color: var(--accent);
}
.card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.card p { font-size: 0.95rem; margin-bottom: 0; }

section.reveal, .reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-item.is-visible, section.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ================================================
   8. SECTIONS — GENERIC
   ================================================ */
.section { padding: var(--space-3xl) 0; }
.section-tight { padding: var(--space-2xl) 0; }
.bg-primary { background: var(--primary); }
.bg-secondary { background: var(--secondary); }

/* Features / why-choose-us */
.feature-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
}
.feature-item:last-child { border-bottom: none; }
.feature-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1.25rem;
}
.feature-text h4 { margin-bottom: 0.35rem; }
.feature-text p { margin-bottom: 0; font-size: 0.95rem; }

/* Process */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  padding: 0 1.5rem;
  position: relative;
}
.process-step:first-child { padding-left: 0; }
.process-step::before {
  content: "";
  position: absolute;
  top: 22px; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.process-step:first-child::before { left: 0; }
.process-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
  background: var(--bg);
  display: inline-block;
  width: 44px; height: 44px;
  line-height: 44px;
  text-align: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  margin-bottom: 1.3rem;
}
.process-step h4 { font-size: 1.05rem; }
.process-step p { font-size: 0.9rem; margin-bottom: 0; }

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  padding: var(--space-xl) 1.5rem;
  text-align: center;
  border-left: 1px solid var(--border);
}
.stat-item:first-child { border-left: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* About preview */
.about-preview {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-preview-media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-preview-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.75) saturate(0.95);
}
.about-preview-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,12,16,0.75) 100%);
}

/* Testimonials */
.testimonial-card {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  position: relative;
}
.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--border-strong);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.testimonial-card p.quote {
  font-size: 1.02rem;
  color: var(--text);
  margin-bottom: 1.4rem;
}
.testimonial-author { display: flex; flex-direction: column; }
.testimonial-author strong { font-size: 0.95rem; }
.testimonial-author span { font-size: 0.82rem; color: var(--accent-steel); font-family: var(--font-mono); }

/* CTA band */
.cta-band {
  position: relative;
  padding: var(--space-2xl) 0;
  text-align: center;
  background: linear-gradient(var(--overlay-dark), var(--overlay-dark)), url('/assets/images/cta-band-bg.jpg') center/cover no-repeat;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 30%, rgba(201,162,75,0.12), transparent 70%);
}
.cta-band-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band .btn { margin-top: 1rem; }

/* ================================================
   9. FOOTER
   ================================================ */
.site-footer {
  background: var(--primary);
  border-top: 1px solid var(--border);
  padding: var(--space-2xl) 0 var(--space-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1fr;
  gap: 2.5rem;
  padding-bottom: var(--space-xl);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  display: inline-block;
  margin-bottom: 0.9rem;
}
.footer-tagline { font-size: 0.9rem; max-width: 320px; margin-bottom: 1.4rem; }
.footer-contact-row {
  display: flex; align-items: center; gap: 0.6em;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}
.footer-contact-row i { color: var(--accent); width: 16px; }
.footer-contact-row a { transition: color 0.2s var(--ease); }
.footer-contact-row a:hover { color: var(--accent); }

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-steel);
  margin-bottom: 1.2rem;
}
.footer-nav { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav a, .footer-coverage-item {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s var(--ease);
}
.footer-nav a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.82rem; margin-bottom: 0; }
.footer-legal-links { display: flex; gap: 1.4rem; }
.footer-legal-links a { font-size: 0.82rem; color: var(--text-muted); }
.footer-legal-links a:hover { color: var(--accent); }

/* ================================================
   10. PAGE HERO (secondary pages)
   ================================================ */
.page-hero {
  padding: 10rem 0 4rem;
  border-bottom: 1px solid var(--border);
  background: var(--primary);
  position: relative;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 20% 0%, rgba(201,162,75,0.08), transparent 65%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 780px; }
.page-hero .eyebrow { margin-bottom: 1.2rem; }
.page-hero p.lead { font-size: 1.15rem; }

/* ================================================
   11. SERVICES PAGE — ALTERNATING BLOCKS
   ================================================ */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-of-type { border-bottom: none; }
.service-block.reverse .service-media { order: 2; }
.service-block.reverse .service-copy { order: 1; }
.service-media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 5/4;
}
.service-media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.8); }
.service-media::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.service-copy .section-number { display: block; margin-bottom: 0.8rem; }
.service-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.service-meta-item span { display: block; }
.service-meta-item .meta-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-steel);
  margin-bottom: 0.35rem;
}
.service-meta-item .meta-value { font-size: 0.92rem; color: var(--text); }

/* FAQ */
.faq-list { max-width: 820px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-align: left;
}
.faq-question i { color: var(--accent); transition: transform 0.3s var(--ease); flex-shrink: 0; margin-left: 1rem; }
.faq-item.is-open .faq-question i { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-answer p { padding-bottom: 1.6rem; margin-bottom: 0; }
.faq-item.is-open .faq-answer { max-height: 400px; }

/* ================================================
   12. ABOUT PAGE
   ================================================ */
.values-grid { grid-template-columns: repeat(4, 1fr); }
.coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}
.coverage-pill {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  color: var(--text-muted);
}

.cert-list { margin-top: 1rem; }
.cert-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.cert-item:last-child { border-bottom: none; }
.cert-item i { color: var(--accent); font-size: 1.3rem; margin-top: 0.15rem; }

/* ================================================
   13. CONTACT PAGE
   ================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
}
.contact-info-block {
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1.1rem;
}
.contact-info-block:first-child { padding-top: 0; }
.contact-info-block i { color: var(--accent); font-size: 1.3rem; margin-top: 0.2rem; }

/* ================================================
   14. LEGAL PAGES
   ================================================ */
.legal-content { max-width: 820px; }
.legal-content h2 { margin-top: var(--space-xl); font-size: 1.5rem; }
.legal-content h3 { font-size: 1.15rem; margin-top: var(--space-md); }
.legal-content p, .legal-content li { color: var(--text-muted); font-size: 0.98rem; }
.legal-content ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; }
.legal-content ul li { margin-bottom: 0.5rem; }
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.legal-content table th, .legal-content table td {
  border: 1px solid var(--border);
  padding: 0.8rem 1rem;
  text-align: left;
  font-size: 0.9rem;
}
.legal-content table th { color: var(--accent); font-family: var(--font-mono); font-size: 0.8rem; text-transform: uppercase; }
.legal-updated {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--accent-steel);
  margin-bottom: var(--space-xl);
  display: block;
}

/* ================================================
   15. RESPONSIVE
   ================================================ */
@media (max-width: 1200px) {
  :root { --container-width: 100%; }
  .container { padding: 0 1.5rem; }
}

@media (max-width: 992px) {
  .nav-links { display: none; }
  .header-phone { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { padding: 8rem 0 4rem; min-height: unset; }
  .about-preview { grid-template-columns: 1fr; }
  .about-preview-media { max-width: 420px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .process-step::before { display: none; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3) { border-left: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-block, .service-block.reverse { grid-template-columns: 1fr; }
  .service-block .service-media, .service-block.reverse .service-media { order: 1; }
  .service-block .service-copy, .service-block.reverse .service-copy { order: 2; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .form-row-split { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .values-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2n+1) { border-left: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .service-meta { grid-template-columns: 1fr; gap: 0.8rem; }
}

@media (max-width: 576px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .lead-form-card { padding: 1.6rem; }
  .section { padding: var(--space-2xl) 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-left: none; border-top: 1px solid var(--border); }
  .stat-item:first-child { border-top: none; }
}
