@charset "UTF-8";

:root {
  --ink: #1f1f24;
  --muted: #5e6470;
  --accent: #0d6e66;
  --accent-light: #e1f2ee;
  --sun: #f5b949;
  --stone: #f4f2ef;
  --paper: #ffffff;
  --shadow: 0 24px 60px rgba(24, 24, 34, 0.12);
  --radius: 18px;
  --max-width: 1180px;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  gap: 16px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a:focus {
  border-bottom-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 6vw 64px;
  background: linear-gradient(125deg, #fdf7ed 0%, #f2f8f6 65%);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}

.hero-title {
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  line-height: 1.1;
  margin: 0;
}

.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-light);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  width: fit-content;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--paper);
  font-weight: 600;
  transition: var(--transition);
}

.button.secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(13, 110, 102, 0.18);
}

.hero-media {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  background: var(--paper);
  padding: 18px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 360px;
  align-self: flex-end;
  margin-top: -40px;
}

.section {
  padding: 60px 6vw;
}

.section.alt {
  background: var(--stone);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-card {
  background: var(--paper);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.grid-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.card img {
  border-radius: 14px;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.quote {
  border-left: 4px solid var(--sun);
  padding-left: 18px;
  font-style: italic;
  color: var(--muted);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--paper);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d9dbe2;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  background: var(--sun);
  color: #3a2b00;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.floating-cta:hover,
.floating-cta:focus {
  transform: translateY(-2px);
}

.footer {
  padding: 40px 6vw;
  background: #121317;
  color: #f6f7fb;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #1b1d22;
  color: #f6f7fb;
  padding: 18px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
  box-shadow: var(--shadow);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--sun);
  color: #3a2b00;
}

.cookie-reject {
  background: transparent;
  border: 1px solid #f6f7fb;
  color: #f6f7fb;
}

.page-title {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--paper);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.terms {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 820px;
}

@media (min-width: 860px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-media {
    flex: 1;
  }

  .split,
  .split.reverse {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .grid-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33% - 16px);
  }

  .pricing {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pricing-row {
    flex: 1 1 calc(50% - 18px);
  }

  .form-wrap {
    flex-direction: row;
    align-items: flex-start;
  }

  .form-wrap > div {
    flex: 1;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    bottom: 24px;
    max-width: 420px;
  }
}
