

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&display=swap');

:root {
  
  --zinc-50:  #fafafa;
  --zinc-100: #f4f4f5;
  --zinc-300: #d4d4d8;
  --zinc-400: #a1a1aa;
  --zinc-500: #71717a;
  --zinc-600: #52525b;
  --zinc-800: #27272a;
  --zinc-900: #18181b;
  --zinc-950: #09090b;

  
  --amber-500: #f59e0b;
  --amber-600: #d97706;

  
  --ink:       var(--zinc-900);
  --ink-2:     var(--zinc-800);
  --muted:     var(--zinc-500);
  --bg:        var(--zinc-50);
  --surface:   #ffffff;
  --surface-2: var(--zinc-100);
  --border:    var(--zinc-300);
  --gold:      var(--amber-500);
  --gold-dk:   var(--amber-600);
  --gold-lt:   #fef9ee;
  --success:   #22c55e;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(9,9,11,.06);
  --shadow-md: 0 8px 24px rgba(9,9,11,.10);
  --shadow-lg: 0 16px 48px rgba(9,9,11,.14);

  
  --font-display: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-body:    'Inter', 'Segoe UI', Arial, sans-serif;

  --nav-h: 72px;
  --ease:  cubic-bezier(.22,.68,0,1.1);
}

[data-theme="dark"] {
  --ink:       var(--zinc-50);
  --ink-2:     var(--zinc-300);
  --muted:     var(--zinc-400);
  --bg:        var(--zinc-950);
  --surface:   var(--zinc-900);
  --surface-2: var(--zinc-800);
  --border:    rgba(255,255,255,.10);
  --gold-lt:   rgba(245,158,11,.12);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.30);
  --shadow-md: 0 8px 24px rgba(0,0,0,.40);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.55);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  transition: background .3s, color .3s;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; margin: 0; }

body::selection { background: var(--amber-500); color: var(--zinc-950); }


body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}


.container {
  width: min(1140px, 92%);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}


h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -.03em;
  text-wrap: balance;
  font-weight: 900;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: -.01em; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dk);
  background: var(--gold-lt);
  border: 1px solid color-mix(in srgb, var(--gold) 25%, transparent);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 16px;
}
.kicker-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.lead { font-size: 1.05rem; color: var(--muted); line-height: 1.7; }
.sub  { color: var(--muted); line-height: 1.6; }


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  transition: all .2s var(--ease);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: -.01em;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn svg { flex-shrink: 0; }

.btn-primary  { background: var(--gold); color: var(--zinc-950); border-color: var(--gold); }
.btn-primary:hover  { background: var(--gold-dk); border-color: var(--gold-dk); }
.btn-outline  { background: transparent; border-color: var(--border); color: var(--ink); }
.btn-outline:hover  { background: var(--surface-2); border-color: var(--ink-2); }
.btn-ghost    { background: var(--surface); border-color: var(--border); color: var(--ink); }
.btn-ghost:hover    { background: var(--surface-2); }
.btn-lg  { padding: 14px 26px; font-size: .95rem; border-radius: var(--r-lg); }
.btn-sm  { padding: 9px 16px; font-size: .82rem; }
.btn-full { width: 100%; }


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom: 1px solid var(--border);
}
.site-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold-dk) 100%);
}

.nav-row {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--ink);
  flex-shrink: 0;
}
.brand .accent { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all .18s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  border-radius: 99px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .22s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: var(--surface-2); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.theme-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: all .18s var(--ease);
}
.theme-btn:hover { background: var(--surface-2); transform: rotate(15deg) scale(1.05); }
.theme-btn .icon-sun { display: none; }
[data-theme="dark"] .theme-btn .icon-moon { display: none; }
[data-theme="dark"] .theme-btn .icon-sun  { display: block; }

.mobile-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--r-sm);
  align-items: center;
  justify-content: center;
  color: var(--ink);
}


.section { padding: 80px 0; }
.section + .section { border-top: 1px solid var(--border); }
.section-alt { background: var(--surface-2); }
.section-head { margin-bottom: 40px; text-align: center; }
.section-head h2 { margin-bottom: 12px; }
.section-head .sub { max-width: 560px; margin-inline: auto; }
.section-cta { text-align: center; margin-top: 32px; }


