:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-alt: #eef3f9;
  --surface-dark: #0f1830;
  --text: #122033;
  --muted: #5f6f87;
  --primary: #0d83c6;
  --primary-deep: #07639b;
  --accent: #1d1f3f;
  --shadow: 0 22px 60px rgba(15, 24, 48, 0.1);
  --btn-height: 52px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(13, 131, 198, 0.12), transparent 38%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 55%, #edf2f8 100%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.topbar { background: var(--surface-dark); color: rgba(255,255,255,.86); }
.topbar-inner {
  min-height: 58px; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 10px 0;
}
.topbar-copy, .topbar-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.topbar-copy { font-size: 14px; }
.navbar {
  position: sticky; top: 0; z-index: 20; backdrop-filter: blur(16px);
  background: rgba(255,255,255,.9); border-bottom: 1px solid rgba(18,32,51,.08);
}
.nav-inner {
  min-height: 84px; display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 64px; height: 64px; object-fit: contain; }
.brand-mark { display: flex; flex-direction: column; gap: 2px; }
.brand-title { font-size: 19px; font-weight: 800; letter-spacing: .02em; }
.brand-subtitle { font-size: 13px; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 15px; color: var(--accent); }
.nav-links a { position: relative; font-weight: 600; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -8px; width: 100%; height: 2px;
  border-radius: 999px; background: var(--primary); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none; width: 48px; height: 48px; border: 1px solid rgba(18,32,51,.12);
  border-radius: 14px; background: var(--surface); color: var(--accent); font-size: 22px; cursor: pointer;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: var(--btn-height); padding: 0 22px; border-radius: 16px; border: 1px solid transparent;
  font-weight: 800; transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(15,24,48,.12); }
