:root {
  --accent: #E8732A;
  --accent-dark: #D4621E;
  --silver: #B0B0B0;
  --dark: #0A0A0A;
  --surface: #141414;
  --surface2: #1C1C1C;
  --gray: #8A8A8A;
  --light: #F8F9FA;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-pill: 60px;
  --container: 1280px;
  --font: 'Inter', sans-serif;
  --glass-dark: rgba(15, 15, 15, 0.4);
  --glass-light: rgba(255, 255, 255, 0.15);
  --shadow: 0 4px 6px rgba(0,0,0,0.02), 0 20px 40px rgba(0,0,0,0.06);
  --transition: 0.3s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); color: var(--dark); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.desktop-only { display: flex; }
.mobile-only { display: none; }
@media (max-width: 768px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: flex !important; }
}
/* ── TRUST STRIP ── */
.trust-strip { background: var(--dark); color: var(--white); padding: 0.6rem 0; font-size: 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.trust-strip-inner { display: flex; justify-content: space-between; align-items: center; }
.trust-badge { display: flex; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.7); }
.trust-badge i { color: var(--accent); }
.trust-strip-right a { color: var(--white); display: flex; align-items: center; gap: 0.5rem; font-weight: 500; }
.pulse-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(232,115,42,0.4); } 70% { box-shadow: 0 0 0 8px rgba(232,115,42,0); } }

