:root {
  --bg: #f7fafc;
  --surface: #ffffff;
  --surface-soft: #eef6f4;
  --text: #102033;
  --muted: #627286;
  --line: rgba(16, 32, 51, 0.12);
  --primary: #0c3768;
  --secondary: #38a845;
  --accent: #12a5b3;
  --warm: #f4b64a;
  --danger: #c43d4b;
  --shadow: 0 24px 70px rgba(12, 55, 104, 0.14);
  --shadow-soft: 0 16px 44px rgba(12, 55, 104, 0.1);
  --radius: 8px;
  --radius-sm: 6px;
  --container: min(1160px, calc(100% - 40px));
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

[data-theme="dark"] {
  --bg: #07131d;
  --surface: #0d1d2a;
  --surface-soft: #102635;
  --text: #edf6ff;
  --muted: #c9d7e6;
  --line: rgba(237, 246, 255, 0.14);
  --primary: #7db8ff;
  --secondary: #65d373;
  --accent: #54d1dc;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 16px 44px rgba(0, 0, 0, 0.24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(56, 168, 69, 0.16), transparent 32rem),
    radial-gradient(circle at 85% 4%, rgba(18, 165, 179, 0.12), transparent 28rem),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(18, 165, 179, 0.5); outline-offset: 3px; }

.container { width: var(--container); margin: 0 auto; }
.narrow { max-width: 820px; }
.section { padding: 96px 0; position: relative; }
.muted { background: linear-gradient(180deg, rgba(255,255,255,0.48), rgba(238,246,244,0.78)); }
[data-theme="dark"] .muted { background: linear-gradient(180deg, rgba(13,29,42,0.78), rgba(16,38,53,0.7)); }
.section-head { max-width: 720px; margin: 0 auto 42px; text-align: center; }
.section-copy h2, .section-head h2, .cta h2, .page-hero h1 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}
h1 { font-size: clamp(3rem, 7vw, 5.85rem); letter-spacing: 0; line-height: 0.98; margin: 0; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { margin: 0 0 10px; line-height: 1.2; }
p { margin: 0; color: var(--muted); }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.25rem); color: var(--muted); }
.eyebrow {
  color: var(--secondary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin: 0 0 16px;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity .45s ease, visibility .45s ease;
}
.page-loader span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid var(--line);
  border-top-color: var(--secondary);
  animation: spin .8s linear infinite;
}
.page-loader.loaded { opacity: 0; visibility: hidden; }
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent), var(--primary));
  z-index: 1600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1500;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border-color: var(--line);
  box-shadow: 0 12px 36px rgba(12, 55, 104, 0.08);
}
[data-theme="dark"] .site-header.scrolled { background: rgba(7, 19, 29, 0.78); }
.nav { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 182px; height: auto; border-radius: var(--radius-sm); }
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link {
  padding: 10px 13px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-weight: 700;
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(18, 165, 179, 0.09); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); margin: 5px auto; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--primary), var(--secondary)); box-shadow: 0 14px 30px rgba(56, 168, 69, 0.22); }
.btn-ghost { border: 1px solid var(--line); color: var(--text); background: rgba(255,255,255,0.5); }
.btn-light { background: #fff; color: #0c3768; box-shadow: 0 14px 30px rgba(255,255,255,0.18); }
.ripple .ripple-dot {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255,255,255,0.48);
  animation: ripple .65s ease-out;
  pointer-events: none;
}

.hero { min-height: 820px; display: grid; align-items: center; overflow: hidden; padding: 120px 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 54px; }
.hero-text { font-size: 1.25rem; max-width: 680px; margin-top: 24px; }
.typing-line { margin-top: 20px; color: var(--muted); font-weight: 800; min-height: 30px; }
.typing-line span { color: var(--primary); }
.hero-powered {
  margin: 12px 0 0;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.trust-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-strip span, .tag, .tech-cloud span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  background: rgba(255,255,255,0.54);
  backdrop-filter: blur(12px);
  font-weight: 700;
  font-size: .9rem;
}
[data-theme="dark"] .trust-strip span, [data-theme="dark"] .tag, [data-theme="dark"] .tech-cloud span { background: rgba(13,29,42,0.74); }
.hero-bg span {
  position: absolute;
  border-radius: 45% 55% 60% 40%;
  filter: blur(2px);
  opacity: .22;
  animation: drift 14s ease-in-out infinite;
}
.hero-bg span:nth-child(1) { width: 430px; height: 430px; background: var(--secondary); top: 90px; right: 9%; }
.hero-bg span:nth-child(2) { width: 340px; height: 340px; background: var(--accent); bottom: 80px; left: 6%; animation-delay: -4s; }
.hero-bg span:nth-child(3) { width: 220px; height: 220px; background: var(--warm); top: 38%; left: 48%; animation-delay: -8s; }

