@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #f7f5f2;
  --ink: #1c1c1c;
  --muted: #5b5b5b;
  --accent: #3f6c8f;
  --accent-soft: #dce8f2;
  --warm: #f0e2d1;
  --cool: #e7eef3;
  --card: #ffffff;
  --border: #ded8d1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  background-color: #d8e1e7;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: #fff;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--accent-soft);
  padding: 10px 12px;
  border-radius: 12px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  padding: 6px 0;
}

.nav-toggle {
  display: none;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 18px;
  font-weight: 600;
  cursor: pointer;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 56px 64px 40px;
  background: var(--cool);
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-image {
  flex: 1 1 320px;
  background: #c9d7e1;
  border-radius: 24px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.section {
  padding: 40px 64px;
}

.section.alt {
  background: var(--warm);
}

.section.cool {
  background: var(--cool);
}

.section.bg-visual {
  background-color: #2f3b4a;
  background-image: url("https://images.unsplash.com/photo-1504384764586-bb4cdc1707b0?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.section.bg-visual .panel {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.section .eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 280px;
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
}

.image-frame {
  flex: 1 1 280px;
  background: #d8e1e7;
  border-radius: 20px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 240px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 14px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-cta {
  font-weight: 600;
}

.form-card {
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--border);
  padding: 24px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.two-col > div {
  flex: 1 1 200px;
}

.testimonial {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  margin: 16px 0;
}

.footer {
  padding: 40px 64px;
  background: #fff;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer small {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 14px;
  max-width: 320px;
  z-index: 20;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.legal {
  max-width: 880px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .nav {
    display: none;
    width: 100%;
    padding: 16px 0;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero,
  .section,
  .footer {
    padding: 32px 24px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 90px;
  }
}
