:root {
  --bg: #f7fbfa;
  --surface: #ffffff;
  --surface-soft: #eef7f5;
  --text: #102a2a;
  --muted: #5e7272;
  --border: #d8e7e4;
  --primary: #123c46;
  --primary-hover: #0f333b;
  --accent: #8de3cf;
  --accent-strong: #4fc9aa;
  --shadow: 0 10px 30px rgba(18, 60, 70, 0.08);
  --radius: 18px;
  --container: 1200px;
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 251, 250, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}

.logo img {
  height: 36px;
  width: auto;
}

.site-nav,
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav {
  position: static;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a,
.main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.main-nav a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  padding: 0.65rem 0.8rem;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text);
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--primary-hover);
  color: #ffffff;
}

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

.btn-secondary:hover {
  background: var(--surface-soft);
}

.text-link {
  color: var(--primary);
  font-weight: 700;
}

.text-link:hover {
  color: var(--primary-hover);
}

/* =========================
   HERO / PAGE HEADER
========================= */

.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-lead,
.page-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 70ch;
}

.hero-lead {
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  color: var(--muted);
  font-weight: 600;
}

.page-hero {
  padding: 3.5rem 0 1.5rem;
}

/* =========================
   CARDS / BOXES
========================= */

.hero-card,
.card,
.benefit,
.price-box,
.cta-box,
.content-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.5rem;
}

.hero-card h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.info-list {
  display: grid;
  gap: 0.85rem;
}

.info-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.info-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.info-item span {
  color: var(--muted);
}

.section-head {
  max-width: 700px;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

.section-head p:last-child {
  color: var(--muted);
}

.services,
.why-us,
.pricing,
.faq-preview,
.cta {
  padding: 3rem 0;
}

.page-section {
  padding: 2rem 0 3rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  padding: 1.35rem;
  height: 100%;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
}

.card p {
  margin-top: 0;
  margin-bottom: 0.9rem;
  color: var(--muted);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.benefit {
  padding: 1.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.price-box {
  padding: 1.5rem;
}

.price-box h3 {
  margin-top: 0;
}

.price {
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0.5rem 0;
  color: var(--primary);
}

/* =========================
   FAQ
========================= */

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

/* =========================
   CTA
========================= */

.cta-box {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* =========================
   CONTENT LAYOUT
========================= */

.two-column {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

.content-box {
  padding: 1.5rem;
}

.content-box h2:first-child,
.content-box h3:first-child {
  margin-top: 0;
}

/* =========================
   FORM
========================= */

.contact-form {
  display: grid;
  gap: 0.8rem;
}

.contact-form label {
  font-weight: 700;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: #fff;
  color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
  border-color: var(--accent-strong);
}

/* =========================
   CHECK LIST
========================= */

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.check-list li {
  padding-left: 1.6rem;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 800;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  padding: 4rem 0 3rem;
  background: var(--primary);
  color: #fff;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.92);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li + li {
  margin-top: 0.55rem;
}

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.site-footer a:hover {
  color: #ffffff;
}

/* =========================
   COOKIE
========================= */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(16, 42, 42, 0.96);
  color: #fff;
  padding: 1rem 0;
  z-index: 2000;
}

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

.cookie-content p {
  margin: 0;
}

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

.hidden {
  display: none !important;
}

/* =========================
   TABLET / SMALL DESKTOP
========================= */

@media (max-width: 1200px) {
  .cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .hero-grid,
  .benefits,
  .two-column {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding: 3rem 0 2rem;
  }

  .page-hero {
    padding: 3rem 0 1.25rem;
  }
}

/* =========================
   MOBILE NAV
========================= */

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav,
  .main-nav ul {
    display: none;
    position: absolute;
    top: calc(var(--header-height) + 8px);
    left: 1rem;
    right: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .site-nav.open,
  .main-nav ul.open {
    display: flex;
  }

  .site-nav a,
  .main-nav a {
    display: block;
    width: 100%;
    padding: 0.8rem 0.9rem;
    border-radius: 12px;
  }

  .site-nav a:hover,
  .main-nav a:hover {
    background: var(--surface-soft);
  }

  .main-nav .btn-primary,
  .site-nav .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 0.35rem;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 640px) {
  .container {
    width: min(100% - 1rem, var(--container));
  }

  .header-inner {
    min-height: 70px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo img {
    height: 30px;
  }

  .hero {
    padding-top: 2.25rem;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .hero-lead,
  .page-lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cards,
  .benefits,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .benefit,
  .price-box,
  .content-box,
  .hero-card {
    padding: 1.15rem;
  }

  .section-head {
    margin-bottom: 1.5rem;
  }

  .section-head h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .page-section,
  .services,
  .why-us,
  .pricing,
  .faq-preview,
  .cta {
    padding: 2rem 0;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
  }

  .info-item {
    flex-direction: column;
    gap: 0.25rem;
  }
}
.breadcrumbs {
  padding: 1rem 0 0;
}

.breadcrumbs-nav {
  font-size: 0.95rem;
  color: var(--muted);
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.breadcrumbs-list li:not(:last-child)::after {
  content: "/";
  color: var(--muted);
}

.breadcrumbs-list a {
  color: var(--muted);
}

.breadcrumbs-list a:hover {
  color: var(--primary);
}

.breadcrumbs-list .current {
  color: var(--text);
  font-weight: 700;
}