/* ============================================================
   APS Photography v2 — Global Stylesheet
   Wit / Lichtgrijs / Rood #CC1122 — B2B dealer-gericht
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Raleway:wght@300;400;500;600;700&display=swap');

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

:root {
  --white:       #FFFFFF;
  --off-white:   #F5F5F5;
  --black:       #1A1A2E;
  --red:         #CC1122;
  --red-hover:   #A50E1B;
  --red-dim:     rgba(204,17,34,.08);
  --grey:        #555566;
  --grey-mid:    #888899;
  --grey-light:  #F0F0F4;
  --grey-border: #E2E2E8;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Raleway', Arial, sans-serif;
  --ease:        cubic-bezier(.4,0,.2,1);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
  --radius:      6px;
  --shadow:      0 2px 20px rgba(26,26,46,.06);
  --shadow-lg:   0 8px 40px rgba(26,26,46,.12);
  --nav-h:       110px;
  --container:   1180px;
}

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

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

::selection { background: var(--red); color: var(--white); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--grey-light); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .marquee-track { animation: none !important; }
  [data-aos] { opacity: 1 !important; transform: none !important; }
}

/* ── Container ── */
.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

/* ── Sections ── */
.section { padding: 7rem 0; }
.section--grey { background: var(--off-white); }
.section--dark { background: #111116; }
.section--subtle { background: #F8F8F8; }

.section-header { margin-bottom: 3.5rem; }

.section-label {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .8rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
}

.section-sub {
  font-size: .95rem;
  color: var(--grey);
  max-width: 560px;
  margin-top: .8rem;
  line-height: 1.75;
}

.accent { color: var(--red); }

.section-cta { text-align: center; margin-top: 3rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-lg { padding: 1rem 2.2rem; font-size: .8rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(204,17,34,.35);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.8);
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
  transition: box-shadow var(--transition), background var(--transition);
}
.nav.scrolled {
  height: 80px;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.98);
  border-bottom-color: transparent;
}

.nav-logo img {
  height: 110px;
  width: auto;
  max-width: 460px;
  object-fit: contain;
  transition: height var(--transition);
}
.nav.scrolled .nav-logo img { height: 76px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--black); }
.nav-links a.active::after,
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: .5rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,.45);
  z-index: 1001;
  backdrop-filter: blur(2px);
}
.mobile-overlay.open { display: block; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--white);
  z-index: 1002;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--grey);
  line-height: 1;
  padding: .25rem;
  transition: color var(--transition);
}
.mobile-close:hover { color: var(--red); }

.mobile-menu ul { display: flex; flex-direction: column; gap: .25rem; }
.mobile-menu ul a {
  display: block;
  padding: .75rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  border-bottom: 1px solid var(--grey-border);
  transition: color var(--transition);
}
.mobile-menu ul a:hover { color: var(--red); }

/* ================================================================
   HERO — Full-width background with left gradient overlay
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero picture {
  display: contents;
}
.hero-img {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  object-position: center center;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.75) 0%,
    rgba(255,255,255,0.60) 25%,
    rgba(255,255,255,0.20) 40%,
    rgba(255,255,255,0.00) 50%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 4rem 5% 4rem 6%;
}
.hero-text { max-width: 560px; }

.hero-tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 1.2rem;
}
.hero-title em {
  font-style: italic;
  color: var(--red);
}
.hero-sub {
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  color: var(--grey);
  margin-bottom: 2.2rem;
  font-weight: 400;
}
.hero-sub strong { color: var(--black); }
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}


/* ================================================================
   WAAROM APS PHOTOGRAPHY
   ================================================================ */
.waarom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.waarom-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.waarom-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.waarom-content { display: flex; flex-direction: column; gap: 1.2rem; }
.waarom-content .section-title { margin-top: .4rem; }
.waarom-divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: .2rem 0;
}
.waarom-content p {
  color: var(--grey);
  font-size: .95rem;
  line-height: 1.8;
  margin: 0;
}
.waarom-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .4rem;
}
.waarom-tag {
  display: inline-block;
  border: 1.5px solid var(--red);
  color: var(--red);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .35rem .75rem;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .waarom-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .waarom-img { max-height: 320px; }
}

/* ================================================================
   STATS — Animated counters
   ================================================================ */
