/* =====================================================
   SEAL THE DEAL — Stylesheet
   Industrial / professional concrete coating brand
   ===================================================== */

:root {
  --blue: #1E47E6;
  --blue-dark: #1639B8;
  --blue-glow: rgba(30, 71, 230, 0.35);
  --black: #0A0A0B;
  --ink: #14161A;
  --gray-900: #1C1F24;
  --gray-700: #4A4F5A;
  --gray-500: #8A8F99;
  --gray-300: #D6D9DE;
  --gray-100: #F2F3F5;
  --bone: #F6F5F1;
  --white: #FFFFFF;

  --display: 'Anton', 'Impact', sans-serif;
  --body: 'Manrope', system-ui, sans-serif;

  --container: 1240px;
  --radius: 4px;
  --shadow: 0 30px 60px -20px rgba(0,0,0,0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ TYPOGRAPHY ============ */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink);
}

.section-title .accent { color: var(--blue); }

.lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--gray-700);
  margin-bottom: 16px;
}

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

.section-head {
  margin-bottom: 64px;
  max-width: 800px;
}
.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px var(--blue-glow);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn--white {
  background: var(--white);
  color: var(--ink);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(0,0,0,0.3);
}
.btn--full { width: 100%; }

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  padding: 20px 0;
}
.nav.scrolled {
  background: rgba(10,10,11,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.nav__logo img {
  height: 44px;
  width: auto;
}
.nav__logo span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo strong {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--white);
}
.nav__logo em {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 4px;
}
.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav__links a:hover { color: var(--white); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.25s ease;
}
.nav__links a:hover::after { width: 100%; }

.nav__cta { white-space: nowrap; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}
.nav__toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, var(--blue-glow), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(30,71,230,0.15), transparent 40%),
    var(--black);
  z-index: 0;
}
.hero__grid {
  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: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}
.hero__title {
  font-family: var(--display);
  font-size: clamp(48px, 9vw, 130px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin-bottom: 32px;
  animation: rise 0.9s ease 0.1s both;
}
.hero__title--accent {
  color: var(--blue);
  position: relative;
  display: inline-block;
}
.hero__sub {
  font-size: clamp(16px, 1.4vw, 20px);
  max-width: 580px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  animation: rise 0.9s ease 0.3s both;
}
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
  animation: rise 0.9s ease 0.45s both;
}
.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: rise 0.9s ease 0.6s both;
}
.hero__trust > div {
  display: flex;
  flex-direction: column;
}
.hero__trust strong {
  font-family: var(--display);
  font-size: 32px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.hero__trust span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-500);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--blue);
  color: var(--white);
  padding: 22px 0;
  overflow: hidden;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}
.marquee__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: var(--display);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.marquee__track span:nth-child(even) {
  color: rgba(255,255,255,0.5);
  font-size: 20px;
  display: flex;
  align-items: center;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ INTRO ============ */
.intro {
  padding: 120px 0;
  background: var(--bone);
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.intro__right p { color: var(--gray-700); margin-bottom: 16px; }

/* ============ SERVICES ============ */
.services {
  padding: 120px 0;
  background: var(--ink);
  color: var(--white);
}
.services .section-title { color: var(--white); }
.services .eyebrow { color: var(--blue); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px 32px;
  border-radius: var(--radius);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card--feature {
  background: var(--blue);
  border-color: var(--blue);
}
.service-card--feature::before { background: var(--white); transform: scaleX(1); }

.service-card__num {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gray-500);
  margin-bottom: 24px;
}
.service-card--feature .service-card__num { color: rgba(255,255,255,0.6); }

.service-card__icon {
  width: 56px;
  height: 56px;
  color: var(--blue);
  margin-bottom: 24px;
}
.service-card--feature .service-card__icon { color: var(--white); }

.service-card h3 {
  font-family: var(--display);
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  font-weight: 400;
}
.service-card p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  font-size: 15px;
}
.service-card--feature p { color: rgba(255,255,255,0.92); }

.service-card__list {
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}
.service-card--feature .service-card__list { border-color: rgba(255,255,255,0.25); }
.service-card__list li {
  font-size: 14px;
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  color: rgba(255,255,255,0.85);
}
.service-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}
.service-card--feature .service-card__list li::before { color: var(--white); }

/* ============ SURFACES ============ */
.surfaces {
  padding: 120px 0;
  background: var(--bone);
}
.surfaces__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.surface {
  background: var(--white);
  padding: 40px 28px;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--gray-300);
  transition: all 0.3s ease;
}
.surface:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.surface svg {
  width: 56px;
  height: 56px;
  color: var(--blue);
  margin: 0 auto 20px;
}
.surface h4 {
  font-family: var(--display);
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  font-weight: 400;
}
.surface p { font-size: 14px; color: var(--gray-700); line-height: 1.5; }

