* {
  box-sizing: border-box;
}

:root {
  --ink: #10212c;
  --muted: #5b6b78;
  --accent: #1e6f7a;
  --accent-dark: #144c54;
  --surface: #f5f7f9;
  --surface-deep: #e7edf2;
  --highlight: #fff2d5;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-dark);
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: #ffffff;
  border-bottom: 1px solid var(--surface-deep);
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--highlight);
  color: #6a4a00;
}

.hero {
  padding: 64px 6vw;
  background: var(--surface);
}

.split {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1;
  min-width: 0;
}

.split .media {
  flex: 1;
  min-width: 0;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0 0 16px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button:hover,
.button:focus {
  background: var(--accent-dark);
  color: #ffffff;
}

.button.secondary:hover,
.button.secondary:focus {
  background: var(--accent);
  color: #ffffff;
}

.section {
  padding: 64px 6vw;
}

.section.alt {
  background: var(--surface);
}

.section.deep {
  background: var(--surface-deep);
}

.section h2 {
  font-size: 2rem;
  margin: 0 0 16px;
}

.section p {
  color: var(--muted);
}

.image-frame {
  background: #dce6ec;
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.stat-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-card {
  flex: 1;
  min-width: 180px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(16, 33, 44, 0.08);
}

.stat-card strong {
  font-size: 1.6rem;
  display: block;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 20px;
  gap: 16px;
  box-shadow: 0 8px 16px rgba(16, 33, 44, 0.08);
}

.service-item span {
  color: var(--muted);
}

.service-item button {
  border: none;
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
}

.service-item button:hover,
.service-item button:focus {
  color: var(--accent-dark);
}

.form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 30px rgba(16, 33, 44, 0.12);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cad4dc;
  font-size: 1rem;
}

.testimonial {
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(16, 33, 44, 0.08);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 18px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: var(--accent-dark);
  color: #ffffff;
}

.page-hero {
  padding: 48px 6vw;
  background: var(--surface);
}

.page-hero h1 {
  margin-bottom: 12px;
}

.grid-cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 240px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(16, 33, 44, 0.08);
}

.card .card-body {
  padding: 18px;
}

.card h3 {
  margin-top: 0;
}

.footer {
  padding: 32px 6vw;
  background: #0f1e26;
  color: #d9e3ea;
}

.footer a {
  color: #8dd1dc;
}

.footer a:hover,
.footer a:focus {
  color: #ffffff;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.footer small {
  color: #afc1cc;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  color: var(--ink);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(16, 33, 44, 0.15);
  max-width: 320px;
  z-index: 20;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.legal-content {
  padding: 32px 6vw 64px;
}

.legal-content h2 {
  margin-top: 32px;
}

.notice {
  background: var(--highlight);
  padding: 14px 18px;
  border-radius: 12px;
  color: #6a4a00;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