.hero-section {
  padding: 64px 0 48px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--gold) 8%, var(--bg)) 0%, var(--bg) 50%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}
.hero-content { display: flex; flex-direction: column; gap: 20px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-md);
}
.badge-stars { color: var(--gold); font-size: .9rem; letter-spacing: 1px; }
.badge-text  { font-size: .75rem; font-weight: 600; color: var(--muted); }


.metrics-row {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.metric-item {
  flex: 1;
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background .18s;
}
.metric-item:last-child { border-right: none; }
.metric-item:hover { background: var(--gold-lt); }
.metric-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.metric-label { font-size: .75rem; color: var(--muted); font-weight: 500; }


.trust-bar {
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  margin-top: 20px;
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }


.trust-badges { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--ink-2);
}
.trust-badge svg { color: var(--gold); flex-shrink: 0; }


.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all .22s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--gold) 35%, var(--border));
}
.service-card h3 { margin-bottom: 4px; }
.service-card p { color: var(--muted); margin: 0; line-height: 1.6; flex: 1; }
.service-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--gold-lt);
  border: 1px solid color-mix(in srgb, var(--gold) 20%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dk);
}
.service-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold-dk);
  margin-top: auto;
}


.service-card-detailed {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: all .22s var(--ease);
}
.service-card-detailed:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--gold) 35%, var(--border));
}
.service-details { flex: 1; }
.service-details h3 { margin-bottom: 8px; }
.service-details p { color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.service-features { display: flex; flex-direction: column; gap: 6px; }
.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--ink-2);
}
.service-features li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}


.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all .22s var(--ease);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--gold-lt);
  border: 1px solid color-mix(in srgb, var(--gold) 20%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--muted); line-height: 1.6; margin: 0; }


.steps-grid { display: flex; align-items: flex-start; gap: 0; }
.step-card {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--zinc-950);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content h3 { margin-bottom: 8px; }
.step-content p { color: var(--muted); line-height: 1.6; margin: 0; }
.step-connector {
  width: 40px; height: 2px;
  background: var(--border);
  margin-top: 50px;
  flex-shrink: 0;
}


.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all .22s var(--ease);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-header { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  color: var(--zinc-950);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: .95rem; }
.reviewer-meta { font-size: .78rem; color: var(--muted); }
.stars { display: flex; gap: 2px; color: var(--gold); }
.review-text {
  font-style: italic;
  color: var(--ink-2);
  font-size: .92rem;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.review-verify {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  color: var(--muted);
}
.verify-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
}


.reviews-ticker-wrapper {
  overflow: hidden;
  position: relative;
  padding: 12px 0;
}
.reviews-ticker-wrapper::before,
.reviews-ticker-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.reviews-ticker-wrapper::before { left: 0;  background: linear-gradient(to right,  var(--bg), transparent); }
.reviews-ticker-wrapper::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.reviews-ticker {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: ticker-scroll 45s linear infinite;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.reviews-ticker .review-card {
  width: 320px;
  flex-shrink: 0;
}


.cta-band {
  border-radius: var(--r-xl);
  background: linear-gradient(130deg, color-mix(in srgb, var(--gold) 15%, var(--surface)) 0%, var(--surface) 60%);
  border: 1px solid color-mix(in srgb, var(--gold) 25%, var(--border));
  padding: 52px 44px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.cta-band .kicker { justify-content: center; }
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { max-width: 520px; margin: 0 auto 28px; color: var(--muted); }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }


.page-hero { padding: 56px 0 40px; }
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}
.page-hero-copy { display: flex; flex-direction: column; gap: 16px; }
.page-hero-photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.page-hero-photo img { width: 100%; height: 100%; object-fit: cover; }


.photo-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.photo-tile {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}
.photo-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.photo-tile:hover img { transform: scale(1.04); }


.area-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-2);
  transition: all .18s var(--ease);
}
.area-pill svg { color: var(--gold); }
.area-pill:hover {
  background: var(--gold-lt);
  border-color: color-mix(in srgb, var(--gold) 40%, transparent);
  transform: translateY(-2px);
}


.cert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.cert-grid h2 { margin-bottom: 16px; }
.cert-list { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .92rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink-2);
}
.cert-item svg { color: var(--success); flex-shrink: 0; }