.hero-panel { position: relative; min-height: 560px; }
.phone-shell {
  width: min(420px, 88vw);
  height: 560px;
  margin-left: auto;
  border-radius: 40px;
  padding: 18px;
  background: linear-gradient(155deg, rgba(255,255,255,.86), rgba(255,255,255,.34));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.72);
  backdrop-filter: blur(24px);
}
[data-theme="dark"] .phone-shell { background: linear-gradient(155deg, rgba(16,38,53,.9), rgba(13,29,42,.58)); border-color: var(--line); }
.map-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(16,32,51,.08) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(16,32,51,.08) 50%, transparent 51%),
    linear-gradient(135deg, #e9f8ef, #eff7ff 55%, #fff7e1);
  background-size: 80px 80px, 80px 80px, auto;
}
[data-theme="dark"] .map-card { background: linear-gradient(135deg, #102635, #0d1d2a); }
.route-line {
  position: absolute;
  inset: 80px 72px;
  border-left: 8px dashed var(--primary);
  border-bottom: 8px dashed var(--secondary);
  border-radius: 0 0 0 90px;
  transform: rotate(-8deg);
}
.pin { position: absolute; width: 22px; height: 22px; border-radius: 50%; background: var(--secondary); border: 5px solid #fff; box-shadow: var(--shadow-soft); }
.pin-a { top: 88px; right: 102px; }
.pin-b { left: 92px; bottom: 110px; background: var(--primary); }
.pin-c { right: 72px; bottom: 160px; background: var(--warm); }
.ride-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 20px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}
[data-theme="dark"] .ride-card { background: rgba(13,29,42,.82); border-color: var(--line); }
.metric-card {
  position: absolute;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}
[data-theme="dark"] .metric-card { background: rgba(13,29,42,.82); border-color: var(--line); }
.metric-card strong { display: block; font-size: 2rem; color: var(--primary); }
.metric-card span { color: var(--muted); font-weight: 700; }
.metric-one { left: 10px; top: 88px; }
.metric-two { right: 0; bottom: 88px; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 54px; }
.split.reverse { grid-template-columns: 1fr 1fr; }
.card, .step, .blog-card, .featured-post, .contact-form, .contact-card, .team-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}
[data-theme="dark"] .card, [data-theme="dark"] .step, [data-theme="dark"] .blog-card, [data-theme="dark"] .featured-post, [data-theme="dark"] .contact-form, [data-theme="dark"] .contact-card, [data-theme="dark"] .team-card { background: rgba(13,29,42,.7); }
.card { padding: 28px; transition: transform .2s ease, box-shadow .2s ease; }
.card:hover, .blog-card:hover, .team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.icon { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: var(--radius-sm); color: #fff; background: linear-gradient(135deg, var(--primary), var(--secondary)); margin-bottom: 18px; font-weight: 900; }
.feature-card { display: flex; flex-direction: column; gap: 14px; }
.feature-card img { width: 100%; height: auto; object-fit: contain; border-radius: var(--radius); display: block; }
.feature-card h3 { margin: 0; margin-top: 4px; }
.feature-card p { margin: 0; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.gallery-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease; }
.gallery-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery-card img { width: 100%; display: block; }
.gallery-card .gallery-content { padding: 24px; }
.gallery-card h3 { margin: 0 0 10px; }
.gallery-card p { margin: 0; color: var(--muted); }
.quick-stats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.quick-stats span { border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; color: var(--muted); background: rgba(255,255,255,0.55); font-weight: 700; font-size: .88rem; }
[data-theme="dark"] .quick-stats span,
[data-theme="dark"] .trust-strip span,
[data-theme="dark"] .tag,
[data-theme="dark"] .tech-cloud span {
  color: var(--text);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}
[data-theme="dark"] .stat span,
[data-theme="dark"] .safety-list li,
[data-theme="dark"] .check-list li {
  color: rgba(237, 246, 255, 0.92);
}
.search-card { margin-top: 24px; padding: 24px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255,255,255,0.84); box-shadow: var(--shadow-soft); backdrop-filter: blur(18px); }
.search-card h3 { margin: 0 0 12px; }
.search-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 16px 0 18px; }
.search-field { padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); }
.search-field label { display: block; font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 4px; }
.search-field span { font-weight: 700; color: var(--text); }
.ride-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 24px; }
.ride-card { padding: 24px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-soft); }
.ride-card .ride-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 12px; }
.ride-card .ride-top strong { font-size: 1.05rem; }
.ride-card .ride-price { font-weight: 900; color: var(--primary); }
.ride-chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.ride-chip-row span { padding: 6px 10px; border-radius: 999px; background: rgba(18,165,179,0.1); color: var(--primary); font-size: .84rem; font-weight: 800; }
.tag-list, .partner-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.tag-list span, .partner-grid span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: rgba(255,255,255,0.6); font-weight: 700; }
[data-theme="dark"] .tag-list span,
[data-theme="dark"] .partner-grid span {
  color: var(--text);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}
