* {
  box-sizing: border-box;
}

:root {
  --ink: #0f172a;
  --muted: #4b5563;
  --line: #d8dde6;
  --paper: #f7f8fb;
  --accent: #1f6feb;
  --accent-dark: #1356b3;
  --warm: #f2efe9;
  --cool: #eef6ff;
  --brand: #0b3b59;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--paper);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 64px 6vw 40px;
  align-items: center;
  background: var(--cool);
}

.hero-copy {
  flex: 1 1 320px;
  max-width: 560px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-copy p {
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-media {
  flex: 1 1 320px;
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions.offset {
  margin-top: 18px;
}

.hero-frame {
  width: 100%;
  max-width: 520px;
}

.img-frame {
  background: #cfd8e3;
  padding: 8px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.img-frame img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlap-card {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 14px;
  max-width: 260px;
  position: absolute;
  bottom: -26px;
  left: -16px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--accent-dark);
}

.btn-ghost {
  background: #ffffff;
  color: var(--brand);
  border: 1px solid var(--line);
}

.section {
  padding: 72px 6vw;
}

.section-alt {
  background: var(--warm);
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.section-lead {
  color: var(--muted);
  max-width: 720px;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 280px;
}

.asym-media {
  flex: 1 1 320px;
}

.strip {
  background: #0b3b59;
  color: #ffffff;
  padding: 44px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.strip a {
  color: #ffffff;
  text-decoration: underline;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
}

.price {
  font-weight: 700;
  color: var(--brand);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-left: 2px solid var(--line);
  padding-left: 22px;
}

.timeline div {
  padding: 10px 12px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.form-wrap {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 16px 24px rgba(15, 23, 42, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 48px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  color: var(--muted);
}

.footer a {
  color: var(--muted);
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.18);
  z-index: 20;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  max-width: 320px;
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.12);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e7f0ff;
  color: #1b4d91;
  font-weight: 600;
  font-size: 0.85rem;
}

.notice {
  background: #fff7e6;
  border: 1px solid #f2d599;
  padding: 18px;
  border-radius: 16px;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.two-col > div {
  flex: 1 1 260px;
}

.hero-bg {
  background: url("https://images.pexels.com/photos/19784171/pexels-photo-19784171.jpeg") center/cover no-repeat;
  color: #ffffff;
  padding: 70px 6vw;
  border-radius: 28px;
  position: relative;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 24, 44, 0.55);
  border-radius: 28px;
}

.hero-bg-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.hero-bg p {
  color: #e2e8f0;
}

.bg-panel {
  background: url("https://images.pexels.com/photos/32529354/pexels-photo-32529354.jpeg") center/cover no-repeat;
  border-radius: 28px;
  padding: 60px 6vw;
  color: #ffffff;
  position: relative;
}

.bg-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 59, 89, 0.6);
  border-radius: 28px;
}

.bg-panel-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

@media (max-width: 860px) {
  .overlap-card {
    position: static;
    max-width: none;
    margin-top: 16px;
  }

  .hero {
    padding-bottom: 70px;
  }
}
