:root {
  --brand-blue: #2156c9;
  --brand-blue-dark: #173f9b;
  --brand-orange: #ea7a1f;
  --ink: #12243e;
  --ink-soft: #2d4465;
  --text-muted: #4f6380;
  --bg-main: #f5f9ff;
  --bg-panel: #ffffff;
  --bg-soft: #eaf2ff;
  --line: #d2dff1;
  --ok: #157347;
  --focus: #0b63f3;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 460px at 5% -15%, rgba(33, 86, 201, 0.14), transparent 62%),
    radial-gradient(680px 340px at 95% -10%, rgba(234, 122, 31, 0.15), transparent 58%),
    #f7faff;
  line-height: 1.68;
  font-size: 18px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.container {
  width: min(1200px, 100% - 2.5rem);
  margin: 0 auto;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(10, 28, 60, 0.08);
  padding: 0.75rem 1.2rem;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.97rem;
}

.nav-links a {
  padding: 0.5rem 0.72rem;
  border-radius: 10px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-blue);
  background: var(--bg-soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.mobile-nav-logo {
  height: 35px;
  width: auto;
}

.footer-contact-title {
  margin-top: 1.5rem;
}

.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.94rem;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.55rem 1rem;
}

.nav-login:hover {
  color: var(--brand-blue);
  border-color: #b8cbeb;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--brand-orange) 0%, #d86712 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.96rem;
  border-radius: 999px;
  padding: 0.62rem 1.1rem;
  box-shadow: 0 12px 22px rgba(217, 103, 18, 0.3);
}

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

/* Hero */
.hero {
  padding: 5.6rem 1.2rem 3.4rem;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.4rem;
  align-items: center;
}

.hero-badges {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.44rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.badge-blue {
  background: #eaf2ff;
  color: var(--brand-blue);
  border-color: #c8daf5;
}

.text-yellow {
  color: #d28700;
}

.hero-text h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.35rem, 1.5rem + 3.1vw, 4.5rem);
  line-height: 1.08;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-text p {
  font-size: clamp(1.08rem, 0.97rem + 0.58vw, 1.34rem);
  color: var(--text-muted);
  max-width: 60ch;
  margin-bottom: 1.45rem;
}

.hero-buttons {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 13px;
  padding: 0.85rem 1.28rem;
  font-weight: 800;
  font-size: 0.98rem;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  color: #fff;
  box-shadow: 0 12px 26px rgba(25, 62, 145, 0.28);
}

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

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: #b8cbeb;
  background: #f6f9ff;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 28px 52px rgba(21, 34, 56, 0.18);
}

.trust-strip {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.trust-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.8rem;
  font-size: 0.93rem;
  color: var(--ink-soft);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

/* Sections */
.services,
.pricing,
.about-preview {
  padding: 4.4rem 1.2rem;
}

.services {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  margin-bottom: 1.8rem;
}

.section-title span {
  display: inline-block;
  margin-bottom: 0.4rem;
  color: var(--brand-blue);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.9rem, 1.35rem + 1.7vw, 3rem);
  max-width: 780px;
}

.section-title.center {
  text-align: center;
}

.section-title.center h2 {
  margin-left: auto;
  margin-right: auto;
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.15rem;
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(20, 45, 82, 0.14);
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  margin-bottom: 0.65rem;
}

.box-blue { background: #eaf2ff; color: #1f4fb8; }
.box-orange { background: #fff1e6; color: #c95c07; }
.box-green { background: #ebfaef; color: #157347; }
.box-red { background: #fef0f0; color: #b62929; }

.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  margin-bottom: 0.45rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

.process {
  padding: 0 1.2rem 4.4rem;
}

.process-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.process-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(20, 45, 82, 0.06);
}

.process-card span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  background: var(--brand-blue);
  color: #fff;
  border-radius: 9px;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.process-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.12rem;
  margin-bottom: 0.35rem;
}

.process-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.about-preview {
  background: linear-gradient(180deg, #f3f8ff 0%, #edf4ff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-preview .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1.1rem;
}

.about-preview h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 1.35rem + 1.2vw, 2.6rem);
  margin-bottom: 0.65rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--brand-blue);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-preview p {
  margin-bottom: 0.85rem;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.about-preview img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

.pricing {
  background: #fff;
}

.text-center {
  text-align: center;
}

.pricing h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.9rem, 1.35rem + 1.6vw, 2.95rem);
  margin-bottom: 0.4rem;
}

.subtitle {
  color: var(--text-muted);
  font-size: 1.08rem;
  margin-bottom: 1.8rem;
}

.pricing-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.pricing-icon {
  font-size: 2rem;
  color: var(--brand-blue);
  margin-bottom: 0.5rem;
}

.pricing-card h4 {
  color: var(--ink-soft);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.35rem;
}

.price {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
}

.price span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

.cta-band {
  padding: 0 1.2rem 4.4rem;
}

.cta-inner {
  background: linear-gradient(140deg, #15345f 0%, #1f4fb8 80%);
  border-radius: 22px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cta-inner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.45rem, 1.1rem + 1.1vw, 2rem);
  margin-bottom: 0.35rem;
}

.cta-inner p {
  color: #dfeaff;
}

.cta-inner .btn-secondary {
  border-color: rgba(255,255,255,0.45);
  color: #fff;
  background: rgba(255,255,255,0.1);
}

/* Footer */
.footer {
  background: #13243b;
  color: #f1f5ff;
  padding: 3.6rem 1.2rem 1.5rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-logo {
  height: 45px;
  width: auto;
  margin-bottom: 0.75rem;
  filter: brightness(0) invert(1);
}

.footer-col p,
.footer-col li,
.footer-col a {
  color: #cfdbf5;
  font-size: 0.96rem;
}

.footer-col h4 {
  font-size: 1.03rem;
  margin-bottom: 0.65rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.35rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-phone {
  color: #ffb06f;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.45rem 0;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(210, 224, 248, 0.25);
  margin-right: 0.35rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 1rem;
  color: #cfdbf5;
  font-size: 0.88rem;
}

/* Off-canvas mobile nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(88vw, 360px);
  height: 100vh;
  background: #fff;
  z-index: 9999;
  padding: 1.4rem;
  box-shadow: -10px 0 30px rgba(0,0,0,0.16);
  transition: right 0.28s ease;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.mobile-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.mobile-close {
  border: 1px solid var(--line);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}

.mobile-nav a {
  padding: 0.78rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-weight: 700;
  color: var(--ink-soft);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,0.5);
  display: none;
}

.mobile-nav-overlay.active {
  display: block;
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

/* Utilities */
.hidden-mobile { display: none !important; }
.mt-2 { margin-top: 0.65rem; }

.bonnetje {
  width: 100% !important;
  max-width: 350px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex !important;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .about-preview .container {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .process-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

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

  .nav-actions .nav-phone,
  .nav-actions .nav-login {
    display: none !important;
  }
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }

  body {
    font-size: 16px;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-text,
  .section-title,
  .text-center {
    text-align: left;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary,
  .nav-phone {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .cta-inner .hero-buttons {
    width: 100%;
  }

  .container {
    width: min(1200px, 100% - 1.1rem);
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-col {
    text-align: center;
  }

  .socials {
    display: flex;
    justify-content: center;
  }
}

@media (min-width: 1025px) {
  .mobile-nav,
  .mobile-nav-overlay,
  .mobile-toggle {
    display: none !important;
  }

  .hidden-desktop {
    display: none !important;
  }
}

