:root {
  --bg: #0c1015;
  --bg-alt: #10151c;
  --card-bg: #141a23;
  --accent: #f5a623;
  --accent-soft: rgba(245, 166, 35, 0.15);
  --text: #f5f7fb;
  --muted: #9ca3b5;
  --border: #222938;
  --danger: #ff4b6a;
  --success: #3fd48f;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.45);
  --transition: 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #192032, #05070a 60%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: radial-gradient(circle at top right, #171e30, #090c13 60%);
}

h1, h2, h3 {
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.1rem, 2.4vw + 1.4rem, 2.8rem);
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
}

.section-intro {
  max-width: 520px;
}

.list {
  padding-left: 1.1rem;
  margin: 0;
  color: var(--muted);
}

.list li + li {
  margin-top: 6px;
}

.note {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5, 7, 10, 0.92), rgba(5, 7, 10, 0.7));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
}

.logo-mark {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0%, #ffe082, #f5a623 40%, #ff4e50 100%);
  color: #05070a;
  font-weight: 700;
  font-size: 0.85rem;
}

.logo-text {
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.9rem;
}

.main-nav a {
  color: var(--muted);
  padding: 4px 0;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f5a623, #ff4e50);
  transition: width var(--transition);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-phone {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(circle at top left, rgba(245, 166, 35, 0.32), rgba(11, 16, 24, 0.9));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* Hero */
.hero {
  padding-top: 40px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: radial-gradient(circle at left, rgba(245, 166, 35, 0.2), rgba(14, 20, 33, 0.95));
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.hero-price {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #f5a623, #ffd27a);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 12px;
  list-style: none;
}

.hero-facts li {
  font-size: 0.86rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-usp {
  max-width: 520px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 8px;
}

.hero-note {
  font-size: 0.86rem;
  color: var(--muted);
}

.hero-side {
  display: flex;
  align-items: center;
}

.hero-card {
  width: 100%;
  padding: 22px 20px 20px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(245, 166, 35, 0.18), #090e17 60%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-soft);
}

.hero-card h2 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition), color var(--transition);
}

.btn.primary {
  background: radial-gradient(circle at 20% 0%, #ffe082, #f5a623 40%, #ff4e50 100%);
  color: #1a1204;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.55);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.btn.outline {
  background: rgba(9, 13, 23, 0.9);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
}

.btn.outline:hover {
  background: rgba(18, 24, 40, 0.95);
}

.btn-max {
  border-color: rgba(124, 92, 255, 0.45);
  background: rgba(36, 24, 72, 0.55);
}

.btn-max:hover {
  background: rgba(52, 34, 98, 0.85);
}

.btn.is-disabled,
.footer-link.is-disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: default;
}

.btn.full-width {
  width: 100%;
}

button.btn {
  border: none;
}

button.btn:disabled {
  opacity: 0.7;
  cursor: default;
  transform: none;
  box-shadow: none;
}

/* Cards / grids */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.card {
  border-radius: var(--radius-md);
  padding: 18px 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  font-size: 0.95rem;
}

/* Layout section */
.layout-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.plan-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #fff;
  box-shadow: var(--shadow-soft);
  margin: 0;
}

.plan-image img {
  display: block;
  width: 100%;
  height: auto;
}

.plan-caption {
  padding: 10px 12px;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  background: rgba(9, 13, 23, 0.96);
}

/* Legal */
.legal-block {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  background: radial-gradient(circle at left, rgba(63, 212, 143, 0.16), rgba(5, 9, 19, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Location */
.location-address {
  font-weight: 500;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(3, 7, 15, 0.96);
  box-shadow: var(--shadow-soft);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.location-map-link {
  display: block;
  padding: 10px 12px;
  text-align: center;
  font-size: 0.86rem;
  color: var(--muted);
  background: rgba(9, 13, 23, 0.96);
  transition: color var(--transition), background var(--transition);
}

.location-map-link:hover {
  color: var(--text);
  background: rgba(18, 24, 40, 0.96);
}

/* Gallery */
.gallery-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  border-radius: var(--radius-md);
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

/* CTA bottom */
.section-cta {
  background: radial-gradient(circle at top, #171f33, #05070a 70%);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 8px;
}

.cta-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.cta-form-wrapper {
  display: flex;
}

.cta-form {
  width: 100%;
  padding: 20px 18px 18px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(245, 166, 35, 0.18), #090e17 60%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-soft);
}

/* Forms */
form {
  margin-top: 8px;
}

.form-field {
  margin-bottom: 10px;
}

.form-field label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.85rem;
  color: var(--muted);
}

input[type="text"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 10, 18, 0.95);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

input::placeholder,
textarea::placeholder {
  color: rgba(156, 163, 181, 0.7);
}

input:focus,
textarea:focus {
  border-color: rgba(245, 166, 35, 0.8);
  box-shadow: 0 0 0 1px rgba(245, 166, 35, 0.45);
  background: rgba(9, 13, 23, 1);
}

textarea {
  resize: vertical;
  min-height: 72px;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  margin: 4px 0 4px;
}

.checkbox-field input[type="checkbox"] {
  margin-top: 3px;
}

.field-error {
  min-height: 16px;
  font-size: 0.78rem;
  color: var(--danger);
}

.form-status {
  margin-top: 6px;
  font-size: 0.82rem;
  min-height: 18px;
}

.form-status--success {
  color: var(--success);
}

.form-status--error {
  color: var(--danger);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at top, rgba(23, 31, 51, 0.9), #05070a);
  padding: 18px 0;
  font-size: 0.86rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-copy {
  max-width: 420px;
}

.footer-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.footer-phone {
  font-weight: 600;
}

.footer-link {
  color: var(--muted);
  font-size: 0.86rem;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .layout-section,
  .location-layout,
  .cta-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-side {
    order: -1;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: center;
  }

  .main-nav {
    order: 2;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-cta,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

