* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  font-family: "Inter", "Segoe UI", sans-serif;
  background-color: #0b0f14;
  color: #f3f4f6;
}

body {
  margin: 0;
  background: #0b0f14;
  color: #f3f4f6;
}

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

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

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 28px 6vw 10px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #38bdf8;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 20px 6vw 40px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin: 0;
}

.hero-text p {
  color: #cbd5f5;
  line-height: 1.6;
  margin: 0;
}

.hero-media {
  flex: 1 1 320px;
  position: relative;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  pointer-events: none;
}

.primary-btn,
.ghost-btn,
.accent-btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.primary-btn {
  background: #1f6feb;
  color: #fff;
}

.ghost-btn {
  border: 1px solid #3b82f6;
  color: #a5d8ff;
}

.accent-btn {
  background: #2ea043;
  color: #0b0f14;
}

.section {
  padding: 38px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.alt {
  background: #101620;
}

.section.soft {
  background: #0f172a;
}

.section-title {
  font-size: 1.6rem;
  margin: 0;
}

.section-subtitle {
  color: #9ca3af;
  margin: 0;
  max-width: 700px;
  line-height: 1.6;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.column {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.7);
}

.column h3 {
  margin: 0;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #cbd5f5;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.split > div {
  flex: 1 1 320px;
}

.highlight-box {
  padding: 24px;
  background: #111827;
  border-left: 4px solid #38bdf8;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote {
  font-style: italic;
  color: #d1d5db;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #0b0f14;
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 18px;
}

.tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #93c5fd;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.pricing-card {
  flex: 1 1 240px;
  border-radius: 20px;
  padding: 20px;
  background: #111827;
  border: 1px solid rgba(148, 163, 184, 0.2);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.6rem;
  font-weight: 600;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  color: #cbd5f5;
}

input,
select,
textarea {
  background: #0b0f14;
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: #f3f4f6;
  padding: 10px 12px;
  border-radius: 8px;
}

.inline-cta {
  color: #38bdf8;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #f59e0b;
  color: #0b0f14;
  font-weight: 600;
  z-index: 10;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw;
  background: #0f172a;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.footer a {
  color: #93c5fd;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #111827;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.banner-hidden {
  display: none;
}

.page-banner {
  padding: 30px 6vw;
  background: url("assets/pattern.svg") center/cover no-repeat;
}

.page-banner h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.address-card {
  background: #111827;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.two-column > div {
  flex: 1 1 260px;
}

.muted {
  color: #94a3b8;
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.privacy-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.note-box {
  padding: 18px;
  border: 1px dashed rgba(148, 163, 184, 0.4);
  background: rgba(17, 24, 39, 0.6);
}

@media (max-width: 720px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .sticky-cta {
    right: 12px;
    bottom: 88px;
  }
}
