* {
  box-sizing: border-box;
}

:root {
  --bg: #0f1216;
  --surface: #171b22;
  --surface-light: #202634;
  --accent: #2dd4bf;
  --accent-dark: #14b8a6;
  --text: #e6edf3;
  --muted: #b4bcc6;
  --warm: #f7c59f;
  --shadow: 0 18px 45px rgba(7, 9, 12, 0.35);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  background: #1b2430;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-link {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-link:focus,
.nav-link:hover {
  color: var(--text);
}

.ad-label {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(247, 197, 159, 0.2);
  color: var(--warm);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.primary-btn {
  background: var(--accent);
  color: #081017;
}

.primary-btn:hover,
.primary-btn:focus {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.secondary-btn {
  background: transparent;
  border: 1px solid var(--muted);
  color: var(--text);
}

.secondary-btn:hover,
.secondary-btn:focus {
  border-color: var(--text);
  transform: translateY(-1px);
}

.ghost-btn {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.ghost-btn:hover,
.ghost-btn:focus {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

main {
  flex: 1;
}

.section {
  padding: 72px 6vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section.compact {
  padding: 56px 6vw;
}

.section.split {
  flex-direction: row;
  align-items: center;
  gap: 48px;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.section-title {
  font-size: 2.2rem;
  margin: 0 0 12px;
}

.section-subtitle {
  color: var(--muted);
  margin: 0;
}

.hero {
  padding-top: 20px;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-text h1 {
  font-size: 3rem;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-image {
  flex: 1;
  min-height: 360px;
}

.image-frame {
  background: #1b2430;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card {
  background: var(--surface);
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.bg-panel {
  background-image: url("https://images.unsplash.com/photo-1767605565789-5b18cdbbf6ae?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.bg-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 14, 19, 0.82);
}

.bg-panel > * {
  position: relative;
  z-index: 1;
}

.highlight {
  background: var(--surface-light);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.testimonial {
  flex: 1;
  min-width: 240px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 20px;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.benefit {
  flex: 1;
  min-width: 230px;
  background: var(--surface);
  padding: 20px;
  border-radius: 18px;
}

.price-reveal {
  background-image: url("https://images.unsplash.com/photo-1687783615476-f4c12358ca9d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.price-reveal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 12, 18, 0.86);
}

.price-reveal > * {
  position: relative;
  z-index: 1;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1;
  min-width: 240px;
  background: var(--surface);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid transparent;
  transition: border 0.2s ease;
}

.service-card.selectable {
  cursor: pointer;
  transition: transform 0.2s ease, border 0.2s ease;
}

.service-card.selectable:hover,
.service-card.selectable:focus {
  transform: translateY(-2px);
  border-color: rgba(45, 212, 191, 0.5);
}

.service-card.selectable input {
  display: none;
}

.service-card.selectable.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(45, 212, 191, 0.25);
}

.service-card img {
  width: 100%;
  height: 160px;
  border-radius: 16px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  background: var(--surface-light);
  padding: 28px;
  border-radius: 22px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.inline-link:hover,
.inline-link:focus {
  color: var(--accent-dark);
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 18, 22, 0.92);
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.sticky-cta span {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer {
  padding: 48px 6vw;
  background: #0b0e12;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: rgba(23, 27, 34, 0.96);
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.plain-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 20px;
  border-radius: 16px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 980px) {
  .section.split,
  .section.split.reverse {
    flex-direction: column;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    bottom: 16px;
    justify-content: space-between;
  }
}
