/* =====================================================
   College Clean — styles.css
   All site-wide styles. Single file for all 5 pages.
   ===================================================== */

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

/* ---------- CSS Variables ---------- */
:root {
  --navy:       #1A1F5E;
  --blue:       #4B55D4;
  --periwinkle: #EEF0FB;
  --accent:     #A8B4E8;
  --body-text:  #1A1A2E;
  --white:      #ffffff;
  --shadow-sm:  0 2px 8px rgba(26, 31, 94, 0.08);
  --shadow-md:  0 8px 32px rgba(26, 31, 94, 0.14);
  --shadow-lg:  0 16px 48px rgba(26, 31, 94, 0.18);
  --radius:     16px;
  --radius-sm:  10px;
  --radius-pill:50px;
  --font:       'Plus Jakarta Sans', 'Inter', sans-serif;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Utility ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }

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

.label--white { color: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--primary:hover {
  background: #3a44bb;
  border-color: #3a44bb;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(75, 85, 212, 0.35);
}

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

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

.text-center { text-align: center; }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }

/* ---------- Headings ---------- */
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { line-height: 1.7; }

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(26,31,94,0.08), var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.nav__logo img {
  height: 44px;
  width: auto;
  display: block;
}

/* Logo placeholder shown when logo.png is missing */
.nav__logo-placeholder {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav__logo-placeholder .logo-icon {
  width: 36px; height: 36px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav__links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--body-text);
  transition: color var(--transition), background var(--transition);
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--blue);
  background: var(--periwinkle);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--body-text);
  white-space: nowrap;
}
.nav__phone svg { color: var(--blue); flex-shrink: 0; }

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

/* Mobile nav drawer */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--periwinkle);
  gap: 8px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--body-text);
  transition: background var(--transition), color var(--transition);
}
.nav__mobile a:hover { background: var(--periwinkle); color: var(--blue); }
.nav__mobile .btn { margin-top: 8px; }

/* =====================================================
   HERO (shared base)
   ===================================================== */
.hero {
  background: var(--navy);
  border-radius: var(--radius);
  margin: 24px 24px 0;
  overflow: hidden;
  position: relative;
}

/* Home hero — two column */
.hero--home {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  padding: 64px 56px;
  align-items: center;
}

.hero__content { color: var(--white); }

.hero__location-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
}
.location-badge svg { opacity: 0.7; }

/* Hero image placeholder */
.hero__image-placeholder {
  background: var(--periwinkle);
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  max-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--accent);
  /* REPLACE: swap this div with <img src="assets/hero-room.jpg"> */
}
.hero__image-placeholder span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* Page hero (non-home) */
.hero--page {
  padding: 64px 56px;
  text-align: center;
  color: var(--white);
  margin-bottom: 0;
}
.hero--page h1 { margin-bottom: 16px; }
.hero--page p  { font-size: 1.1rem; opacity: 0.8; max-width: 560px; margin: 0 auto; }

/* ---------- Trust Bar ---------- */
.trust-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0 24px;
  margin-bottom: 0;
}
.trust-bar__inner {
  background: var(--white);
  border: 1px solid var(--periwinkle);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  divide: none;
  overflow: hidden;
  width: 100%;
  max-width: 1152px;
}
.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--body-text);
  border-right: 1px solid var(--periwinkle);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { color: var(--blue); flex-shrink: 0; }

/* =====================================================
   FEATURE CARDS
   ===================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--periwinkle);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card--navy {
  background: var(--navy);
  color: var(--white);
}

.card__icon {
  width: 48px; height: 48px;
  background: rgba(75,85,212,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
}
.card--navy .card__icon {
  background: rgba(168,180,232,0.2);
  color: var(--accent);
}

.card h3 { margin-bottom: 10px; }
.card p  { font-size: 0.92rem; opacity: 0.82; }
.card--navy p { opacity: 0.75; }

/* =====================================================
   SERVICES LIST (dark navy)
   ===================================================== */
.services-list-section {
  background: var(--navy);
  border-radius: var(--radius);
  margin: 40px 0;
  padding: 56px 48px;
  color: var(--white);
}

.services-list-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.service-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 20px 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition);
}
.service-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }

.service-row__icon {
  width: 52px; height: 52px;
  background: rgba(75,85,212,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.service-row__body h4 { margin-bottom: 6px; font-size: 1.05rem; }
.service-row__body p  { font-size: 0.88rem; opacity: 0.7; }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}
.badge--blue   { background: var(--blue);  color: var(--white); }
.badge--accent { background: rgba(168,180,232,0.2); color: var(--accent); border: 1px solid var(--accent); }

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 48px 48px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px 48px;
  align-items: center;
}

.cta-banner h2 { margin-bottom: 8px; font-size: 1.8rem; }
.cta-banner > p { opacity: 0.75; font-size: 0.95rem; }

.cta-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* =====================================================
   REVIEWS
   ===================================================== */
.reviews-section { overflow: hidden; }

.reviews-carousel {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: stretch;
}

.reviews-wrapper {
  overflow: hidden;
  padding: 16px 0;
}

.review-card {
  background: var(--periwinkle);
  border-radius: var(--radius);
  padding: 32px 28px;
  min-width: 340px;
  max-width: 340px;
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card--active {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.review-stars { color: #f5c842; font-size: 1rem; letter-spacing: 2px; }
.review-text  { font-size: 0.95rem; line-height: 1.7; flex: 1; }
.review-card--active .review-text { opacity: 0.85; }

.review-author { margin-top: auto; }
.review-author strong { display: block; font-size: 0.9rem; }
.review-author span   { font-size: 0.8rem; opacity: 0.6; }

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--periwinkle);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  transition: all var(--transition);
}
.carousel-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--periwinkle);
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
}
.carousel-dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}