/* ============ PROCESS ============ */
.process {
  padding: 120px 0;
  background: var(--white);
}
.process__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  list-style: none;
  counter-reset: process;
}
.process__list li {
  position: relative;
  padding-top: 32px;
  border-top: 2px solid var(--ink);
}
.process__list li::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--blue);
  border-radius: 50%;
}
.process__num {
  font-family: var(--display);
  font-size: 56px;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 16px;
}
.process__list h3 {
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 400;
}
.process__list p { font-size: 15px; color: var(--gray-700); }

/* ============ WHY US ============ */
.why {
  padding: 120px 0;
  background: var(--ink);
  color: var(--white);
}
.why .section-title { color: var(--white); }
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.why__left .lead { color: rgba(255,255,255,0.75); margin-bottom: 32px; }
.why__right { display: grid; gap: 24px; }
.why-feature {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--gray-900);
  border-radius: var(--radius);
  border-left: 3px solid var(--blue);
}
.why-feature__icon {
  font-size: 24px;
  color: var(--blue);
  line-height: 1;
}
.why-feature h4 {
  font-family: var(--display);
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 400;
}
.why-feature p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}

/* ============ CTA BANNER ============ */
.cta-banner {
  background: var(--blue);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: 'SEAL THE DEAL';
  position: absolute;
  font-family: var(--display);
  font-size: 280px;
  color: rgba(255,255,255,0.05);
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  letter-spacing: -0.02em;
}
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 400;
}
.cta-banner p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* ============ CONTACT ============ */
.contact {
  padding: 120px 0;
  background: var(--bone);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}
.contact__info > div { display: flex; flex-direction: column; gap: 6px; }
.contact__info span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 700;
}
.contact__info strong {
  font-size: 16px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.4;
}
.contact__info a { color: var(--ink); transition: color 0.2s; }
.contact__info a:hover { color: var(--blue); }

/* Form */
.contact__form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-300);
  box-shadow: var(--shadow);
}
.field { display: flex; flex-direction: column; margin-bottom: 20px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  padding: 14px 16px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  font-family: var(--body);
  font-size: 15px;
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}
.field textarea { resize: vertical; }
.contact__form-note {
  margin-top: 12px;
  font-size: 14px;
  text-align: center;
  color: var(--blue);
  font-weight: 600;
  min-height: 20px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer__brand img {
  height: 56px;
  width: auto;
  margin-bottom: 24px;
}
.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 360px;
}
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h5 {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
  font-weight: 400;
}
.footer__col a,
.footer__col span {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr; }
  .surfaces__grid { grid-template-columns: repeat(2, 1fr); }
  .process__list { grid-template-columns: repeat(2, 1fr); }
  .intro__grid,
  .why__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .nav__cta { display: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav__inner { padding: 0 20px; }
  .nav__links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10,10,11,0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    transform: translateY(-200%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.25s ease, visibility 0s linear 0.3s;
  }
  .nav__links.open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: transform 0.3s ease, opacity 0.25s ease, visibility 0s linear 0s;
  }
  .nav__toggle { display: flex; }
  .nav__logo em { display: none; }

  .hero { padding: 120px 0 60px; }
  .hero__trust {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .marquee__track { font-size: 22px; }

  .intro, .services, .surfaces, .process, .why, .contact { padding: 80px 0; }

  .surfaces__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .process__list { grid-template-columns: 1fr; gap: 40px; }
  .contact__info { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .contact__form { padding: 28px 20px; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom .container { flex-direction: column; text-align: center; }
}

/* ============ WP-SPECIFIC ADDITIONS ============ */
.footer__license { margin-top: 12px; }
.footer__license small {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
}
.wp-caption, .gallery-caption, .bypostauthor, .sticky, .alignleft, .alignright, .aligncenter { display: block; }
.screen-reader-text { position: absolute; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }

/* ============ GALLERY (activated when images added) ============ */
.gallery { padding: 120px 0; background: var(--bone); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  background: var(--gray-300);
}
.gallery__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover .gallery__img { transform: scale(1.05); }
@media (max-width: 768px) {
  .gallery__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery { padding: 80px 0; }
}

/* ============ HERO WITH BACKGROUND PHOTO ============ */
.hero--photo {
  background-size: cover;
  background-position: center 60%;
  background-attachment: fixed;
}
.hero--photo .hero__bg {
  background:
    linear-gradient(135deg, rgba(10,10,11,0.94) 0%, rgba(10,10,11,0.78) 50%, rgba(30,71,230,0.55) 100%);
}
@media (max-width: 1024px) {
  .hero--photo {
    background-attachment: scroll; /* avoid janky mobile parallax */
  }
}

/* ============ GALLERY (refined for real photos) ============ */
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  background: var(--gray-300);
  cursor: pointer;
}
.gallery__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 32px 20px 18px;
  background: linear-gradient(to top, rgba(10,10,11,0.85) 0%, transparent 100%);
  color: var(--white);
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.gallery__item:hover .gallery__caption {
  transform: translateY(0);
  opacity: 1;
}
.gallery__item:hover .gallery__img {
  transform: scale(1.04);
}

/* ============ FAQ SECTION ============ */
.faq {
  padding: 120px 0;
  background: var(--white);
}
.faq__list {
  max-width: 880px;
  margin-top: 56px;
}
.faq__item {
  border-top: 1px solid var(--gray-300);
  padding: 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--gray-300); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 60px 28px 0;
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 28px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s;
  color: var(--ink);
}
.faq__item summary:hover { color: var(--blue); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  font-weight: 300;
  color: var(--blue);
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p {
  padding: 0 60px 28px 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--gray-700);
  animation: faqIn 0.3s ease;
}
.faq__item p a { color: var(--blue); border-bottom: 1px solid var(--blue); }
.faq__item p a:hover { background: var(--blue); color: var(--white); }
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .faq { padding: 80px 0; }
  .faq__item summary { padding: 22px 50px 22px 0; }
  .faq__item p { padding: 0 50px 22px 0; font-size: 16px; }
}

