:root {
  --primary: #0b63c5;
  --primary-dark: #05315e;
  --primary-soft: #e6f2ff;
  --accent: #00a6ff;
  --text-dark: #111827;
  --text-soft: #6b7280;
  --bg-light: #f7fafc;
  --white: #ffffff;
  --shadow-soft: 0 15px 35px rgba(15, 23, 42, 0.22);
  --radius-lg: 18px;
  --radius-xl: 32px;
  --transition: 0.25s ease;
}

/* Animations & transitions */

.btn-animated {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.btn-animated::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.4),
    transparent 40%,
    transparent 60%,
    rgba(255, 255, 255, 0.4)
  );
  transform: translateX(-120%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.btn-animated:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.7);
}

.btn-animated:hover::after {
  transform: translateX(120%);
}

.arrow-animated {
  position: relative;
  transition: transform 0.2s ease;
}

.arrow-animated .arrow-icon,
.arrow-icon.arrow-animated {
  display: inline-block;
  animation: arrowPulse 1.4s infinite;
}

@keyframes arrowPulse {
  0% {
    transform: translateX(0);
    opacity: 0.7;
  }
  50% {
    transform: translateX(4px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0.7;
  }
}

.card-animated {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-animated:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}

.card-hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    background 0.3s ease, border-color 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.35);
  border-color: rgba(37, 99, 235, 0.6);
}

/* Scroll-in animaties */

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up.delay-1 {
  transition-delay: 0.15s;
}

.fade-in-up.delay-2 {
  transition-delay: 0.3s;
}

.fade-in-up.delay-3 {
  transition-delay: 0.45s;
}

/* Base */

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: #ffffff;
  line-height: 1.5;
}

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

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top bar */

.top-bar {
  background: var(--primary-dark);
  color: #cbd5f5;
  font-size: 0.85rem;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.5rem;
  gap: 1rem;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-icon {
  margin-right: 0.25rem;
  font-size: 0.9rem;
}

/* Header / nav */

header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #00d0ff, var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.3);
}

.logo-sub {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: none;
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.25rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.5);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 1.4rem;
}

/* Hero */

.hero {
  position: relative;
  background: radial-gradient(circle at 0% 0%, #00a6ff 0, #05315e 40%, #020617 100%);
  color: #ffffff;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
  min-height: 520px;
  padding: 4rem 1.5rem 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.5);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-title {
  margin-top: 1.25rem;
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-title span:last-child {
  color: #9fdcff;
}

.hero-text {
  margin-top: 1rem;
  max-width: 32rem;
  color: #dbeafe;
  font-size: 0.98rem;
}

.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius-lg);
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(191, 219, 254, 0.8);
  background: rgba(15, 23, 42, 0.6);
  color: #e0f2fe;
  font-size: 0.92rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
}

.btn-outline span {
  font-size: 1.1rem;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-stat {
  min-width: 120px;
}

.hero-stat-title {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bfdbfe;
}

.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 0.1rem;
}

.hero-stat-sub {
  font-size: 0.8rem;
  color: #dbeafe;
  opacity: 0.85;
}

/* Hero card */

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #0f172a, #020617);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.85);
  overflow: hidden;
  padding: 1.4rem 1.4rem 0;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.hero-card-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
}

.hero-pill {
  font-size: 0.7rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.2);
  color: #bfdbfe;
}

.hero-truck {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: radial-gradient(circle at 20% 0, #1d4ed8, #020617);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-truck-body {
  position: relative;
  width: 82%;
  height: 66%;
  border-radius: 30px;
  background: linear-gradient(145deg, #0b63c5, #00a6ff);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.9);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.hero-truck-cabin {
  padding: 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #e0f2fe;
}

.hero-truck-brand {
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  text-transform: uppercase;
  opacity: 0.93;
}

.hero-truck-line {
  font-size: 0.65rem;
  opacity: 0.82;
  margin-top: 0.25rem;
}

.hero-truck-lights {
  display: flex;
  gap: 0.35rem;
}

.hero-light {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, #facc15, #b45309);
  box-shadow: 0 0 6px rgba(250, 204, 21, 0.9);
}

.hero-truck-wheels {
  background: #020617;
  border-radius: 0 30px 30px 0;
  padding: 0.8rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.45rem;
}

.hero-wheel {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 4px solid #111827;
  background: radial-gradient(circle at 30% 30%, #6b7280, #020617);
  box-shadow: 0 0 0 3px #020617;
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0 0.8rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-mini-metric {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-mini-metric span {
  font-weight: 600;
  color: #e5e7eb;
}

/* Section wrapper */

section {
  padding: 4rem 0;
}

.section-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--primary);
}

.section-title {
  margin-top: 0.65rem;
  font-size: 2rem;
  font-weight: 800;
}

.section-intro {
  margin-top: 0.6rem;
  max-width: 36rem;
  color: var(--text-soft);
  font-size: 0.97rem;
}

/* Kosten-efficiënte logistiek */

.costs {
  background: #ffffff;
}

.costs-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.25fr);
  gap: 3rem;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  background: var(--primary-soft);
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 1.5rem;
}

.feature-card {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-lg);
  background: #f3f4ff;
  border: 1px solid #e5e7eb;
}

