/* ============================================================
   All Clenz Maintenance — Company Profile Site
   Brand: ACM Blue #2580C1 · Dark #2C5063
   ============================================================ */

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

:root {
  /* ---- Light palette ---- */
  --bg:         #FFFFFF;
  --bg-soft:    #F5F8FC;
  --bg-tint:    #EAF3FB;
  --ink:        #16243C;
  --slate:      #5B6B7C;
  --blue:       #2B8FD4;
  --blue-deep:  #1F6FB0;
  --line:       #E2EAF2;
  --whatsapp:   #25D366;

  /* ---- Legacy aliases (keep existing selectors working) ---- */
  --blue-dark:  #1F6FB0;
  --blue-light: #EAF3FB;
  --dark:       #16243C;
  --dark-deep:  #16243C;
  --white:      #FFFFFF;
  --off-white:  #F5F8FC;
  --text:       #16243C;
  --text-mid:   #5B6B7C;
  --text-muted: #8A97A8;
  --border:     #E2EAF2;

  --nav-h:      72px;
  --radius:     6px;
  --radius-lg:  12px;
  --radius-xl:  20px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-half { max-width: 600px; padding: 0 48px; }
section { padding: 96px 0; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: var(--dark-deep); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); }
h4 { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
p { color: var(--text-mid); line-height: 1.75; }

.label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s, transform 0.12s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn--primary { background: var(--blue); color: var(--white); box-shadow: 0 2px 8px rgba(37,128,193,0.30); }
.btn--primary:hover { background: var(--blue-dark); box-shadow: 0 4px 16px rgba(37,128,193,0.40); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--ghost:hover { background: var(--bg-tint); border-color: var(--blue-deep); color: var(--blue-deep); }
.btn--wa { background: #25D366; color: var(--white); box-shadow: 0 2px 8px rgba(37,211,102,0.30); }
.btn--wa:hover { background: #1ebe5c; box-shadow: 0 4px 16px rgba(37,211,102,0.40); transform: translateY(-1px); }
.btn--lg { padding: 15px 32px; font-size: 0.95rem; }
.btn--sm { padding: 8px 16px; font-size: 0.82rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--white { background: var(--white); color: var(--blue); box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
.btn--white:hover { background: #f0f9ff; box-shadow: 0 4px 16px rgba(0,0,0,0.15); transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--nav-h);
}
.nav__logo img {
  width: 120px;
}
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--blue); border-bottom-color: var(--blue); }
.nav__links a:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; border-radius: 2px; }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ---- Services dropdown ---- */
.nav__item--dropdown { position: relative; display: flex; align-items: center; gap: 2px; }
.nav__caret-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 6px;
  margin: -6px;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s;
}
.nav__item--dropdown:hover .nav__caret-btn,
.nav__item--dropdown.open .nav__caret-btn { transform: rotate(180deg); }
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 4px);
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 150;
}
.nav__dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: none;
  white-space: nowrap;
}
.nav__dropdown a:hover,
.nav__dropdown a:focus-visible { background: var(--bg-tint); color: var(--blue); }
.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown,
.nav__item--dropdown.open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
}
.hero__photo {
  position: absolute;
  inset: 0;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 51, 62, 0.92) 0%,
    rgba(26, 51, 62, 0.65) 45%,
    rgba(26, 51, 62, 0.25) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 100px;
  padding-top: var(--nav-h);
  color: var(--white);
}
.hero__eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}
.hero__headline { color: var(--white); margin-bottom: 24px; }
.hero__sub {
  max-width: 600px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about__text h2 { margin-bottom: 24px; }
.about__text p + p { margin-top: 16px; }
.about__details {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
}
.about__details strong { display: block; color: var(--text); font-weight: 700; margin-bottom: 2px; }
.about__photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why { background: var(--off-white); }
.why h2 { margin-bottom: 56px; }
.why__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why__item {
  display: flex;
  gap: 20px;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.22s, transform 0.18s;
}
.why__item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.why__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  opacity: 0.22;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  letter-spacing: -0.04em;
}
.why__item h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--dark-deep); }
.why__item p { font-size: 0.92rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--white); }
.services h2 { margin-bottom: 48px; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* every card clips and positions its own layers */
.svc-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 36px 32px;
  background: var(--bg-tint);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--blue);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.22s, transform 0.18s, border-color 0.18s;
  cursor: default;
}
.svc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
/* no-photo cards: dark text on light tint */
.svc-card h3 {
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 10px;
}
.svc-card p { font-size: 0.9rem; color: var(--slate); }

