/* ========================================
   CSS Variables
   ======================================== */
:root {
  --primary: #0057d9;
  --primary-dark: #003f9e;
  --navy: #061735;
  --text: #34415f;
  --muted: #6b7894;
  --bg: #f7faff;
  --white: #ffffff;
  --border: #e5ecf7;
  --shadow: 0 20px 50px rgba(6, 23, 53, 0.08);
  --shadow-sm: 0 4px 16px rgba(6, 23, 53, 0.06);
  --shadow-lg: 0 30px 80px rgba(6, 23, 53, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.25s ease;
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ========================================
   Layout Utilities
   ======================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 100px 0;
}

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

.section--dark {
  background: var(--navy);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ========================================
   Typography
   ======================================== */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 87, 217, 0.08);
  color: var(--primary);
  border: 1px solid rgba(0, 87, 217, 0.15);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin-top: 16px;
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 87, 217, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 12px 32px rgba(0, 87, 217, 0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn-white:hover {
  background: var(--bg);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 16px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

/* ========================================
   Cards
   ======================================== */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: rgba(0, 87, 217, 0.12);
}

/* ========================================
   Header / Navbar
   ======================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(6, 23, 53, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 40px;
}

/* ----------------------------------------
   Logo
   ---------------------------------------- */
.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.brand-logo:hover {
  opacity: 0.85;
}

.brand-logo__img {
  height: 72px;
  width: auto;
  display: block;
}

/* Footer variant – slight brightness boost so logo pops on dark bg */
.brand-logo--footer { margin-bottom: 20px; }


@media (max-width: 768px) {
  .brand-logo__img { height: 56px; }
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.header__nav a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}

.header__nav a:hover {
  color: var(--primary);
  background: rgba(0, 87, 217, 0.06);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}

.header__phone:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 87, 217, 0.3);
}

.header__phone svg {
  width: 15px;
  height: 15px;
  fill: var(--white);
}

.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--white);
}

.header__hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.header__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.header__mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0 20px;
  border-top: 1px solid var(--border);
}

.header__mobile-menu a {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.header__mobile-menu a:hover {
  color: var(--primary);
  background: rgba(0, 87, 217, 0.06);
}

.header__mobile-menu .btn {
  margin-top: 8px;
  justify-content: center;
}

.mobile-menu-open .header__mobile-menu {
  display: flex;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  background: var(--white);
  padding: 80px 0 0;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,87,217,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__title span {
  color: var(--primary);
}

.hero__desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
}

.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a4fd6 0%, #0d3ba8 40%, #061735 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero__image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero__image-placeholder svg {
  width: 80px;
  height: 80px;
  fill: rgba(255,255,255,0.15);
  position: relative;
  z-index: 1;
}

.hero__contact-card {
  position: absolute;
  bottom: -20px;
  left: -32px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 220px;
}

.hero__contact-card-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.hero__contact-card-phone {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.hero__contact-card-available {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #16a34a;
  font-weight: 500;
  margin-top: 6px;
}

.hero__contact-card-available::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #16a34a;
  border-radius: 50%;
}

.hero__badge-card {
  position: absolute;
  top: 24px;
  right: -20px;
  background: var(--primary);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 12px 32px rgba(0, 87, 217, 0.35);
  min-width: 160px;
  text-align: center;
}

