* {
  box-sizing: border-box;
}

:root {
  --bg: #0f1114;
  --bg-soft: #151a20;
  --bg-light: #f4f2ef;
  --text: #f4f2ef;
  --text-dark: #1d1f22;
  --accent: #ff6a3d;
  --accent-2: #4ad7a3;
  --muted: #a3a8b2;
  --border: rgba(255, 255, 255, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8vw;
  position: relative;
  z-index: 2;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 8vw 80px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 10%;
  right: -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 106, 61, 0.6), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
  max-width: 620px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  color: var(--muted);
}

.hero-title {
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  line-height: 1.1;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-visual {
  display: flex;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}

.hero-visual img {
  width: min(640px, 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.section {
  padding: 70px 8vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section.soft {
  background: var(--bg-soft);
}

.section-title {
  font-size: clamp(1.7rem, 2.4vw, 2.6rem);
  margin: 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.floating-note {
  padding: 18px 20px;
  border-left: 3px solid var(--accent-2);
  background: rgba(74, 215, 163, 0.08);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 999px;
  margin-top: 8px;
}

.quote {
  font-style: italic;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.image-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border-radius: 18px;
  background: #11151b;
  border: 1px solid var(--border);
}

.price-card h4 {
  margin: 0;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-2);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #0e1217;
  color: var(--text);
}

.inline-cta {
  color: var(--accent-2);
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent-2);
  color: #0b0f12;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  z-index: 4;
}

.footer {
  padding: 40px 8vw 60px;
  background: #0b0f12;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  padding: 18px;
  border-radius: 16px;
  background: #1b2027;
  border: 1px solid var(--border);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.simple-hero {
  padding: 60px 8vw 40px;
  background: var(--bg-soft);
}

.simple-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.content {
  padding: 40px 8vw 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split-row {
    flex-direction: row;
    align-items: stretch;
  }

  .image-row {
    flex-direction: row;
  }

  .pricing {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }
}
