* {
  box-sizing: border-box;
}

:root {
  --ink: #0f1a24;
  --muted: #5a6b78;
  --accent: #2f6bff;
  --accent-dark: #1e4fd6;
  --surface: #f4f6f9;
  --panel: #ffffff;
  --warm: #f7efe6;
  --deep: #101b3b;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  background-color: #dbe2f0;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #e6e9ef;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--ink);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 56px 6vw 32px;
  align-items: stretch;
  background: var(--surface);
}

.hero-copy {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-copy h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin: 0;
}

.hero-copy p {
  color: var(--muted);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.button:hover {
  background: var(--accent-dark);
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.hero-media {
  flex: 1 1 360px;
  background: #dbe2f0;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 52px 6vw;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy,
.split .media {
  flex: 1 1 320px;
}

.split .copy h2 {
  margin-top: 0;
  font-size: 2rem;
}

.split .copy p {
  margin: 12px 0 0;
  color: var(--muted);
}

.media-frame {
  background: #dbe2f0;
  border-radius: 18px;
  overflow: hidden;
  padding: 10px;
}

.media-frame img {
  border-radius: 14px;
  width: 100%;
  height: 320px;
}

.panel {
  padding: 48px 6vw;
  background: var(--warm);
}

.panel-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 24px rgba(15, 26, 36, 0.06);
}

.card img {
  border-radius: 12px;
  width: 100%;
  height: 160px;
}

.card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  color: var(--deep);
}

.inline-link {
  font-weight: 600;
}

.form-wrap {
  background: var(--panel);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap.hidden {
  display: none;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d3d9e4;
  font-size: 1rem;
  font-family: inherit;
}

.testimonial {
  background: #ffffff;
  padding: 18px;
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  color: var(--muted);
}

.cta-band {
  background: var(--deep);
  color: #ffffff;
  padding: 42px 6vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cta-band p {
  margin: 0;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.sticky-cta button {
  border-radius: 999px;
  padding: 12px 18px;
}

footer {
  margin-top: auto;
  background: #0c1222;
  color: #cbd4e2;
  padding: 36px 6vw;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.footer-columns a {
  color: #cbd4e2;
}

.footer-note {
  margin-top: 24px;
  color: #9aa6b6;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 36px rgba(15, 26, 36, 0.18);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1 1 auto;
}

.highlight {
  background: #eef2ff;
  padding: 8px 12px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.spacer {
  height: 20px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-title {
  padding: 36px 6vw 10px;
  font-size: 2.2rem;
  margin: 0;
}

.content {
  padding: 18px 6vw 48px;
}

.content p {
  color: var(--muted);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(15, 26, 36, 0.08);
}

.section-bg {
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section-bg .copy p {
  color: #e8edf6;
}

.section-bg .highlight {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.bg-soft {
  background-color: #dbe2f0;
}

.bg-deep {
  background-color: #1b233a;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.bg-forecast {
  background-image: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1400&q=80");
}

@media (max-width: 800px) {
  .hero {
    padding-top: 32px;
  }

  .hero-copy h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    position: static;
    margin: 24px 6vw 0;
  }
}