/* ---- Photo cards ---- */
/* image layer — contained within the card via overflow:hidden on parent */
.svc-card.has-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--card-img) center / cover no-repeat;
  filter: brightness(1.02) saturate(1.02);
  transition: transform 0.4s ease;
}
/* scrim — strong at top where text is, fades at bottom so photo shows */
.svc-card.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8,17,33,0.78) 0%,
    rgba(8,17,33,0.55) 35%,
    rgba(8,17,33,0.22) 70%,
    rgba(8,17,33,0.08) 100%
  );
}
/* keep text above both layers */
.svc-card.has-photo > * { position: relative; z-index: 2; }
.svc-card.has-photo h3 { color: #fff; text-shadow: 0 2px 6px rgba(0,0,0,0.55); }
.svc-card.has-photo p  { color: rgba(255,255,255,0.92); text-shadow: 0 1px 4px rgba(0,0,0,0.55); }
.svc-card.has-photo:hover::before { transform: scale(1.04); }

@media (prefers-reduced-motion: reduce) {
  .svc-card.has-photo::before { transition: none; }
  .svc-card:hover { transform: none; }
  .svc-card.has-photo:hover::before { transform: none; }
}
.svc-card:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.svc-card[id] { scroll-margin-top: calc(var(--nav-h) + 24px); }

/* ============================================================
   SECTORS
   ============================================================ */
.sectors {
  background: var(--bg-soft);
}
.sectors__content {
  color: var(--ink);
}
.sectors__content .label { color: var(--blue); }
.sectors__content h2 { color: var(--ink); margin-bottom: 36px; }
.sectors__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 36px;
}
.sectors__cols h4 {
  color: var(--blue);
  margin-bottom: 12px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
.sectors__cols ul li {
  font-size: 0.88rem;
  color: var(--slate);
  padding: 4px 0;
  border-bottom: 1px solid var(--line);
}
.sectors__specialist {
  font-size: 0.8rem;
  color: var(--slate);
  line-height: 1.8;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.sectors__group + .sectors__group { margin-top: 28px; }
.sectors__group-label {
  display: block;
  color: var(--blue);
  margin-bottom: 12px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.sector-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sector-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.18s;
}
.sector-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.sector-card h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.sector-card p { font-size: 0.82rem; color: var(--slate); margin: 0; line-height: 1.5; }

/* ============================================================
   OUR PEOPLE
   ============================================================ */
.people { background: var(--white); }
.people__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.people__photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.people__text p { margin-bottom: 16px; }
.people__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.people__stat {
  background: var(--bg-tint);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.people__stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.people__stat-label { font-size: 0.78rem; color: var(--slate); line-height: 1.4; }

/* ============================================================
   TECHNOLOGY
   ============================================================ */
.tech { background: var(--off-white); padding-bottom: 0; }
.tech .container { margin-bottom: 64px; }
.tech h2 { margin-top: 8px; }

.tech-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  overflow: hidden;
}
.tech-block + .tech-block { border-top: 1px solid var(--border); }
.tech-block__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tech-block__photo--diagram img {
  object-fit: contain;
  padding: 32px;
  background: var(--white);
}
.tech-block__copy {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.tech-block__copy--right { order: -1; }
.tech-block__copy h3 {
  color: var(--dark-deep);
  margin-bottom: 20px;
}
.tech-block__copy p + p { margin-top: 14px; }
.tech-block__apps {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-top: 20px;
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--blue);
}
.tech-block__gallery {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.tech-block__gallery img {
  flex: 1;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ============================================================
   OUR WORK
   ============================================================ */
.work { background: var(--white); }
.work .container { margin-bottom: 48px; }
.work h2 { margin-top: 8px; }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 48px;
  margin-bottom: 64px;
}
.ba-pair__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}
.ba-pair__images figure { position: relative; }
.ba-pair__images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
}
.ba-pair__images figcaption {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: rgba(0,0,0,0.55);
  padding: 3px 8px;
  border-radius: 3px;
}
.ba-pair__label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.work__gallery-head { margin-bottom: 24px; }
.work__gallery-head h3 { font-size: 1.4rem; color: var(--dark-deep); }
.work__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.work__gallery figure { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.work__gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.work__gallery figure:hover img { transform: scale(1.04); }
.work__gallery figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 18px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

/* ============================================================
   QUALITY & TRAINING
   ============================================================ */
.quality { background: var(--off-white); }
.quality__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.quality__text h2 { margin-bottom: 28px; }
.quality__list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
}
.quality__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.quality__photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ============================================================
   ACCREDITATIONS
   ============================================================ */
.accreds { background: var(--white); text-align: center; }
.accreds h2 { margin-bottom: 56px; }
.accreds__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px 56px;
}
.accreds__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}
.accreds__badge img {
  max-height: 80px;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: filter 0.2s;
}
.accreds__badge img:hover { filter: none; }

