/* Op Orde Service — professioneel, rustig, toegankelijk */
:root {
  --blue-950: #0f1f33;
  --blue-900: #152a45;
  --blue: #1e3a5f;
  --blue-700: #274a73;
  --blue-500: #3d6a94;
  --blue-200: #c5d4e4;
  --blue-100: #e4ecf4;
  --blue-50: #f5f8fb;
  --ink: #162033;
  --ink-soft: #516074;
  --ink-muted: #6b7a8c;
  --line: #d9e2ec;
  --line-soft: #ebf0f5;
  --white: #ffffff;
  --sage: #2f6b52;
  --sage-soft: #e7f2ec;
  --wa: #1fad57;
  --shadow-sm: 0 1px 2px rgba(15, 31, 51, 0.04);
  --shadow: 0 10px 30px rgba(15, 31, 51, 0.08);
  --shadow-lg: 0 24px 48px rgba(15, 31, 51, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --max: 1120px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--blue-500);
}

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--blue);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
  border-radius: 8px;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid rgba(217, 226, 236, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--blue);
}

.brand:hover {
  color: var(--blue);
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9px;
  background: linear-gradient(145deg, var(--blue-700), var(--blue-950));
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.brand-mark svg {
  display: block;
}

.brand-logo {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  display: block;
  border-radius: 9px;
  background: transparent;
}

.brand-mark:has(.brand-logo) {
  background: transparent;
  box-shadow: none;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.brand-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.1rem;
}

.nav {
  display: none;
  align-items: center;
  gap: 0.2rem;
}

.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.98rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav a:hover,
.nav a.active {
  color: var(--blue);
  background: var(--blue-50);
}

.nav a.cta-nav {
  background: var(--blue);
  color: var(--white);
  margin-left: 0.25rem;
  padding-inline: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.nav a.cta-nav:hover {
  background: var(--blue-700);
  color: var(--white);
}

.nav a.nav-anydesk {
  background: var(--sage-soft);
  color: var(--sage);
  margin-left: 0.25rem;
  padding-inline: 1rem;
  font-weight: 600;
}

.nav a.nav-anydesk:hover {
  background: var(--sage);
  color: var(--white);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--blue);
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.2s var(--ease);
}

.nav-toggle[aria-expanded="true"] {
  background: var(--blue-100);
}

@media (min-width: 920px) {
  .nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

.nav.is-open {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: fixed;
  left: 0;
  right: 0;
  top: 4.5rem;
  max-height: calc(100vh - 4.5rem);
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 1.25rem 1.15rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  z-index: 110;
}

body.nav-open {
  overflow: hidden;
}

body.popup-open {
  overflow: hidden;
}

.nav.is-open a {
  padding: 0.9rem 1rem;
  border-radius: 10px;
}

.nav.is-open a.cta-nav,
.nav.is-open a.nav-anydesk {
  margin: 0.35rem 0 0;
  text-align: center;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.1rem;
  padding: 0.8rem 1.45rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.15s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
  box-shadow: 0 6px 16px rgba(30, 58, 95, 0.18);
}

.btn:hover {
  background: var(--blue-700);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(30, 58, 95, 0.22);
}

.btn:active {
  transform: translateY(1px);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue-200);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--blue-50);
  color: var(--blue);
  border-color: var(--blue-500);
  box-shadow: none;
}

.btn-green {
  background: var(--sage);
  box-shadow: 0 6px 16px rgba(47, 107, 82, 0.2);
}

.btn-green:hover {
  background: #265a45;
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 8px 24px rgba(15, 31, 51, 0.15);
}

.btn-light:hover {
  background: #f8fafc;
  color: var(--blue);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: none;
}

a.btn {
  text-decoration: none;
}

a.btn-light,
a.btn-light:hover {
  color: var(--blue);
}

a.btn-outline,
a.btn-outline:hover {
  color: var(--blue);
}

a.btn-ghost,
a.btn-ghost:hover {
  color: var(--white);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 70% 55% at 88% 12%, rgba(61, 106, 148, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 45% at 8% 88%, rgba(47, 107, 82, 0.16), transparent 50%),
    linear-gradient(155deg, #0f1f33 0%, #1a3354 42%, #234869 100%);
  color: var(--white);
  padding: 5rem 0 5.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.045) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 85%);
}

.hero-glow {
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 68%);
  right: -6rem;
  top: 20%;
  pointer-events: none;
  animation: floatGlow 10s ease-in-out infinite;
}

@keyframes floatGlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 44rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 1.35rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}

.hero-kicker::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #7dcea0;
  box-shadow: 0 0 0 4px rgba(125, 206, 160, 0.2);
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.1rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 0 0 0.9rem;
}

