/* ============================================================
   Microcenters of GA — Global Stylesheet
   Computer & IT Repair | Navy + Orange brand system
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --navy:         #0d2b4e;
  --navy-light:   #163b66;
  --navy-deep:    #081a32;
  --blue:         #1f5c9e;
  --blue-light:   #4f8fd1;
  --orange:       #f3771f;
  --orange-light: #ff9a4d;
  --orange-deep:  #d9610f;
  --cream:        #f5f3ec;
  --bg-light:     #f4f7fb;
  --white:        #ffffff;
  --text-dark:    #14202e;
  --text-mid:     #3c4a59;
  --text-muted:   #677382;
  --border:       #dde4ec;
  --shadow-sm:    0 2px 8px rgba(13,43,78,.08);
  --shadow-md:    0 4px 20px rgba(13,43,78,.12);
  --shadow-lg:    0 8px 40px rgba(13,43,78,.18);
  --radius:       8px;
  --radius-lg:    16px;
  --transition:   .25s ease;
  --container:    1180px;
  --font-body:    'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: 117px;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout Utilities --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--alt { background: var(--bg-light); }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--orange-light); }
.section--dark p { color: rgba(255,255,255,.85); }

.section__header {
  text-align: center;
  margin-bottom: 56px;
}
.section__header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 14px;
}
.section__header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}
.section--dark .section__header p { color: rgba(255,255,255,.72); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 10px;
}
.section--dark .eyebrow { color: var(--orange-light); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* --- TOP BAR --- */
.topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: 8px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--orange-light); }
.topbar a:hover { color: var(--white); }
.topbar__items { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.topbar__item { display: flex; align-items: center; gap: 6px; }

/* --- HEADER / NAV --- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo img {
  height: 50px;
  width: auto;
}
.logo__text { display: flex; flex-direction: column; line-height: 1.2; }
.logo__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.01em;
}
.logo__tagline {
  font-size: .7rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  display: block;
  padding: 8px 14px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav a:hover, .nav a.active {
  color: var(--navy);
  background: rgba(31,92,158,.08);
}

.nav__cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 9px 18px !important;
  margin-left: 8px;
}
.nav__cta:hover {
  background: var(--orange-deep) !important;
  color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-light) 100%);
}
.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 42px 42px;
}
.hero__glow {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(243,119,31,.35) 0%, transparent 70%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 36px 24px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  color: var(--white);
  max-width: 760px;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero h1 em { color: var(--orange-light); font-style: normal; }
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.88);
  max-width: 560px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

.hero__badges {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 500;
}
.hero__badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(243,119,31,.18);
  border: 1px solid rgba(243,119,31,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  animation: hero-scroll-bounce 2.2s ease-in-out infinite;
}
.hero__scroll:hover { color: var(--orange-light); }
.hero__scroll-icon {
  width: 20px;
  height: 32px;
  border: 2px solid currentColor;
  border-radius: 12px;
  position: relative;
}
.hero__scroll-icon::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 4px;
  margin-left: -2px;
  background: currentColor;
  border-radius: 50%;
}
@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* --- STATS BAR --- */
.stats-bar {
  background: var(--orange);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat__number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat__number em { color: var(--navy-deep); font-style: normal; }
.stat__label {
  font-size: .85rem;
  color: rgba(255,255,255,.92);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* --- SERVICES GRID --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  padding: 28px;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}
.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(31,92,158,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-card p {
  font-size: .9rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 16px;
}
.service-card__link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}
.service-card__link:hover { color: var(--orange); }

/* --- ABOUT STRIP --- */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-strip__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-light) 100%);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-strip__visual-icon { font-size: 6rem; opacity: .85; }
.about-strip__badge {
  position: absolute;
  bottom: 24px;
  right: -16px;
  background: var(--orange);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
}
.about-strip__badge .number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.3rem;
  line-height: 1;
}
.about-strip__badge .label {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}

.about-strip__content h2 { font-size: clamp(1.7rem, 2.8vw, 2.2rem); margin-bottom: 20px; }