/* ============================================================
   CLIENTS
   ============================================================ */
.clients { background: var(--off-white); }
.clients h2 { margin-bottom: 48px; }
.clients__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.clients__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-height: 100px;
  transition: box-shadow 0.2s, transform 0.18s;
  cursor: default;
}
.clients__logo:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.clients__logo img {
  max-width: 120px;
  max-height: 56px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.2s;
}
.clients__logo:hover img { filter: grayscale(0) opacity(1); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg-tint); }
.testimonials h2 { margin-bottom: 48px; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.22s, transform 0.18s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-card__stars { color: #F5A623; letter-spacing: 2px; font-size: 1rem; margin-bottom: 16px; }
.testimonial-card p { font-size: 0.92rem; color: var(--slate); margin-bottom: 20px; }
.testimonial-card__author strong { display: block; font-size: 0.92rem; color: var(--ink); }
.testimonial-card__author span { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg-soft); }
.faq h2 { margin-bottom: 40px; }
.faq__list { max-width: 760px; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 0.2s;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.2s ease;
}
.faq__item.open .faq__a { max-height: 300px; opacity: 1; }
.faq__a p { padding: 0 4px 22px; color: var(--slate); font-size: 0.92rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg-soft); }
.contact .label { color: var(--blue); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.contact__info h2 { color: var(--ink); margin-bottom: 20px; }
.contact__info > p { color: var(--slate); margin-bottom: 32px; }
.contact__info address p { margin-bottom: 20px; }
.contact__info address strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 4px;
}
.contact__info address a {
  color: var(--ink);
  font-size: 1rem;
}
.contact__info address a:hover { color: var(--blue); }
.contact__info address p:last-of-type {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
}
.contact__info .btn--wa { margin-top: 8px; margin-bottom: 36px; }
.contact__qr {
  display: flex;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.contact__qr > div { text-align: center; }
.contact__qr img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 8px;
}
.contact__qr p { font-size: 0.75rem; color: var(--slate); }

