/* Base */
:root {
  --bg: #0b0f14;
  --bg-soft: #111823;
  --bg-light: #f4f6f9;
  --text: #0e141b;
  --text-light: #f6f8fb;
  --accent: #3bd6c6;
  --accent-dark: #1aa191;
  --muted: #6f7a87;
  --border: #d7dde6;
  --shadow: 0 20px 50px rgba(8, 16, 24, 0.2);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
}

.brand span {
  color: var(--accent-dark);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  background: var(--bg);
  color: var(--text-light);
  border-radius: var(--radius);
  padding: 48px;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}

.hero .split {
  align-items: center;
}

.hero h1 {
  font-size: 40px;
  margin: 0 0 18px;
}

.hero p {
  font-size: 18px;
  color: rgba(246, 248, 251, 0.85);
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #03110f;
}

.btn-primary:hover {
  background: #53e5d8;
}

.btn-outline {
  background: transparent;
  border-color: #9be6de;
  color: #fff;
}

.btn-dark {
  background: var(--bg-soft);
  color: #fff;
}

.split {
  display: flex;
  gap: 32px;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
}

.section {
  padding: 52px 0;
}

.section.alt {
  background: var(--bg-light);
}

.section.soft {
  background: #e8f4f2;
}

.section h2 {
  font-size: 30px;
  margin: 0 0 18px;
}

.section h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
  font-weight: 600;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(11, 15, 20, 0.08);
  flex: 1;
  min-width: 220px;
}

.card img {
  margin-bottom: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(59, 214, 198, 0.2);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 600;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}

.service-meta {
  max-width: 70%;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
  white-space: nowrap;
}

.testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border-left: 4px solid var(--accent);
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: inherit;
}

.footer {
  padding: 40px 0 60px;
  background: var(--bg);
  color: var(--text-light);
}

.footer .split {
  align-items: flex-start;
}

.footer a {
  color: var(--text-light);
  opacity: 0.8;
}

.tiny {
  font-size: 12px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #02110f;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: none;
  align-items: center;
  gap: 18px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.two-col {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1;
  min-width: 260px;
}

.notice {
  padding: 16px;
  border-radius: 16px;
  background: #fff4d8;
  border: 1px solid #ffd99b;
}

.section-image {
  box-shadow: var(--shadow);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #02110f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .hero {
    padding: 36px;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
