/* ============================================================
   PANDA RESEARCH — Main CSS v2
   #0a0a0a | #8B5CF6 | Space Grotesk + Inter
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #0a0a0a;
  color: #FAFAFA;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:root {
  --accent: #8B5CF6;
  --accent-dim: #6D28D9;
  --accent-light: #A78BFA;
  --bg: #0a0a0a;
  --surface: #111111;
  --card: #161616;
  --elevated: #1c1c1c;
  --border: #27272A;
  --border-sub: #1C1C1E;
  --text: #FAFAFA;
  --muted: #A1A1AA;
  --faded: #52525B;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); letter-spacing: -0.02em; }
h4 { font-size: 1.125rem; font-weight: 600; }
p { color: var(--muted); line-height: 1.75; }
em { color: var(--accent-light); font-style: normal; }

.eyebrow {
  font-family: var(--display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}
.eyebrow--light { color: var(--accent-light); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section__header { text-align: center; margin-bottom: 4rem; }
.section__header h2 { margin-bottom: 1rem; }
.section__header p { max-width: 600px; margin: 0 auto; font-size: 1.125rem; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--display); font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.875rem 2rem; border-radius: 6px;
  cursor: pointer; transition: all 0.15s ease; white-space: nowrap;
  text-decoration: none !important; border: 1px solid transparent;
}
.btn--primary { background: var(--accent); color: #fff !important; border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-dim); border-color: var(--accent-dim); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(139,92,246,0.35); }
.btn--ghost { background: transparent; color: var(--text) !important; border-color: var(--border); }
.btn--ghost:hover { border-color: var(--muted); background: rgba(255,255,255,0.04); transform: translateY(-1px); }
.btn--lg { padding: 1rem 2.25rem; font-size: 0.875rem; }
.btn--full { width: 100%; }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* TOP BAR */
.topbar { background: #060606; border-bottom: 1px solid var(--border-sub); padding: 0.5rem 0; font-size: 0.75rem; color: var(--faded); }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.topbar__right a { color: var(--muted); transition: color 0.15s; }
.topbar__right a:hover { color: var(--text); }
.topbar__sep { color: var(--border); }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-sub);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.5); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 4.5rem; gap: 2rem; }
.header__logo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.header__logo-icon { font-size: 1.75rem; line-height: 1; }
.logo-name { display: block; font-family: var(--display); font-size: 0.9375rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.1; color: var(--text); }
.logo-tag { display: block; font-size: 0.625rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); line-height: 1; }

