

:root {
  --navy-950: #070b16;
  --navy-900: #0c1526;
  --navy-850: #0f1a30;
  --navy-800: #13203b;
  --navy-700: #1c2c4d;
  --navy-600: #2a3f66;
  --yellow-400: #ffc627;
  --yellow-300: #ffe066;
  --yellow-900: #3a2c05;
  --white: #f6f7fb;
  --gray-300: #c3cbdd;
  --gray-400: #93a0bd;
  --gray-500: #6c7896;
  --danger: #ff6b6b;
  --success: #3ddc97;
  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --shadow-glow: 0 0 0 1px rgba(255, 198, 39, 0.16), 0 20px 50px -20px rgba(0, 0, 0, 0.6);
}

@font-face{font-family:'Unbounded';src:local('Arial');font-display:swap}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy-950);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
  color: var(--gray-300);
}

:focus-visible {
  outline: 2px solid var(--yellow-400);
  outline-offset: 3px;
}

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

.beacon-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.beacon-glow::before {
  content: "";
  position: absolute;
  top: -260px;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 198, 39, 0.22) 0%, rgba(255, 198, 39, 0.07) 32%, transparent 68%);
  filter: blur(2px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow-400);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--yellow-400);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow-400);
  color: var(--navy-950);
  box-shadow: 0 10px 30px -10px rgba(255, 198, 39, 0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -12px rgba(255, 198, 39, 0.7);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--navy-600);
}

.btn-outline:hover {
  border-color: var(--yellow-400);
  color: var(--yellow-400);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.85rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 11, 22, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  min-height:69px;
}

.site-header::after {
  content: "";
  display: block;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--yellow-400) 0 26px, transparent 26px 44px);
  opacity: 0.55;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.01em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(155deg, var(--yellow-400), #b8860b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-950);
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 6px 18px -6px rgba(255, 198, 39, 0.7);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--gray-300);
  transition: color 0.18s ease, background 0.18s ease;
}

.main-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.main-nav a.active {
  color: var(--navy-950);
  background: var(--yellow-400);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--navy-700);
  background: transparent;
  color: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

section {
  position: relative;
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-alt {
  background: var(--navy-900);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lede {
  font-size: 1.08rem;
  color: var(--gray-300);
}

.hero {
  padding: 110px 0 80px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  color: var(--white);
}

.hero h1 em {
  font-style: normal;
  color: var(--yellow-400);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--yellow-400);
}

.hero-stat span {
  font-size: 0.82rem;
  color: var(--gray-400);
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-300);
}

.hero-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow-400);
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px;
  box-shadow: var(--shadow-glow);
}

.hero-visual .screen {
  border-radius: var(--radius-md);
  aspect-ratio: 4/5;
  background: radial-gradient(circle at 30% 20%, rgba(255, 198, 39, 0.35), transparent 55%),
    linear-gradient(200deg, #17233f, #0a1120);
  display: flex;
  align-items: flex-end;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.hero-visual .screen::before {
  content: "РЕКЛАМА";
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--yellow-300);
  opacity: 0.8;
}

.hero-visual .screen-caption {
  background: rgba(7, 11, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.85rem;
  color: var(--gray-300);
  width: 100%;
}

.hero-visual .screen-caption b {
  color: var(--white);
}

.strip {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 22px 0;
}

.strip-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 700;
  white-space: nowrap;
}

.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  font-size: 0.82rem;
  color: var(--gray-300);
  font-weight: 600;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  position: relative;
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 198, 39, 0.5);
  box-shadow: var(--shadow-glow);
}

.card .bolt {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--navy-600);
}

.card .bolt.tl {
  top: 12px;
  left: 12px;
}

.card .bolt.tr {
  top: 12px;
  right: 12px;
}

.format-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--yellow-900);
  color: var(--yellow-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.format-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.format-card .price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--navy-700);
}

.format-card .price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--yellow-400);
}

.format-card .price small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--gray-500);
  font-weight: 600;
}

.tag {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--yellow-400);
  color: var(--navy-950);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.adv-card {
  padding: 26px;
}

