*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a1a1a; background: #fff; overflow-x: hidden; }

/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  --dark:           #0d0d0d;
  --gray-bg:        #f5f5f5;
  --gray-100:       #e5e5e5;
  --white:          #ffffff;
  --text:           #1a1a1a;
  --muted:          #6b7280;
  --primary:        #1565C0;
  --primary-hover:  #0D47A1;
  --section-pad:    clamp(4rem, 8vw, 7rem);
  --card-radius:    12px;
  --ease:           .35s cubic-bezier(.4,0,.2,1);
  --font-head:      'Barlow Condensed', sans-serif;
}

/* ── UTILITIES ────────────────────────────────────────────── */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.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; }

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

.section-kicker {
  display: inline-block; text-transform: uppercase;
  font-size: .8rem; font-weight: 700; letter-spacing: .15em;
  color: var(--primary); margin-bottom: .75rem;
}
.section-kicker--light { color: rgba(255,255,255,.6); }
.section-kicker--left  { display: block; text-align: left; }

.section-title {
  font-family: var(--font-head); font-size: clamp(2rem,4vw,3rem);
  font-weight: 800; line-height: 1.1; color: var(--text); margin: 0;
}
.section-title--light { color: #fff; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .9rem 2rem; font-size: .95rem; font-weight: 700; font-family: 'Inter', sans-serif;
  letter-spacing: .03em; border-radius: 6px; text-decoration: none;
  transition: all var(--ease); cursor: pointer; border: 2px solid transparent;
}
.btn--primary {
  background: var(--primary); color: #fff; border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--primary-hover); border-color: var(--primary-hover);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(21,101,192,.4);
}
.btn--outline {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px);
}
.btn--dark {
  background: var(--dark); color: #fff; border-color: var(--dark);
}
.btn--dark:hover { opacity: .88; transform: translateY(-1px); }
.btn--google {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #fff; color: var(--text); border: 2px solid var(--gray-100);
  padding: .85rem 2rem; font-size: .95rem; font-weight: 700;
  border-radius: 6px; text-decoration: none; transition: all var(--ease);
}
.btn--google:hover { border-color: var(--muted); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.btn--large { padding: 1.1rem 2.5rem; font-size: 1.05rem; }

/* ── REVEAL ANIMATIONS ───────────────────────────────────── */
[data-reveal] > [data-stagger] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-visible > [data-stagger]     { opacity: 1; transform: none; }
[data-reveal].is-visible > [data-stagger="0"] { transition-delay: 0s; }
[data-reveal].is-visible > [data-stagger="1"] { transition-delay: .12s; }
[data-reveal].is-visible > [data-stagger="2"] { transition-delay: .24s; }
[data-reveal].is-visible > [data-stagger="3"] { transition-delay: .36s; }
[data-reveal].is-visible > [data-stagger="4"] { transition-delay: .48s; }
[data-reveal].is-visible > [data-stagger="5"] { transition-delay: .60s; }

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.1rem 0;
  transition: background .4s ease, box-shadow .4s ease, padding .3s ease;
}
.site-header--transparent { background: transparent; }
.site-header--scrolled {
  background: rgba(13,13,13,.96); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06); padding: .7rem 0;
}
.header__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem;
}
.header__nav {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}
.header__nav--left  { justify-content: flex-start; }
.header__nav--right { justify-content: flex-end; }
.header__link {
  color: rgba(255,255,255,.82); text-decoration: none;
  font-size: .88rem; font-weight: 500; letter-spacing: .03em;
  transition: color .2s; white-space: nowrap;
}
.header__link:hover { color: #fff; }
.header__logo img {
  height: 52px; width: auto; display: block;
}
.header__social-icon {
  color: rgba(255,255,255,.65); transition: color .2s;
  display: flex; align-items: center;
}
.header__social-icon:hover { color: #fff; }
.header__socials { display: flex; gap: 1rem; align-items: center; }

/* hamburger */
.header__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.header__burger-line {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px; transition: var(--ease);
}

/* mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--dark); flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__link {
  font-family: var(--font-head); font-size: 2.4rem; font-weight: 800;
  color: #fff; text-decoration: none; letter-spacing: .02em; transition: color .2s;
}
.mobile-menu__link:hover { color: rgba(255,255,255,.6); }
.mobile-menu__cta { margin-top: .5rem; }
.mobile-menu__close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: #000;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 45%;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.15), rgba(0,0,0,.45) 70%, rgba(0,0,0,.75));
}
.hero__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 2.5rem; padding: 0 1.5rem;
}
.hero__logo {
  display: block; width: clamp(180px,22vw,280px); height: auto;
  animation: fadeInScale 1.2s cubic-bezier(.16,1,.3,1) both;
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(.88); }
  to   { opacity: 1; transform: scale(1); }
}
.hero__cta-ghost {
  display: inline-block; font-family: var(--font-head);
  font-size: .9rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .14em; color: #fff; padding: 14px 44px;
  border: 1.5px solid rgba(255,255,255,.45); border-radius: 4px;
  background: transparent; backdrop-filter: blur(4px);
  transition: all .4s cubic-bezier(.16,1,.3,1);
  animation: fadeInUp 1s ease .5s both; text-decoration: none;
}
.hero__cta-ghost:hover {
  background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8);
  transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
.hero__scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center;
  gap: .4rem; color: rgba(255,255,255,.5);
}
.hero__scroll-text { font-size: .7rem; text-transform: uppercase; letter-spacing: .2em; }
.hero__scroll-arrow { animation: bounceDown 2s ease-in-out infinite; }
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ── TRUST BAR ────────────────────────────────────────────── */
.trust-bar {
  background: var(--gray-bg); border-bottom: 1px solid var(--gray-100);
  padding: 1.1rem 0; overflow-x: auto;
}
.trust-bar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  white-space: nowrap;
}
.trust-bar__item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted);
}
.trust-bar__icon { flex-shrink: 0; color: var(--primary); }
.trust-bar__divider { width: 1px; height: 24px; background: var(--gray-100); flex-shrink: 0; }

