:root {
  --ink: #1d1f24;
  --muted: #5b6270;
  --accent: #1b4d89;
  --accent-soft: #e7eef9;
  --warm: #f6f0e9;
  --line: #d9dde5;
  --surface: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background-color: #f8f8f6;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.top-bar {
  background: #0e1320;
  color: #f5f7fb;
  font-size: 0.9rem;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav a {
  color: #f5f7fb;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fefefe;
  padding: 6rem 0 5rem;
}

.hero .hero-inner {
  background: rgba(12, 14, 20, 0.72);
  padding: 2.5rem;
  width: min(650px, 95%);
}

.hero p {
  color: #e6e9f2;
}

.section {
  padding: 4rem 0;
}

.section.alt {
  background: var(--warm);
}

.section.dark {
  background: #131722;
  color: #f5f7fb;
}

.section.dark p,
.section.dark li {
  color: #e4e8f2;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.split {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 280px;
}

.image-frame {
  background-color: #d6dde8;
  padding: 0.4rem;
}

.cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.5rem;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card.dark {
  background: #1b2234;
  border-color: #2f3a54;
}

.card img {
  width: 100%;
  height: 180px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.light {
  background: #fff;
  color: #1b2234;
}

.inline-cta {
  font-weight: 600;
}

.notice {
  background: var(--accent-soft);
  padding: 1.5rem;
  border-left: 4px solid var(--accent);
}

.form-wrap {
  background: #ffffff;
  padding: 2rem;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 1rem;
}

.footer {
  background: #0f1320;
  color: #dfe4ef;
  padding: 2.5rem 0;
}

.footer a {
  color: #dfe4ef;
}

.footer .cols {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer small {
  color: #b7bfcc;
}

.sticky-cta {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 0.9rem 1rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  box-shadow: 0 8px 20px rgba(12, 16, 24, 0.2);
  z-index: 30;
}

.sticky-cta button {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1rem;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 1.2rem;
  display: none;
  z-index: 40;
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.section.bg-archive {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f5f7fb;
}

.section.bg-archive .notice {
  background: rgba(12, 14, 20, 0.7);
  color: #f5f7fb;
  border-left-color: #f5f7fb;
}

.page-hero {
  background: #151a28;
  color: #f5f7fb;
  padding: 3.5rem 0 3rem;
}

.page-hero .split {
  align-items: center;
}

.page-hero img {
  width: 100%;
  height: 260px;
}

.service-grid {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.service-tile {
  flex: 1 1 250px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.service-tile img {
  height: 160px;
}

.highlight {
  background: #ffffff;
  border-left: 5px solid #1b4d89;
  padding: 1.5rem;
}

.list-plain {
  padding-left: 1.2rem;
}

.list-plain li {
  margin-bottom: 0.4rem;
}

@media (max-width: 760px) {
  .hero {
    padding: 4.5rem 0 4rem;
  }

  .hero .hero-inner {
    padding: 1.6rem;
  }

  .sticky-cta {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    justify-content: space-between;
  }
}