.safety-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.safety-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.safety-list li { display: flex; align-items: center; gap: 10px; color: var(--muted); font-weight: 700; }
.safety-list li::before { content: "✓"; color: var(--secondary); font-weight: 900; }
.driver-card { padding: 24px; border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7)); box-shadow: var(--shadow-soft); }
[data-theme="dark"] .driver-card {
  background: linear-gradient(135deg, rgba(16,38,53,0.95), rgba(13,29,42,0.92));
  border-color: rgba(255,255,255,0.14);
}
.driver-card strong { display: block; font-size: 1.08rem; margin-bottom: 8px; }
.driver-card p { margin-top: 8px; color: var(--muted); }
[data-theme="dark"] .driver-card strong,
[data-theme="dark"] .driver-card p {
  color: var(--text);
}
.values-grid, .team-grid, .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.values-grid { grid-template-columns: repeat(3, 1fr); }
.team-grid { grid-template-columns: repeat(2, minmax(220px, 280px)); justify-content: center; }
.visual-stack { display: grid; gap: 16px; }
.glass-tile { padding: 28px; border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,255,255,.44)); box-shadow: var(--shadow-soft); }
[data-theme="dark"] .glass-tile { background: linear-gradient(135deg, rgba(16,38,53,.82), rgba(13,29,42,.62)); }
.glass-tile strong { display: block; color: var(--primary); font-size: 2.7rem; line-height: 1; }
.check-list { padding: 0; margin: 24px 0 0; list-style: none; display: grid; gap: 12px; }
.check-list li { color: var(--muted); padding-left: 30px; position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--secondary); font-weight: 900; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: steps; }
.step { padding: 28px; }
.step span { color: var(--secondary); font-weight: 900; }