.btn-primary { background: linear-gradient(135deg, var(--primary) 0%, #43a7de 100%); color: #fff; }
.btn-secondary { background: #fff; color: var(--accent); border-color: rgba(18,32,51,.12); }
.btn-whatsapp { background: #1fa760; color: #fff; }
.hero { padding: 42px 0 26px; }
.hero-panel {
  position: relative; overflow: hidden; display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(360px,.85fr); gap: 30px; padding: 34px;
  border-radius: 34px; background: linear-gradient(145deg, rgba(255,255,255,.96) 0%, rgba(242,247,253,.98) 68%, rgba(228,239,248,1) 100%);
  box-shadow: var(--shadow);
}
.hero-panel::before {
  content: ""; position: absolute; inset: auto auto -120px -120px; width: 320px; height: 320px;
  border-radius: 50%; background: rgba(13,131,198,.08);
}
.hero-copy, .hero-media { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; border-radius: 999px;
  background: rgba(13,131,198,.1); color: var(--primary-deep); font-size: 13px; font-weight: 700;
}
.hero h1, .page-hero h1 {
  margin: 18px 0 14px; font-size: clamp(2.2rem, 5vw, 4.2rem); line-height: 1.06; color: var(--accent);
}
.hero p.lead, .page-hero p.lead { margin: 0; font-size: 1.08rem; color: var(--muted); max-width: 62ch; }
.hero-actions, .split-actions, .cta-actions, .contact-actions {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px;
}
.hero-points {
  margin: 28px 0 0; padding: 0; list-style: none; display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px;
}
.hero-points li, .mini-list li {
  padding: 14px 16px; border-radius: 18px; background: #fff; border: 1px solid rgba(18,32,51,.08);
  font-weight: 600; color: var(--accent);
}
.hero-visual { display: grid; gap: 14px; }
.hero-photo { overflow: hidden; border-radius: 28px; min-height: 420px; background: var(--surface-dark); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-aside { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.mini-card {
  padding: 18px; border-radius: 22px; background: linear-gradient(180deg, #172645 0%, #0f1830 100%); color: #fff;
}
.mini-card strong { display: block; font-size: 1.75rem; line-height: 1; margin-bottom: 8px; }
.mini-card span { display: block; color: rgba(255,255,255,.78); font-size: 14px; }
.section { padding: 34px 0; }
.section-head {
  display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 22px;
}
.section-head h2 { margin: 0; font-size: clamp(1.7rem,3vw,2.5rem); line-height: 1.1; color: var(--accent); }
.section-head p { margin: 0; max-width: 62ch; color: var(--muted); }
.grid-2, .grid-3 { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3,minmax(0,1fr)); }
.panel, .service-card, .benefit-card, .zone-card, .contact-card, .story-card {
  background: #fff; border-radius: 24px; border: 1px solid rgba(18,32,51,.08); box-shadow: 0 14px 34px rgba(15,24,48,.05);
}
.service-card, .benefit-card, .zone-card, .contact-card, .story-card { padding: 24px; }
.service-card h3, .benefit-card h3, .zone-card h3, .contact-card h3, .story-card h3 {
  margin: 0 0 10px; color: var(--accent); font-size: 1.2rem;
}
.service-card p, .benefit-card p, .zone-card p, .contact-card p, .story-card p { margin: 0 0 16px; color: var(--muted); }
.service-link, .text-link { color: var(--primary-deep); font-weight: 800; }
.split {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,.8fr); gap: 22px; align-items: stretch;
}
.split .panel { padding: 30px; }
.mini-list, .check-list, .zone-list, .footer-list, .steps-list {
  margin: 0; padding: 0; list-style: none; display: grid; gap: 12px;
}
.check-list li, .zone-list li, .footer-list li, .steps-list li {
  display: flex; gap: 12px; align-items: flex-start; color: var(--muted);
}
.check-list strong, .steps-list strong { color: var(--accent); }
.gallery { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 16px; }
.gallery figure { margin: 0; overflow: hidden; border-radius: 24px; min-height: 220px; position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(15,24,48,.8) 100%); color: #fff; font-weight: 700;
}
.map-wrap { overflow: hidden; border-radius: 26px; border: 1px solid rgba(18,32,51,.08); box-shadow: 0 14px 34px rgba(15,24,48,.06); }
.map-wrap iframe { display: block; width: 100%; height: 400px; border: 0; }
.page-hero { padding: 34px 0 18px; }
.page-banner {
  padding: 28px 30px; border-radius: 30px; background: linear-gradient(145deg, #132142 0%, #1d1f3f 52%, #0d83c6 100%);
  color: #fff; box-shadow: var(--shadow);
}
.page-banner p.lead, .page-banner .eyebrow { color: rgba(255,255,255,.88); }
.page-banner .eyebrow { background: rgba(255,255,255,.12); }
.page-banner h1, .breadcrumbs a { color: #fff; }
.breadcrumbs {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 18px; color: rgba(255,255,255,.8); font-size: 14px;
}
.cta-band {
  padding: 30px; border-radius: 30px; background: linear-gradient(135deg, rgba(13,131,198,.12), rgba(29,31,63,.08));
  border: 1px solid rgba(13,131,198,.14);
}
.cta-band h2, .cta-band p { margin: 0; }
.cta-band p { color: var(--muted); margin-top: 10px; }
.zone-pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.zone-pill {
  padding: 10px 14px; border-radius: 999px; background: var(--surface-alt); color: var(--accent);
  border: 1px solid rgba(18,32,51,.07); font-weight: 700; font-size: 14px;
}
.contact-grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(320px,1fr); gap: 22px; }
.contact-form-note {
  padding: 22px; border-radius: 24px; background: linear-gradient(180deg, #16203f 0%, #0f1830 100%); color: #fff;
}
.contact-form-note p, .contact-form-note li { color: rgba(255,255,255,.82); }
.site-footer { margin-top: 36px; background: var(--surface-dark); color: rgba(255,255,255,.86); }
.footer-main { padding: 34px 0 20px; display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 22px; }
.footer-brand { max-width: 36ch; }
.footer-brand img { width: 92px; margin-bottom: 12px; }
.footer-title { margin: 0 0 10px; font-size: 1.1rem; color: #fff; }
.footer-text, .footer-links a, .footer-bottom { color: rgba(255,255,255,.76); }
.footer-links { display: grid; gap: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 16px 0 24px; display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 12px; font-size: 14px;
}
.table-like { display: grid; gap: 12px; }
.table-row {
  display: grid; grid-template-columns: 180px 1fr; gap: 12px; padding: 14px 16px; border-radius: 18px;
  background: #fff; border: 1px solid rgba(18,32,51,.08);
}
.table-row strong { color: var(--accent); }
@media (max-width: 1080px) {
  .hero-panel, .split, .contact-grid, .footer-main { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 860px) {
  .topbar-inner, .nav-inner { align-items: flex-start; }
  .nav-inner { min-height: auto; padding: 16px 0; flex-wrap: wrap; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links, .nav-cta {
    display: none; width: 100%; flex-direction: column; align-items: stretch; gap: 14px; padding-top: 12px;
  }
  .navbar.is-open .nav-links, .navbar.is-open .nav-cta { display: flex; }
  .hero-panel, .hero-aside, .grid-3, .grid-2, .gallery { grid-template-columns: 1fr; }
  .hero-points, .table-row { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .container { width: min(var(--container), calc(100% - 22px)); }
  .hero, .page-hero, .section { padding: 24px 0; }
  .hero-panel, .page-banner, .split .panel, .service-card, .benefit-card, .zone-card, .contact-card, .story-card, .cta-band { padding: 22px; }
  .hero-photo { min-height: 280px; }
  .btn { width: 100%; }
  .topbar-actions, .hero-actions, .split-actions, .cta-actions, .contact-actions { width: 100%; }
  .topbar-actions .btn, .hero-actions .btn, .split-actions .btn, .cta-actions .btn, .contact-actions .btn { flex: 1 1 100%; }
}
.seo-copy-section {
  padding-top: 12px;
}
.seo-copy-card {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(238,243,249,.98) 100%);
  border: 1px solid rgba(18,32,51,.08);
  box-shadow: 0 18px 40px rgba(15,24,48,.06);
}
.seo-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  margin-top: 18px;
}
.seo-copy-grid p {
  margin: 0;
  color: var(--muted);
}
.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.keyword-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(13,131,198,.18);
  color: var(--primary-deep);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15,24,48,.05);
}
.keyword-chip:hover {
  background: rgba(13,131,198,.08);
}
@media (max-width: 860px) {
  .seo-copy-grid {
    grid-template-columns: 1fr;
  }
}
