:root {
  --navy: #162945;
  --navy-light: #233a5c;
  --teal: #01a39e;
  --teal-light: #04c4be;
  --bg: #ffffff;
  --bg-soft: #f5f8fb;
  --text: #1c2733;
  --text-muted: #5b6878;
  --border: #e3e8ef;
  --radius: 14px;
  --container-w: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 { font-weight: 800; line-height: 1.15; margin: 0 0 16px; color: var(--navy); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.4rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 12px; }
.lead { font-size: 1.05rem; color: var(--text-muted); max-width: 720px; }

a { color: inherit; text-decoration: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-accent { background: var(--teal); color: #fff; }
.btn-lg { padding: 14px 30px; font-size: 1rem; }
.btn:hover { transform: translateY(-1px); opacity: .92; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
}
.logo img { height: 32px; width: auto; }
.main-nav {
  display: none;
  gap: 24px;
  font-weight: 600;
  font-size: 0.92rem;
}
.main-nav a { color: var(--text); }
.main-nav a:hover { color: var(--teal); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switcher { display: none; gap: 4px; background: var(--bg-soft); border-radius: 999px; padding: 4px; }
.lang-pill { padding: 6px 12px; border-radius: 999px; font-size: 0.8rem; font-weight: 700; color: var(--text-muted); }
.lang-pill.is-active { background: var(--navy); color: #fff; }
.header-cta { display: none; }

.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.nav-burger span { display: block; height: 2px; background: var(--navy); border-radius: 2px; }
.nav-toggle-state { display: none; }

.mobile-nav {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  transition: max-height .25s ease;
}
.mobile-nav a {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}
.lang-switcher-mobile { display: flex; gap: 8px; padding: 14px 20px; background: none; }
.nav-toggle-state:checked ~ .site-header .mobile-nav { max-height: 480px; }

@media (min-width: 900px) {
  .main-nav { display: flex; }
  .lang-switcher { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-burger { display: none; }
  .mobile-nav { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,41,69,.88) 0%, rgba(22,41,69,.93) 60%, rgba(22,41,69,.97) 100%);
}
.hero-inner {
  position: relative;
  padding: 64px 20px 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--teal-light);
  margin-bottom: 14px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 1.4rem + 2.6vw, 3.1rem);
  max-width: 16ch;
  margin-bottom: 18px;
}
.hero-subtitle {
  color: #cfd8e6;
  font-size: 1.05rem;
  max-width: 60ch;
  margin-bottom: 28px;
}
.hero-stats {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat .stat-value { font-size: 1.7rem; font-weight: 800; color: #fff; }
.hero-stat .stat-label { font-size: .82rem; color: #aab6c9; }

@media (min-width: 700px) {
  .hero-inner { padding: 96px 20px 72px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}

/* ===== Sections generic ===== */
section { padding: 56px 0; }
section h2 { max-width: 22ch; }
.source { font-size: .78rem; color: var(--text-muted); margin-top: 18px; }

.trust { background: var(--bg-soft); }
.trust-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin: 28px 0 8px;
}
.big-number { display: block; font-size: 3rem; font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: 8px; }
.trust-stat .stat-label { color: var(--text-muted); max-width: 32ch; }

@media (min-width: 700px) {
  .trust-stats { grid-template-columns: repeat(2, 1fr); }
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 28px 0 36px;
}
.stat-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-card .stat-value { font-size: 1.6rem; font-weight: 800; color: var(--navy); }
.stat-card .stat-label { font-size: .85rem; color: var(--text-muted); }

@media (min-width: 700px) {
  .stat-grid { grid-template-columns: repeat(4, 1fr); }
}

.cities-block { margin-bottom: 28px; }
.cities-block h3 { margin-bottom: 12px; }
.city-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.city-chip {
  background: var(--navy);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
}

.growth-note {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 36px;
}
.growth-note p { margin: 0; font-weight: 600; }

.park-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.park-gallery img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
}
@media (min-width: 700px) {
  .park-gallery { grid-template-columns: repeat(3, 1fr); }
  .park-gallery img { height: 180px; }
}

.formats { background: var(--bg-soft); }
.format-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 28px;
}
.format-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}
.format-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}
.format-card h3 { margin-bottom: 2px; }
.format-subtitle { display: block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--teal); margin-bottom: 10px; }
.format-card p { color: var(--text-muted); margin: 0; font-size: .92rem; }

@media (min-width: 700px) {
  .format-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1050px) {
  .format-grid { grid-template-columns: repeat(3, 1fr); }
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 28px;
}
.value-card {
  border-left: 3px solid var(--teal);
  padding: 4px 0 4px 18px;
}
.value-card p { color: var(--text-muted); margin: 0; }

@media (min-width: 700px) {
  .value-grid { grid-template-columns: repeat(3, 1fr); }
}

.why-now { background: var(--navy); color: #fff; }
.why-now h2 { color: #fff; }
.why-now-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 28px;
}
.why-now-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 22px;
}
.why-now-card h3 { color: #fff; margin-bottom: 8px; }
.why-now-card p { color: #aab6c9; margin: 0; font-size: .92rem; }

@media (min-width: 700px) {
  .why-now-grid { grid-template-columns: repeat(2, 1fr); }
}

.case-study { background: var(--bg-soft); }
.case-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.case-footnote { font-style: italic; color: var(--text-muted); font-size: .9rem; }
.case-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.case-stat .stat-label { color: var(--text-muted); display: block; margin-top: 6px; }

@media (min-width: 800px) {
  .case-inner { flex-direction: row; align-items: center; }
  .case-text { flex: 1.4; }
  .case-stat { flex: 1; }
}

.contacts { text-align: center; }
.contacts-inner { display: flex; flex-direction: column; align-items: center; }
.contacts .lead { margin-left: auto; margin-right: auto; }
.contact-card {
  margin-top: 28px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 420px;
}
.contact-label { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
.contact-email { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: #aab6c9; padding: 32px 0; }
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand img { height: 26px; margin-bottom: 8px; filter: brightness(0) invert(1); }
.footer-brand p { margin: 0; font-size: .85rem; }
.footer-meta { font-size: .8rem; }

@media (min-width: 700px) {
  .footer-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
