*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f6f2ee;
  --bg-2: #eef3f5;
  --bg-3: #f2f0f6;
  --text: #1f2328;
  --muted: #5b626a;
  --accent: #2f5f8f;
  --accent-2: #2f7b6b;
  --card: #ffffff;
  --border: #e3e0dc;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

header {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 6vw;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-disclosure {
  background: var(--bg-2);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.hero {
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 23, 38, 0.05), rgba(13, 23, 38, 0.6));
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 70px 6vw 60px;
  max-width: 720px;
  color: #fff;
}

.hero-inner h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.hero-inner p {
  margin: 0 0 24px;
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary {
  background: var(--accent-2);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.section {
  padding: 70px 6vw;
  background: var(--bg);
}

.section-alt {
  background: var(--bg-2);
}

.section-ink {
  background: #111827;
  color: #f9fafb;
}

.section-ink a {
  color: #e0f2fe;
}

.section-journey {
  background-image: linear-gradient(
      rgba(246, 242, 238, 0.88),
      rgba(246, 242, 238, 0.88)
    ),
    url("https://images.unsplash.com/photo-1491553895911-0055eca6402d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-road {
  background-image: linear-gradient(
      rgba(238, 243, 245, 0.9),
      rgba(238, 243, 245, 0.9)
    ),
    url("https://images.unsplash.com/photo-1473625247510-8ceb1760943f?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin: 0 0 16px;
}

.section-lead {
  max-width: 720px;
  color: var(--muted);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.img-frame {
  background: #dfe7ee;
  padding: 8px;
  border-radius: 16px;
}

.img-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.story-card {
  background: var(--card);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.08);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-item span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: var(--card);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  background: #e7edf2;
}

.testimonial {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
  border-radius: 12px;
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.pricing-card {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card strong {
  font-size: 1.3rem;
}

.highlight {
  background: var(--bg-3);
  padding: 28px;
  border-radius: 16px;
  border: 1px dashed var(--border);
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--border);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 1rem;
  background: #fafafa;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent-2);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.2);
  z-index: 5;
}

footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 50px 6vw;
}

footer a {
  color: #bae6fd;
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-cols div {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.15);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
}

.cookie-btn.reject {
  background: #c2410c;
}

@media (max-width: 780px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-inner {
    padding: 60px 6vw 50px;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
