* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1e1e24;
  --muted: #5b5b67;
  --surface: #ffffff;
  --accent: #305f72;
  --accent-dark: #254b5a;
  --soft: #f3f0ea;
  --soft-2: #eef3f5;
  --highlight: #f7e6c9;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 6vw 10px;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 260px;
  text-align: right;
}

main {
  flex: 1;
}

.section {
  padding: 64px 6vw;
}

.section.narrow {
  padding: 56px 12vw;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.panel.box {
  padding: 28px;
  background: var(--soft);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.panel.accent {
  background: var(--soft-2);
}

.hero {
  padding: 50px 6vw 72px;
}

.hero-block {
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  padding: 20px 0;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-image {
  flex: 1 1 320px;
  background: #dfe7ee;
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
  position: relative;
}

.hero-image .overlay {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.88);
  padding: 14px 18px;
  border-radius: 16px;
  max-width: 80%;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.light {
  background: var(--highlight);
  color: var(--ink);
}

.btn.ghost {
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  background: transparent;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--surface);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 150px;
  border-radius: 14px;
  background-color: #cfd8dc;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.82rem;
  align-self: flex-start;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 18px 20px;
  border-radius: 16px;
  background: var(--soft);
}

.pricing-item span {
  font-weight: 600;
}

.service-select {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  background: #fff;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4d4d8;
  font: inherit;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px 20px;
  max-width: 360px;
  z-index: 20;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

footer {
  background: var(--soft-2);
  padding: 42px 6vw;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.footer-col {
  flex: 1 1 200px;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 18px;
}

.legal-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.image-frame {
  background-color: #d8e1e8;
  border-radius: 18px;
  overflow: hidden;
}

.frame-360 {
  height: 360px;
}

.frame-320 {
  height: 320px;
}

.frame-280 {
  height: 280px;
}

.frame-card {
  height: 150px;
}

.cta-space {
  margin-top: 18px;
}

.panel-stack {
  margin-top: 20px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offset {
  margin-left: 6vw;
  margin-right: 12vw;
}

.offset-right {
  margin-right: 6vw;
  margin-left: 12vw;
}

@media (max-width: 780px) {
  .ad-label {
    text-align: left;
    max-width: none;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    text-align: center;
  }

  .offset,
  .offset-right {
    margin: 0;
  }
}