.adv-card .num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--yellow-400);
  border: 1px solid var(--navy-700);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.adv-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.adv-card p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

.loc-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.loc-card .thumb {
  height: 150px;
  background: linear-gradient(0deg, rgba(7, 11, 22, 0.85), transparent 60%),
    radial-gradient(circle at 70% 20%, rgba(255, 198, 39, 0.28), transparent 55%),
    linear-gradient(150deg, #182645, #0c1526);
  position: relative;
}

.loc-card .thumb::after {
  content: "📍";
  position: absolute;
  bottom: 12px;
  left: 16px;
  font-size: 1.1rem;
}

.loc-card .body {
  padding: 22px;
}

.loc-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.loc-card .meta {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.loc-card a.more {
  font-weight: 700;
  color: var(--yellow-400);
  font-size: 0.85rem;
}

.plan-toggle {
  display: inline-flex;
  padding: 5px;
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: 999px;
  margin-bottom: 8px;
}

.plan-toggle button {
  border: none;
  background: transparent;
  color: var(--gray-400);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
}

.plan-toggle button.active {
  background: var(--yellow-400);
  color: var(--navy-950);
}

.plan-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  margin-top: 6px;
}

.plan-card.featured {
  border-color: var(--yellow-400);
  background: linear-gradient(180deg, rgba(255, 198, 39, 0.08), var(--navy-800) 40%);
}

.plan-card .plan-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.plan-card .plan-desc {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 18px;
}

.plan-card .plan-price {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--white);
  margin-bottom: 2px;
}

.plan-card .plan-price span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-500);
  font-weight: 600;
}

.plan-card .plan-features {
  margin: 22px 0 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-card .plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-300);
}

.plan-card .plan-features li::before {
  content: "✓";
  color: var(--navy-950);
  background: var(--yellow-400);
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  margin-top: 2px;
}

.faq-item {
  border-bottom: 1px solid var(--navy-700);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-q .plus {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  border: 1px solid var(--navy-600);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--gray-300);
}

.faq-q .plus::before {
  width: 10px;
  height: 2px;
}

.faq-q .plus::after {
  width: 2px;
  height: 10px;
}

.faq-item.open .plus {
  background: var(--yellow-400);
  border-color: var(--yellow-400);
  transform: rotate(180deg);
}

.faq-item.open .plus::before,
.faq-item.open .plus::after {
  background: var(--navy-950);
}

.faq-item.open .plus::after {
  transform: scaleY(0);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a p {
  padding: 0 4px 22px;
  font-size: 0.92rem;
}

.form-card {
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-300);
  margin-bottom: 8px;
}

.field .req {
  color: var(--yellow-400);
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--navy-600);
  background: var(--navy-900);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.94rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%2393a0bd' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 38px;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--yellow-400);
  box-shadow: 0 0 0 3px rgba(255, 198, 39, 0.16);
}

.field-hint {
  font-size: 0.76rem;
  color: var(--gray-500);
  margin-top: 6px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--gray-400);
}

.checkbox-row input {
  margin-top: 3px;
}

.dropzone {
  border: 1.5px dashed var(--navy-600);
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  background: var(--navy-900);
  transition: border-color 0.18s ease, background 0.18s ease;
}

.dropzone.dragover {
  border-color: var(--yellow-400);
  background: rgba(255, 198, 39, 0.06);
}

.dropzone .dz-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--yellow-900);
  color: var(--yellow-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.2rem;
}

.dropzone p {
  margin: 0;
  font-size: 0.88rem;
}

.dropzone .dz-note {
  font-size: 0.76rem;
  color: var(--gray-500);
  margin-top: 4px;
}

.file-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.file-list .file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  background: var(--navy-900);
  border: 1px solid var(--navy-700);
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--gray-300);
}

