:root {
  --bg: #f5f7fb;
  --bg-2: #ffffff;
  --card: #ffffff;
  --line: #e6ebf4;
  --text: #1b2436;
  --muted: #5d6b84;
  --yellow: #f0b400;
  --yellow-2: #ffd34d;
  --navy: #22304a;
  --green: #25d366;
  --radius: 18px;
  --shadow: 0 14px 40px rgba(28, 40, 64, .08);
  --max: 1180px;
  --header: 78px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
body.nav-lock { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
.hero img { max-width: 100%; }
@media (min-width: 901px) {
  .hero img { max-width: none; height: 100%; }
}
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }
.skip-link {
  position: absolute; left: 12px; top: -40px; background: var(--yellow); color: #111; padding: 8px 12px; z-index: 100;
}
.skip-link:focus { top: 12px; }
.topbar {
  background: var(--navy);
  font-size: 13px;
  color: #d7deea;
}
.topbar__in { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; flex-wrap: wrap; }
.topbar a { color: var(--yellow); font-weight: 700; }
.topbar__live { display: flex; align-items: center; gap: 8px; }
.topbar__live i {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e; display: inline-block;
  box-shadow: 0 0 0 0 rgba(34,197,94,.7); animation: pulse 1.6s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); } }
.header {
  position: sticky; top: 0; z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header__in { min-height: var(--header); display: flex; align-items: center; gap: 12px; }
.logo { display: flex; align-items: center; gap: 10px; min-width: 0; flex: 1; }
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__text strong { font-size: 18px; color: var(--navy); }
.logo__text small { color: var(--muted); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }
.nav { margin-left: auto; }
.nav ul { display: flex; gap: 4px; }
.nav a {
  display: block; padding: 10px 12px; border-radius: 10px; color: #4a5870; font-weight: 600; font-size: 14px;
}
.nav a:hover, .nav a.is-active { color: var(--navy); background: #eef2f8; }
.header__cta { display: flex; gap: 8px; }
.header__mobile { display: none; align-items: center; gap: 8px; flex-shrink: 0; }
.header__call-m {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--yellow); color: #111; flex-shrink: 0;
}
.header__call-m svg { width: 20px; height: 20px; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 210;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  background: #fff;
  border-radius: 2px;
  transition: .2s transform, .2s opacity;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 12px 18px; font-weight: 700; border: 1px solid transparent; cursor: pointer;
  transition: .2s transform, .2s background, .2s box-shadow;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--yellow); color: #111; }
.btn--ghost { background: #fff; border-color: var(--line); color: var(--navy); }
.btn--green { background: var(--green); color: #052e16; }
.btn--lg { padding: 14px 22px; }

.hero {
  position: relative;
  width: 100%;
  height: min(86vh, 820px);
  min-height: 520px;
  overflow: hidden;
  background: #1a2438;
}
.hero__slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity .65s ease, visibility .65s ease;
}
.hero__slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.hero__bg {
  position: absolute; inset: 0;
  background: center / cover no-repeat;
}
.hero__photo {
  position: absolute; inset: 0; z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}
.hero__veil {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(90deg, rgba(18,28,46,.78) 0%, rgba(18,28,46,.35) 48%, rgba(18,28,46,.18) 100%);
}
.hero__content {
  position: relative; z-index: 3;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 48px 0 72px;
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  color: #fff;
}
.kicker { color: var(--yellow); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: 12px; }
.hero h1 { font-size: clamp(34px, 5.4vw, 60px); line-height: 1.08; margin: 12px 0 16px; max-width: 16ch; color: #fff; }
.hero h1 em { font-style: normal; color: var(--yellow); }
.hero p { max-width: 50ch; color: #e8eef8; font-size: 18px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__dots { display: flex; gap: 8px; margin-top: 28px; }
.hero__dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,255,255,.4); cursor: pointer;
}
.hero__dots button.is-active { background: var(--yellow); width: 28px; border-radius: 99px; }
.hero__arrow {
  position: absolute; top: 50%; z-index: 4; transform: translateY(-50%);
  width: 52px; height: 52px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--navy); font-size: 28px; line-height: 1;
  cursor: pointer; box-shadow: var(--shadow);
}
.hero__arrow:hover { background: var(--yellow); }
.hero__arrow--prev { left: 18px; }
.hero__arrow--next { right: 18px; }
.hero__pager {
  position: absolute; right: 28px; bottom: 22px; z-index: 4;
  background: rgba(17,24,39,.55); color: #fff; font-weight: 700; font-size: 13px;
  padding: 6px 12px; border-radius: 999px;
}

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-top: -36px; position: relative; z-index: 5;
}
.stat, .card, .area, .post, .gallery a, .form, .info-card, .faq details {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
}
.stat { padding: 22px; text-align: center; box-shadow: var(--shadow); }
.stat b { display: block; font-size: 28px; color: #c99600; }
.stat span { color: var(--muted); font-size: 13px; }
.section { padding: 84px 0; }
.section--alt { background: #fff; }
.section__head { max-width: 640px; margin-bottom: 36px; }
.section__head h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.15; margin: 8px 0 10px; color: var(--navy); }
.section__head p { color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { padding: 24px; box-shadow: var(--shadow); }
.card svg, .why svg { width: 36px; height: 36px; color: #d4a200; }
.card h3, .why h3, .area h3 { margin: 14px 0 8px; font-size: 18px; color: var(--navy); }
.card p, .why p, .area p { color: var(--muted); margin: 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { padding: 28px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
.step b { width: 42px; height: 42px; display: grid; place-items: center; background: var(--yellow); color: #111; border-radius: 12px; }
.why { padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery a { overflow: hidden; aspect-ratio: 4/3; background: #dfe5ef; }
.gallery img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: .4s transform; }
.gallery a:hover img { transform: scale(1.06); }
.cta-band {
  background: linear-gradient(90deg, #f0b400, #e0a000);
  color: #111; border-radius: 24px; padding: 36px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cta-band h2 { margin: 0 0 6px; font-size: 32px; }
.cta-band p { margin: 0; }
.cta-band .btn { background: var(--navy); color: #fff; }
.faq details { padding: 0 18px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 700; padding: 16px 0; list-style: none; color: var(--navy); }
.faq summary::-webkit-details-marker { display: none; }
.faq p { color: var(--muted); margin: 0 0 16px; }
.page-hero {
  padding: 64px 0 40px;
  background: linear-gradient(180deg, #fff, var(--bg));
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { color: var(--navy); }
.breadcrumb { color: var(--muted); font-size: 14px; margin-bottom: 10px; }
.breadcrumb a:hover { color: #c99600; }
.prose { max-width: 760px; color: #334058; }
.prose h2 { color: var(--navy); }
.prose a { color: #b88700; font-weight: 700; }
.prose ul:not(.chips) { list-style: disc; padding-left: 1.2em; }
.prose ol { padding-left: 1.2em; }
.prose li { margin-bottom: 6px; }
.areas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.area { padding: 22px; display: block; transition: .2s border-color, .2s transform; box-shadow: var(--shadow); }
.area:hover { border-color: var(--yellow); transform: translateY(-3px); }
.area__eta {
  display: inline-block; background: #fff6d6; color: #9a7600;
  font-size: 12px; font-weight: 800; padding: 4px 10px; border-radius: 999px; margin-bottom: 8px;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; max-width: none; }
.chips li { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; color: #334058; }
.chips a { color: inherit; font-weight: 600; text-decoration: none; }
.chips a:hover { color: #b88700; }
.posts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.post { overflow: hidden; box-shadow: var(--shadow); }
.post img { width: 100%; height: 220px; object-fit: cover; }
.post__body { padding: 20px; }
.post time { color: var(--muted); font-size: 13px; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; }
.info-card { padding: 22px; box-shadow: var(--shadow); }
.info-card a { color: #b88700; font-weight: 700; }
.form { padding: 24px; box-shadow: var(--shadow); }
.form label { display: block; font-size: 13px; color: var(--muted); margin: 12px 0 6px; }
.form input, .form textarea, .form select {
  width: 100%; background: #f8fafc; border: 1px solid var(--line); color: var(--text); border-radius: 12px; padding: 12px 14px;
}
.form textarea { min-height: 140px; resize: vertical; }
.alert { padding: 12px 14px; border-radius: 12px; margin-bottom: 12px; }
.alert--ok { background: #e8f8ee; color: #166534; }
.alert--err { background: #fde8e8; color: #991b1b; }
.map { border: 0; width: 100%; height: 360px; border-radius: 18px; }
.footer { padding-top: 64px; background: var(--navy); color: #e7ecf6; }
.footer .logo__text strong { color: #fff; }
.footer .logo__text small { color: #b7c2d6; }
.footer__grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 28px; padding-bottom: 36px; }
.footer h2 { font-size: 15px; margin: 0 0 12px; color: #fff; }
.footer p, .footer li { color: #b7c2d6; margin-bottom: 8px; }
.footer a:hover { color: var(--yellow); }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); padding: 16px 0; font-size: 13px; color: #9aa8c0; }
.header__wa-m {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--green); color: #fff; flex-shrink: 0;
}
.header__wa-m svg { width: 22px; height: 22px; }
.float-cta {
  position: fixed;
  z-index: 400;
  display: flex;
  gap: 10px;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  flex-direction: column;
}
.float-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 148px;
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
  font-weight: 800;
  font-size: 14px;
}
.float-cta svg { width: 20px; height: 20px; flex-shrink: 0; }
.float-cta span { position: static; width: auto; height: auto; overflow: visible; clip: auto; }
.float-cta__call { background: #fff; color: #111; }
.float-cta__wa { background: var(--green); color: #fff; }
.about-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center; }
.about-split img { border-radius: 24px; width: 100%; height: 100%; object-fit: cover; max-height: 460px; }

@media (max-width: 1100px) {
  .nav a { padding: 10px 8px; font-size: 13px; }
}
@media (max-width: 980px) {
  :root { --header: 64px; }
  .topbar { display: none; }
  .header__cta { display: none; }
  .header__mobile { display: flex !important; }
  .header__call-m,
  .header__wa-m { display: none !important; }
  .nav-toggle { display: flex !important; flex-direction: column; justify-content: center; }
  .header__in { position: relative; gap: 8px; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(28,40,64,.12);
    padding: 8px 16px 16px;
    max-height: min(80dvh, 520px);
    overflow: auto;
    z-index: 205;
  }
  .nav.is-open { display: block; }
  .nav ul { flex-direction: column; gap: 4px; }
  .nav a { padding: 14px 12px; font-size: 16px; }
  .stats, .grid-4, .gallery, .areas, .posts { grid-template-columns: 1fr 1fr; }
  .grid-3, .steps, .contact-grid, .footer__grid, .about-split { grid-template-columns: 1fr; }
  .hero {
    height: auto;
    min-height: 0;
    padding-top: 0;
    background: #fff;
    overflow: visible;
  }
  .hero__slide {
    position: relative;
    inset: auto;
    height: auto;
    opacity: 0;
    visibility: hidden;
    display: none;
  }
  .hero__slide.is-active {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .hero__photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: unset;
    object-position: top center;
    display: block;
    background: transparent;
  }
  .hero__bg,
  .hero__veil {
    display: none;
  }
  .hero__content {
    position: relative;
    height: auto;
    justify-content: flex-start;
    padding: 20px 0 28px;
    color: var(--text);
  }
  .hero h1 { font-size: clamp(26px, 7vw, 36px); max-width: none; color: var(--navy); }
  .hero p { font-size: 15px; color: var(--muted); }
  .hero__actions .btn { width: 100%; }
  .hero__arrow {
    width: 40px; height: 40px; font-size: 22px;
    top: 42%; bottom: auto; transform: translateY(-50%);
  }
  .hero__arrow--prev { left: 8px; }
  .hero__arrow--next { right: 8px; }
  .hero__pager { display: none; }
  .hero__dots { margin-top: 16px; }
  .hero__dots button { background: #c5cedd; }
  .hero__dots button.is-active { background: var(--yellow); }
  .section { padding: 56px 0; }
  .page-hero { padding: 40px 0 28px; }
  .cta-band { padding: 24px; }
  .cta-band h2 { font-size: 24px; }
  .map { height: 260px; }
  .stats { margin-top: 12px; }
  .float-cta {
    left: 16px;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    flex-direction: row;
    justify-content: space-between;
    pointer-events: none;
  }
  .float-cta a {
    pointer-events: auto;
    flex: none;
    width: 56px;
    min-width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
  }
  .float-cta span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
  .float-cta__call { background: var(--yellow); color: #111; }
  body { padding-bottom: calc(84px + env(safe-area-inset-bottom)); }
}
@media (max-width: 680px) {
  .container { width: min(var(--max), calc(100% - 24px)); }
  .logo__text small { display: none; }
  .stats { margin-top: 12px; gap: 10px; }
  .stat { padding: 14px 10px; }
  .stat b { font-size: 22px; }
  .gallery, .areas, .posts, .grid-4 { grid-template-columns: 1fr; }
  .hero { padding-top: 0; }
  .hero__slide, .hero__veil, .hero__bg { height: auto; }
  .hero__arrow { top: 38%; }
  .hero__content { padding: 16px 0 24px; }
  .hero h1 { font-size: clamp(24px, 8vw, 32px); }
  .float-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
    pointer-events: none;
  }
  .float-cta a {
    pointer-events: auto;
    flex: none;
    width: 56px;
    min-width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
  }
  .float-cta span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
  .form, .info-card, .card { padding: 18px; }
}
@media (min-width: 981px) {
  .nav-toggle, .header__mobile { display: none; }
}