/* =====================================================
   REVIEWS PAGE — GRID
   ===================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.reviews-grid .review-card {
  min-width: unset;
  max-width: unset;
  transform: none !important;
}
.reviews-grid .review-card--active { transform: none !important; }

/* =====================================================
   FAQ ACCORDION
   ===================================================== */
.faq-section { background: var(--white); }

.faq-item {
  border-bottom: 1px solid #e8eaf0;
}
.faq-item:first-child { border-top: 1px solid #e8eaf0; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--body-text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--blue); }

.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--periwinkle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  transition: background var(--transition), transform var(--transition);
}
.faq-item.open .faq-toggle { background: var(--blue); color: var(--white); transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
  padding-bottom: 24px;
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.75;
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-split__text h2 { margin-bottom: 20px; }
.about-split__text p  { margin-bottom: 16px; opacity: 0.85; }

.about-img-placeholder {
  background: var(--periwinkle);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--accent);
  /* REPLACE: swap with <img src="assets/team.jpg" alt="College Clean team"> */
}
.about-img-placeholder span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
}

.dark-block {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 56px;
  color: var(--white);
  text-align: center;
}
.dark-block h2 { margin-bottom: 16px; }
.dark-block p  { opacity: 0.75; max-width: 560px; margin: 0 auto 32px; }

.team-photo-placeholder {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  aspect-ratio: 16/7;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--accent);
  /* REPLACE: swap with <img src="assets/team-photo.jpg"> */
}
.team-photo-placeholder span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.45;
}

.trust-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.trust-pillar {
  text-align: center;
  background: var(--periwinkle);
  border-radius: var(--radius);
  padding: 32px 24px;
}
.trust-pillar__icon {
  width: 52px; height: 52px;
  background: rgba(75,85,212,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--blue);
}
.trust-pillar h4 { margin-bottom: 8px; }
.trust-pillar p  { font-size: 0.88rem; opacity: 0.75; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--periwinkle);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d4d8f0;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--body-text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(75,85,212,0.12);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-select { appearance: none; cursor: pointer; }

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 36px 32px;
  color: var(--white);
}
.contact-info-card h3 { margin-bottom: 24px; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-item:last-of-type { border-bottom: none; }

.contact-info-item__icon {
  width: 40px; height: 40px;
  background: rgba(75,85,212,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-info-item__text strong { display: block; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.6; margin-bottom: 3px; }
.contact-info-item__text a { font-weight: 600; color: var(--white); transition: color var(--transition); }
.contact-info-item__text a:hover { color: var(--accent); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--navy);
  border-radius: var(--radius) var(--radius) 0 0;
  margin: 64px 0 0;
  color: var(--white);
  padding: 56px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo { margin-bottom: 16px; }
.footer__logo img { height: 40px; }

.footer__logo-placeholder {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__logo-placeholder .logo-icon {
  width: 34px; height: 34px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__copy { font-size: 0.82rem; opacity: 0.55; margin-top: 4px; }

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  cursor: pointer;
}
.social-icon:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.08); }

.footer__nav-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 16px;
}

.footer__nav-list { display: flex; flex-direction: column; gap: 10px; }
.footer__nav-list a {
  font-size: 0.9rem;
  opacity: 0.75;
  transition: opacity var(--transition), color var(--transition);
}
.footer__nav-list a:hover { opacity: 1; color: var(--accent); }

.footer__contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer__contact-item svg { color: var(--accent); flex-shrink: 0; }
.footer__contact-item a { transition: color var(--transition); }
.footer__contact-item a:hover { color: var(--accent); }

.footer__bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: 0.78rem; opacity: 0.4; }

/* =====================================================
   SERVICES PAGE — 3x2 GRID
   ===================================================== */
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* =====================================================
   SECTION DIVIDERS / SPACING
   ===================================================== */
.section-head { margin-bottom: 48px; }
.section-head h2 { margin-top: 8px; }

/* =====================================================
   SPARKLE SVG reuse
   ===================================================== */
.sparkle { display: inline-block; line-height: 0; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .hero--home {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 48px 36px;
  }
  .hero__image-placeholder { max-width: 300px; margin: 0 auto; }
  .hero__location-badges { justify-content: center; }
  .cta-banner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .cta-bullets { align-items: center; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .services-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section { padding: 56px 0; }

  .nav__links,
  .nav__phone,
  .nav__right .btn { display: none; }
  .nav__hamburger { display: flex; }

  .hero { margin: 12px 12px 0; }
  .hero--home { padding: 40px 28px; }
  .hero--page { padding: 48px 28px; }

  .trust-bar__inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--periwinkle); }
  .trust-item:last-child { border-bottom: none; }

  .cards-grid { grid-template-columns: 1fr; }
  .services-cards-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .trust-pillars { grid-template-columns: 1fr; }

  .services-list-section { padding: 40px 24px; }
  .service-row { grid-template-columns: 48px 1fr; }
  .service-row > .badge { grid-column: 2; }

  .cta-banner { padding: 36px 28px; }
  .dark-block { padding: 40px 24px; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer { margin-top: 40px; }

  .reviews-carousel { gap: 16px; }
  .review-card { min-width: 280px; max-width: 280px; }

  .form-card { padding: 28px 20px; }
  .contact-info-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.75rem; }
  .btn { padding: 11px 20px; font-size: 0.88rem; }
}
