:root {
  --bg-base:          #000000;
  --bg-depth:         #0a0a0a;
  --glass-bg:         rgba(255, 255, 255, 0.05);
  --glass-border:     rgba(255, 255, 255, 0.12);
  --accent:           #c8cdd4;
  --accent-light:     #e8eaed;
  --accent-dark:      #8e949c;
  --accent-hover:     #b0b7bf;
  --accent-glow:      rgba(200, 205, 212, 0.12);
  --accent-gradient:  linear-gradient(135deg,
                        #e8eaed 0%,
                        #9ba3ab 40%,
                        #c8cdd4 60%,
                        #e2e5e8 100%);
  --text-primary:     #ffffff;
  --text-body:        #e5e7eb;
  --text-muted:       #9ca3af;
  --border-subtle:    rgba(255, 255, 255, 0.08);
  --border-glass:     rgba(255, 255, 255, 0.14);
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background-color: #000000 !important;
  color: #d1d5db;
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins','Inter',sans-serif;
  color: #ffffff;
  margin: 0 0 1rem;
  line-height: 1.2;
}

p { margin: 0 0 1rem; color: #e5e7eb; }
li, td { color: #e5e7eb; }
small, .muted { color: #9ca3af; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 2rem)); margin: 0 auto; }

/* ── MOUSE GLOW ── */
#mouse-glow {
  position: fixed;
  top: 0; left: 0;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.04) 35%,
    rgba(255, 255, 255, 0.01) 60%,
    transparent 75%
  );
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  will-change: left, top;
}
@media (hover: none), (max-width: 768px) {
  #mouse-glow { display: none !important; }
}

/* ── ACCESSIBILITY ── */
.sr-only {
  position:absolute; width:1px; height:1px;
  padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); border:0;
}
.focus\:not-sr-only:focus {
  position:fixed; left:1rem; top:1rem;
  width:auto; height:auto; clip:auto; margin:0;
  padding:0.6rem 1rem; background:#fff; color:#000;
  z-index:3000; border-radius:0.5rem;
}
a:focus-visible,button:focus-visible,
input:focus-visible,select:focus-visible,
textarea:focus-visible {
  outline:3px solid var(--accent); outline-offset:2px;
}