/* Form */
.contact__form {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.form-row label span { color: var(--blue); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s;
  font-family: inherit;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-row input:focus-visible,
.form-row select:focus-visible,
.form-row textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 1px;
}
.form-row textarea { resize: vertical; }
.form-success {
  margin-top: 16px;
  padding: 16px;
  background: #e6f4ea;
  border-radius: var(--radius);
  color: #1a7340;
  font-size: 0.9rem;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-soft); border-top: 1px solid var(--line); }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
  padding: 64px 32px 48px;
}
.footer__logo {
  width: 130px;
  margin-bottom: 14px;
}
.footer__tagline {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer__legal { font-size: 0.75rem; color: var(--text-muted); line-height: 1.7; }
.footer__nav h4,
.footer__contact h4,
.footer__accreds h4 {
  color: var(--text);
  margin-bottom: 16px;
  font-size: 0.72rem;
}
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a { font-size: 0.85rem; color: var(--text-mid); transition: color 0.15s; }
.footer__nav a:hover { color: var(--blue); }
.footer__contact { display: flex; flex-direction: column; gap: 6px; }
.footer__contact a { font-size: 0.85rem; color: var(--text-mid); }
.footer__contact a:hover { color: var(--blue); }
.footer__contact p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; margin: 8px 0; }
.footer__contact .btn--wa { margin-top: 6px; align-self: flex-start; }
.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.footer__badges img {
  max-height: 40px;
  max-width: 100px;
  object-fit: contain;
  filter: grayscale(0.3) opacity(0.75);
}
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 32px;
}
.footer__bottom p { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   WhatsApp FAB
   ============================================================ */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: background 0.18s, transform 0.18s;
}
.wa-fab:hover { background: #1ebe5c; transform: scale(1.08); }
.wa-fab:focus-visible { outline: 3px solid var(--white); outline-offset: 2px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why__list { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .clients__grid { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .tech-block__copy { padding: 48px 40px; }
  .sectors__cols { grid-template-columns: repeat(2, 1fr); }
  .sector-cards { grid-template-columns: repeat(2, 1fr); }
  .people__grid { gap: 40px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  /* Nav */
  .nav__links {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--white);
    flex-direction: column;
    padding: 32px;
    gap: 0;
    overflow-y: auto;
    border-top: 1px solid var(--border);
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 1.1rem; }
  .nav__links a:last-child { border-bottom: none; }
  .nav__burger { display: flex; }

  /* Services dropdown (mobile: inline accordion) */
  .nav__item--dropdown { position: static; justify-content: space-between; border-bottom: 1px solid var(--border); }
  .nav__item--dropdown .nav__dropdown-toggle { border-bottom: none; padding: 16px 0; }
  .nav__item--dropdown .nav__caret-btn { padding: 10px; margin: -10px; }
  .nav__dropdown {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 12px 12px;
    min-width: 0;
  }
  .nav__item--dropdown.open .nav__dropdown { display: block; }
  .nav__dropdown a { padding: 10px 0; font-size: 1rem; white-space: normal; border-bottom: none; }
  .nav__actions .btn--wa,
  .nav__actions .btn--primary { display: none; }
  .nav__actions .btn--primary { display: none; }
  .nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.open span:nth-child(2) { opacity: 0; }
  .nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* About */
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__photo img { height: 280px; }

  /* Why */
  .why__list { grid-template-columns: 1fr; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Sectors */
  .sectors__cols { grid-template-columns: 1fr; gap: 24px; }
  .sector-cards { grid-template-columns: 1fr; }

  /* People */
  .people__grid { grid-template-columns: 1fr; gap: 32px; }
  .people__photo img { height: 280px; }
  .people__stats { grid-template-columns: 1fr; }

  /* Tech */
  .tech-block { grid-template-columns: 1fr; min-height: auto; }
  .tech-block__photo { height: 300px; }
  .tech-block__copy--right { order: 0; }
  .tech-block__copy { padding: 40px 32px; }

  /* Work */
  .ba-grid { grid-template-columns: 1fr; }
  .work__gallery { grid-template-columns: 1fr 1fr; }

  /* Quality */
  .quality__grid { grid-template-columns: 1fr; gap: 40px; }
  .quality__photo img { height: 260px; }

  /* Clients */
  .clients__grid { grid-template-columns: repeat(3, 1fr); }

  /* Contact */
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact__form { padding: 32px 24px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 32px 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .clients__grid { grid-template-columns: repeat(2, 1fr); }
  .work__gallery { grid-template-columns: 1fr; }
  .accreds__grid { gap: 32px; }
  .contact__qr { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,51,62,0.93) 0%, rgba(26,51,62,0.55) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
  padding-top: calc(var(--nav-h) + 32px);
  color: var(--white);
}
.page-hero__eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}
.page-hero__content h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 720px;
}

/* First section on pages without page-hero */
.pt-nav { padding-top: calc(96px + var(--nav-h)); }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--blue);
  padding: 40px 0;
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.stats-item__number {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.stats-item__label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   HOME — ABOUT TEASER
   ============================================================ */
.home-about { background: var(--white); }
.home-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.home-about__text h2 { margin-bottom: 20px; }
.home-about__text p { margin-bottom: 20px; }
.home-about__photo img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ============================================================
   HOME — SERVICES TEASER
   ============================================================ */
.services-teaser { background: var(--off-white); }
.services-teaser__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 32px;
}
.services-teaser__header h2 { margin: 0; }

/* ============================================================
   HOME — TECH TEASER
   ============================================================ */
.tech-teaser { background: var(--white); }
.tech-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.tech-teaser__photo img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.tech-teaser__text h2 { margin-bottom: 20px; }
.tech-teaser__text > p { margin-bottom: 28px; }
.tech-teaser__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.tech-teaser__item {
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--blue);
}
.tech-teaser__item h4 { font-size: 0.78rem; color: var(--dark-deep); margin-bottom: 4px; text-transform: none; letter-spacing: 0; }
.tech-teaser__item p { font-size: 0.78rem; }

/* ============================================================
   HOME — CLIENTS STRIP
   ============================================================ */
.clients-strip { background: var(--off-white); }
.clients-strip__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 32px;
}
.clients-strip__header h2 { margin: 0; }
.clients-strip__logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--bg-tint);
  padding: 96px 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band h2 { color: var(--ink); margin-bottom: 16px; }