.feature-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-dark);
}

.feature-text {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.contact-panel {
  background: var(--primary-dark);
  border-radius: var(--radius-xl);
  color: #e5e7eb;
  padding: 1.6rem 1.9rem;
  box-shadow: var(--shadow-soft);
}

.contact-panel h3 {
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
}

.contact-panel p {
  font-size: 0.9rem;
  color: #cbd5f5;
  margin-bottom: 1rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.contact-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
}

.contact-value {
  font-weight: 700;
  color: #e5e7eb;
  font-size: 1.02rem;
}

/* Wereldwijde transportoplossingen */

.solutions {
  background: var(--primary-dark);
  color: #ffffff;
}

.solutions .section-title {
  color: #ffffff;
  text-align: center;
}

.solutions .section-label,
.solutions .section-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: #bfdbfe;
}

.solution-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.solution-card {
  position: relative;
  padding: 1.4rem 1.6rem;
  border-radius: 20px;
  background: radial-gradient(circle at top left, #1d4ed8, #020617);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.7);
  overflow: hidden;
}

.solution-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #93c5fd;
  margin-bottom: 0.4rem;
}

.solution-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.solution-text {
  font-size: 0.9rem;
  color: #dbeafe;
  max-width: 22rem;
}

.solution-bullet {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

/* Werkproces */

.process {
  background: #ffffff;
}

.process-flow {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  position: relative;
}

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

.process-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(148, 163, 184, 0.4);
  position: relative;
}

.process-index {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.process-title {
  margin-top: 0.75rem;
  font-weight: 700;
}

.process-text {
  margin-top: 0.25rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.process-flow::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 8%;
  right: 8%;
  height: 2px;
  border-radius: 999px;
  background: repeating-linear-gradient(
    to right,
    var(--primary),
    var(--primary) 12px,
    transparent 12px,
    transparent 22px
  );
  z-index: -1;
}

/* Betrouwbaar & Innovatief */

.trust {
  background: var(--bg-light);
}

.trust-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: center;
}

.trust-tagline {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.ribbon {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0.7rem;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(148, 163, 184, 0.45);
}

.ribbon-item {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-align: center;
  border: 1px solid #e5e7eb;
}

.ribbon-item strong {
  display: block;
  font-size: 0.78rem;
  margin-bottom: 0.05rem;
}

.ribbon-item span {
  font-size: 0.75rem;
  color: var(--text-soft);
}

.ribbon-item.highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  border-color: transparent;
}

.trust-image {
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(145deg, #1d4ed8, #0b63c5);
  min-height: 260px;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.trust-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.pexels.com/photos/4484075/pexels-photo-4484075.jpeg?auto=compress&cs=tinysrgb&w=1200")
    center/cover;
  mix-blend-mode: multiply;
  opacity: 0.95;
}

.trust-image-overlay {
  position: absolute;
  inset: auto 1.2rem 1.2rem 1.2rem;
  background: rgba(15, 23, 42, 0.85);
  padding: 0.9rem 1.1rem;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #e5e7eb;
  font-size: 0.78rem;
}

.trust-image-overlay span strong {
  display: block;
  font-size: 0.86rem;
}

/* Complete logistieke oplossingen */

.complete {
  background: #ffffff;
}

.complete-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

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

.stat-card {
  background: var(--primary-soft);
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
  border: 1px solid #dbeafe;
}

.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--primary-dark);
}

.stat-value {
  margin-top: 0.2rem;
  font-size: 1.4rem;
  font-weight: 800;
}