.stats { background: linear-gradient(135deg, var(--primary), #0b5a72 50%, var(--secondary)); color: #fff; }
.stat { text-align: center; padding: 24px; }
.stat strong { display: block; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1; }
.stat span { color: rgba(255,255,255,.78); font-weight: 700; }

.slider { position: relative; max-width: 820px; margin: 0 auto; }
.slides { overflow: hidden; }
.testimonial { display: none; text-align: center; padding: 46px; border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-soft); border: 1px solid var(--line); }
[data-theme="dark"] .testimonial {
  background: linear-gradient(135deg, rgba(16,38,53,0.95), rgba(13,29,42,0.92));
  border-color: rgba(255,255,255,0.14);
}
.testimonial.active { display: block; animation: fadeUp .45s ease both; }
.testimonial p { font-size: 1.25rem; margin-bottom: 24px; color: var(--muted); }
.testimonial strong, .testimonial span { display: block; color: var(--text); }
[data-theme="dark"] .testimonial p,
[data-theme="dark"] .testimonial strong,
[data-theme="dark"] .testimonial span {
  color: var(--text);
}
.slider-controls { display: flex; justify-content: center; gap: 12px; margin-top: 18px; }
.slider-controls button, .back-to-top {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.faq { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.faq-item button { width: 100%; text-align: left; padding: 20px 22px; border: 0; background: transparent; color: var(--text); font-weight: 900; }
.faq-item button::after { content: "+"; float: right; }
.faq-item.open button::after { content: "−"; }
.faq-item div { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-item p { padding: 0 22px 20px; }
.cta { padding-top: 40px; }
.cta-box { text-align: center; padding: 58px 24px; border-radius: var(--radius); background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; box-shadow: var(--shadow); }
.cta-box p { color: rgba(255,255,255,.82); margin: 14px auto 26px; }

.page-hero { min-height: 460px; display: grid; place-items: center; text-align: center; padding: 140px 0 70px; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 100px 12% auto; height: 260px; border-radius: 50%; background: linear-gradient(90deg, rgba(56,168,69,.16), rgba(18,165,179,.14)); filter: blur(34px); z-index: -1; }
.timeline { max-width: 860px; margin: 0 auto; display: grid; gap: 18px; position: relative; }
.timeline-item { padding: 24px 28px; border-left: 4px solid var(--secondary); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-soft); }
.timeline-item span { color: var(--secondary); font-weight: 900; }
.team-card { padding: 26px; text-align: center; }
.avatar { width: 74px; height: 74px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; font-weight: 900; overflow: hidden; }
.avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tech-cloud { display: flex; flex-wrap: wrap; gap: 12px; }

.blog-layout { display: grid; grid-template-columns: 310px 1fr; gap: 28px; align-items: start; }
.blog-sidebar { position: sticky; top: 108px; display: grid; gap: 22px; }
.search-box { display: grid; gap: 8px; font-weight: 800; color: var(--text); }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--text);
  background: var(--surface);
}
textarea { resize: vertical; }
.category-list { display: grid; gap: 8px; }
.category-list button { padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); color: var(--text); text-align: left; font-weight: 800; }
.category-list button.active { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; }
.popular-posts { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.popular-posts a { display: block; color: var(--muted); padding: 8px 0; }
.featured-post { padding: 36px; margin-bottom: 18px; background: linear-gradient(135deg, rgba(12,55,104,.94), rgba(56,168,69,.86)); color: #fff; }
.featured-post p { color: rgba(255,255,255,.8); max-width: 680px; }
.text-link { display: inline-block; margin-top: 18px; color: inherit; font-weight: 900; }
.article-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.blog-card { padding: 26px; transition: transform .2s ease, box-shadow .2s ease; }
.blog-card time { display: block; margin-top: 18px; color: var(--muted); font-weight: 700; font-size: .92rem; }
.empty-state { padding: 24px; text-align: center; border: 1px dashed var(--line); border-radius: var(--radius); }
.pagination { display: flex; gap: 8px; margin-top: 28px; }
.pagination a { min-width: 42px; min-height: 42px; display: inline-grid; place-items: center; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); font-weight: 800; }
.pagination a[aria-current="page"] { background: var(--primary); color: #fff; }
.newsletter-box { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-soft); }
.newsletter-form { display: flex; gap: 10px; min-width: min(100%, 470px); }

.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: start; }
.contact-form { padding: 30px; display: grid; gap: 18px; }
.form-row { display: grid; gap: 7px; }
.form-row label { font-weight: 850; }
.form-row small { min-height: 18px; color: var(--danger); }
.form-row.error input, .form-row.error textarea { border-color: var(--danger); }
.form-status.success { color: var(--secondary); font-weight: 800; }
.contact-panel { display: grid; gap: 16px; }
.contact-card { padding: 24px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 900; text-transform: uppercase; }
.map-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(12, 55, 104, 0.14);
  overflow: hidden;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(240,247,255,0.95)),
    linear-gradient(90deg, transparent 49%, rgba(12,55,104,.08) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(12,55,104,.08) 50%, transparent 51%),
    linear-gradient(135deg, rgba(56,168,69,.16), rgba(18,165,179,.12));
  background-size: auto, 90px 90px, 90px 90px, auto;
  box-shadow: 0 18px 45px rgba(7, 19, 29, 0.12);
}
.map-placeholder span { font-size: clamp(2rem, 5vw, 4rem); font-weight: 900; color: var(--primary); }
.map-iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
  border-radius: calc(var(--radius) - 2px);
}

.site-footer { padding: 64px 0 26px; background: #07131d; color: #edf6ff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; }
.footer-grid img { border-radius: var(--radius-sm); margin-bottom: 14px; }
.footer-grid h3 { font-size: 1rem; }
.footer-grid a, .footer-grid p { display: block; color: rgba(237,246,255,.72); margin: 8px 0; }
.footer-bottom { border-top: 1px solid rgba(237,246,255,.12); margin-top: 38px; padding-top: 22px; color: rgba(237,246,255,.62); }
.back-to-top { position: fixed; right: 22px; bottom: 22px; opacity: 0; visibility: hidden; transform: translateY(12px); z-index: 1200; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
