* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f5f2;
  --ink: #1f2428;
  --muted: #5f6b75;
  --accent: #1f5b5f;
  --accent-2: #b86b3d;
  --light: #ffffff;
  --soft: #e6e3dc;
  --shadow: 0 20px 50px rgba(31, 36, 40, 0.12);
  --radius: 18px;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 8vw 12px;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--light);
  font-weight: 600;
  font-size: 14px;
}

.section {
  padding: 60px 8vw;
}

.section.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section.split .split-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section.split .split-text,
.section.split .split-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section.split.alt {
  background: var(--light);
  border-radius: var(--radius);
  margin: 0 6vw;
  box-shadow: var(--shadow);
}

.section.split.alt .split-wrap {
  padding: 32px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 12px;
  color: var(--accent-2);
  font-weight: 700;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 22px;
}

p {
  color: var(--muted);
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(31, 91, 95, 0.08);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: var(--soft);
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.primary {
  background: var(--accent);
  color: var(--light);
}

.btn.secondary {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn.ghost {
  border-color: var(--soft);
  color: var(--ink);
  background: var(--light);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  display: flex;
  gap: 16px;
  padding: 14px;
  border-radius: 14px;
  background: var(--soft);
}

.stat strong {
  font-size: 24px;
  color: var(--accent);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card .price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  border: 1px solid var(--soft);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  background: var(--light);
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--light);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 13px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d7d7d7;
  font-size: 14px;
  background: #fff;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 8vw;
  background: #171b1e;
  color: #e8e8e8;
}

.footer a {
  color: #cbd2d7;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent-2);
  color: var(--light);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 700;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: var(--light);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: var(--light);
}

.cookie-reject {
  background: var(--soft);
  color: var(--ink);
}

.page-hero {
  background: url("../images/hero-atm.svg") center/cover no-repeat;
  border-radius: var(--radius);
  padding: 50px;
  color: var(--light);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}

.page-hero p {
  color: #e5e5e5;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--light);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--soft);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

@media (min-width: 900px) {
  .section.split .split-wrap {
    flex-direction: row;
    align-items: center;
  }

  .section.split.reverse .split-wrap {
    flex-direction: row-reverse;
  }

  .section.split .split-media {
    align-items: center;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33% - 12px);
  }

  .two-col {
    flex-direction: row;
  }

  .two-col .info-card {
    flex: 1;
  }
}