.stats {
  background: #111116;
  padding: 5rem 5%;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  padding: 2rem;
  border-right: 1px solid rgba(255,255,255,.07);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 4.5vw, 4rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* ================================================================
   HOMEPAGE GALLERY PREVIEW LIGHTBOX
   ================================================================ */
.gp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.92);
  display: none;
  align-items: center;
  justify-content: center;
}
.gp-lightbox.open { display: flex; }
.gp-lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}
.gp-lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
  z-index: 2001;
}
.gp-lightbox-close:hover { background: var(--red); border-color: var(--red); }
.gp-lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
  z-index: 2001;
}
.gp-lightbox-nav:hover { background: var(--red); border-color: var(--red); }
.gp-lightbox-prev { left: 1.5rem; }
.gp-lightbox-next { right: 1.5rem; }
@media (max-width: 580px) {
  .gp-lightbox-prev { left: .5rem; }
  .gp-lightbox-next { right: .5rem; }
}

/* ================================================================
   DIENSTEN
   ================================================================ */
.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--grey-border);
}
.service-item:last-child { border-bottom: none; }

/* Reverse: image first visually */
.service-item--reverse .service-img { order: -1; }

.service-left {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.service-num {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(204,17,34,.30);
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
  min-width: 5rem;
}
.service-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  margin-bottom: .75rem;
  color: var(--black);
}
.service-body p { color: var(--grey); line-height: 1.75; font-size: .95rem; }

.service-img {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
  will-change: transform;
}
.service-img:hover img { transform: scale(1.04); }

/* ================================================================
   WERKWIJZE / PROCES
   ================================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.process-step {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform var(--transition);
  will-change: transform;
}
.process-step::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.process-step:hover {
  transform: translateY(-4px);
}
.process-step:hover::after { opacity: 1; }
.process-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(204,17,34,.30);
  line-height: 1;
  margin-bottom: 1.2rem;
}
.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--black);
}
.process-step p { color: var(--grey); font-size: .92rem; line-height: 1.7; }

.process-cta { text-align: center; margin-top: 3.5rem; }

/* ================================================================
   GALLERY PREVIEW
   ================================================================ */
.gp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 10px;
}
.gp-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.gp-item--tall { grid-row: span 2; }

.gp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
  will-change: transform;
}
.gp-item:hover img { transform: scale(1.06); }

.gp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,.5);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem 1.4rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gp-item:hover .gp-overlay { opacity: 1; }
.gp-overlay span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
}

/* ================================================================
   PRICING
   ================================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: center;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  transition: transform var(--transition);
  will-change: transform;
}
.pricing-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card:hover::after { opacity: 1; }

.pricing-card--featured {
  background: #111116;
  border-color: var(--red);
  border-width: 2px;
  box-shadow: 0 0 0 4px rgba(204,17,34,.12), 0 20px 60px rgba(0,0,0,.3);
  transform: scale(1.03);
}
.pricing-card--featured:hover { transform: scale(1.03) translateY(-6px); }
.pricing-card--featured .pricing-tier { color: #fff; }
.pricing-card--featured .pricing-price { color: #fff; }
.pricing-card--featured .pricing-price span { color: rgba(255,255,255,.5); }
.pricing-card--featured .pricing-contract { color: rgba(255,255,255,.45); }
.pricing-card--featured .pricing-features li { color: rgba(255,255,255,.75); }
.pricing-card--featured .pricing-sub { color: rgba(255,255,255,.55); }

.pricing-badge {
  position: absolute;
  top: -1px; right: 1.5rem;
  background: var(--red);
  color: var(--white);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 0 0 6px 6px;
}
.pricing-tier {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
}
.pricing-sub {
  font-size: .78rem;
  color: var(--grey-mid);
  margin-top: -.6rem;
  font-style: italic;
}
.pricing-price {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--grey);
  font-family: var(--font-sans);
}
.pricing-contract { font-size: .82rem; color: var(--grey-mid); }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--grey);
}
.check { color: var(--red); font-weight: 700; flex-shrink: 0; }

.pricing-guarantees {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.guarantee-mini {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: var(--grey);
}

/* ================================================================
   GARANTIES SECTIE
   ================================================================ */