.hero__badge-card-number {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hero__badge-card-label {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  margin-top: 4px;
}

.hero__stats {
  background: var(--navy);
  margin-top: 80px;
  padding: 32px 0;
}

.hero__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.hero__stat {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.hero__stat:last-child {
  border-right: none;
}

.hero__stat-number {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero__stat-number span {
  color: #60a5fa;
}

.hero__stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  font-weight: 500;
}

.services__grid--8 {
  grid-template-columns: repeat(4, 1fr);
}

/* ========================================
   Services Section
   ======================================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #60a5fa);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
  border-color: rgba(0, 87, 217, 0.12);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 87, 217, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--primary);
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
  fill: var(--primary);
  transition: fill var(--transition);
}

.service-card:hover .service-card__icon svg {
  fill: var(--white);
}

.service-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--transition);
}

.service-card__link:hover {
  gap: 10px;
}

.service-card__link svg {
  width: 14px;
  height: 14px;
  fill: var(--primary);
}

.services__cta {
  margin-top: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.services__cta-text h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.services__cta-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
}

.services__cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ========================================
   About Section
   ======================================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__content {
  padding-right: 20px;
}

.about__text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin: 20px 0 36px;
}

.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.about__highlight {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: all var(--transition);
}

.about__highlight:hover {
  border-color: rgba(0, 87, 217, 0.2);
  background: rgba(0, 87, 217, 0.03);
}

.about__highlight-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 87, 217, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.about__highlight-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

.about__highlight-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.about__highlight-text {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.about__visual {
  position: relative;
}

.about__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}

.about__image-wrap img,
.about__image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__image-placeholder {
  background: linear-gradient(160deg, #1a4fd6 0%, #061735 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about__image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.about__image-placeholder svg {
  width: 64px;
  height: 64px;
  fill: rgba(255,255,255,0.12);
}

.about__exp-badge {
  position: absolute;
  bottom: 32px;
  left: -32px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  text-align: center;
}

.about__exp-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.03em;
}

.about__exp-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
}

/* ========================================
   Projects Section
   ======================================== */
.projects__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}

.project-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.project-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f7faff;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
}

.project-card:hover .project-card__image img {
  transform: scale(1.02);
}

.project-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  position: relative;
}

.project-card__image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.project-card__image-placeholder svg {
  width: 48px;
  height: 48px;
  fill: rgba(255,255,255,0.2);
  position: relative;
  z-index: 1;
}

.project-card__labels {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 6px;
}

.project-label {
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.project-label--voor {
  background: rgba(6, 23, 53, 0.7);
  color: var(--white);
}

.project-label--na {
  background: var(--primary);
  color: var(--white);
}

.project-card__tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(255,255,255,0.9);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.project-card__body {
  padding: 24px;
}

.project-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.project-card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.projects__footer {
  text-align: center;
  margin-top: 48px;
}

/* ========================================
   Process Section
   ======================================== */
.process {
  background: var(--white);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.process__grid::before {
  content: '';
  position: absolute;
  top: 56px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #60a5fa, var(--primary));
  opacity: 0.25;
  z-index: 0;
}

.process-step {
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step__number-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.process-step__icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 87, 217, 0.3);
  position: relative;
}

.process-step__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.process-step__num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.process-step__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.process-step__trust {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 87, 217, 0.07);
  color: var(--primary);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
}