/* ── SERVICES ─────────────────────────────────────────────── */
.services { padding: var(--section-pad) 0; background: var(--white); }
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.service-card {
  display: flex; flex-direction: column; border-radius: var(--card-radius);
  overflow: hidden; background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.06);
  transition: transform var(--ease), box-shadow var(--ease);
  text-decoration: none; color: inherit;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.service-card__image-wrap { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.service-card__image {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.service-card__image-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 60%);
  opacity: 0; transition: opacity .4s ease; z-index: 1;
}
.service-card:hover .service-card__image { transform: scale(1.07); }
.service-card:hover .service-card__image-wrap::after { opacity: 1; }
.service-card__body {
  padding: 1.75rem; flex: 1; display: flex; flex-direction: column;
}
.service-card__title {
  font-family: var(--font-head); font-size: 1.35rem; font-weight: 800;
  margin: 0 0 .6rem; color: var(--text);
}
.service-card__desc {
  font-size: .95rem; line-height: 1.65; color: var(--muted); margin: 0 0 1.25rem; flex: 1;
}
.service-card__link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .9rem; font-weight: 700; color: var(--primary);
  transition: gap var(--ease);
}
.service-card:hover .service-card__link { gap: .75rem; }

/* ── SHOWREEL ─────────────────────────────────────────────── */
.showreel { padding: var(--section-pad) 0; background: var(--dark); overflow: hidden; }
.showreel__layout {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem,5vw,5rem); align-items: center;
}
.showreel__video-wrap {
  position: relative; border-radius: 12px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06);
  background: #000;
}
.showreel__video {
  display: block; width: 100%; height: auto; aspect-ratio: 4/3;
  object-fit: cover; border-radius: 12px;
}
.showreel__content { color: #fff; }
.showreel__kicker { color: rgba(255,255,255,.55); margin-bottom: .75rem; }
.showreel__title {
  font-family: var(--font-head); font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 800; letter-spacing: .02em; line-height: 1.08;
  color: #fff; margin-bottom: 1.25rem;
}
.showreel__desc {
  font-size: clamp(.95rem,1.2vw,1.08rem); color: rgba(255,255,255,.65);
  line-height: 1.75; margin-bottom: 2rem; max-width: 440px;
}

/* ── WHY QPC ──────────────────────────────────────────────── */
.why-qpc { padding: var(--section-pad) 0; background: var(--dark); color: #fff; }
.why-qpc__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.why-qpc__left { position: sticky; top: 6rem; }
.why-qpc__title {
  font-family: var(--font-head); font-size: clamp(1.75rem,3.5vw,2.75rem);
  font-weight: 800; line-height: 1.15; margin: 0; color: #fff;
}
.why-qpc__badge {
  display: flex; align-items: center; gap: 14px; margin-top: 2rem;
  padding: 14px 18px; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1); border-radius: 8px;
}
.why-qpc__badge img { width: 52px; height: auto; }
.why-qpc__badge-label {
  font-size: .82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: rgba(255,255,255,.6);
}
.why-qpc__right { display: flex; flex-direction: column; gap: 1.5rem; }
.value-card {
  display: flex; gap: 1.5rem; padding: 1.75rem;
  border-radius: var(--card-radius); background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: background var(--ease), border-color var(--ease);
}
.value-card:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }
.value-card__number {
  font-family: var(--font-head); font-size: 2rem; font-weight: 800;
  color: var(--primary); line-height: 1; flex-shrink: 0; min-width: 2.5rem;
}
.value-card__title { font-size: 1.1rem; font-weight: 700; margin: 0 0 .4rem; color: #fff; }
.value-card__desc { font-size: .92rem; line-height: 1.65; color: rgba(255,255,255,.6); margin: 0; }

/* ── GALLERY ──────────────────────────────────────────────── */
.gallery { padding: var(--section-pad) 0; background: var(--white); }
.gallery__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.gallery__item {
  position: relative; border-radius: var(--card-radius);
  overflow: hidden; aspect-ratio: 4/3; cursor: pointer;
}
.gallery__image {
  width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease;
}
.gallery__badge {
  position: absolute; top: .75rem; left: .75rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: 4px;
}
.gallery__badge--before {
  background: rgba(0,0,0,.55); color: #fff;
}
.gallery__badge--after {
  background: var(--primary); color: #fff;
}
.gallery__overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--ease);
}
.gallery__item:hover .gallery__image  { transform: scale(1.08); }
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__overlay-text {
  color: #fff; font-size: .9rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  border: 2px solid rgba(255,255,255,.6); padding: .6rem 1.2rem; border-radius: 4px;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials { padding: var(--section-pad) 0; background: var(--white); overflow: hidden; }
.testimonials__carousel {
  overflow: hidden; width: 100%;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.testimonials__track {
  display: flex; gap: 1.5rem; width: max-content;
  animation: scrollLeft 50s linear infinite;
}
.testimonials__track:hover { animation-play-state: paused; }
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.testimonial-card {
  flex: 0 0 340px; background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--card-radius); padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: box-shadow var(--ease);
}
.testimonial-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.08); }
.testimonial-card__stars { display: flex; gap: 2px; color: #f59e0b; }
.testimonial-card__quote {
  font-size: .95rem; line-height: 1.7; color: var(--text);
  margin: 0; flex: 1; font-style: italic;
}
.testimonial-card__author {
  display: flex; flex-direction: column; gap: .15rem;
  border-top: 1px solid var(--gray-100); padding-top: 1rem;
}
.testimonial-card__name { font-weight: 700; font-size: .9rem; color: var(--text); }
.testimonial-card__role { font-size: .8rem; color: var(--muted); }
.testimonials__cta { display: flex; justify-content: center; margin-top: 2.5rem; }

/* ── FOLLOW US ────────────────────────────────────────────── */
.follow-us { padding: var(--section-pad) 0; background: var(--dark); overflow: hidden; }
.follow-us__title { color: #fff !important; }
.follow-us__subtitle {
  font-size: clamp(.95rem,1.2vw,1.08rem); color: rgba(255,255,255,.55);
  line-height: 1.7; max-width: 520px; margin: 1rem auto 0;
}
.follow-us__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; max-width: 900px; margin: 0 auto;
}
.follow-us__video-card { border-radius: 12px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.follow-us__video-wrap { position: relative; background: #000; }
.follow-us__video {
  display: block; width: 100%; height: auto; aspect-ratio: 9/16; object-fit: cover;
}
.follow-us__socials {
  display: flex; justify-content: center; gap: 1.5rem; margin-top: 3rem;
}
.follow-us__social-link {
  display: inline-flex; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.7); font-size: .95rem; font-weight: 600;
  letter-spacing: .02em; padding: .75rem 1.5rem;
  border: 1.5px solid rgba(255,255,255,.15); border-radius: 6px;
  transition: all .3s ease; text-decoration: none;
}
.follow-us__social-link:hover {
  color: #fff; border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.07); transform: translateY(-2px);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { padding: var(--section-pad) 0; background: var(--gray-bg); }
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--gray-100); }
.faq__item:first-child { border-top: 1px solid var(--gray-100); }
.faq__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.35rem 0; background: none; border: none;
  cursor: pointer; text-align: left; font-family: inherit;
}
.faq__question { font-size: 1.05rem; font-weight: 700; color: var(--text); line-height: 1.4; }
.faq__icon {
  flex-shrink: 0; width: 24px; height: 24px; display: flex;
  align-items: center; justify-content: center; color: var(--primary);
  transition: transform var(--ease);
}
.faq__item.is-open .faq__icon { transform: rotate(45deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.faq__answer-inner { padding-bottom: 1.5rem; }
.faq__answer-inner p { font-size: .95rem; line-height: 1.7; color: var(--muted); margin: 0; }

/* ── CTA CONTACT ──────────────────────────────────────────── */
.cta-contact { padding: var(--section-pad) 0; background: var(--dark); color: #fff; }
.cta-contact__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.cta-contact__kicker { margin-bottom: .75rem; }
.cta-contact__title {
  font-family: var(--font-head); font-size: clamp(1.75rem,3.5vw,2.75rem);
  font-weight: 800; line-height: 1.15; margin: 0 0 1.25rem; color: #fff;
}
.cta-contact__desc {
  font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,.65);
  margin: 0 0 2rem; max-width: 420px;
}
.cta-contact__phone {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: 1.25rem; font-weight: 700; color: #fff;
  text-decoration: none; transition: color var(--ease);
}
.cta-contact__phone:hover { color: var(--primary); }
.cta-contact__form {
  background: var(--white); border-radius: var(--card-radius); padding: 2rem;
}

/* form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 14px; font-weight: 600; color: var(--text); letter-spacing: .01em; }
.form-input, .form-select {
  font-family: 'Inter', sans-serif; font-size: 16px; padding: 12px 14px;
  border: 1px solid rgba(0,0,0,.15); border-radius: 6px;
  background: rgba(255,255,255,.95); color: var(--text);
  transition: border-color .2s, box-shadow .2s; width: 100%;
  -webkit-appearance: none; appearance: none;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.form-input:focus, .form-select:focus {
  outline: none; border-color: var(--text); box-shadow: 0 0 0 2px rgba(0,0,0,.06);
}
textarea.form-input { resize: vertical; min-height: 100px; }
.contact-form__submit {
  font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600;
  padding: 14px 28px; background: var(--dark); color: #fff;
  border: none; border-radius: 6px; cursor: pointer;
  transition: opacity .2s, transform .15s; width: 100%; letter-spacing: .01em;
}
.contact-form__submit:hover { opacity: .88; transform: translateY(-1px); }
.form-success {
  display: none; text-align: center; padding: 48px 20px;
}
.form-success__icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(21,101,192,.1); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 16px; color: var(--primary);
}
.form-success h4 {
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 800;
  color: var(--text); margin-bottom: 8px;
}
.form-success p { font-size: .95rem; color: var(--muted); }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer { background: var(--dark); padding: 5rem 0 2rem; }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 4rem;
}
.footer__logo { height: 52px; width: auto; display: block; margin-bottom: 1rem; }
.footer__tagline { font-size: .95rem; color: rgba(255,255,255,.5); margin-bottom: .5rem; }
.footer__service-area { font-size: .85rem; color: rgba(255,255,255,.35); }
.footer__heading {
  font-size: .82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.5); margin-bottom: 1.25rem;
}
.footer__list { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer__link {
  color: rgba(255,255,255,.5); text-decoration: none;
  font-size: .9rem; transition: color .2s;
}
.footer__link:hover { color: #fff; }
.footer__contact-item {
  display: flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.5); font-size: .9rem;
}
.footer__socials { display: flex; gap: .75rem; margin-top: 1.5rem; }
.footer__social-icon {
  width: 34px; height: 34px; border-radius: 6px;
  background: rgba(255,255,255,.07); display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,.55);
  text-decoration: none; transition: var(--ease);
}
.footer__social-icon:hover { background: var(--primary); color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.75rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer__bottom p { font-size: .8rem; color: rgba(255,255,255,.3); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid      { grid-template-columns: repeat(2,1fr); }
  .why-qpc__layout     { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-qpc__left       { position: static; }
  .gallery__grid       { grid-template-columns: repeat(2,1fr); }
  .cta-contact__layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer__grid        { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .showreel__layout    { grid-template-columns: 1fr; gap: 2.5rem; }
  .showreel__content   { text-align: center; }
  .showreel__desc      { margin: 0 auto 2rem; }
}
@media (max-width: 768px) {
  .header__nav, .header__socials, .header__nav .btn { display: none; }
  .header__burger { display: flex; }
  .header__inner  { grid-template-columns: auto 1fr auto; }
  .header__logo   { grid-column: 2; justify-self: center; }
  .follow-us__grid { grid-template-columns: 1fr; max-width: 360px; }
}
@media (max-width: 640px) {
  .services__grid  { grid-template-columns: 1fr; }
  .gallery__grid   { grid-template-columns: 1fr; }
  .trust-bar       { display: none; }
  .footer__grid    { grid-template-columns: 1fr; }
  .footer__bottom  { flex-direction: column; gap: .5rem; text-align: center; }
  .testimonial-card { flex: 0 0 280px; }
  .cta-contact__form { padding: 1.5rem; }
}

/* ── NAV DROPDOWNS ───────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown__trigger {
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: 'Inter', sans-serif; display: inline-flex; align-items: center; gap: .3rem;
}
.nav-dropdown__menu {
  position: absolute; top: 100%; left: 50%;
  background: rgba(13,13,13,.97); backdrop-filter: blur(12px);
  border-radius: 10px; padding: 1rem 0 .5rem; min-width: 210px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(4px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 200; box-shadow: 0 12px 40px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.07);
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown__item {
  display: block; padding: .55rem 1.25rem;
  color: rgba(255,255,255,.75); text-decoration: none;
  font-size: .85rem; font-weight: 500; letter-spacing: .02em;
  transition: color .15s, background .15s;
}
.nav-dropdown__item:hover { color: #fff; background: rgba(255,255,255,.07); }

/* ── HERO TAGLINE & STARS ────────────────────────────────── */
.hero__tagline {
  font-family: var(--font-head); font-size: clamp(1.1rem,2.5vw,1.5rem);
  font-weight: 700; color: rgba(255,255,255,.92); letter-spacing: .04em;
  text-transform: uppercase; text-align: center; margin: 0;
  animation: fadeInUp 1s ease .3s both;
}
.hero__services-list {
  font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.6);
  letter-spacing: .12em; text-transform: uppercase; text-align: center; margin: 0;
  animation: fadeInUp 1s ease .45s both;
}
.hero__rating {
  display: flex; align-items: center; gap: .5rem;
  animation: fadeInUp 1s ease .55s both;
}
.hero__stars { color: #FFC107; font-size: 1rem; letter-spacing: .05em; }
.hero__rating-text { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.75); }

/* ── MOBILE CTA BAR ──────────────────────────────────────── */
.mobile-cta { display: none; }
@media (max-width: 768px) {
  .mobile-cta {
    display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 997;
    background: var(--primary); padding: .85rem 1rem;
    box-shadow: 0 -2px 16px rgba(0,0,0,.25);
  }
  .mobile-cta__btn {
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    color: #fff; font-weight: 700; font-size: 1rem; text-decoration: none;
    letter-spacing: .02em;
  }
  body { padding-bottom: 58px; }
}

/* ── OWNER BIO ───────────────────────────────────────────── */
.owner-bio { padding: var(--section-pad) 0; background: var(--gray-bg); }
.owner-bio__layout {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(2.5rem,5vw,5rem);
  align-items: center;
}
.owner-bio__img-wrap {
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.12); aspect-ratio: 2/3;
}
.owner-bio__img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.owner-bio__title {
  font-family: var(--font-head); font-size: clamp(1.8rem,3vw,2.5rem);
  font-weight: 800; margin: .4rem 0 .2rem; color: var(--text);
}
.owner-bio__role { font-size: .9rem; color: var(--muted); font-weight: 600; margin-bottom: 1.25rem; letter-spacing: .02em; }
.owner-bio__text { font-size: 1rem; line-height: 1.75; color: #444; margin-bottom: 1.75rem; }
.owner-bio__badges { display: flex; flex-wrap: wrap; gap: .65rem; }
.owner-bio__badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: #fff; border: 1px solid var(--gray-100);
  border-radius: 100px; padding: .45rem 1rem;
  font-size: .82rem; font-weight: 700; color: var(--text);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.owner-bio__badge svg { color: var(--primary); flex-shrink: 0; }
@media (max-width: 768px) {
  .owner-bio__layout { grid-template-columns: 1fr; }
  .owner-bio__img-wrap { aspect-ratio: 16/9; max-width: 480px; }
}

/* ── SERVICE AREAS ───────────────────────────────────────── */
.service-areas { padding: var(--section-pad) 0; background: var(--white); }
.areas-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem; margin-top: 2.5rem;
}
.area-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; padding: 1.5rem 1rem; border-radius: var(--card-radius);
  background: var(--gray-bg); border: 1px solid var(--gray-100);
  text-decoration: none; color: var(--text);
  transition: all var(--ease); text-align: center;
}
.area-card:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-3px); }
.area-card--muted { opacity: .6; pointer-events: none; }
.area-card__name { font-weight: 700; font-size: .95rem; }
.area-card__state { font-size: .78rem; color: var(--muted); }
.area-card:hover .area-card__state { color: rgba(255,255,255,.75); }

