:root {
  --ink: #0f1c24;
  --muted: #51606b;
  --accent: #1f7a8c;
  --accent-dark: #165d6b;
  --surface: #f2f6f8;
  --surface-strong: #e6eef2;
  --highlight: #f8f1e6;
  --border: #d2dde3;
  --shadow: 0 20px 50px rgba(15, 28, 36, 0.12);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
button:hover {
  transform: translateY(-1px);
}

img {
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  padding: 28px 0 12px;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  width: min(92%, var(--max-width));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand strong {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav a:hover {
  border-color: var(--accent);
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  border: 1px dashed var(--border);
  padding: 6px 10px;
  border-radius: 8px;
}

.main {
  flex: 1;
}

.section {
  padding: 72px 0;
}

.section-inner {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.panel-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.panel-card.emphasis {
  background: var(--highlight);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  width: fit-content;
}

.hero-title {
  font-size: 2.7rem;
  line-height: 1.1;
  margin: 0;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.button-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn.outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.dark {
  background: var(--accent-dark);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.media-box {
  background: #dde7ec;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.service-card .media-box {
  width: 120px;
  min-height: 100px;
}

.service-card h3 {
  margin: 0 0 6px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.highlight {
  background: var(--surface-strong);
}

.bg-flow {
  background: #eef4f7;
  background-image: url(\"https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80\");
  background-size: cover;
  background-position: center;
}

.quote {
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: #ffffff;
}

.form-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-field label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

.footer {
  background: #0f1c24;
  color: #f8fbfc;
  padding: 48px 0;
}

.footer-inner {
  width: min(92%, var(--max-width));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f8fbfc;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-dark);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  z-index: 50;
}

.sticky-cta button {
  border: none;
  background: #fff;
  color: var(--accent-dark);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: min(92%, 420px);
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
}

.page-title {
  font-size: 2.2rem;
  margin: 0;
}

.page-subtitle {
  color: var(--muted);
  margin: 6px 0 0;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  gap: 20px;
  padding: 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  justify-content: space-between;
}

.notice {
  padding: 20px;
  border-radius: 16px;
  background: var(--highlight);
}

@media (max-width: 960px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