.process-step__trust::before {
  content: '✓';
  font-size: 11px;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials__rating {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 40px;
}

.testimonials__rating-score {
  font-size: 64px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}

.testimonials__rating-info {
  flex: 1;
}

.testimonials__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.testimonials__stars svg {
  width: 22px;
  height: 22px;
  fill: #fbbf24;
}

.testimonials__rating-label {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.testimonials__rating-platforms {
  display: flex;
  gap: 20px;
}

.rating-platform {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  text-align: center;
}

.rating-platform__score {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.rating-platform__name {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-top: 4px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  fill: #fbbf24;
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__text::before {
  content: '\201C';
  font-size: 48px;
  color: var(--primary);
  opacity: 0.2;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 4px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-card__location {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.testimonials__trust {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  fill: var(--primary);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
  background: var(--white);
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.faq__left .section-title {
  font-size: clamp(26px, 3vw, 38px);
}

.faq__benefits {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__benefit {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq__benefit-check {
  width: 28px;
  height: 28px;
  background: rgba(0, 87, 217, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq__benefit-check svg {
  width: 14px;
  height: 14px;
  fill: var(--primary);
}

.faq__benefit-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: rgba(0, 87, 217, 0.2);
  box-shadow: var(--shadow-sm);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--white);
  gap: 16px;
  user-select: none;
  transition: background var(--transition);
}

.faq-item.open .faq-item__question {
  background: rgba(0, 87, 217, 0.03);
}

.faq-item__question-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  flex: 1;
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-item.open .faq-item__icon {
  background: var(--primary);
  transform: rotate(45deg);
}

.faq-item__icon svg {
  width: 14px;
  height: 14px;
  fill: var(--muted);
  transition: fill var(--transition);
}

.faq-item.open .faq-item__icon svg {
  fill: var(--white);
}

.faq-item__answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  background: rgba(0, 87, 217, 0.02);
}

.faq-item.open .faq-item__answer {
  display: block;
}

/* ========================================
   Contact / Footer Section
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2550 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,87,217,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-section__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cta-section__text {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-section__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* footer logo colours handled by .footer-logo above */

.footer {
  background: #040e22;
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__brand .header__logo {
  margin-bottom: 20px;
}

.footer__brand-text {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 260px;
}

.footer__col-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav-list a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer__nav-list a:hover {
  color: rgba(255,255,255,0.9);
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: rgba(255,255,255,0.7);
}

/* ========================================
   Responsive – 1024px
   ======================================== */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .section { padding: 80px 0; }

  .header__nav { display: none; }
  .header__hamburger { display: flex; }
  .header__actions .header__phone { display: none; }

  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { display: none; }
  .hero__stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hero__stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .hero__stat:nth-last-child(-n+2) { border-bottom: none; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid--8 { grid-template-columns: repeat(2, 1fr); }
  .services__cta { flex-direction: column; text-align: center; }
  .services__cta-actions { flex-wrap: wrap; justify-content: center; }

  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__content { padding-right: 0; }
  .about__visual { max-width: 500px; margin: 0 auto; }

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

  .process__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process__grid::before { display: none; }

  .testimonials__rating { flex-wrap: wrap; gap: 24px; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }

  .faq__grid { grid-template-columns: 1fr; gap: 48px; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ========================================
   Responsive – 768px
   ======================================== */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }

  .hero { 
    padding: 60px 0 60px;
    background-image: url('../assets/images/hero_mobile/00cd3117-0ff4-4119-8fa9-1565f1587075.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
  }
  .hero::before {
    background: rgba(6, 23, 53, 0.65);
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .hero__visual { display: none; }
  .hero__grid { position: relative; z-index: 1; }
  .hero__content { color: white; }
  .hero__title { color: white; }
  .hero__title span { color: #60a5fa; }
  .hero__desc { color: rgba(255, 255, 255, 0.9); }
  .hero__title { font-size: 36px; }
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { width: 100%; justify-content: center; }
  .hero__stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__stat-number { font-size: 26px; }

  .services__grid { grid-template-columns: 1fr; }
  .services__grid--8 { grid-template-columns: repeat(2, 1fr); }
  .services__cta { padding: 32px 28px; }

  .about__highlights { grid-template-columns: 1fr; }

  .projects__grid { grid-template-columns: 1fr; }
  .projects__filters { justify-content: flex-start; }

  .process__grid { grid-template-columns: 1fr; }
  .process-step { padding: 0; text-align: left; }
  .process-step__number-wrap { justify-content: flex-start; }

  .testimonials__rating { padding: 28px; }
  .testimonials__rating-score { font-size: 48px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__trust { gap: 20px; flex-direction: column; align-items: flex-start; padding: 24px; }

  .cta-section__buttons { flex-direction: column; }
  .cta-section__buttons .btn { width: 100%; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; }
}

/* ========================================
   Responsive – 480px
   ======================================== */
@media (max-width: 480px) {
  .hero__stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__stat { border-right: none !important; border-bottom: none; }

  .testimonials__rating { flex-direction: column; text-align: center; }
  .testimonials__rating-platforms { flex-wrap: wrap; justify-content: center; }

  .services__cta { padding: 28px 20px; }
  .services__cta-actions .btn { width: 100%; justify-content: center; }
  .services__grid--8 { grid-template-columns: 1fr; }

  .section-title { font-size: 26px; }
  .btn-lg { padding: 15px 24px; font-size: 15px; }
}