/* ============ STICKY TAP-TO-CALL (mobile only) ============ */
.sticky-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: var(--blue);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(30, 71, 230, 0.4), 0 2px 6px rgba(0,0,0,0.2);
  display: none;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: callPulse 2.5s ease-in-out 1.5s infinite;
}
.sticky-call:hover,
.sticky-call:active {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(30, 71, 230, 0.5);
}
.sticky-call svg {
  flex-shrink: 0;
}
@keyframes callPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(30, 71, 230, 0.4), 0 2px 6px rgba(0,0,0,0.2); }
  50%      { box-shadow: 0 8px 24px rgba(30, 71, 230, 0.4), 0 0 0 8px rgba(30, 71, 230, 0.15); }
}

/* Show on mobile/tablet only */
@media (max-width: 1024px) {
  .sticky-call { display: inline-flex; }
}

/* Bottom spacing so sticky button doesn't cover footer content */
@media (max-width: 1024px) {
  .footer { padding-bottom: 90px; }
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bone) 0%, var(--white) 100%);
}
.testimonials .section-head {
  margin-bottom: 48px;
}
.testimonials__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 10px 20px;
  background: var(--white);
  border-radius: 100px;
  border: 1px solid var(--gray-300);
  font-size: 15px;
}
.testimonials__badge strong { font-weight: 800; color: var(--ink); }
.testimonials__badge span { color: var(--gray-500); }
.testimonials__badge a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.testimonials__badge a:hover { border-color: var(--blue); }
.testimonials__stars {
  color: #FBBC04;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1;
}

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

.testimonial {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-300);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.testimonial__google {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 28px;
  right: 28px;
}
.testimonial .testimonial__stars {
  font-size: 18px;
  letter-spacing: 2px;
}
.testimonial__title {
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--blue);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
.testimonial__quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-700);
  flex: 1;
  margin: 0;
}
.testimonial__footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-300);
}
.testimonial__footer strong {
  font-size: 15px;
  color: var(--ink);
  font-weight: 700;
}
.testimonial__footer span {
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.testimonials__cta {
  text-align: center;
  margin-top: 56px;
}

.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn--ghost-dark:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .testimonials__grid { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 768px) {
  .testimonials { padding: 80px 0; }
  .testimonial { padding: 28px 24px; }
}

/* ============ SERVICE AREA MAP ============ */
.service-area {
  padding: 120px 0;
  background: var(--bone);
}
.service-area__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 56px;
}
.service-area__map {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-300);
}
.service-area__map svg {
  width: 100%;
  height: auto;
  display: block;
}
.map-pin {
  cursor: pointer;
  transition: transform 0.25s ease;
  transform-origin: center;
}
.map-pin:hover { transform: scale(1.15); }
.map-pin circle:first-of-type { transition: opacity 0.25s; }
.map-pin:hover circle:first-of-type { opacity: 0.7; }

.service-area__list h3 {
  font-family: var(--display);
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 24px;
}
.service-area__list ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.service-area__list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-300);
  font-size: 15px;
  color: var(--gray-700);
}
.service-area__list li strong {
  color: var(--ink);
  font-weight: 700;
}
.service-area__list li span {
  margin-left: auto;
  font-size: 10px;
  background: var(--blue);
  color: var(--white);
  padding: 3px 8px;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.service-area__cta {
  padding: 24px;
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  text-align: center;
}
.service-area__cta p {
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--white);
  letter-spacing: 0.02em;
}
.service-area__cta .btn {
  width: 100%;
}

@media (max-width: 1024px) {
  .service-area__grid { grid-template-columns: 1fr; gap: 40px; }
  .service-area__list ul { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .service-area { padding: 80px 0; }
  .service-area__map { padding: 12px; }
  .service-area__list h3 { font-size: 26px; }
  .service-area__list ul { grid-template-columns: 1fr; gap: 8px; }
}