.cert-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 28px; }
.cert-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: var(--text-mid);
}
.cert-item__icon {
  width: 22px;
  height: 22px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-areas { margin-top: 20px; }
.service-areas h4 { font-size: .85rem; font-family: var(--font-body); font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.areas-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tag {
  background: rgba(31,92,158,.08);
  border: 1px solid rgba(31,92,158,.2);
  color: var(--navy);
  font-size: .8rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
}

/* --- TESTIMONIALS --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card__stars { color: var(--orange-light); font-size: 1rem; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(255,255,255,.88);
  flex: 1;
}
.testimonial-card blockquote::before { content: '\201C'; }
.testimonial-card blockquote::after  { content: '\201D'; }
.testimonial-card__author {
  font-size: .82rem;
  color: var(--orange-light);
  font-weight: 600;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 14px;
}

/* --- FAQ ACCORDION --- */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}
.faq-item__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(31,92,158,.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform var(--transition);
}
.faq-item[open] .faq-item__icon { transform: rotate(45deg); background: var(--orange); color: var(--white); }
.faq-item__answer {
  padding: 0 22px 20px;
  color: var(--text-mid);
  font-size: .95rem;
}
.faq-item summary { list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }

/* --- CTA BAND --- */
.cta-band {
  background: var(--orange);
  padding: 56px 0;
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band__text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--white);
  margin-bottom: 6px;
}
.cta-band__text p {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  margin-bottom: 0;
}

/* --- FOOTER --- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.6); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange-light);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--orange-light); }
.footer-col .contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 10px;
}
.footer-col .contact-line a { color: rgba(255,255,255,.65); }
.footer-col .contact-line a:hover { color: var(--orange-light); }
.footer-col .contact-line span { flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 0;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--orange-light); }

/* --- SERVICES PAGE (residential / business) --- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 10px;
}
.page-hero p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 0;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--orange-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb__sep { color: rgba(255,255,255,.3); }

.services-list { display: flex; flex-direction: column; gap: 64px; }
.service-block {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.service-block__visual {
  background: linear-gradient(150deg, rgba(31,92,158,.12) 0%, rgba(243,119,31,.12) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
}
.service-block h2 { font-size: 1.7rem; margin-bottom: 14px; }
.service-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 0;
}
.service-block ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  color: var(--text-mid);
}
.service-block ul li::before {
  content: '✓';
  display: inline-flex;
  width: 20px;
  height: 20px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- CONTACT PAGE --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { font-size: 1.6rem; margin-bottom: 16px; }
.contact-info p { color: var(--text-mid); margin-bottom: 28px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: rgba(31,92,158,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail__label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-detail__value {
  font-size: .95rem;
  color: var(--text-dark);
  font-weight: 500;
}
.contact-detail__value a { color: var(--blue); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--navy);
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31,92,158,.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: .8rem; color: var(--text-muted); margin-top: 4px; }

/* Honeypot field — hidden from sighted users and screen readers, traps bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --- LEGAL PAGES (privacy / terms) --- */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 1.3rem; margin-top: 36px; margin-bottom: 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--text-mid); font-size: .95rem; }
.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal-content ul li { margin-bottom: 6px; }
.legal-content .updated { color: var(--text-muted); font-size: .85rem; margin-bottom: 32px; }

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--navy-deep);
  color: rgba(255,255,255,.9);
  padding: 18px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text { font-size: .88rem; max-width: 680px; }
.cookie-banner__text a { color: var(--orange-light); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* --- MOBILE --- */
@media (max-width: 900px) {
  .nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border); padding: 16px; box-shadow: var(--shadow-md); gap: 4px; }
  .nav.open { display: flex; }
  .nav a { padding: 12px 16px; border-radius: var(--radius); }
  .nav__cta { margin-left: 0 !important; }
  .hamburger { display: flex; }

  .about-strip { grid-template-columns: 1fr; gap: 36px; }
  .about-strip__badge { right: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; text-align: center; }
}

/* Topbar wraps to 2 lines once both item groups no longer fit on one row */
@media (max-width: 751px) {
  .site-header { top: 69px; }
  body { padding-top: 148px; }
}

@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .topbar .container { flex-direction: column; align-items: flex-start; gap: 4px; }
  .site-header { top: 65px; }
  body { padding-top: 144px; }
  .hero__badges { gap: 16px; }
  .hero__content { padding: 64px 20px; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
}

/* Topbar wraps to 3 lines at narrower phone widths */
@media (max-width: 429px) {
  .site-header { top: 111px; }
  body { padding-top: 190px; }
}

/* Topbar wraps to 4 lines at the narrowest phone widths */
@media (max-width: 360px) {
  .site-header { top: 158px; }
  body { padding-top: 237px; }
}
