@font-face {
  font-family: "Akony";
  src: url("assets/fonts/AKONY.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cygre";
  src: url("assets/fonts/Cygre-ExtraBold-BF63eeebf4aa137.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cygre";
  src: url("assets/fonts/Cygre-Black-BF63eeebf3942b2.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Benzin";
  src: url("assets/fonts/Benzin-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Benzin";
  src: url("assets/fonts/Benzin-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #191919;
  --bg-2: #1f1f1f;
  --bg-3: #252525;
  --line: #2c2c2c;
  --fg: #f3f3f3;
  --mute: #8a8a8a;
  --accent: #00C853;
  --accent-2: #00e25c;
  --danger: #d9534f;
  --head: "Unbounded", "Arial Black", system-ui, sans-serif;
  --body: "Inter", "Chakra Petch", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

html { scroll-behavior: smooth; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

button {
  font: inherit;
  border: 0;
  cursor: pointer;
  color: inherit;
  background: none;
}

h1, h2, h3, h4 {
  font-family: var(--head);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 0.95;
}

p { margin: 0; }

.wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: rgba(25, 25, 25, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  gap: 18px;
  max-width: 1320px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--head);
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 18px;
}

.logo .mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0, 200, 83, 0.25), 0 8px 24px rgba(0, 200, 83, 0.18);
}

.nav-links {
  display: flex;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
  color: #cfcfcf;
  letter-spacing: 0.01em;
}

.nav-links a { transition: color 0.15s ease; }
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--head);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #0a1a0e;
  font-size: 13px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 30px -10px rgba(0, 200, 83, 0.6);
  white-space: nowrap;
}

.btn:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 14px 34px -10px rgba(0, 200, 83, 0.75);
}

.btn:active { transform: translateY(0); }
.btn.lg { padding: 18px 28px; font-size: 14px; }

.btn.ghost {
  background: transparent;
  color: #fff;
  border: 1px solid #3a3a3a;
  box-shadow: none;
}

.btn.ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

@media (max-width: 960px) {
  .nav-links { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 120px 0 56px;
  background:
    radial-gradient(1200px 600px at 80% 10%, rgba(0, 200, 83, 0.18), transparent 60%),
    radial-gradient(900px 500px at 5% 90%, rgba(0, 200, 83, 0.10), transparent 60%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: end;
  width: 100%;
  position: relative;
  z-index: 1;
}

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
}

.hero h1 {
  font-size: clamp(32px, 5vw, 68px);
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero h1 .accent { color: var(--accent); }

.hero-sub {
  margin-top: 28px;
  max-width: 560px;
  color: #c8c8c8;
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--accent);
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: flex-end;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hero-meta .v {
  font-family: var(--head);
  font-weight: 900;
  font-size: 40px;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-meta .l {
  margin-top: 8px;
  color: var(--mute);
  font-family: var(--body);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
  max-width: none;
}

.hero-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-card .ttl {
  font-family: var(--head);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #c8c8c8;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
}

.hero-card li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.18);
  flex: 0 0 auto;
}

.hero-gorilla {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  height: clamp(420px, 70vh, 720px);
  width: auto;
  opacity: 0.55;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 1000px) {
  .hero-gorilla { opacity: 0.2; right: -120px; }
}

.hero-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.ticker-track {
  display: flex;
  gap: 48px;
  padding: 14px 0;
  white-space: nowrap;
  animation: tick 38s linear infinite;
  font-family: var(--head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a0a0a0;
}

.ticker-track span em {
  color: var(--accent);
  font-style: normal;
  margin: 0 12px;
}

@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SECTION ============ */
section { position: relative; }

.section { padding: 120px 0; }

@media (max-width: 720px) {
  .section { padding: 80px 0; }
}

.section.alt {
  background: #161616;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.sec-title {
  font-size: clamp(34px, 5vw, 72px);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.sec-sub {
  color: #bdbdbd;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 500;
  max-width: 42ch;
  line-height: 1.5;
}

/* ============ ZONES ============ */
.zones {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.zones .card { grid-column: span 2; }
.zones .card:nth-child(4) { grid-column: span 3; }
.zones .card:nth-child(5) { grid-column: span 3; }

@media (max-width: 1000px) {
  .zones { grid-template-columns: repeat(2, 1fr); }
  .zones .card,
  .zones .card:nth-child(4),
  .zones .card:nth-child(5) { grid-column: span 1; }
  .zones .card:nth-child(5) { grid-column: span 2; }
}

@media (max-width: 560px) {
  .zones { grid-template-columns: 1fr; }
  .zones .card,
  .zones .card:nth-child(5) { grid-column: span 1; }
}

.card {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 200, 83, 0.55);
  background: #202020;
}

.card-head {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.card h3 {
  font-size: clamp(20px, 2vw, 26px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.card .desc {
  color: #b4b4b4;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 14px;
  max-width: 38ch;
  position: relative;
  z-index: 1;
}

.card .ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #202020;
  border: 1px solid #2e2e2e;
  display: grid;
  place-items: center;
  color: var(--accent);
  flex: 0 0 auto;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.card:hover .ic {
  background: rgba(0, 200, 83, 0.12);
  border-color: rgba(0, 200, 83, 0.5);
}

.card .corner {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 100%, rgba(0, 200, 83, 0.28), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.card:hover .corner { opacity: 1; }

.card .arrow {
  align-self: flex-end;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #313131;
  display: grid;
  place-items: center;
  color: #cfcfcf;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.25s ease;
  position: relative;
  z-index: 1;
}

.card:hover .arrow {
  background: var(--accent);
  color: #0a1a0e;
  border-color: var(--accent);
  transform: rotate(-45deg);
  box-shadow: 0 0 28px rgba(0, 200, 83, 0.55);
}

/* ============ PRICING (Figma node 1:11) ============ */
#pricing.section {
  background: #191919;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Title — актуальные / тарифы */
.fig-title { margin-bottom: 44px; }

.fig-title-1 {
  font-family: "Akony", "Unbounded", "Arial Black", sans-serif;
  font-weight: 800;
  font-size: clamp(46px, 6.6vw, 86px);
  line-height: 0.96;
  letter-spacing: 0.005em;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}

.fig-title-2-wrap {
  position: relative;
  display: inline-block;
  margin-top: 2px;
}

.fig-title-2 {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: "Akony", "Unbounded", "Arial Black", sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 6.2vw, 80px);
  line-height: 0.96;
  letter-spacing: 0.005em;
  color: var(--accent);
  text-transform: uppercase;
}

.fig-title-2-glow {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  font-family: "Akony", "Unbounded", "Arial Black", sans-serif;
  font-weight: 800;
  font-size: clamp(46px, 6.5vw, 84px);
  line-height: 0.96;
  color: var(--accent);
  text-transform: uppercase;
  white-space: nowrap;
  filter: blur(40px);
  opacity: 0.85;
  pointer-events: none;
}

/* Cards */
.fig-cards {
  display: flex;
  gap: 25px;
  align-items: flex-end;
  justify-content: center;
}

.fig-card {
  flex: 0 1 411px;
  background: #fff;
  border-radius: 25px;
  padding: 20px 25px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.fig-card-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.fig-card-name {
  font-family: "Cygre", "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 35px;
  line-height: 1;
  color: #191919;
}

.fig-list {
  list-style: none;
  margin: 0;
  padding: 20px;
  background: rgba(0, 200, 83, 0.1);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fig-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Cygre", "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.1;
  color: #191919;
  white-space: nowrap;
}

.fig-list li.off { color: rgba(25, 25, 25, 0.6); }

.fig-list .ic {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

.fig-list .ic svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.fig-price-btn {
  background: var(--accent);
  border-radius: 20px;
  padding: 10px 40px;
  font-family: "Benzin", "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 27px;
  line-height: 1.1;
  color: #191919;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fig-price-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(0, 200, 83, 0.6);
}

/* Max card */
.fig-card.rec {
  flex: 0 1 461px;
  background: var(--accent);
  padding: 22px 28px 45px;
  gap: 45px;
  box-shadow: 0 0 140px 8px rgba(0, 200, 83, 0.5);
}

.fig-card.rec .fig-card-top { gap: 22px; }
.fig-card.rec .fig-card-name { font-size: 39px; color: #191919; }

.fig-card.rec .fig-list {
  background: transparent;
  padding: 22px;
  gap: 11px;
}

.fig-card.rec .fig-list li { font-size: 22px; color: #191919; }

.fig-card.rec .fig-list .ic {
  flex-basis: 18px;
  width: 18px;
  height: 18px;
}

.fig-card.rec .fig-price-btn {
  background: #191919;
  color: var(--accent);
  padding: 11px 45px;
  font-size: 30px;
}

/* Entry fee */
.fig-fee {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 56px;
  color: var(--accent);
}

.fig-fee-main {
  flex: 1 1 0;
  min-width: 0;
  font-family: "Cygre", "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.18;
}

.fig-fee-note {
  width: 402px;
  max-width: 42%;
  text-align: right;
  color: #fff;
  font-family: "Cygre", "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.2;
}

/* Group classes heading */
.fig-group { margin-top: 56px; }

.fig-h3 {
  font-family: "Benzin", "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1;
  color: var(--accent);
  margin: 0 0 20px;
}

/* Rate grids */
.fig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fig-grid-outline {
  border: 3px solid var(--accent);
  border-radius: 32px;
  padding: 26px 0;
  box-shadow: 0 4px 90px 0 rgba(0, 200, 83, 0.3);
}

.fig-rate {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  text-align: center;
  border-right: 1px solid #fff;
}

.fig-rate:last-child { border-right: none; }

.fig-rate .rl {
  font-family: "Benzin", "Chakra Petch", sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2vw, 27px);
  color: #fff;
}

.fig-rate .rv {
  font-family: "Benzin", "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 33px);
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* Martial arts (folder-tab block) */
.fig-martial {
  position: relative;
  margin-top: 56px;
}

.fig-martial-tab {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: var(--accent);
  border-radius: 30px 30px 0 0;
  padding: 18px 40px;
}

.fig-martial-tab::after {
  content: "";
  position: absolute;
  left: 100%;
  bottom: 0;
  width: 30px;
  height: 30px;
  background: var(--accent);
  -webkit-mask: radial-gradient(circle at top right, transparent 30px, #000 31px);
  mask: radial-gradient(circle at top right, transparent 30px, #000 31px);
}

.fig-martial-tab h3 {
  font-family: "Benzin", "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1;
  color: #191919;
  margin: 0;
}

.fig-martial-body {
  position: relative;
  z-index: 1;
  background: var(--accent);
  border-radius: 0 30px 30px 30px;
  padding: 28px 40px 40px;
  display: flex;
  flex-direction: column;
}

.fig-age-pill {
  align-self: flex-start;
  background: #191919;
  border-radius: 20px;
  padding: 10px 30px 14px;
  font-family: "Cygre", "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1;
  color: var(--accent);
  margin-bottom: 18px;
}

.fig-grid-dark {
  background: #191919;
  border-radius: 30px;
  padding: 25px 0;
  margin-bottom: 28px;
}

.fig-grid-dark:last-child { margin-bottom: 0; }
.fig-grid-dark .fig-rate .rv { font-size: clamp(21px, 2.3vw, 31px); }

/* Responsive */
@media (max-width: 980px) {
  .fig-cards { flex-wrap: wrap; }
  .fig-card,
  .fig-card.rec { flex: 1 1 280px; }
}

@media (max-width: 760px) {
  .fig-cards { flex-direction: column; align-items: stretch; }
  .fig-card,
  .fig-card.rec { flex: 1 1 auto; width: 100%; }
  .fig-fee { flex-direction: column; align-items: flex-start; gap: 14px; }
  .fig-fee-note { width: auto; max-width: none; text-align: left; }
  .fig-grid { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
  .fig-grid-outline { padding: 24px 0; }
  .fig-grid-dark { padding: 22px 0; }
  .fig-rate { padding: 0 8px; border-right: none; border-left: 1px solid rgba(255, 255, 255, 0.45); }
  .fig-rate:nth-child(odd) { border-left: none; }
}

/* Tariff captions + section leads */
.fig-card-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.fig-card-sub {
  font-family: "Cygre", "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  color: rgba(25, 25, 25, 0.55);
}

.fig-card.rec .fig-card-sub { color: rgba(10, 26, 14, 0.75); }

.fig-group .fig-h3 { margin-bottom: 14px; }

.fig-lead {
  font-family: var(--body);
  font-weight: 400;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.5;
  color: #c4c4c4;
  max-width: 80ch;
  margin: 0 0 22px;
}

.fig-martial-lead {
  font-family: var(--body);
  font-weight: 400;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.45;
  color: #0a1a0e;
  max-width: 62ch;
  margin: 0 0 22px;
}

/* ============ FAQ / objections ============ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.faq-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.faq-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 200, 83, 0.4);
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--head);
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 19px);
  letter-spacing: -0.01em;
  color: #dcdcdc;
}

.faq-a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  color: #b0b0b0;
}

.faq-badge {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.faq-badge.x { background: rgba(217, 83, 79, 0.16); color: #e0655f; }
.faq-badge.v { background: rgba(0, 200, 83, 0.16); color: var(--accent); margin-top: 1px; }

@media (max-width: 760px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
}

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-family: var(--head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a8a8a8;
}

.field input,
.field select {
  appearance: none;
  -webkit-appearance: none;
  background: #222;
  border: 1px solid #2e2e2e;
  color: #fff;
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
  padding: 16px 18px;
  border-radius: 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field input::placeholder { color: #6a6a6a; }

.field input:focus,
.field select:focus {
  border-color: var(--accent);
  background: #1e1e1e;
}

.field.invalid input,
.field.invalid select {
  border-color: var(--danger);
}

.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300C853' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 48px;
}

.form .agree {
  color: var(--mute);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.form .agree a {
  color: #cfcfcf;
  text-decoration: underline;
  text-decoration-color: #3a3a3a;
  text-underline-offset: 3px;
}

.form .submit { margin-top: 6px; }

.form .submit .btn {
  width: 100%;
  padding: 18px 24px;
  font-size: 14px;
}

.ok {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(0, 200, 83, 0.4);
  background: rgba(0, 200, 83, 0.07);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
}

.ok.show { display: flex; }

.ok .ttl {
  font-family: var(--head);
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--accent);
}

.ok .txt {
  color: #bdbdbd;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
}

.map-panel {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.map {
  position: relative;
  flex: 1;
  min-height: 380px;
}

.map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.05) brightness(0.92);
}

.map-foot {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 22px;
  border-top: 1px solid var(--line);
}

@media (max-width: 520px) {
  .map-foot { grid-template-columns: 1fr; }
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.contact-item .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #222;
  border: 1px solid #2f2f2f;
  display: grid;
  place-items: center;
  color: var(--accent);
  flex: 0 0 auto;
}

.contact-item .lbl {
  color: var(--mute);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-item .val {
  font-family: var(--head);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-top: 2px;
  letter-spacing: -0.01em;
}

.contact-item a.val:hover { color: var(--accent); }

/* ============ FOOTER ============ */
footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  color: var(--mute);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
}

.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.foot-row a:hover { color: var(--fg); }

.foot-links {
  display: flex;
  gap: 18px;
}