.file-item button {
  background: none;
  border: none;
  color: var(--gray-500);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.file-item button:hover {
  color: var(--danger);
}

.form-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 16px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success .check {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--yellow-400);
  color: var(--navy-950);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.post-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.post-card .thumb {
  height: 180px;
  background: radial-gradient(circle at 20% 10%, rgba(255, 198, 39, 0.25), transparent 55%),
    linear-gradient(160deg, #182645, #0b1120);
}

.post-card .body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card .meta {
  font-size: 0.76rem;
  color: var(--gray-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.post-card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.post-card p {
  font-size: 0.9rem;
  flex: 1;
}

.post-card .more {
  font-weight: 700;
  color: var(--yellow-400);
  font-size: 0.85rem;
  margin-top: 12px;
}

.article-header {
  padding: 130px 0 40px;
}

.article-header .meta {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-bottom: 16px;
}

.article-cover {
  height: 340px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 25% 20%, rgba(255, 198, 39, 0.3), transparent 55%),
    linear-gradient(160deg, #182645, #0a1120);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin: 36px 0 8px;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
}

.article-body h2 {
  margin-top: 2em;
  font-size: 1.5rem;
}

.article-body h3 {
  margin-top: 1.6em;
  font-size: 1.2rem;
}

.article-body p {
  font-size: 1.02rem;
}

.article-body ul {
  margin: 0 0 1.2em;
  padding-left: 20px;
  list-style: disc;
  color: var(--gray-300);
}

.article-body li {
  margin-bottom: 8px;
}

.article-body blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--yellow-400);
  background: var(--navy-800);
  border-radius: 0 12px 12px 0;
  font-size: 1.02rem;
  color: var(--gray-300);
}

.loc-hero {
  padding: 130px 0 60px;
}

.loc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.loc-stat {
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}

.loc-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--yellow-400);
}

.loc-stat span {
  font-size: 0.78rem;
  color: var(--gray-400);
}

.loc-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 30px 0;
}

.loc-gallery .ph {
  height: 160px;
  border-radius: 14px;
  background: linear-gradient(150deg, #182645, #0b1120);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.breadcrumbs {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 18px;
}

.breadcrumbs a {
  color: var(--gray-400);
}

.breadcrumbs a:hover {
  color: var(--yellow-400);
}

.value-card {
  padding: 26px;
}

.value-card h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.timeline {
  border-left: 2px solid var(--navy-700);
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin-top: 10px;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow-400);
  box-shadow: 0 0 0 4px var(--navy-950);
}

.timeline-item .year {
  font-family: var(--font-display);
  color: var(--yellow-400);
  font-size: 0.9rem;
  margin-bottom: 6px;
  display: block;
}

.cta-band {
  border-radius: var(--radius-lg);
  padding: 56px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  border: 1px solid var(--navy-700);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  right: -140px;
  top: -140px;
  background: radial-gradient(circle, rgba(255, 198, 39, 0.25), transparent 65%);
}

.cta-band h2 {
  margin-bottom: 6px;
  font-size: 1.7rem;
}

.cta-band p {
  margin-bottom: 0;
}

.cta-band .actions {
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.cta-band > div:first-child {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.site-footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid .logo {
  margin-bottom: 14px;
}

.footer-grid p {
  font-size: 0.88rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--gray-300);
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--yellow-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.8rem;
  color: var(--gray-500);
  flex-wrap: wrap;
  gap: 12px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--navy-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gray-400);
}

.socials a:hover {
  border-color: var(--yellow-400);
  color: var(--yellow-400);
}

.pill-select {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.text-muted {
  color: var(--gray-500);
}

.badge-soon {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy-950);
  background: var(--yellow-400);
  padding: 4px 10px;
  border-radius: 999px;
}

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

  .hero-visual {
    max-width: 420px;
    margin: 0 auto;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .loc-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .loc-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    inset: 73px 16px auto 16px;
    background: var(--navy-900);
    border: 1px solid var(--navy-700);
    border-radius: 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    gap: 2px;
    display: none;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .header-actions .btn-outline {
    display: none;
  }

  .grid-3,
  .grid-4,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .cta-band {
    padding: 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .loc-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .loc-gallery {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 96px 0 56px;
  }

  .article-header {
    padding: 110px 0 30px;
  }

  .loc-hero {
    padding: 110px 0 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}