.stat-note {
  margin-top: 0.1rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.check-list {
  margin-top: 1.5rem;
  list-style: none;
  display: grid;
  gap: 0.5rem;
  font-size: 0.93rem;
  color: var(--text-soft);
}

.check-list li::before {
  content: "✔";
  margin-right: 0.45rem;
  color: var(--primary);
  font-weight: 700;
}

.complete-banner {
  height: 260px;
  border-radius: 28px;
  background: radial-gradient(circle at right, #00a6ff, #020617);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.complete-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.pexels.com/photos/2226458/pexels-photo-2226458.jpeg?auto=compress&cs=tinysrgb&w=1200")
    center/cover;
  opacity: 0.8;
  mix-blend-mode: multiply;
}

.complete-banner-strip {
  position: absolute;
  left: 1.4rem;
  bottom: 1.3rem;
  right: 1.4rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.88);
  color: #e5e7eb;
  padding: 0.85rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.complete-banner-strip strong {
  display: block;
  font-size: 0.9rem;
}

/* Extra blocks */

.extra-blocks {
  background: #f9fafb;
}

.extra-blocks-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.extra-block-card {
  border-radius: 24px;
  overflow: hidden;
  min-height: 200px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* Service style */
.extra-block-service {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.extra-block-content {
  padding: 1.4rem 1.6rem;
}

.extra-block-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.extra-block-text {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.extra-block-image {
  background-size: cover;
  background-position: center;
}

/* Review style */
.extra-block-review .extra-block-content {
  position: relative;
}

.extra-block-review .extra-block-title {
  font-style: italic;
}

.review-meta {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.review-stars {
  color: #f59e0b;
  letter-spacing: 0.06em;
}

.review-author {
  color: #4b5563;
}

/* FAQ style */
.extra-block-faq {
  border-left: 4px solid var(--primary);
  background: #ffffff;
}

.faq-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
}

.extra-block-faq .extra-block-text {
  margin-bottom: 0;
  color: var(--text-soft);
}

/* CTA style */
.extra-block-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.extra-block-cta .extra-block-content {
  max-width: 32rem;
}

.extra-block-cta .extra-block-title {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.extra-block-cta .extra-block-text {
  font-size: 0.98rem;
  margin-bottom: 1rem;
}

/* Custom sections */

.custom-sections {
  background: #ffffff;
}

.custom-sections-list {
  display: grid;
  gap: 2rem;
}

.custom-section-card {
  padding: 1.8rem 1.9rem;
  border-radius: 26px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.custom-section-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.custom-section-intro {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 1.1rem;
}

.custom-section-items {
  display: grid;
  gap: 0.75rem;
}

.custom-section-item-title {
  font-weight: 700;
}

.custom-section-item-text {
  font-size: 0.9rem;
}

/* Drag handle (for admin preview; shared class name) */

.block-card {
  position: relative;
}

.drag-handle {
  position: absolute;
  top: 6px;
  right: 8px;
  cursor: grab;
  font-size: 0.9rem;
  color: #9ca3af;
  user-select: none;
}

.block-card.dragging {
  opacity: 0.6;
}

/* Footer */

footer {
  background: #020617;
  color: #cbd5f5;
  padding-top: 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-logo {
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-logo span {
  font-size: 0.78rem;
  text-transform: none;
  color: #9ca3af;
}

.footer-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.8rem;
  color: #e5e7eb;
}

.footer-list {
  list-style: none;
  font-size: 0.9rem;
  display: grid;
  gap: 0.35rem;
}

.footer-list a {
  color: #d1d5db;
}

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

.footer-contact-item {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer-contact-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
}

.footer-bottom {
  padding: 0.9rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.socials {
  display: flex;
  gap: 0.6rem;
}

.socials a {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* Back to top */

.back-to-top {
  position: fixed;
  right: 1.7rem;
  bottom: 1.7rem;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.7);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition),
    transform var(--transition);
  transform: translateY(10px);
  z-index: 50;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner,
  .costs-inner,
  .trust-inner,
  .complete-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-inner {
    padding-top: 3rem;
  }

  .hero-visual {
    order: -1;
  }

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

  .solutions .section-intro {
    max-width: 30rem;
  }

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

  .extra-blocks-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .extra-block-service {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    position: fixed;
    inset: 60px 0 auto;
    background: #ffffff;
    flex-direction: column;
    padding: 1rem 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

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

  .ribbon {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 20px;
  }

  .process-flow::before {
    display: none;
  }

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

@media (max-width: 520px) {
  .hero-inner {
    padding-inline: 1.1rem;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-card {
    padding-inline: 1rem;
  }

  .feature-grid,
  .stats-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .process-flow {
    grid-template-columns: minmax(0, 1fr);
  }
}
