* {
  box-sizing: border-box;
}

:root {
  --ink: #1a1f2b;
  --muted: #4a5160;
  --soft: #f4f6f9;
  --accent: #2b6cb0;
  --accent-soft: #e1ecf8;
  --warm: #f7f0e8;
  --line: #d7dde7;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 28px 6vw 12px;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

.nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.nav-links a {
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 0 6vw 48px;
  gap: 24px;
}

.hero-top {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 0 0;
}

.hero-text h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin: 0;
}

.hero-text p {
  margin: 0;
  color: var(--muted);
}

.hero-card {
  flex: 0.9;
  background: var(--warm);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: flex-start;
}

.hero-card strong {
  font-size: 1.1rem;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.split {
  flex-direction: row;
  gap: 32px;
  align-items: center;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section h2 {
  margin: 0;
  font-size: 2rem;
}

.section p {
  margin: 0;
  color: var(--muted);
}

.offset-card {
  background: var(--soft);
  padding: 24px;
  max-width: 440px;
  align-self: flex-start;
}

.image-frame {
  background: #dfe6f1;
  padding: 10px;
}

.image-frame--stretch {
  align-self: stretch;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  border: 1px solid var(--line);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 12px;
  font-size: 0.85rem;
}

.form-section {
  background: var(--soft);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #121826;
  color: #e7eaf0;
}

.footer a {
  color: #e7eaf0;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-note {
  font-size: 0.85rem;
  color: #c6cbd6;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 18px;
  font-size: 0.9rem;
  cursor: pointer;
}

.banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fdfcf9;
  border-top: 1px solid var(--line);
  padding: 16px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  z-index: 40;
}

.banner.hidden {
  display: none;
}

.banner-actions {
  display: flex;
  gap: 12px;
}

.bg-signal {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-signal .offset-card {
  background: rgba(18, 24, 38, 0.82);
  color: #fff;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quote {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  color: var(--muted);
}

.page-title {
  font-size: 2.2rem;
  margin: 0;
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.table-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.notice {
  padding: 16px;
  background: var(--warm);
}

.wide {
  width: 100%;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 900px) {
  .hero-top,
  .section.split,
  .section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    width: calc(100% - 32px);
  }
}