.nav__list { display: flex; align-items: center; gap: 0.25rem; }
.nav__list li a { display: block; padding: 0.375rem 0.875rem; font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.04em; color: var(--muted); transition: color 0.15s, background 0.15s; border-radius: 6px; text-transform: uppercase; }
.nav__list li a:hover, .nav__list li.current-menu-item a { color: var(--text); background: rgba(255,255,255,0.05); }
.header__actions { display: flex; align-items: center; gap: 1rem; }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--muted); transition: all 0.25s; border-radius: 2px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { position: fixed; top: 4.5rem; left: 0; right: 0; background: #111111; border-bottom: 1px solid var(--border); padding: 2rem 1.5rem; z-index: 199; box-shadow: 0 20px 60px rgba(0,0,0,0.8); }
.mobile-nav[hidden] { display: none; }
.mobile-nav__list { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav__list li a { display: block; padding: 0.875rem 1rem; font-size: 1rem; font-weight: 600; color: var(--muted); border-radius: 8px; transition: all 0.15s; }
.mobile-nav__list li a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

/* HERO */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.3) saturate(0.8); }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,10,0.96) 0%, rgba(10,10,10,0.7) 60%, rgba(10,0,30,0.88) 100%); }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px; background: linear-gradient(to top, #0a0a0a, transparent); }
.hero__inner { position: relative; z-index: 1; padding: 6rem 0; width: 100%; }
.hero__content { max-width: 820px; }
.hero__h1 { margin: 0.75rem 0 1.5rem; }
.hero__sub { font-size: 1.25rem; color: var(--muted); line-height: 1.7; font-weight: 300; max-width: 620px; margin-bottom: 2.5rem; }
.hero__actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero__trust { font-size: 0.8125rem; color: var(--faded); letter-spacing: 0.03em; }

/* STATS BAR */
.stats-bar { background: var(--surface); border-top: 1px solid var(--border-sub); border-bottom: 1px solid var(--border-sub); padding: 2.5rem 0; }
.stats-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item__num { font-family: var(--display); font-size: 3rem; font-weight: 700; letter-spacing: -0.04em; color: var(--text); line-height: 1; }
.stat-item__suffix { font-family: var(--display); font-size: 2rem; font-weight: 700; color: var(--accent); }
.stat-item__label { display: block; font-size: 0.8125rem; color: var(--faded); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-top: 0.5rem; }

/* TRUST BAR */
.trust-bar { background: var(--bg); border-bottom: 1px solid var(--border-sub); padding: 1.5rem 0; }
.trust-bar__grid { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; font-weight: 600; color: var(--muted); }

/* SERVICES */
.services-section { background: var(--surface); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s; }
.service-card:hover { border-color: rgba(139,92,246,0.5); transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card__img-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.service-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: brightness(0.75) saturate(0.9); }
.service-card:hover .service-card__img-wrap img { transform: scale(1.05); }
.service-card__badge { position: absolute; top: 1rem; left: 1rem; background: var(--accent); color: #fff; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.75rem; border-radius: 999px; }
.service-card__body { padding: 2rem; }
.service-card__body h3 { margin-bottom: 0.75rem; font-size: 1.25rem; }
.service-card__body p { font-size: 0.9375rem; margin-bottom: 1.25rem; }
.service-card__body ul { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.service-card__body ul li { font-size: 0.875rem; color: var(--muted); padding-left: 1.25rem; position: relative; }
.service-card__body ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent); }
.card-link { font-size: 0.875rem; font-weight: 600; color: var(--accent-light); transition: color 0.15s; }
.card-link:hover { color: var(--text); }

/* WHY SECTION */
.why-section { background: var(--bg); }
.why-section__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-section__img { position: relative; }
.why-section__img img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: brightness(0.85); }
.why-section__badge-float { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--accent); padding: 1.5rem; border-radius: var(--radius); text-align: center; max-width: 180px; box-shadow: 0 12px 40px rgba(139,92,246,0.4); }
.float-badge__num { display: block; font-family: var(--display); font-size: 2.5rem; font-weight: 700; color: #fff; line-height: 1; }
.float-badge__label { display: block; font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.85); margin-top: 0.375rem; line-height: 1.4; }
.why-section__content h2 { margin-bottom: 1rem; }
.why-section__intro { font-size: 1.125rem; margin-bottom: 2.5rem; }
.why-steps { display: flex; flex-direction: column; gap: 1.75rem; margin-bottom: 2.5rem; }
.why-step { display: flex; gap: 1.5rem; align-items: flex-start; }
.why-step__num { font-family: var(--display); font-size: 0.875rem; font-weight: 700; color: var(--accent); width: 2.5rem; height: 2.5rem; border: 1px solid rgba(139,92,246,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: rgba(139,92,246,0.07); }
.why-step__body h4 { margin-bottom: 0.375rem; }
.why-step__body p { font-size: 0.9375rem; }

/* PORTFOLIO */
.portfolio-section { background: var(--surface); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.portfolio-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: brightness(0.6); }
.portfolio-item:hover img { transform: scale(1.07); filter: brightness(0.45); }
.portfolio-item__overlay { position: absolute; inset: 0; padding: 1.5rem; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%); }
.portfolio-item__tag { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 0.375rem; }
.portfolio-item__title { font-family: var(--display); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.portfolio-item__result { font-size: 0.8125rem; color: rgba(255,255,255,0.7); }

/* LEAD FORM */
.lead-section { background: var(--elevated); }
.lead-section__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.lead-section__content h2 { margin-bottom: 1rem; }
.lead-section__content > p { font-size: 1.0625rem; margin-bottom: 2rem; }
.lead-benefits { display: flex; flex-direction: column; gap: 1rem; }
.lead-benefit { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9375rem; color: var(--muted); }
.lead-benefit svg { flex-shrink: 0; margin-top: 2px; }

.form-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; }
.form-card h3 { font-size: 1.375rem; margin-bottom: 0.25rem; }
.form-card__sub { font-size: 0.875rem; color: var(--faded); margin-bottom: 2rem; }
.panda-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: flex; gap: 1rem; }
.form-row--2 .form-field { flex: 1; }
.form-field { display: flex; flex-direction: column; gap: 0.375rem; }
.form-field label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faded); }
.form-field input, .form-field select, .form-field textarea { background: var(--elevated); border: 1px solid var(--border); border-radius: 6px; color: var(--text); font-family: inherit; font-size: 0.9375rem; padding: 0.75rem 1rem; transition: border-color 0.15s, box-shadow 0.15s; width: 100%; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(139,92,246,0.15); }
.form-field select option { background: #1c1c1c; }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-message { padding: 0.875rem 1rem; border-radius: 6px; font-size: 0.875rem; font-weight: 500; display: none; }
.form-message.success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #86efac; display: block; }
.form-message.error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #fca5a5; display: block; }
.form-disclaimer { font-size: 0.75rem; color: var(--faded); text-align: center; }

/* TESTIMONIALS */
.testimonials-section { background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: transform 0.2s; }
.testimonial-card:hover { transform: translateY(-3px); }
.testimonial-card--featured { border-color: rgba(139,92,246,0.4); }
.testimonial-card__stars { color: #FBBF24; font-size: 1rem; letter-spacing: 0.1em; margin-bottom: 1.25rem; }
.testimonial-card blockquote { font-size: 0.9375rem; color: var(--muted); line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-card__author { display: flex; align-items: center; gap: 1rem; }
.testimonial-card__avatar { width: 44px; height: 44px; background: linear-gradient(135deg, var(--accent), var(--accent-dim)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 0.875rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.testimonial-card__author strong { display: block; font-size: 0.9375rem; font-weight: 700; color: var(--text); }
.testimonial-card__author span { display: block; font-size: 0.8125rem; color: var(--faded); }

/* PRODUCTS TEASER */
.products-teaser { background: var(--surface); }
.products-teaser__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.products-teaser__items { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 2rem; }
.product-pill { display: flex; align-items: center; gap: 0.75rem; padding: 0.875rem 1.25rem; background: var(--card); border: 1px solid var(--border); border-radius: 8px; font-size: 0.9375rem; color: var(--muted); transition: border-color 0.15s; }
.product-pill:hover { border-color: rgba(139,92,246,0.4); }
.product-pill--featured { border-color: rgba(139,92,246,0.4); color: var(--accent-light); background: rgba(139,92,246,0.06); }
.products-teaser__img img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: brightness(0.75) saturate(0.9); }

/* FAQ */
.faq-section { background: var(--bg); }
.faq-section__inner { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.faq-section__header { position: sticky; top: 6rem; }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; color: var(--text); font-family: inherit; font-size: 1rem; font-weight: 600; text-align: left; padding: 1.5rem 0; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; transition: color 0.15s; }
.faq-q:hover { color: var(--accent-light); }
.faq-icon { flex-shrink: 0; transition: transform 0.25s ease; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-a { display: none; padding-bottom: 1.5rem; font-size: 0.9375rem; color: var(--muted); line-height: 1.75; }
.faq-a.open { display: block; }

/* CTA BANNER */
.cta-banner { position: relative; padding: 8rem 0; text-align: center; overflow: hidden; }
.cta-banner__bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.2) saturate(0.5); }
.cta-banner__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,10,0.92), rgba(30,0,60,0.85)); }
.cta-banner__inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-banner__inner h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0.75rem 0 1rem; color: var(--text); }
.cta-banner__inner p { font-size: 1.125rem; margin-bottom: 2.5rem; }
.cta-banner__actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* FOOTER */
.site-footer { background: #080808; border-top: 1px solid var(--border); padding: 5rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 3rem; margin-bottom: 4rem; }
.footer__brand .footer__logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer__tagline { font-family: var(--display); font-size: 0.875rem; font-weight: 700; color: var(--accent); margin-bottom: 0.75rem; }
.footer__desc { font-size: 0.875rem; color: var(--faded); line-height: 1.7; margin-bottom: 1.5rem; }
.footer__social { display: flex; gap: 0.75rem; }
.social-link { width: 36px; height: 36px; background: var(--card); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: var(--muted); transition: all 0.15s; }
.social-link:hover { border-color: var(--accent); color: var(--accent); }
.footer__col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faded); margin-bottom: 1.25rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__col ul li a { font-size: 0.875rem; color: var(--muted); transition: color 0.15s; }
.footer__col ul li a:hover { color: var(--text); }
.footer__contact-list { display: flex; flex-direction: column; gap: 0.875rem; }
.footer__contact-list li { display: flex; align-items: flex-start; gap: 0.625rem; }
.footer__contact-list li a, .footer__contact-list li span { font-size: 0.875rem; color: var(--muted); }
.footer__contact-list li a:hover { color: var(--text); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid var(--border-sub); flex-wrap: wrap; gap: 1rem; }
.footer__bottom p { font-size: 0.8125rem; color: var(--faded); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { font-size: 0.8125rem; color: var(--faded); transition: color 0.15s; }
.footer__legal a:hover { color: var(--text); }

/* PAGE / CONTENT */
.page-hero-simple { padding: 5rem 0 3rem; border-bottom: 1px solid var(--border-sub); }
.page-content { padding-top: 4rem; padding-bottom: 6rem; }
.entry-content p { color: var(--muted); line-height: 1.8; margin-bottom: 1.5rem; }
.entry-content h2, .entry-content h3 { margin: 2.5rem 0 1rem; }

/* POSTS */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.post-card-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.post-card-item img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-card-item__body { padding: 1.5rem; }
.post-meta { font-size: 0.75rem; color: var(--faded); margin-bottom: 0.5rem; }
.post-card-item__body h2 { font-size: 1.125rem; margin-bottom: 0.75rem; }
.post-card-item__body h2 a { color: var(--text); transition: color 0.15s; }
.post-card-item__body h2 a:hover { color: var(--accent-light); }

/* STICKY CTA MOBILE */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: rgba(10,10,10,0.97); border-top: 1px solid var(--border); padding: 0.875rem 1.5rem; z-index: 300; gap: 0.75rem; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .why-section__inner { gap: 3rem; }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .nav-toggle { display: flex; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .trust-bar__grid { justify-content: flex-start; gap: 0.75rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-section__inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-section__badge-float { bottom: 1rem; right: 1rem; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .lead-section__inner { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .products-teaser__inner { grid-template-columns: 1fr; gap: 3rem; }
  .faq-section__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-section__header { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: span 2; }
  .form-row--2 { flex-direction: column; }
  .hero { min-height: 80vh; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
  .cta-banner { padding: 5rem 0; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  .topbar__right { display: none; }
}