/* ── NAVBAR ── */
.navbar { position: absolute; top: 41px; left: 0; width: 100%; z-index: 1000; padding: 1rem 0; transition: all var(--transition); background: transparent; }
.navbar.scrolled { position: fixed; top: 0; background: rgba(10,10,10,0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 0.6rem 0; box-shadow: 0 1px 20px rgba(0,0,0,0.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo-img { height: 42px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 2rem; }
.nav-link { color: rgba(255,255,255,0.7); font-size: 0.9rem; font-weight: 500; transition: color var(--transition); }
.nav-link:hover { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-phone { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1rem; transition: all var(--transition); }
.nav-phone:hover { background: var(--accent); border-color: var(--accent); color: var(--dark); }
.nav-cta { background: var(--accent); color: var(--white); padding: 0.6rem 1.4rem; border-radius: var(--radius-pill); font-weight: 600; font-size: 0.85rem; display: flex; align-items: center; gap: 0.5rem; transition: all var(--transition); }
.nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }
.cta-arrow { width: 24px; height: 24px; background: rgba(0,0,0,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; }

/* ── HERO ── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; background: url('../images/hero.png') center/cover no-repeat; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.55); z-index: 1; }
.hero-center { position: relative; z-index: 2; text-align: center; padding: 2rem; max-width: 800px; }
.trust-pill { display: inline-flex; align-items: center; gap: 0.8rem; background: var(--glass-light); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-radius: var(--radius-pill); padding: 0.5rem 1.4rem; margin-bottom: 2rem; }
.pill-avatars { display: flex; }
.pill-av { width: 28px; height: 28px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.3); margin-left: -8px; object-fit: cover; }
.pill-av:first-child { margin-left: 0; }
.pill-stars { display: flex; align-items: center; gap: 0.2rem; color: #FBBF24; font-size: 0.75rem; }
.pill-stars strong { color: var(--white); margin-left: 0.3rem; font-size: 0.8rem; }
.pill-text { color: rgba(255,255,255,0.8); font-size: 0.8rem; }
.hero h1 { color: var(--white); font-size: clamp(2.5rem, 5.5vw, 4.2rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1.2rem; }
.hero-sub { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 550px; margin: 0 auto 2.5rem; line-height: 1.7; }
.hero-btn { display: inline-flex; align-items: center; gap: 0.8rem; background: var(--accent); color: var(--white); padding: 1rem 2rem; border-radius: var(--radius-pill); font-weight: 700; font-size: 1rem; transition: all var(--transition); }
.hero-btn:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(232,115,42,0.3); }
.btn-circle { width: 32px; height: 32px; background: rgba(0,0,0,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }

/* ── HERO STAGGER ANIMATIONS ── */
.hero-center > * { opacity: 0; transform: translateY(30px); animation: heroIn 0.8s ease forwards; }
.hero-center > *:nth-child(1) { animation-delay: 0.2s; }
.hero-center > *:nth-child(2) { animation-delay: 0.45s; }
.hero-center > *:nth-child(3) { animation-delay: 0.65s; }
.hero-center > *:nth-child(4) { animation-delay: 0.82s; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }
/* ── MARQUEE ── */
.marquee-wrap { position: absolute; bottom: 2rem; left: 0; width: 100vw; z-index: 2; overflow: hidden; }
.marquee-track { display: flex; gap: 1.2rem; animation: marquee 40s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.review-card { flex-shrink: 0; width: 300px; padding: 1.2rem 1.4rem; background: var(--glass-dark); backdrop-filter: blur(40px) saturate(150%); -webkit-backdrop-filter: blur(40px) saturate(150%); border-radius: var(--radius); }
.rc-stars { display: flex; gap: 0.15rem; color: #FBBF24; font-size: 0.8rem; margin-bottom: 0.6rem; }
.review-card p { color: rgba(255,255,255,0.85); font-size: 0.85rem; font-style: italic; line-height: 1.6; margin-bottom: 0.8rem; }
.rc-person { display: flex; align-items: center; gap: 0.6rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 0.8rem; }
.rc-av { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.rc-info strong { color: var(--white); font-size: 0.8rem; display: block; }
.rc-info span { color: rgba(255,255,255,0.5); font-size: 0.72rem; }

/* ── STATS BANNER ── */
.stats-banner { background: var(--dark); padding: 3.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.stats-inner { display: flex; justify-content: space-around; align-items: center; text-align: center; flex-wrap: wrap; gap: 2rem; }
.stats-col h3 { color: var(--white); font-size: 2.5rem; font-weight: 800; }
.stats-col h3 .count { color: var(--accent); }
.stats-col p { color: var(--gray); font-size: 0.85rem; margin-top: 0.3rem; }
.stats-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.1); }

/* ── ABOUT / WHO WE ARE ── */
.about { padding: 6rem 0; background: var(--light); }
.about-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem; }
.eyebrow { display: flex; align-items: center; gap: 0.6rem; color: var(--gray); font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }
.eyebrow-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
.readmore { display: flex; align-items: center; gap: 0.5rem; color: var(--dark); font-weight: 600; font-size: 0.9rem; }
.rm-circle { width: 28px; height: 28px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--white); transition: transform var(--transition); }
.readmore:hover .rm-circle { transform: rotate(45deg); }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.about-stat { background: var(--dark); color: var(--white); padding: 1.5rem; border-radius: var(--radius); margin-bottom: 1.5rem; }
.about-stat strong { font-size: 2.2rem; color: var(--accent); display: block; }
.about-stat p { font-weight: 600; margin: 0.2rem 0; }
.about-stat span { color: var(--gray); font-size: 0.8rem; }
.about-img-wrap { width: 100%; height: 500px; border-radius: 20px; overflow: hidden; position: relative; }
.about-img-wrap img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.about-headline { font-size: 1.3rem; font-weight: 500; color: var(--dark); line-height: 1.7; margin-bottom: 2rem; }
.about-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.about-img2-wrap { height: 300px; border-radius: var(--radius); overflow: hidden; }
.about-img2-wrap img { width: 100%; height: 120%; object-fit: cover; }
.about-sub { color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.about-stats { display: flex; gap: 2rem; }
.stat-block strong { font-size: 2rem; font-weight: 800; color: var(--accent); }
.stat-block p { font-size: 0.8rem; color: var(--gray); }

/* ── SERVICES / ACCORDION ── */
.services { padding: 6rem 0; background: var(--dark); }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.services-img-wrap { border-radius: 20px; overflow: hidden; height: 600px; }
.services-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.services h2 { color: var(--white); font-size: 2rem; font-weight: 700; margin: 1rem 0; }
.services .about-sub { color: rgba(255,255,255,0.6); }
.accordion { margin-top: 1.5rem; }
.acc-item { border-top: 1px solid rgba(255,255,255,0.1); }
.acc-header { width: 100%; display: flex; align-items: center; gap: 1rem; padding: 1.2rem 0; color: var(--white); font-size: 1rem; font-weight: 500; }
.acc-num { color: var(--accent); font-weight: 700; font-size: 0.85rem; min-width: 28px; }
.acc-title { flex: 1; text-align: left; }
.acc-icon { color: var(--gray); font-size: 1.2rem; transition: transform var(--transition); }
.acc-item.is-open .acc-icon { transform: rotate(45deg); color: var(--accent); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.acc-item.is-open .acc-body { max-height: 300px; }
.acc-body-inner { padding: 0 0 1.2rem 2.5rem; }
.acc-body-inner p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; }
.acc-thumb { width: 100%; height: 120px; object-fit: cover; border-radius: var(--radius-sm); margin-top: 1rem; }

/* ── PROJECTS ── */
.projects { padding: 6rem 0; background: var(--light); }
.projects-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
.projects-title { font-size: 2rem; font-weight: 700; margin-top: 0.8rem; }
.projects-scroll { overflow-x: auto; padding-bottom: 1rem; scrollbar-width: none; -ms-overflow-style: none; }
.projects-scroll::-webkit-scrollbar { display: none; }
.projects-track { display: flex; gap: 1.5rem; }
.project-card { flex-shrink: 0; width: 380px; height: 450px; border-radius: var(--radius); overflow: hidden; position: relative; }
.project-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project-card:hover .project-img { transform: scale(1.05); }
.project-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; background: linear-gradient(transparent, rgba(0,0,0,0.85)); transform: translateY(20px); opacity: 0; transition: all 0.4s ease; }
.project-card:hover .project-overlay { transform: translateY(0); opacity: 1; }
.project-tag { background: var(--accent); color: var(--white); padding: 0.3rem 0.8rem; border-radius: var(--radius-pill); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; }
.project-overlay h3 { color: var(--white); font-size: 1.2rem; margin: 0.8rem 0 0.3rem; }
.project-loc { color: rgba(255,255,255,0.6); font-size: 0.8rem; }
.project-desc { color: rgba(255,255,255,0.7); font-size: 0.82rem; line-height: 1.5; margin-top: 0.5rem; }
.project-arrow { position: absolute; top: 1.5rem; right: 1.5rem; width: 40px; height: 40px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); opacity: 0; transition: all 0.3s ease; transform: translateY(10px); }
.project-card:hover .project-arrow { opacity: 1; transform: translateY(0); }
/* ── TESTIMONIALS ── */
.testimonials { padding: 6rem 0; background: var(--dark); }
.test-header { text-align: center; margin-bottom: 3rem; }
.test-header .eyebrow { justify-content: center; margin-bottom: 1rem; color: rgba(255,255,255,0.6); }
.test-title { color: var(--white); font-size: 2rem; font-weight: 700; }
.test-bento { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 1.5rem; align-items: start; }
.test-col { display: flex; flex-direction: column; gap: 1.5rem; }
.test-card { background: var(--surface); border: 1px solid rgba(255,255,255,0.06); padding: 2rem; border-radius: var(--radius); }
.test-person { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.test-av { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.test-person strong { color: var(--white); font-size: 0.9rem; display: block; }
.test-person span { color: var(--gray); font-size: 0.78rem; }
.test-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.7; font-style: italic; }
.test-center { background: var(--surface); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 2.5rem; text-align: center; }
.test-center-img { width: 100%; height: 280px; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 1.5rem; }
.test-center strong { color: var(--white); font-size: 1.1rem; display: block; }
.test-center > span { color: var(--accent); font-size: 0.85rem; display: block; margin-bottom: 1rem; }
.test-center-quote { color: rgba(255,255,255,0.7); font-style: italic; font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }
.test-center-stats { display: flex; justify-content: center; gap: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.test-center-stats strong { color: var(--accent); font-size: 1.5rem; display: block; }
.test-center-stats span:not(.count) { color: var(--gray); font-size: 0.75rem; }

/* ── CTA BANNER ── */
.cta-banner { padding: 5rem 0; background: var(--surface); text-align: center; }
.cta-banner h2 { color: var(--white); font-size: 2.2rem; font-weight: 700; margin-bottom: 1rem; }
.cta-banner p { color: var(--gray); max-width: 500px; margin: 0 auto 2rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-primary { background: var(--accent); color: var(--white); padding: 0.9rem 2rem; border-radius: var(--radius-pill); font-weight: 700; font-size: 0.95rem; transition: all var(--transition); display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(232,115,42,0.25); }
.btn-outline { border: 1px solid rgba(255,255,255,0.2); color: var(--white); padding: 0.9rem 2rem; border-radius: var(--radius-pill); font-weight: 600; font-size: 0.95rem; transition: all var(--transition); display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ── FOOTER ── */
.footer { background: var(--dark); padding: 4rem 0 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 1.2rem; }
.footer-col p { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.7; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--accent); }
.footer-col ul li:not(a) { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.footer-socials { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-socials a { color: var(--white); font-size: 1.2rem; transition: color var(--transition); }
.footer-socials a:hover { color: var(--accent); }
.contact-list li { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 0.6rem; }
.contact-list i { color: var(--accent); }
.contact-list a { color: rgba(255,255,255,0.6); }
.contact-list a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-bottom a { color: var(--accent); font-weight: 600; }

/* ── POPUP FORM ── */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(8px); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup-content { background: var(--surface); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 2.5rem; max-width: 480px; width: 90%; position: relative; transform: translateY(20px); transition: transform 0.3s ease; }
.popup-overlay.active .popup-content { transform: translateY(0); }
.popup-close { position: absolute; top: 1rem; right: 1rem; color: var(--gray); font-size: 1.2rem; }
.popup-header h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 0.5rem; }
.popup-header p { color: var(--gray); font-size: 0.85rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { color: rgba(255,255,255,0.7); font-size: 0.8rem; font-weight: 500; display: block; margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 1rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); color: var(--white); font-family: var(--font); font-size: 0.9rem; transition: border var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.popup-submit { width: 100%; padding: 0.9rem; background: var(--accent); color: var(--white); border: none; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: all var(--transition); margin-top: 0.5rem; }
.popup-submit:hover { background: var(--accent-dark); }

/* ── SCROLL REVEAL ── */
.reveal-up { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal-up.revealed, .reveal-left.revealed { opacity: 1; transform: translate(0); }

/* ── MOBILE MENU ── */
.mobile-menu { position: fixed; inset: 0; background: var(--dark); z-index: 999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu a { color: var(--white); font-size: 1.5rem; font-weight: 600; }
.hamburger { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.4rem; }

/* ── STICKY MOBILE CTA BAR ── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.6rem 1rem;
  padding-bottom: calc(0.6rem + env(safe-area-inset-bottom, 0px));
  gap: 0.6rem;
}
.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  min-height: 48px;
}
.mcta-call {
  background: var(--white);
  color: var(--dark);
}
.mcta-quote {
  background: var(--accent);
  color: var(--white);
}

/* ── RESPONSIVE: TABLET ── */
@media (max-width: 1024px) {
  .about-grid, .services-grid, .test-bento { grid-template-columns: 1fr; }
  .about-row2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-divider { display: none; }
}

/* ── RESPONSIVE: MOBILE-FIRST CONVERSION OVERHAUL ── */
@media (max-width: 768px) {
  /* === GLOBAL MOBILE === */
  body { font-size: 15px; padding-bottom: 72px; } /* space for sticky bar */
  .container { padding: 0 1.2rem; }
  
  /* === TRUST STRIP — hidden on mobile (sticky bar covers it) === */
  .trust-strip { display: none; }
  
  /* === NAVBAR — mobile optimised === */
  .navbar { position: fixed; top: 0; padding: 0.6rem 0; background: rgba(10,10,10,0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
  .nav-logo-img { height: 36px; }
  .nav-cta { padding: 0.45rem 0.9rem; font-size: 0.75rem; min-height: 36px; }
  .hamburger { width: 44px; height: 44px; min-width: 44px; } /* 44px tap target */
  
  /* === MOBILE MENU — full screen with big touch targets === */
  .mobile-menu a {
    font-size: 1.3rem;
    padding: 0.8rem 2rem;
    width: 100%;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* === HERO — conversion-focused mobile === */
  .hero { min-height: 100vh; }
  .hero-center { padding: 1rem; max-width: 100%; padding-bottom: 220px; } /* space for marquee cards */
  .hero h1 {
    font-size: 2rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
  }
  .hero-sub {
    font-size: 0.88rem;
    margin-bottom: 1.8rem;
    line-height: 1.6;
    max-width: 320px;
  }
  .hero-btn {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
    min-height: 52px; /* big fat tap target */
  }
  .trust-pill {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.45rem 0.8rem;
    gap: 0.5rem;
    font-size: 0.72rem;
  }
  .pill-av { width: 24px; height: 24px; }
  .pill-stars { font-size: 0.65rem; }
  .pill-stars strong { font-size: 0.7rem; }
  .pill-text { font-size: 0.7rem; }
  
  /* Marquee — smaller cards on mobile, more visible */
  .marquee-wrap { bottom: 0.8rem; }
  .review-card { width: 240px; padding: 1rem 1.1rem; }
  .review-card p { font-size: 0.78rem; margin-bottom: 0.5rem; }
  .rc-av { width: 28px; height: 28px; }
  .rc-info strong { font-size: 0.72rem; }
  .rc-info span { font-size: 0.65rem; }
  
  /* === STATS — horizontal scroll on mobile === */
  .stats-banner { padding: 2rem 0; }
  .stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    text-align: center;
  }
  .stats-col h3 { font-size: 1.8rem; }
  .stats-col p { font-size: 0.75rem; }
  
  /* === ABOUT — tighter mobile layout === */
  .about { padding: 3.5rem 0; }
  .about-topbar { margin-bottom: 2rem; }
  .about-stat { padding: 1.2rem; margin-bottom: 1rem; }
  .about-stat strong { font-size: 1.8rem; }
  .about-img-wrap { height: 260px; border-radius: var(--radius); }
  .about-headline { font-size: 1.05rem; margin-bottom: 1.5rem; line-height: 1.6; }
  .about-row2 { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-img2-wrap { height: 220px; }
  .about-sub { font-size: 0.85rem; }
  .about-stats { gap: 1.5rem; }
  .stat-block strong { font-size: 1.6rem; }
  
  /* === SERVICES — accordion touch-friendly === */
  .services { padding: 3.5rem 0; }
  .services-img-wrap { height: 280px; border-radius: var(--radius); margin-bottom: 2rem; }
  .services h2 { font-size: 1.5rem; }
  .acc-header {
    padding: 1rem 0;
    min-height: 52px; /* fat touch target */
    font-size: 0.95rem;
  }
  .acc-num { font-size: 0.8rem; }
  .acc-body-inner { padding: 0 0 1rem 2rem; }
  .acc-body-inner p { font-size: 0.85rem; }
  
  /* === PROJECTS — full-width swipeable cards === */
  .projects { padding: 3.5rem 0; }
  .projects-header { flex-direction: column; align-items: flex-start; gap: 0.8rem; margin-bottom: 2rem; }
  .projects-title { font-size: 1.5rem; }
  .projects-scroll { margin-right: -1.2rem; padding-right: 1.2rem; padding-bottom: 1rem; }
  .project-card { width: 280px; height: 340px; }
  .project-overlay { transform: translateY(0); opacity: 1; } /* always visible on mobile */
  .project-arrow { opacity: 1; transform: translateY(0); } /* always visible */
  
  /* === TESTIMONIALS — stacked, no bento === */
  .testimonials { padding: 3.5rem 0; }
  .test-header { margin-bottom: 2rem; }
  .test-title { font-size: 1.4rem; }
  .test-bento {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .test-col { gap: 1rem; }
  .test-card { padding: 1.5rem; }
  .test-card p { font-size: 0.85rem; }
  .test-center { padding: 1.5rem; }
  .test-center-img { height: 200px; }
  .test-center-stats { flex-direction: row; gap: 2rem; }
  .test-center-stats strong { font-size: 1.3rem; }
  
  /* === CTA BANNER — mobile conversion === */
  .cta-banner { padding: 3rem 0; }
  .cta-banner h2 { font-size: 1.5rem; }
  .cta-banner p { font-size: 0.88rem; }
  .cta-btns { flex-direction: column; width: 100%; }
  .cta-btns .btn-primary,
  .cta-btns .btn-outline {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    font-size: 0.95rem;
  }
  
  /* === FOOTER — compact mobile === */
  .footer { padding: 3rem 0 0; }
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; padding-bottom: 2rem; }
  .footer-col h4 { margin-bottom: 0.8rem; font-size: 0.95rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  
  /* === POPUP — full-width mobile form === */
  .popup-content { width: 95%; padding: 1.8rem; max-height: 90vh; overflow-y: auto; }
  .popup-header h3 { font-size: 1.15rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.85rem 1rem;
    font-size: 16px; /* prevents iOS zoom */
    min-height: 48px;
  }
  .popup-submit {
    min-height: 52px;
    font-size: 1rem;
  }
  
  /* === STICKY CTA BAR — show on mobile === */
  .mobile-cta-bar { display: flex; }
  
  /* === EYEBROWS — slightly bigger for readability === */
  .eyebrow { font-size: 0.78rem; }
}

/* ── RESPONSIVE: SMALL PHONES (375px) ── */
@media (max-width: 400px) {
  .hero h1 { font-size: 1.7rem; }
  .hero-sub { font-size: 0.82rem; }
  .stats-col h3 { font-size: 1.5rem; }
  .review-card { width: 220px; }
  .project-card { width: 260px; height: 300px; }
  .about-stat strong { font-size: 1.5rem; }
}
