* {
  box-sizing: border-box;
}

:root {
  --ink: #1e1f24;
  --muted: #5d6472;
  --paper: #f6f7fb;
  --sand: #f2efe9;
  --pine: #0f3d3e;
  --sky: #dfe9f4;
  --accent: #2c6bed;
  --accent-dark: #1f4fb8;
  --border: #d9dde7;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-dark);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

header {
  padding: 24px 6%;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  font-weight: 600;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 320px;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  padding: 64px 6%;
}

.section.alt {
  background: var(--paper);
}

.section.soft {
  background: var(--sand);
}

.section.sky {
  background: var(--sky);
}

.split {
  display: flex;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero-text h1 {
  font-size: 2.7rem;
  margin: 0 0 16px;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-media {
  min-height: 360px;
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  background-color: #c5cfda;
}

.section-bg-tech {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  min-height: 300px;
  background-color: #c9d1dd;
}

.image-frame {
  border-radius: 16px;
  overflow: hidden;
  background-color: #d8dee9;
}

.frame-slate {
  background-color: #cfd9e6;
}

.frame-steel {
  background-color: #d8dee9;
}

.frame-ice {
  background-color: #e0e6ee;
}

.frame-ash {
  background-color: #dfe5ec;
}

.frame-cloud {
  background-color: #d3dde7;
}

.frame-haze {
  background-color: #d5dde8;
}

.frame-mist {
  background-color: #d9e1ea;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #ffffff;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--border);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(44, 107, 237, 0.25);
}

.btn.outline {
  background: transparent;
  color: var(--accent);
}

.btn.soft {
  border-color: var(--pine);
  background: var(--pine);
}

.btn.soft:hover,
.btn.soft:focus {
  box-shadow: 0 8px 20px rgba(15, 61, 62, 0.25);
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #ffffff;
  align-items: center;
  flex-wrap: wrap;
}

.card .card-media {
  flex: 0 0 140px;
  height: 120px;
}

.card .card-body {
  flex: 1 1 220px;
}

.price {
  font-weight: 700;
  color: var(--pine);
}

.highlight {
  font-weight: 700;
  color: var(--pine);
}

.inline-cta {
  font-weight: 600;
}

.grid-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.grid-row .mini-card {
  flex: 1 1 200px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  background: #ffffff;
}

.form-wrap {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  background: #ffffff;
}

.form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-col {
  flex: 1 1 220px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.service-choices {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.service-choice {
  border: 1px solid var(--border);
  padding: 12px 14px;
  border-radius: 14px;
  background: #ffffff;
  cursor: pointer;
}

.service-choice.active {
  border-color: var(--accent);
  box-shadow: 0 6px 16px rgba(44, 107, 237, 0.18);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
}

.sticky-cta .btn {
  background: #111827;
  border-color: #111827;
}

.sticky-cta .btn:hover,
.sticky-cta .btn:focus {
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.3);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.footer {
  padding: 40px 6%;
  background: #0f172a;
  color: #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #c7d2fe;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.muted {
  color: var(--muted);
}

.legal-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.legal-grid > div {
  flex: 1 1 260px;
}

.contact-panel {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  background: #ffffff;
}

.notice {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--muted);
}

.page-title {
  font-size: 2.1rem;
  margin: 8px 0 12px;
}

@media (max-width: 880px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 16px;
    bottom: 16px;
  }
}