.cta-band p { color: var(--slate); max-width: 520px; margin: 0 auto 36px; }
.cta-band__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   RESPONSIVE — NEW COMPONENTS
   ============================================================ */
@media (max-width: 1024px) {
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .home-about__grid { gap: 48px; }
  .tech-teaser__grid { gap: 48px; }
}

@media (max-width: 768px) {
  .page-hero { min-height: 280px; }
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .home-about__grid { grid-template-columns: 1fr; gap: 40px; }
  .home-about__photo img { height: 260px; }
  .tech-teaser__grid { grid-template-columns: 1fr; gap: 40px; }
  .tech-teaser__photo img { height: 260px; }
  .tech-teaser__items { grid-template-columns: 1fr; }
  .services-teaser__header { flex-direction: column; align-items: flex-start; }
  .clients-strip__header { flex-direction: column; align-items: flex-start; }
  .clients-strip__logos { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .stats-strip__grid { grid-template-columns: 1fr 1fr; }
  .clients-strip__logos { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about { background: var(--white); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about__photo img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-lg); }
.about__details { display: flex; gap: 32px; margin-top: 24px; font-size: 0.82rem; color: var(--text-muted); }

.why { background: var(--off-white); }
.why__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.why__item { display: flex; gap: 20px; }
.why__num { font-size: 2rem; font-weight: 800; color: var(--blue); opacity: 0.2; line-height: 1; flex-shrink: 0; width: 48px; }
.why__item h3 { font-size: 1rem; margin-bottom: 8px; }
.why__item p { font-size: 0.88rem; color: var(--text-muted); }

.quality { background: var(--white); }
.quality__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.quality__photo img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius-lg); }
.quality__list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 12px; }
.quality__list li { padding-left: 24px; position: relative; font-size: 0.92rem; }
.quality__list li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

/* ============================================================
   TECHNOLOGY PAGE
   ============================================================ */
.tech-intro { background: var(--white); }
.tech-intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.tech-intro__stats { display: flex; flex-direction: column; gap: 24px; padding-top: 48px; }
.tech-stat { padding: 24px; background: var(--off-white); border-radius: var(--radius-lg); border-left: 4px solid var(--blue); }
.tech-stat__num { font-size: 1.6rem; font-weight: 800; color: var(--dark); }
.tech-stat__label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

.tech-block { background: var(--white); display: block; min-height: 0; overflow: visible; }
.tech-block--alt { background: var(--off-white); }
.tech-block__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.tech-block__grid--reverse .tech-block__photo { order: 2; }
.tech-block__grid--reverse .tech-block__text { order: 1; }
.tech-block__photo img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius-lg); }
.tech-block__features { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 10px; }
.tech-block__features li { padding-left: 24px; position: relative; font-size: 0.9rem; color: var(--text-muted); }
.tech-block__features li::before { content: '→'; position: absolute; left: 0; color: var(--blue); }