/* ── LOCATION PAGE SPECIFIC ──────────────────────────────── */
.page-hero {
  background: var(--dark); color: #fff;
  padding: calc(var(--section-pad) + 4rem) 0 var(--section-pad);
  text-align: center;
}
.page-hero__kicker { color: rgba(255,255,255,.55); margin-bottom: .75rem; }
.page-hero__title {
  font-family: var(--font-head); font-size: clamp(2.2rem,5vw,3.8rem);
  font-weight: 800; line-height: 1.05; color: #fff; margin: 0 0 1rem;
}
.page-hero__desc {
  font-size: clamp(1rem,1.5vw,1.15rem); color: rgba(255,255,255,.65);
  line-height: 1.7; max-width: 620px; margin: 0 auto 2rem;
}
.page-hero__ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.breadcrumb {
  padding: .75rem 0; background: var(--gray-bg);
  border-bottom: 1px solid var(--gray-100);
}
.breadcrumb__list {
  display: flex; align-items: center; gap: .5rem;
  list-style: none; font-size: .82rem; color: var(--muted);
}
.breadcrumb__link { color: var(--primary); text-decoration: none; }
.breadcrumb__link:hover { text-decoration: underline; }
.breadcrumb__sep { color: var(--gray-100); }

.services-list { padding: var(--section-pad) 0; background: var(--white); }
.services-list__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.service-list-card {
  padding: 1.75rem; border-radius: var(--card-radius);
  background: var(--gray-bg); border: 1px solid var(--gray-100);
  display: flex; flex-direction: column; gap: .75rem;
  text-decoration: none; color: inherit;
  transition: all var(--ease);
}
.service-list-card:hover { background: var(--primary); color: #fff; transform: translateY(-3px); border-color: var(--primary); }
.service-list-card__icon { font-size: 1.75rem; }
.service-list-card__title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; }
.service-list-card__desc { font-size: .9rem; line-height: 1.6; color: var(--muted); }
.service-list-card:hover .service-list-card__desc { color: rgba(255,255,255,.8); }

