﻿:root {
  --brand-blue: #2156c9;
  --brand-orange: #ea7a1f;
  --ink: #102139;
  --ink-soft: #314b6f;
  --muted: #5f7697;
  --line: #d5e2f5;
  --panel: #ffffff;
  --soft: #f3f8ff;
  --ok: #15803d;
}

body.local-page {
  font-family: 'Manrope', system-ui, sans-serif;
}

.local-main {
  background:
    radial-gradient(860px 420px at 7% -15%, rgba(33, 86, 201, 0.12), transparent 60%),
    radial-gradient(760px 390px at 95% -20%, rgba(234, 122, 31, 0.13), transparent 58%),
    #f7fbff;
}

.local-section {
  width: min(1180px, 100% - 2.3rem);
  margin: 2.1rem auto;
}

.local-hero {
  width: min(1180px, 100% - 2.3rem);
  margin: 1.2rem auto 0;
  background: linear-gradient(145deg, #0f2440 0%, #1a3f72 48%, #2156c9 100%);
  color: #fff;
  border-radius: 24px;
  padding: 2.2rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: center;
  box-shadow: 0 24px 50px rgba(14, 30, 56, 0.24);
}

.hero-copy h1 {
  margin: 1rem 0 0.9rem;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 1.2rem + 2.8vw, 3.5rem);
  line-height: 1.08;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.11);
  border-radius: 999px;
  padding: 0.42rem 0.85rem;
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-copy p {
  color: #dce7fb;
  max-width: 62ch;
  margin: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.btn-local,
.btn-local-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 12px;
  padding: 0.75rem 1.02rem;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.18s ease;
}

.btn-local:hover,
.btn-local-alt:hover {
  transform: translateY(-1px);
}

.btn-local {
  background: linear-gradient(135deg, var(--brand-orange), #d86910);
  color: #fff;
}

.btn-local-alt {
  background: rgba(255,255,255,0.09);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}

.hero-image-wrap img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.28);
}

.hero-trust {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.hero-trust div {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 10px;
  padding: 0.6rem;
  font-size: 0.86rem;
  color: #e4edff;
  font-weight: 700;
}

.section-head {
  text-align: center;
  margin-bottom: 1rem;
}

.section-head h2 {
  margin: 0 0 0.45rem;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 1.05rem + 1.4vw, 2.4rem);
}

.section-head p {
  margin: 0 auto;
  max-width: 74ch;
  color: var(--muted);
}

.info-grid,
.check-grid,
.image-grid,
.faq-grid,
.process-grid,
.area-grid {
  display: grid;
  gap: 0.8rem;
}

.info-grid,
.area-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.check-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.image-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid,
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.check-card,
.process-card,
.area-card,
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.95rem;
  box-shadow: 0 10px 24px rgba(17, 35, 62, 0.06);
}

.info-card h3,
.check-card h3,
.process-card h3,
.area-card h3 {
  margin: 0.45rem 0 0.4rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.08rem;
}

.info-card p,
.check-card p,
.process-card p,
.area-card p,
.faq-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.58;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: #e8f0ff;
  color: var(--brand-blue);
}

.check-card .icon-badge {
  background: #ecfdf3;
  color: var(--ok);
}

.image-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(17, 35, 62, 0.06);
}

.image-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.image-card .caption {
  padding: 0.7rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.local-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0.9rem;
}

.local-text,
.local-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
}

.local-text p,
.local-panel p {
  color: var(--ink-soft);
}

.local-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.local-panel li {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.58rem;
  color: #1f3a60;
  font-size: 0.9rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #1a3c65;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.local-cta {
  text-align: center;
  background: linear-gradient(145deg, #132a4a 0%, #2156c9 100%);
  color: #fff;
  border-radius: 20px;
  padding: 1.8rem 1rem;
}

.local-cta h2 {
  margin: 0 0 0.45rem;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 1.05rem + 1.35vw, 2.2rem);
}

.local-cta p {
  margin: 0 auto 1rem;
  max-width: 68ch;
  color: #deebff;
}

@media (max-width: 1060px) {
  .local-hero,
  .local-split,
  .info-grid,
  .area-grid,
  .image-grid,
  .process-grid,
  .faq-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }
}
