* {
  box-sizing: border-box;
}

:root {
  --ink: #1e2428;
  --muted: #556069;
  --soft: #f4f6f7;
  --accent: #0f6d68;
  --accent-dark: #0a4f4b;
  --sand: #efe8dc;
  --mist: #e7edf0;
  --sun: #f7d27a;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  padding: 28px 6vw 10px;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 30px 6vw 40px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  margin: 0 0 16px;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.btn-outline:hover {
  background: var(--accent-dark);
  color: #ffffff;
}

.tagline {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.section {
  padding: 40px 6vw;
}

.section.alt {
  background: var(--soft);
}

.section.full-bleed {
  padding: 60px 6vw;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-operations {
  background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1400&q=80");
}

.section.full-bleed .overlay {
  background: rgba(24, 29, 33, 0.58);
  padding: 36px;
  border-radius: 18px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.mt-24 {
  margin-top: 24px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(30, 36, 40, 0.08);
  overflow: hidden;
}

.card img {
  background: var(--mist);
}

.card .card-body {
  padding: 18px;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.media-box {
  border-radius: 16px;
  overflow: hidden;
  background: var(--mist);
}

.media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metrics {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.metric {
  flex: 1 1 180px;
  background: var(--sand);
  padding: 16px;
  border-radius: 14px;
}

.form-wrap {
  background: var(--mist);
  padding: 24px;
  border-radius: 18px;
}

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 #c7d0d5;
  font-size: 0.95rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-fields {
  display: none;
}

.form-fields.active {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--sand);
  padding: 18px 24px;
  border-radius: 16px;
}

.inline-cta {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid #e1e6ea;
  padding: 12px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  z-index: 10;
}

.sticky-cta button {
  white-space: nowrap;
}

footer {
  padding: 50px 6vw 90px;
  background: #151a1e;
  color: #e3e8ec;
}

footer a {
  color: #e3e8ec;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #c8d1d8;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  padding: 16px;
  max-width: 480px;
  width: calc(100% - 32px);
  z-index: 20;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 20px 6vw 30px;
}

.page-hero h1 {
  margin: 0 0 12px;
}

.simple-image {
  margin-top: 18px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--mist);
}

.no-phone {
  font-style: italic;
  color: var(--muted);
}

@media (max-width: 820px) {
  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