.hero-slogan {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1.4rem;
  letter-spacing: -0.02em;
}

.hero-lead {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
  line-height: 1.65;
}

.hero-location {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.68);
}

.hero-location span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-fade-in {
  animation: heroIn 0.8s var(--ease) both;
}

.hero-fade-in:nth-child(2) { animation-delay: 0.08s; }
.hero-fade-in:nth-child(3) { animation-delay: 0.14s; }
.hero-fade-in:nth-child(4) { animation-delay: 0.2s; }
.hero-fade-in:nth-child(5) { animation-delay: 0.26s; }
.hero-fade-in:nth-child(6) { animation-delay: 0.32s; }

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-glow,
  .hero-fade-in,
  .reveal {
    animation: none !important;
  }
}

/* Page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(61, 106, 148, 0.12), transparent 55%),
    linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--line-soft);
  padding: 3.75rem 0 3rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.035em;
  margin: 0 0 0.85rem;
  line-height: 1.12;
}

.page-hero p {
  margin: 0;
  max-width: 38rem;
  color: var(--ink-soft);
  font-size: 1.18rem;
}

/* —— Sections —— */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--blue-50) 0%, #eef3f8 100%);
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.75rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.03em;
  margin: 0 0 0.8rem;
  line-height: 1.18;
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 0.7rem;
}

/* Trust strip */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
  padding: 1.35rem 0;
}

.trust-strip ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.75rem;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 0.98rem;
  font-weight: 500;
}

.trust-strip li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.trust-strip li::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

/* Service cards */
.card-grid {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 700px) {
  .card-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--blue-200);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--blue);
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.service-card p {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  flex-grow: 1;
}

.price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--blue);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
  letter-spacing: -0.02em;
}

.price span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-muted);
  margin-top: 0.2rem;
  letter-spacing: 0;
}

.card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 11px;
  background: linear-gradient(160deg, var(--blue-100), var(--blue-50));
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
  border: 1px solid var(--line-soft);
}

.card-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.note-box {
  margin-top: 2rem;
  padding: 1.35rem 1.4rem;
  background: var(--sage-soft);
  border-left: 3px solid var(--sage);
  border-radius: 0 12px 12px 0;
  color: var(--ink);
}

.note-box p {
  margin: 0;
  font-size: 1.02rem;
}

.note-box p + p {
  margin-top: 0.55rem;
}

.tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
  background: var(--sage-soft);
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* Steps */
.steps {
  display: grid;
  gap: 1.35rem;
  counter-reset: step;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.step {
  position: relative;
  padding: 1.75rem 1.4rem 1.55rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--blue-500);
  margin-bottom: 1.1rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--blue);
  margin: 0 0 0.55rem;
  letter-spacing: -0.02em;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

/* Content */
.prose {
  max-width: 42rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--blue);
  margin: 2.25rem 0 0.7rem;
  letter-spacing: -0.025em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--blue);
  margin: 1.6rem 0 0.5rem;
  letter-spacing: -0.015em;
}

.prose p {
  margin: 0 0 1.05rem;
  color: var(--ink-soft);
}

.prose ul {
  margin: 0 0 1.05rem;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.prose li {
  margin-bottom: 0.45rem;
}

.split {
  display: grid;
  gap: 2.25rem;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1.25fr 0.85fr;
    align-items: start;
    gap: 3rem;
  }
}

.aside-card {
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-950) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.85rem 1.55rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.aside-card::after {
  content: "";
  position: absolute;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  right: -3rem;
  bottom: -3rem;
}

.aside-card h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 0.7rem;
  color: var(--white);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.aside-card p {
  margin: 0 0 1.05rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
  position: relative;
  z-index: 1;
}

.aside-card a {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.aside-card .btn {
  position: relative;
  z-index: 1;
}

.aside-card .btn-light {
  background: var(--white);
  color: var(--blue);
}

.aside-card .btn-light:hover {
  background: #f8fafc;
  color: var(--blue);
}

.aside-card .btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.aside-card .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.85);
}

.aside-card a[href^="mailto:"] {
  word-break: break-word;
}

/* Contact */
.contact-block {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 760px) {
  .contact-block {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.5rem;
  }
}

.contact-main {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  box-shadow: var(--shadow-sm);
}

.contact-main h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--blue);
  margin: 0 0 0.7rem;
  letter-spacing: -0.025em;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  margin: 0.65rem 0 1.1rem;
  letter-spacing: -0.03em;
}

.whatsapp-link:hover {
  color: var(--blue-500);
}

.contact-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 1.35rem 0 0.35rem;
}

.contact-label:first-of-type {
  margin-top: 1.1rem;
}