.why-us { padding: var(--section-pad) 0; background: var(--gray-bg); }
.why-us__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.why-us-card {
  padding: 1.75rem; background: var(--white); border-radius: var(--card-radius);
  border: 1px solid var(--gray-100);
}
.why-us-card__num {
  font-family: var(--font-head); font-size: 2.5rem; font-weight: 800;
  color: var(--primary); line-height: 1; margin-bottom: .5rem;
}
.why-us-card__title { font-weight: 700; font-size: 1.05rem; margin-bottom: .4rem; }
.why-us-card__desc { font-size: .9rem; line-height: 1.65; color: var(--muted); }

.local-testimonials { padding: var(--section-pad) 0; background: var(--white); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}

.cta-section { padding: var(--section-pad) 0; background: var(--primary); color: #fff; text-align: center; }
.cta-section__title {
  font-family: var(--font-head); font-size: clamp(2rem,4vw,3rem);
  font-weight: 800; color: #fff; margin-bottom: 1rem;
}
.cta-section__desc {
  font-size: 1.1rem; color: rgba(255,255,255,.85); margin-bottom: 2rem;
  max-width: 540px; margin-left: auto; margin-right: auto;
}
.cta-section__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── BLOG SPECIFIC ───────────────────────────────────────── */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem; margin-top: 2.5rem;
}
.blog-card {
  border-radius: var(--card-radius); overflow: hidden;
  background: var(--white); border: 1px solid var(--gray-100);
  display: flex; flex-direction: column;
  transition: box-shadow var(--ease), transform var(--ease);
  text-decoration: none; color: inherit;
}
.blog-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.1); transform: translateY(-4px); }
.blog-card__img-wrap { aspect-ratio: 16/9; overflow: hidden; background: var(--gray-bg); }
.blog-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card__img { transform: scale(1.05); }
.blog-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .6rem; }
.blog-card__category {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--primary);
}
.blog-card__title { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; line-height: 1.25; }
.blog-card__excerpt { font-size: .9rem; line-height: 1.65; color: var(--muted); flex: 1; }
.blog-card__meta { font-size: .78rem; color: var(--muted); padding-top: .75rem; border-top: 1px solid var(--gray-100); }