.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 28px; align-items: start; }
.contact-info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.contact-info h3 { margin-bottom: 20px; }
.contact-cards { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface-2);
  transition: all .18s;
  text-decoration: none;
}
a.contact-card:hover {
  background: var(--gold-lt);
  border-color: color-mix(in srgb, var(--gold) 30%, transparent);
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-text { display: flex; flex-direction: column; gap: 2px; }
.contact-label {
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.contact-value { font-weight: 700; color: var(--ink); }
.contact-buttons { display: flex; gap: 10px; }
.contact-buttons .btn { flex: 1; }


.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 { margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.form-control {
  padding: 14px 16px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: all .18s;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 15%, transparent);
}
.form-control::placeholder { color: var(--muted); opacity: .7; }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { cursor: pointer; }
.form-note { font-size: .78rem; color: var(--muted); text-align: center; margin: 0; }


.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }


.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 52px 0 36px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -.03em;
}
.footer-brand .accent { color: var(--gold); }
.footer-desc { color: var(--muted); font-size: .88rem; line-height: 1.65; margin-bottom: 18px; }
.footer-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-col h4 {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-links span { font-size: .88rem; color: var(--muted); transition: color .18s; }
.footer-links a:hover { color: var(--ink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: var(--muted);
}


.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in   { animation: fadeUp .55s cubic-bezier(.22,.68,0,1.1) both; }
.animate-in-2 { animation: fadeUp .55s .1s cubic-bezier(.22,.68,0,1.1) both; }
.animate-in-3 { animation: fadeUp .55s .2s cubic-bezier(.22,.68,0,1.1) both; }


@media (max-width: 900px) {
  .hero-grid,
  .page-hero-grid,
  .cert-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .page-hero-photo { order: -1; max-height: 280px; }
  .grid-2, .grid-3, .photo-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid { flex-direction: column; align-items: center; gap: 34px; }
  .step-card {
    width: min(100%, 560px);
    align-items: center;
    text-align: center;
    padding: 8px 12px;
    background: transparent;
    border: 0;
    box-shadow: none;
    gap: 18px;
  }
  .step-num {
    width: 86px;
    height: 86px;
    border: 3px solid var(--gold);
    background: var(--surface);
    color: var(--ink);
    font-size: 0;
    box-shadow: 0 12px 28px rgba(245, 158, 11, .12);
  }
  .step-num::before {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
  }
  .step-card:nth-child(1) .step-num::before { content: "01"; }
  .step-card:nth-child(3) .step-num::before { content: "02"; }
  .step-card:nth-child(5) .step-num::before { content: "03"; }
  .step-content h3 { font-size: 1.45rem; margin-bottom: 10px; }
  .step-content p {
    max-width: 34rem;
    margin-inline: auto;
    font-size: 1.05rem;
    line-height: 1.7;
  }
  .step-connector { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .reviews-ticker .review-card { width: 280px; }
}

@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .cta-band { padding: 32px 20px; }
  h1 { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .metrics-row { flex-direction: column; }
  .metric-item { border-right: none; border-bottom: 1px solid var(--border); }
  .metric-item:last-child { border-bottom: none; }
  .mobile-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: var(--nav-h);
    left: 4%; right: 4%;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    padding: 12px;
    gap: 2px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: var(--r-sm); }
  .nav-links a::after { display: none; }
  .nav-actions .btn span { display: none; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .service-card-detailed { flex-direction: column; }
  .contact-buttons { flex-direction: column; }
  .contact-buttons .btn { width: 100%; }
  .trust-items { justify-content: flex-start; }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { width: 95%; }
  .section { padding: 36px 0; }
  .hero-section { padding: 40px 0 32px; }
  .page-hero { padding: 36px 0 24px; }
  .btn { padding: 11px 16px; font-size: .85rem; }
  .btn-lg { padding: 13px 20px; font-size: .9rem; }
  .cta-band { padding: 28px 16px; }
  .review-card { padding: 18px; }
  .service-card { padding: 20px; }
  .contact-info, .contact-form-wrap { padding: 20px; }
  .reviews-ticker .review-card { width: 260px; }
}