.email-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: -0.025em;
  margin: 0.25rem 0 0.35rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.email-link:hover {
  color: var(--blue-500);
}

.preference {
  background: var(--blue-50);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 1.15rem 1.25rem;
  margin: 1.35rem 0;
}

.preference p {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}

.preference p + p {
  margin-top: 0.45rem;
  font-weight: 400;
  color: var(--ink-soft);
}

.contact-side {
  background: linear-gradient(180deg, var(--blue-50), var(--white));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.45rem;
}

.contact-side h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--blue);
  margin: 0 0 0.7rem;
  letter-spacing: -0.02em;
}

.contact-side p {
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.contact-side ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.contact-side li {
  margin-bottom: 0.4rem;
}

/* FAQ */
.faq {
  display: grid;
  gap: 0.75rem;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.05rem 1.25rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.faq details[open] {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-sm);
}

.faq summary {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
  list-style: none;
  letter-spacing: -0.015em;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  font-weight: 500;
  color: var(--blue-500);
  font-size: 1.2rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: 0.85rem 0 0.15rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 80% at 90% 50%, rgba(61, 106, 148, 0.35), transparent 55%),
    linear-gradient(145deg, var(--blue) 0%, var(--blue-950) 100%);
  color: var(--white);
  padding: 4.25rem 0;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.15rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
}

.cta-band p {
  margin: 0 auto 1.55rem;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.cta-band .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.cta-band .btn-ghost:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.cta-band .btn-light {
  color: var(--blue);
}

.cta-band .btn-light:hover {
  color: var(--blue);
}

.cta-band a.btn-outline,
.cta-band a.btn-outline:hover,
.cta-band .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}

.cta-band a.btn-outline:hover,
.cta-band .btn-outline:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
}

/* AnyDesk / remote help */
.remote-box {
  display: grid;
  gap: 1.25rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 760px) {
  .remote-box {
    grid-template-columns: 1.2fr auto;
    align-items: center;
  }
}

.remote-box h2,
.remote-box h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--blue);
  margin: 0 0 0.55rem;
  letter-spacing: -0.02em;
}

.remote-box p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.remote-box .cta-row {
  margin-top: 0;
}

.remote-steps {
  margin: 0.85rem 0 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.remote-steps li {
  margin-bottom: 0.35rem;
}

/* Footer */
.site-footer {
  background: var(--blue-950);
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 0 2.25rem;
  font-size: 1rem;
}

.footer-grid {
  display: grid;
  gap: 2.25rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.45fr 1fr 1fr;
    gap: 2.5rem;
  }
}

.site-footer h2 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--white);
  margin: 0 0 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.site-footer p {
  margin: 0 0 0.6rem;
  line-height: 1.55;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.site-footer a:hover {
  color: var(--white);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom {
  margin-top: 2.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.52);
}

/* Popup */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 31, 51, 0.58);
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  backdrop-filter: blur(4px);
}

.popup-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popup {
  width: min(100%, 26.5rem);
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s var(--ease);
}

.popup-overlay.is-visible .popup {
  transform: translateY(0) scale(1);
}

.popup-top {
  background: linear-gradient(145deg, var(--blue) 0%, var(--blue-900) 100%);
  color: var(--white);
  padding: 1.5rem 1.45rem 1.3rem;
  position: relative;
}

.popup-top h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 2rem 0 0;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.popup-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.3rem;
  height: 2.3rem;
  border: none;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.24);
}

.popup-body {
  padding: 1.45rem 1.45rem 1.6rem;
}

.popup-body p {
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.popup-code {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  color: var(--blue);
  background: var(--blue-50);
  border: 1px dashed var(--blue-200);
  padding: 0.5rem 0.95rem;
  border-radius: 10px;
  margin: 0.15rem 0 1.1rem;
}

.popup-phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--blue);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.popup-phone:hover {
  color: var(--blue-500);
}

.popup-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.highlight-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.highlight-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.35rem;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
}

.highlight-list li:last-child {
  border-bottom: none;
}

.highlight-list strong {
  display: block;
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 0.2rem;
  letter-spacing: -0.015em;
  font-size: 1.05rem;
}

.check {
  flex-shrink: 0;
  width: 1.55rem;
  height: 1.55rem;
  margin-top: 0.12rem;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage);
  display: grid;
  place-items: center;
}

.check svg {
  width: 0.85rem;
  height: 0.85rem;
}

.side-note {
  font-size: 0.98rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  margin-top: 1.6rem;
  padding-top: 1.2rem;
}

/* Feature panels on home */
.feature-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-panel {
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.feature-panel h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--blue);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.feature-panel p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.reveal {
  animation: heroIn 0.7s var(--ease) both;
}