.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.guarantee-block {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  transition: transform var(--transition);
  will-change: transform;
}
.guarantee-block::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.guarantee-block:hover { transform: translateY(-3px); }
.guarantee-block:hover::after { opacity: 1; }
.guarantee-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--red-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}
.guarantee-content h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: .5rem;
}
.guarantee-content p {
  color: var(--grey);
  font-size: .92rem;
  line-height: 1.65;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-wrap { max-width: 780px; margin: 0 auto; }

.testimonial-track { position: relative; }

.testimonial-card {
  display: none;
  flex-direction: column;
  gap: 1.2rem;
  background: var(--off-white);
  border: 1px solid var(--grey-border);
  border-radius: 12px;
  padding: 3rem;
}
.testimonial-card.active {
  display: flex;
  animation: fadeCard .4s var(--ease) both;
}
@keyframes fadeCard {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: .5;
  color: var(--red);
  opacity: .2;
  user-select: none;
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--black);
  line-height: 1.75;
}

.testimonial-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--black);
  margin-top: .5rem;
}
.testimonial-role { font-size: .82rem; color: var(--grey-mid); margin-top: .15rem; }

.testimonial-placeholder {
  font-size: .72rem;
  color: var(--red);
  opacity: .55;
  margin-top: .4rem;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.testimonial-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--grey-border);
  background: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.testimonial-btn:hover { border-color: var(--red); color: var(--red); }

.testimonial-dots { display: flex; gap: .5rem; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grey-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.dot.active { background: var(--red); transform: scale(1.3); }

/* ================================================================
   FAQ
   ================================================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--grey-border); }

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: .98rem;
  font-weight: 600;
  color: var(--black);
  transition: color var(--transition);
}
.faq-btn:hover,
.faq-btn[aria-expanded="true"] { color: var(--red); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--grey);
  line-height: 1;
}
.faq-btn[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--red);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-body p {
  padding-bottom: 1.4rem;
  font-size: .93rem;
  color: var(--grey);
  line-height: 1.75;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-sub {
  color: var(--grey);
  margin: 1rem 0 2rem;
  font-size: .95rem;
  line-height: 1.7;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: var(--black);
  transition: color var(--transition);
}
.contact-detail:hover { color: var(--red); }
.contact-detail svg { flex-shrink: 0; color: var(--red); }

.contact-social {
  display: flex;
  gap: .75rem;
}
.contact-social a {
  width: 40px; height: 40px;
  border: 1px solid var(--grey-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  transition: var(--transition);
}
.contact-social a:hover { border-color: var(--red); color: var(--red); }

/* Form */
.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--grey-border);
  border-radius: 12px;
  padding: 2.5rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }

.form-group label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--grey);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: .8rem 1rem;
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--black);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
  width: 100%;
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888899' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-mid); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,17,34,.08);
}

.form-note {
  font-size: .78rem;
  color: var(--grey-mid);
  text-align: center;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,.65);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo {
  filter: brightness(0) invert(1);
  height: auto;
  max-height: 140px;
  max-width: 340px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-brand p { font-size: .88rem; line-height: 1.7; }

.footer-social { display: flex; gap: .6rem; margin-top: .5rem; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.45);
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--red); color: var(--red); }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col li,
.footer-col li a { font-size: .87rem; transition: color var(--transition); }
.footer-col li a:hover { color: var(--red); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: var(--red); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .service-item { gap: 3rem; }
  .service-num { font-size: 3.5rem; min-width: 4rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

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

  .service-item,
  .service-item--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-item--reverse .service-img { order: 0; }

  .process-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .gp-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gp-item--tall { grid-row: span 1; }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-img { object-position: 50% 40%; }
  .hero-overlay { background: none; }
  .hero-tag { color: rgba(255,255,255,.85); text-shadow: 0 1px 6px rgba(0,0,0,.5); }
  .hero-title { color: var(--white); text-shadow: 0 2px 12px rgba(0,0,0,.55); }
  .hero-title em { color: var(--red); text-shadow: 0 2px 10px rgba(0,0,0,.5); }
  .hero-sub { color: rgba(255,255,255,.85); text-shadow: 0 1px 8px rgba(0,0,0,.5); }
  .hero-sub strong { color: var(--white); }
}

@media (max-width: 640px) {
  :root { --nav-h: 80px; }
  .section { padding: 4rem 0; }

  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat-item:last-child { border-bottom: none; }
  .pricing-card--featured { transform: scale(1); }

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

  .service-left { flex-direction: column; gap: 1rem; }
  .service-num { font-size: 2.5rem; min-width: unset; }

  .gp-grid { grid-template-columns: 1fr; grid-template-rows: auto; }

  .testimonial-card { padding: 2rem 1.5rem; }

  .contact-form-wrap { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* All elements always visible — no scroll-triggered reveals */