.blog-post { padding: var(--section-pad) 0; }
.blog-post__content {
  max-width: 720px; margin: 0 auto;
  font-size: 1.05rem; line-height: 1.8; color: #333;
}
.blog-post__content h2 {
  font-family: var(--font-head); font-size: clamp(1.5rem,2.5vw,2rem);
  font-weight: 800; margin: 2.5rem 0 1rem; color: var(--text);
}
.blog-post__content h3 {
  font-family: var(--font-head); font-size: 1.3rem;
  font-weight: 700; margin: 2rem 0 .75rem; color: var(--text);
}
.blog-post__content p { margin-bottom: 1.25rem; }
.blog-post__content ul, .blog-post__content ol { margin: 0 0 1.25rem 1.5rem; }
.blog-post__content li { margin-bottom: .5rem; }
.blog-post__content a { color: var(--primary); }
.blog-post__content strong { font-weight: 700; color: var(--text); }

/* ── SERVICE PAGE HERO ───────────────────────────────────── */
.service-hero {
  background: var(--dark);
  padding: calc(var(--section-pad) + 5rem) 0 var(--section-pad);
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/hero-poster.jpg') center/cover no-repeat;
  opacity: .12;
  z-index: 0;
}
.service-hero .container { position: relative; z-index: 1; }
.service-hero .breadcrumb {
  padding: 0 0 1.5rem;
  background: none;
  border: none;
}
.service-hero .breadcrumb__list { color: rgba(255,255,255,.45); }
.service-hero .breadcrumb__link { color: rgba(255,255,255,.55); }
.service-hero .breadcrumb__link:hover { color: #fff; }
.service-hero .breadcrumb__sep { color: rgba(255,255,255,.25); }
.service-hero .breadcrumb__current { color: rgba(255,255,255,.55); }
.service-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin: 0 0 1.25rem;
  max-width: 700px;
}
.service-hero__lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 0 2rem;
}
.service-hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.service-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}
.service-hero__badge .stars { color: #FFC107; letter-spacing: .05em; }
.service-hero__badge .badge-text { font-weight: 500; }

@media (max-width: 640px) {
  .service-hero { padding-top: calc(4rem + 5rem); }
  .service-hero__title { font-size: 2.2rem; }
}