/* ============================================================
   OUR WORK PAGE
   ============================================================ */
.work-gallery { background: var(--white); }
.work-gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.work-card { margin: 0; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.work-card img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform 0.3s ease; }
.work-card:hover img { transform: scale(1.03); }
.work-card figcaption { padding: 16px 20px; }
.work-card figcaption strong { display: block; font-size: 0.95rem; margin-bottom: 4px; }
.work-card figcaption span { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   CLIENTS PAGE
   ============================================================ */
.clients-full { background: var(--white); }
.clients-full__intro { color: var(--text-muted); max-width: 640px; margin: 12px 0 40px; }
.clients-full__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.clients__logo { background: var(--white); padding: 24px; display: flex; align-items: center; justify-content: center; }
.clients__logo img { max-width: 100%; max-height: 60px; object-fit: contain; filter: grayscale(100%); opacity: 0.65; transition: all 0.2s; }
.clients__logo:hover img { filter: none; opacity: 1; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact { background: var(--white); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact__methods { display: flex; flex-direction: column; gap: 24px; margin: 32px 0; }
.contact__method { display: flex; gap: 16px; align-items: flex-start; }
.contact__method-icon { width: 40px; height: 40px; background: var(--off-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; }
.contact__method h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; }
.contact__method a, .contact__method p { font-size: 0.95rem; font-weight: 500; }
.contact__qr { display: flex; gap: 24px; margin-top: 32px; }
.contact__qr > div { text-align: center; }
.contact__qr img { width: 80px; height: 80px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--border); }
.contact__qr p { font-size: 0.72rem; color: var(--text-muted); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.08em; }

.contact__form-wrap { background: var(--off-white); border-radius: var(--radius-lg); padding: 40px; }
.contact__form h3 { margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.95rem; font-family: inherit; background: var(--white); color: var(--text); transition: border-color 0.15s; box-sizing: border-box; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn--full { width: 100%; justify-content: center; }
.form-success { display: flex; align-items: center; gap: 10px; margin-top: 16px; padding: 14px 16px; background: #e8f5e9; border-radius: var(--radius); color: #2e7d32; font-size: 0.9rem; font-weight: 500; }

.page-hero--short { min-height: 280px; }

/* ============================================================
   FACILITIES MANAGEMENT PAGE
   ============================================================ */
.fm-compare { grid-template-columns: repeat(2, 1fr); }
.fm-compare__card { display: flex; flex-direction: column; }
.fm-compare__card .quality__list { margin-top: 16px; }

.fm-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.fm-step .people__stat-num { font-size: 0.95rem; }

.svc-card__more {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
}
.svc-card__more:hover { color: var(--blue-deep); text-decoration: underline; }
.svc-card.has-photo .svc-card__more { color: #fff; }

/* ============================================================
   RESPONSIVE — INNER PAGES
   ============================================================ */
@media (max-width: 1024px) {
  .about__grid, .quality__grid, .tech-intro__grid { gap: 48px; }
  .tech-block__grid { gap: 48px; }
  .why__list { grid-template-columns: 1fr 1fr; }
  .contact__grid { gap: 48px; }
  .work-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .clients-full__grid { grid-template-columns: repeat(4, 1fr); }
  .fm-compare { grid-template-columns: 1fr; }
  .fm-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about__grid, .quality__grid { grid-template-columns: 1fr; }
  .about__photo img, .quality__photo img { height: 300px; }
  .why__list { grid-template-columns: 1fr; gap: 24px; }
  .tech-intro__grid { grid-template-columns: 1fr; }
  .tech-intro__stats { padding-top: 0; }
  .tech-block__grid { grid-template-columns: 1fr; }
  .tech-block__grid--reverse .tech-block__photo { order: 0; }
  .tech-block__photo img { height: 260px; }
  .work-gallery__grid { grid-template-columns: 1fr 1fr; }
  .clients-full__grid { grid-template-columns: repeat(3, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .fm-steps { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .work-gallery__grid { grid-template-columns: 1fr; }
  .clients-full__grid { grid-template-columns: repeat(2, 1fr); }
}