/* ── NAVBAR ── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(0,0,0,0.5) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(0,0,0,0.92) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem; min-height: 88px;
}
.logo-circle {
  border-radius: 50%; overflow: hidden;
  display: inline-flex; align-items: center;
  justify-content: center; background: #ffffff;
}
.logo-circle-nav {
  width:64px; height:64px;
  border: 2px solid rgba(255,255,255,0.25);
  padding: 6px;
}
.logo-circle-footer {
  width:80px; height:80px;
  border: 2px solid rgba(255,255,255,0.2);
  padding: 8px;
}
.logo-circle img {
  width:100%; height:100%;
  object-fit: contain !important;
  object-position: center;
}
.site-nav {
  display:flex; justify-content:center;
  align-items:center; gap:1.2rem;
}
.site-nav a {
  text-decoration:none; color:#ffffff;
  font-weight:600; transition:color 0.2s;
}
.site-nav a:hover { color: #c8cdd4; }
.menu-toggle {
  display:none; width:48px; height:48px;
  border:1px solid rgba(255,255,255,0.4);
  background:rgba(255,255,255,0.1);
  border-radius:0.6rem;
  align-items:center; justify-content:center;
  gap:0.25rem; flex-direction:column;
  cursor: pointer;
}
.menu-toggle span { width:22px; height:2px; background:#fff; }

/* ── HERO ── */
.hero {
  position:relative; min-height:100vh;
  display:flex; align-items:center;
  justify-content:center; color:#fff;
  overflow:hidden; background:#000000 !important;
}
.hero-media {
  position:absolute;
  top:-20%; left:0;
  width:100%; height:140%;
  object-fit:cover; object-position:center;
  will-change:transform; z-index:0;
}
.hero-overlay {
  position:absolute; inset:0;
  background:rgba(0,0,0,0.62) !important;
  z-index:1;
}
.hero-content { position:relative; z-index:3; text-align:center; }
.hero h1 {
  color:#fff;
  font-size:clamp(2.5rem,6vw,4rem);
  max-width:980px; margin-inline:auto;
}
.hero p { color:#fff; font-size:1.1rem; }
.hero-phone a { color:#fff; text-decoration:underline; font-weight:600; }

/* ── BUTTONS ── */
.btn {
  text-decoration:none; border-radius:9999px;
  padding:0.75rem 1.25rem; font-weight:600;
  display:inline-flex; align-items:center;
  justify-content:center; border:2px solid transparent;
  cursor:pointer; transition: all 0.2s ease;
}
.btn-outline { border-color:#fff; color:#fff; background:transparent; }
.btn-outline:hover { background:rgba(255,255,255,0.1); }
.btn-outline-orange { border-color:var(--accent); color:var(--accent); background:transparent; }
.btn-dark { background:rgba(255,255,255,0.08); color:#fff; }
.btn-light { background:#fff; color:#000; }
.btn-full { width:100%; }
.hero-cta-row { display:flex; flex-wrap:wrap; gap:0.75rem; justify-content:center; }

/* ── TRUST BAR ── */
.trust-bar {
  background: rgba(255,255,255,0.03) !important;
  border-top:1px solid rgba(255,255,255,0.07);
  border-bottom:1px solid rgba(255,255,255,0.07);
  padding:2rem 0; overflow-x:auto;
}
.trust-items {
  display:flex; gap:3rem;
  justify-content:center; flex-wrap:wrap;
}
.trust-item {
  display:flex; flex-direction:column;
  align-items:center; gap:0.25rem;
}
.trust-number, .trust-static {
  font-family:'Poppins',sans-serif;
  font-size:2rem; font-weight:700; color:#ffffff;
}
.trust-label { color:#9ca3af; font-size:0.85rem; text-align:center; }

/* ── SECTIONS ── */
.section { padding:4.5rem 0; }
.section-light { background:#0a0a0a !important; }
.section-dark  { background:#000000 !important; }
.section-dark h2,.section-dark h3,.section-dark p { color:#ffffff; }

/* ── GLASS CARDS ── */
.glass-card,
.service-card,
.testimonial-card,
.contact-card,
.social-card,
.quote-form-card,
.trust-item {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(20px) saturate(200%) brightness(110%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(200%) brightness(110%) !important;
  border-radius: 16px !important;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.4),
    0 10px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
  transition: transform 0.3s ease, border-color 0.3s ease,
              box-shadow 0.3s ease !important;
}

/* Shimmer — top-left to bottom-right light catch */
.glass-card::before,
.service-card::before,
.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 50%,
    rgba(255, 255, 255, 0.02) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Children above shimmer layer */
.glass-card > *,
.service-card > *,
.testimonial-card > * { position: relative; z-index: 1; }

/* Hover — white lift, NOT orange */
.glass-card:hover,
.service-card:hover,
.testimonial-card:hover,
.social-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  box-shadow:
    0 8px 12px rgba(0, 0, 0, 0.5),
    0 20px 60px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.06) !important;
}

.quote-form-card:hover { transform: none !important; }

/* Glass form inputs */
.quote-form-card input,
.quote-form-card select,
.quote-form-card textarea {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 10px !important;
  color: #ffffff !important;
  padding: 0.7rem 0.9rem !important;
  font: inherit !important;
  width: 100% !important;
  transition: border-color 0.2s ease !important;
}
.quote-form-card input:focus,
.quote-form-card select:focus,
.quote-form-card textarea:focus {
  border-color: rgba(255, 255, 255, 0.45) !important;
  outline: none !important;
  background: rgba(255, 255, 255, 0.09) !important;
}
.quote-form-card select option { background: #0a0a0a; color: #ffffff; }
.quote-form-card label { color: #e5e7eb !important; }

/* Apply glass style to stepped-content */
.stepped-content {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(20px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(200%) !important;
  border-radius: 16px !important;
  padding: 2.5rem !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 10px 40px rgba(0,0,0,0.5) !important;
}

/* ── SERVICES GRID ── */
.services-grid, .service-listing {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
}
.service-card { padding:1.5rem; }
.service-icon { width:40px; height:40px; border-radius:50%; margin-bottom:0.75rem; }
.service-card a { color:#e5e7eb; font-weight:600; text-decoration:none; }
.service-card a:hover { color:#ffffff; }

/* ── SPLIT / STEPPED SECTIONS ── */
.split-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:2rem; align-items:center;
}
.rounded-image { border-radius:1rem; }

.stepped-section {
  background:transparent;
  padding:5rem 0;
  border-bottom:1px solid rgba(255,255,255,0.06);
  overflow:hidden;
}
.stepped-inner {
  display:flex; align-items:center;
  gap:3rem; max-width:1160px;
  margin:0 auto; padding:0 2rem;
}
.stepped-reverse .stepped-inner { flex-direction:row-reverse; }
.stepped-media { flex:1; min-width:0; }
.stepped-media-frame {
  position:relative; width:100%;
  aspect-ratio:4/3; border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.15);
  box-shadow:0 0 0 1px rgba(255,255,255,0.05),
             0 24px 64px rgba(0,0,0,0.7),
             inset 0 1px 0 rgba(255,255,255,0.1);
}
.stepped-media-bg {
  position:absolute; inset:-10%;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  will-change:transform;
}
.stepped-media-glass {
  position:absolute; inset:0;
  background:linear-gradient(135deg,
    rgba(255,255,255,0.04) 0%,
    rgba(0,0,0,0.15) 100%);
  box-shadow:inset 0 0 30px rgba(0,0,0,0.3);
  pointer-events:none;
}
.stepped-media-frame:hover .stepped-media-glass {
  background:linear-gradient(135deg,
    rgba(255,255,255,0.07) 0%,
    rgba(0,0,0,0.2) 100%);
  transition:background 0.4s ease;
}
.stepped-content { flex:1; min-width:0; padding:2.5rem; }
.stepped-content h2 {
  font-family:'Poppins',sans-serif;
  font-size:clamp(1.6rem,3vw,2.2rem);
  font-weight:700; color:#ffffff; margin:0 0 1rem;
}
.stepped-content p { color:#d1d5db; font-size:1rem; line-height:1.7; }
/* ── USP LIST ── */
.usp-list { list-style:none; padding:0; margin:0 0 1.25rem; }
.usp-list li {
  margin-bottom:0.7rem; padding-left:1.5rem;
  position:relative; color:#d1d5db;
}
.about-blurb {
  background:rgba(255,255,255,0.04);
  border-left:4px solid rgba(255,255,255,0.18);
  padding:0.9rem; border-radius:0.75rem;
  color:#d1d5db;
}

/* ── PROJECTS GRID ── */
.projects-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
}
.project-item {
  position:relative; overflow:hidden; border-radius:1rem;
}
.project-item img { width:100%; height:100%; object-fit:cover; }
.project-item figcaption {
  position:absolute; inset:auto 0 0 0;
  padding:0.8rem;
  background:linear-gradient(transparent,rgba(0,0,0,0.8));
  color:#fff; transform:translateY(100%);
  transition:transform 0.25s ease;
}
.project-item:hover figcaption { transform:translateY(0); }
.project-item figcaption span { display:block; font-weight:700; }
.project-item figcaption small { color:#f5f5f5; }
.centered { text-align:center; }

/* ── REVIEWS / TESTIMONIALS ── */
.testimonial-carousel { overflow:hidden; }
.testimonial-track { display:flex; transition:transform 0.5s ease; }
.testimonial-card {
  min-width:100%;
  background:rgba(255,255,255,0.05) !important;
  border:1px solid rgba(255,255,255,0.12) !important;
  border-radius:1rem; padding:1.3rem;
}
.review-stars {
  color:#f5c518; font-size:1.3rem;
  letter-spacing:2px; margin-bottom:0.75rem;
  display:block;
}
.review-stars span { color:#f5c518 !important; display:inline-block; line-height:1; }
.review-text {
  color:#d1d5db; font-size:0.95rem;
  line-height:1.7; font-style:italic;
  margin:0 0 1.25rem; padding:0; border:none;
}
.reviewer-info {
  display:flex; align-items:center;
  justify-content:space-between;
  gap:0.5rem; flex-wrap:wrap;
}
.reviewer-name {
  color:#ffffff; font-family:'Poppins',sans-serif;
  font-weight:600; font-size:0.9rem;
}
.review-source {
  display:flex; align-items:center;
  gap:0.35rem; color:#6b7280; font-size:0.78rem;
}
.review-source img { width:16px; height:16px; display:inline-block; }

/* ── AREA PILLS ── */
.area-pills {
  list-style:none; padding:0; margin:0;
  display:flex; flex-wrap:wrap; gap:0.6rem;
}
.area-pills li { display:inline-flex; }

/* ── FAQ ── */
.faq-wrap { max-width:900px; }
.faq-intro {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 640px;
}
.faq-item {
  background:rgba(255,255,255,0.03) !important;
  border:1px solid rgba(255,255,255,0.08) !important;
  border-radius:12px; margin-bottom:0.75rem;
  overflow:hidden; transition:all 0.3s ease;
}
.faq-question {
  width:100%; text-align:left;
  background:transparent; border:none;
  padding:1rem; font-size:1rem;
  font-weight:600; cursor:pointer;
  color:#ffffff !important;
}
.faq-answer {
  display:none; padding:0 1rem 1rem;
  color:#d1d5db !important;
}

/* ── QUOTE FORM ── */
.quote-form-card { padding:1.5rem; }
.quote-form-card form p { margin-bottom:0.9rem; }
.quote-form-card label {
  display:block; margin-bottom:0.35rem;
  font-weight:600; color:#ffffff;
}
.quote-form-card input,
.quote-form-card select,
.quote-form-card textarea {
  width:100%;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:0.75rem; padding:0.65rem;
  font:inherit; color:#ffffff;
  transition:border-color 0.2s;
}
.quote-form-card input:focus,
.quote-form-card select:focus,
.quote-form-card textarea:focus {
  border-color:var(--accent); outline:none;
}
.quote-form-card textarea { min-height:120px; }
.form-message { min-height:1.2rem; font-weight:600; color:#34d399; }

/* ── CTA BANNER ── */
.cta-banner-inner {
  display:flex; align-items:center;
  justify-content:space-between;
  gap:1rem; flex-wrap:wrap;
}

/* ── CONNECT SECTION ── */
.connect-section {
  background:#000000;
  padding:5rem 2rem; text-align:center;
  border-top:1px solid rgba(255,255,255,0.07);
}
.connect-inner { max-width:800px; margin:0 auto; }
.connect-section h2 {
  font-family:'Poppins',sans-serif;
  font-size:clamp(1.8rem,3vw,2.4rem);
  font-weight:700; color:#ffffff; margin:0 0 1rem;
}
.connect-section p { color:#9ca3af; font-size:1rem; margin:0 0 2.5rem; }
.social-links {
  display:flex; justify-content:center;
  gap:1.5rem; flex-wrap:wrap;
}
.social-card {
  display:flex; flex-direction:column;
  align-items:center; gap:0.5rem;
  padding:2rem 2.5rem;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.10);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-radius:16px; text-decoration:none;
  min-width:160px;
  transition:transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.social-card:hover {
  transform:translateY(-6px);
  border-color:rgba(200,205,212,0.45);
  box-shadow:0 8px 32px rgba(200,205,212,0.12);
}
.social-card svg {
  width: 36px; height: 36px;
  transition: transform 0.2s ease;
}
.social-card:hover svg { transform: scale(1.1); }
.social-card span {
  color:#ffffff; font-family:'Poppins',sans-serif;
  font-weight:600; font-size:1rem;
}
.social-card small { color:#6b7280; font-size:0.78rem; }

/* ── FOOTER ── */
.site-footer {
  background:rgba(255,255,255,0.03) !important;
  border-top:1px solid rgba(255,255,255,0.08) !important;
  color:#9ca3af; padding-top:3rem;
}
.site-footer h2 { color:#fff; font-size:1.1rem; margin-bottom:0.8rem; }
.footer-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1.2rem;
}
.site-footer ul { list-style:none; padding:0; margin:0; }
.site-footer li { margin-bottom:0.35rem; }
.site-footer a { color:#d1d5db; text-decoration:none; transition:color 0.2s; }
.site-footer a:hover { color:var(--accent); }
.footer-social-links { display:flex; gap:0.5rem; }
.footer-social-link {
  width:36px; height:36px;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:50%; display:flex;
  align-items:center; justify-content:center;
  transition:background 0.2s, border-color 0.2s;
}
.footer-social-link:hover {
  background:rgba(200,205,212,0.15);
  border-color:rgba(255,255,255,0.28);
}
.footer-social-link svg {
  width: 18px; height: 18px;
  transition: transform 0.2s ease;
}
.footer-social-link:hover svg { transform: scale(1.1); }
.footer-bottom {
  text-align:center; padding:1.2rem 0 2rem;
  border-top:1px solid rgba(255,255,255,0.06);
  margin-top:2rem;
}
.footer-bottom p { color:#6b7280; margin-bottom:0.65rem; }
.footer-legal-links {
  display:flex; justify-content:center;
  gap:1rem; flex-wrap:wrap;
}

/* ── INNER PAGES ── */
.inner-hero {
  background:#0a0a0a !important;
  padding:8rem 0 3rem;
}
.inner-hero h1 { margin-bottom:0.6rem; color:#ffffff; }
.breadcrumbs { font-size:0.92rem; color:#9ca3af; margin-bottom:1rem; }
.breadcrumbs a { color:#d1d5db; text-decoration:none; }
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }
.contact-card { padding:1.1rem; }

/* ── 404 ── */
.not-found-wrap {
  min-height:100vh; display:grid;
  place-content:center; gap:0.8rem;
  text-align:center; padding:2rem;
  background:#000000;
}

/* ── SCROLL REVEAL ── */
.reveal-up,.reveal-left,.reveal-right {
  opacity:0; transition:opacity 0.6s ease, transform 0.6s ease;
}
.reveal-up    { transform:translateY(30px); }
.reveal-left  { transform:translateX(-40px); }
.reveal-right { transform:translateX(40px); }
.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible { opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce) {
  .reveal-up,.reveal-left,.reveal-right {
    opacity:1 !important; transform:none !important;
    transition:none !important;
  }
}

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
  .services-grid,.service-listing,.projects-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .two-col { grid-template-columns:1fr; }
}
@media (max-width:768px) {
  .stepped-inner,
  .stepped-reverse .stepped-inner { flex-direction:column; }
  .menu-toggle { display:inline-flex; }
  .site-nav {
    position:fixed; inset:0 0 0 35%;
    background:rgba(0,0,0,0.97);
    backdrop-filter:blur(20px);
    padding:6rem 1.5rem 1.5rem;
    display:flex; flex-direction:column;
    align-items:flex-start;
    transform:translateX(100%);
    transition:transform 0.3s ease;
  }
  .site-nav.open { transform:translateX(0); }
  .nav-wrap { grid-template-columns:auto auto; justify-content:space-between; }
  .footer-grid { grid-template-columns:1fr; }
  .hero-media { top:0 !important; height:100% !important; transform:none !important; }
}
@media (max-width:480px) {
  .social-card { width:100%; min-width:unset; }
}
@media (max-width:375px) {
  .container { width:calc(100% - 1rem); }
  .hero h1 { font-size:2.2rem; }
}
@media (max-width:320px) { .hero h1 { font-size:2rem; } }
@media (min-width:1440px) {
  .container { width:min(1280px,calc(100% - 3rem)); }
}


.btn-primary {
  background: linear-gradient(135deg,
    #e8eaed 0%, #9ba3ab 40%, #c8cdd4 60%, #e2e5e8 100%) !important;
  color: #000000 !important;
  font-weight: 700 !important;
  border: none !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4),
    0 4px 15px rgba(200,205,212,0.15) !important;
  transition: all 0.25s ease !important;
}
.btn-primary:hover {
  background: linear-gradient(135deg,
    #ffffff 0%, #c8cdd4 40%, #e2e5e8 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    0 6px 20px rgba(200,205,212,0.25) !important;
  transform: translateY(-1px) !important;
}

.cta-pill {
  background: linear-gradient(135deg,
    #e8eaed 0%, #9ba3ab 40%, #c8cdd4 60%, #e2e5e8 100%) !important;
  color: #000000 !important;
  font-weight: 700 !important;
  padding: 0.65rem 1.4rem !important;
  border-radius: 9999px !important;
  text-decoration: none !important;
  display: inline-block !important;
  border: none !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4),
    0 2px 10px rgba(200,205,212,0.15) !important;
  transition: all 0.2s ease !important;
}
.cta-pill:hover {
  background: linear-gradient(135deg,
    #ffffff 0%, #c8cdd4 40%, #e2e5e8 100%) !important;
  transform: translateY(-1px) !important;
  color: #000000 !important;
}

.cta-banner {
  background: linear-gradient(135deg,
    #111314 0%, #1e2124 50%, #111314 100%) !important;
  border-top: 1px solid rgba(200,205,212,0.2) !important;
  border-bottom: 1px solid rgba(200,205,212,0.2) !important;
}
.cta-banner h2, .cta-banner p  { color: #ffffff !important; }
.cta-banner .btn-primary{
  background: linear-gradient(135deg,
    #e8eaed 0%, #9ba3ab 40%, #c8cdd4 100%) !important;
  color: #000000 !important;
}

.cta-link {
  background: linear-gradient(90deg, #e8eaed, #9ba3ab, #c8cdd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}
@supports not (-webkit-background-clip: text) {
  .cta-link { color: #c8cdd4 !important;
              -webkit-text-fill-color: unset !important; }
}

.usp-list li::before {
  background: linear-gradient(135deg, #e8eaed, #9ba3ab);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@supports not (-webkit-background-clip: text) {
  .usp-list li::before { color: #c8cdd4 !important; }
}

.faq-item.open {
  border-left: 3px solid #c8cdd4 !important;
  background: rgba(200,205,212,0.04) !important;
}
.area-pills a:hover {
  background: linear-gradient(135deg, #e8eaed, #c8cdd4) !important;
  color: #000000 !important;
  border-color: transparent !important;
}
.area-pills a { border-color: #c8cdd4 !important; color: #c8cdd4 !important; }

.parallax-banner-tag {
  background: linear-gradient(90deg, #e8eaed, #9ba3ab, #c8cdd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.service-icon {
  background: linear-gradient(135deg, #c8cdd4, #8e949c) !important;
}

/* ── HERO PHONE CARD ── */
.hero-phone-card {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding: 0.75rem 1.4rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: 9999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 4px 20px rgba(0, 0, 0, 0.4);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.hero-phone-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 6px 28px rgba(0, 0, 0, 0.5);
}
.phone-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.hero-phone-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(90deg, #e8eaed, #9ba3ab, #c8cdd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: 0.02em;
}
@supports not (-webkit-background-clip: text) {
  .hero-phone-number {
    color: #c8cdd4 !important;
    -webkit-text-fill-color: unset !important;
  }
}
.hero-phone-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 0.6rem;
  margin-left: 0.2rem;
}
@media (max-width: 480px) {
  .hero-phone-label { display: none; }
  .hero-phone-card { padding: 0.65rem 1rem; }
}

/* ── PARALLAX BANNER ── */
.parallax-banner {
  position: relative;
  height: 70vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-banner-bg {
  position: absolute;
  top: -25%;
  left: 0;
  width: 100%;
  height: 150%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 0;
}
.parallax-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  z-index: 1;
}
.parallax-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}
.parallax-banner-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
@media (max-width: 768px) {
  .parallax-banner { height: 50vh; }
  .parallax-banner-bg {
    top: 0 !important;
    height: 100% !important;
    transform: none !important;
  }
}


/* ── SERVICES PARALLAX HERO ── */
.services-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding: 0 !important;
  overflow: hidden;
}
.services-hero-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 0;
}
.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}
.services-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: 3rem;
}
.services-hero-content h1 { color: #ffffff; margin-bottom: 0.75rem; }
.services-hero-content p  { color: #d1d5db; font-size: 1.1rem; }
@media (max-width: 768px) {
  .services-hero { min-height: 40vh; }
  .services-hero-bg {
    top: 0 !important; height: 100% !important;
    transform: none !important;
  }
}


/* ── CAROUSEL ARROWS & DOTS ── */
.testimonial-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-carousel {
  flex: 1;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testimonial-card {
  flex: 0 0 100%;
  padding: 1.75rem;
}
.carousel-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #c8cdd4;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease,
              transform 0.15s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.carousel-arrow svg {
  width: 20px;
  height: 20px;
}
.carousel-arrow:hover {
  background: rgba(200, 205, 212, 0.18);
  border-color: rgba(200, 205, 212, 0.45);
  color: #ffffff;
  transform: scale(1.08);
}
.carousel-arrow:active {
  transform: scale(0.95);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.carousel-dot.active {
  background: linear-gradient(135deg, #e8eaed, #c8cdd4);
  transform: scale(1.3);
}
@media (max-width: 480px) {
  .carousel-arrow { width: 36px; height: 36px; }
  .carousel-arrow svg { width: 16px; height: 16px; }
  .testimonial-carousel-wrap { gap: 0.5rem; }
}


/* ── AGENCY CREDIT ── */
.agency-credit {
  text-align: center;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.agency-credit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.agency-credit-link:hover { color: #c8cdd4; }
.agency-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.agency-logo-box img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

/* ── FOUNDER SECTION ── */
.founder-section {
  padding: 6rem 0;
}
.founder-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 5rem;
  align-items: center;
}
.founder-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.founder-img-circle {
  width: min(320px, 78vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 4px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  background: #0a0a0a;
}
.founder-badge {
  position: absolute;
  right: 0.35rem;
  bottom: 0.35rem;
  background: linear-gradient(135deg, #e8eaed, #c8cdd4);
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
}
.founder-eyebrow {
  color: #c8cdd4;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  margin: 0 0 0.5rem;
}
.founder-content h2 {
  margin: 0 0 2rem;
  text-align: center;
}
.founder-content p {
  color: #d1d5db;
  line-height: 1.9;
  margin-bottom: 1.6rem;
  font-size: 1.05rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.founder-credentials {
  list-style: none;
  padding: 0;
  margin-top: 2.25rem;
  display: grid;
  gap: 0.7rem;
  margin-left: auto;
  margin-right: auto;
  width: min(100%, 620px);
}
.founder-cred-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  color: #e5e7eb;
  text-align: center;
}

@media (max-width: 900px) {
  .founder-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .founder-credentials {
    margin-left: auto;
    margin-right: auto;
    width: min(100%, 640px);
  }
}
