* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #182024;
  --muted: #4b5a62;
  --mist: #eef2f4;
  --ice: #f8fafb;
  --accent: #1f6f8b;
  --accent-dark: #0e3e4f;
  --sand: #f6efe9;
  --glow: #dfe9ee;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--ice);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw;
  background: var(--ice);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.cta-button,
.ghost-button {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(31, 111, 139, 0.2);
}

.ghost-button {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: #fff;
}

.cta-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding-bottom: 96px;
}

.section {
  padding: 56px 6vw;
}

.section--alt {
  background: var(--mist);
}

.section--sand {
  background: var(--sand);
}

.split {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
  margin-bottom: 16px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0;
}

.pill {
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.9rem;
  border: 1px solid var(--glow);
}

.card-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  flex: 1 1 220px;
  border: 1px solid var(--glow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.3rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-item {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--glow);
}

.service-item img {
  flex: 1 1 220px;
}

.service-item .service-info {
  flex: 2 1 320px;
}

.form-panel {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid var(--glow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfd8dc;
  font-size: 1rem;
  background: #fff;
}

textarea {
  min-height: 120px;
}

.footer {
  padding: 32px 6vw 64px;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #fff;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 5;
}

.banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0e1720;
  color: #fff;
  padding: 16px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 6;
}

.banner.hidden {
  display: none;
}

.banner-buttons {
  display: flex;
  gap: 12px;
}

.banner button {
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.banner .accept {
  background: #4dd0e1;
}

.banner .reject {
  background: #455a64;
  color: #fff;
}

.tagline {
  font-weight: 600;
  color: var(--accent-dark);
}

.split-note {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  border: 1px dashed var(--accent);
}

.layered {
  position: relative;
}

.layered::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 10%;
  width: 80%;
  height: 120%;
  background: var(--glow);
  border-radius: 24px;
  z-index: -1;
}

@media (max-width: 780px) {
  header {
    padding: 20px 5vw;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
