/* ===== CSS RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1a56db;
  --primary-dark: #1446b8;
  --primary-light: #e8effc;
  --accent: #f59e0b;
  --dark: #111827;
  --gray-900: #1f2937;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --success: #16a34a;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / .07), 0 2px 4px -2px rgb(0 0 0 / .07);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
  --max-w: 1140px;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--gray-700);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 { color: var(--dark); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }

p { max-width: 65ch; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 5rem 0; }
.section--gray { background: var(--gray-50); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { max-width: 55ch; margin: 0 auto; color: var(--gray-500); }
.section-header h2 { margin: 0.5rem 0; }
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* ===== NAV ===== */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.nav__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.25rem;
  border-radius: var(--radius);
}
.nav__logo-text {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}
.nav__links {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}
.nav__links a {
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}
.nav__links a:hover { background: var(--gray-100); color: var(--dark); }
.nav__links a.active { background: var(--primary-light); color: var(--primary); font-weight: 600; }
.nav__phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 0.4rem 0.875rem;
  border-radius: 100px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__phone:hover { background: var(--primary); color: var(--white); }
.nav__toggle { display: none; border: none; background: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 0.5rem; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.2s; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
  white-space: nowrap;
}
.btn--primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--outline:hover { background: var(--primary-light); }
.btn--outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline-white:hover { background: rgba(255,255,255,0.12); }
.btn--white { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn--white:hover { background: var(--gray-100); transform: translateY(-1px); }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #1a56db 0%, #1446b8 60%, #0f38a8 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  font-size: 0.825rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero__headline { color: var(--white); margin-bottom: 1.25rem; }
.text-primary { color: #93c5fd; }
.hero__sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 50ch;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero__trust { color: rgba(255,255,255,0.55); font-size: 0.875rem; }

/* Hero vending machine illustration */
.hero__image {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  margin: 0 auto;
}

.hero__visual { position: relative; text-align: center; }
.hero__machine {
  background: linear-gradient(145deg, #e2e8f0, #cbd5e1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 260px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.5);
}
.machine__window {
  background: linear-gradient(180deg, #1e293b, #0f172a);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.machine__shelf span {
  width: 36px;
  height: 48px;
  background: linear-gradient(180deg, #ef4444 50%, #b91c1c 50%);
  border-radius: 4px;
  display: block;
}
.machine__shelf span:nth-child(2) { background: linear-gradient(180deg, #3b82f6 50%, #1d4ed8 50%); height: 56px; }
.machine__shelf span:nth-child(3) { background: linear-gradient(180deg, #22c55e 50%, #15803d 50%); }
.machine__coin {
  width: 56px;
  height: 56px;
  background: linear-gradient(145deg, #f59e0b, #d97706);
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: inset 0 -3px 6px rgba(0,0,0,0.2), 0 2px 4px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: white;
  font-size: 0.75rem;
}
.machine__coin::after { content: '$'; }

.hero__stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  justify-content: center;
}
.stat { text-align: center; }
.stat strong { display: block; font-size: 1.75rem; font-weight: 900; color: var(--white); }
.stat span { font-size: 0.75rem; color: rgba(255,255,255,0.65); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--gray-900);
  color: var(--white);
  padding: 1rem 0;
}
.trust-bar__inner { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.trust-bar__inner > p { font-size: 0.8rem; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; margin: 0; max-width: none; }
.trust-bar__cities { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.trust-bar__cities span {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ===== SERVICES PREVIEW ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.15s, box-shadow 0.15s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card__icon svg { width: 28px; height: 28px; stroke: var(--primary); }
.service-card h3 { margin-bottom: 0.625rem; font-size: 1.125rem; }
.service-card p { color: var(--gray-500); font-size: 0.9rem; max-width: 35ch; }
.services-cta { text-align: center; margin-top: 2.5rem; }

/* ===== HOW IT WORKS ===== */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
  padding: 1.5rem;
}
.step__number {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 auto 1rem;
}
.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--gray-500); font-size: 0.9rem; max-width: 28ch; margin: 0 auto; }
.step-arrow { color: var(--gray-300); padding-top: 1.5rem; flex-shrink: 0; }
.step-arrow svg { width: 24px; height: 24px; }
.how-it-works__cta { text-align: center; }

/* ===== WHY US ===== */
.why-us__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.why-list { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.875rem; }
.why-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9375rem; }
.why-list svg { flex-shrink: 0; margin-top: 2px; }
.why-list strong { color: var(--dark); }
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.testimonial-card__stars { display: flex; gap: 0.2rem; margin-bottom: 1rem; }
.testimonial-card__text { font-size: 0.9375rem; line-height: 1.7; color: var(--gray-700); margin-bottom: 1rem; font-style: italic; }
.testimonial-card__author { display: flex; flex-direction: column; gap: 0.125rem; }
.testimonial-card__author strong { font-size: 0.875rem; color: var(--dark); }
.testimonial-card__author span { font-size: 0.8rem; color: var(--gray-500); }
.service-area-card {
  background: var(--primary-light);
  border: 1.5px solid #bfdbfe;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.service-area-card h4 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--primary); }
.service-area-card > p { font-size: 0.875rem; color: var(--gray-700); margin-bottom: 1rem; }
.service-area-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.service-area-list span {
  background: var(--white);
  color: var(--gray-700);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--gray-300);
}

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--primary); padding: 4rem 0; }
.cta-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-banner__content h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.5rem; }
.cta-banner__content p { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 50ch; }
.cta-banner__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: var(--gray-900); color: rgba(255,255,255,0.6); padding: 4rem 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer__logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer__logo .nav__logo-icon { width: 36px; height: 36px; font-size: 1.1rem; }
.footer__logo span:last-child { font-weight: 700; font-size: 1rem; color: var(--white); }
.footer__brand p { font-size: 0.875rem; line-height: 1.7; max-width: 35ch; }
.footer__contact { margin-top: 1rem; font-size: 0.875rem; }
.footer__contact a { color: rgba(255,255,255,0.7); transition: color 0.15s; }
.footer__contact a:hover { color: var(--white); }
.footer__links h4 { color: var(--white); font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 1rem; }
.footer__links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links li, .footer__links a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer__links a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.25rem 0; font-size: 0.8rem; }
.footer__bottom p { max-width: none; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #1a56db 0%, #1446b8 100%);
  color: var(--white);
  padding: 4rem 0 3.5rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin: 0.5rem 0 1rem; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.125rem; max-width: 60ch; margin: 0 auto; }

/* ===== SERVICE DETAIL ===== */
.service-detail__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.service-detail__inner--reverse .service-detail__content { order: 2; }
.service-detail__inner--reverse .service-detail__image { order: 1; }
.service-detail__icon { width: 56px; height: 56px; background: var(--primary-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.service-detail__icon svg { width: 30px; height: 30px; stroke: var(--primary); }
.service-detail__icon--accent { background: #fef3c7; }
.service-detail__icon--accent svg { stroke: #d97706; }
.service-detail__content h2 { margin-bottom: 1rem; }
.service-detail__content > p { color: var(--gray-500); margin-bottom: 1.75rem; font-size: 1rem; }
.product-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}
.product-list li {
  font-size: 0.875rem;
  color: var(--gray-700);
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.product-list li::before { content: '✓ '; color: var(--success); font-weight: 700; }
.service-note { font-size: 0.8rem; color: var(--gray-500); margin-top: 1rem; font-style: italic; }
.product-image-placeholder {
  background: var(--primary-light);
  border: 2px dashed #bfdbfe;
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.service-detail__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ===== ABOUT PAGE ===== */
.about-story { display: grid; grid-template-columns: 1fr 280px; gap: 4rem; align-items: start; }
.about-story__main h2 { margin-bottom: 1.25rem; }
.about-story__main p { color: var(--gray-500); margin-bottom: 1.25rem; font-size: 1rem; line-height: 1.8; }
.about-story__sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-card { background: var(--white); border: 1.5px solid var(--gray-100); border-radius: var(--radius-lg); padding: 1.5rem; text-align: center; box-shadow: var(--shadow); }
.about-card__stat { font-size: 2rem; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 0.375rem; }
.about-card p { font-size: 0.8rem; color: var(--gray-500); font-weight: 500; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.value-card { background: var(--white); border: 1.5px solid var(--gray-100); border-radius: var(--radius-lg); padding: 2rem; }
.value-card__number { font-size: 2.5rem; font-weight: 900; color: var(--gray-100); line-height: 1; margin-bottom: 1rem; }
.value-card h3 { margin-bottom: 0.75rem; }
.value-card p { color: var(--gray-500); font-size: 0.9rem; line-height: 1.7; }

.service-area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 2rem; }
.service-area-item { display: flex; align-items: center; gap: 0.75rem; padding: 1rem; background: var(--white); border: 1.5px solid var(--gray-100); border-radius: var(--radius); }
.service-area-item svg { flex-shrink: 0; }
.service-area-item strong { display: block; color: var(--dark); font-size: 0.9rem; }
.service-area-item span { font-size: 0.75rem; color: var(--gray-500); }

/* ===== CONTACT PAGE ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start; }
.contact-form-wrapper h2 { margin-bottom: 0.5rem; }
.contact-form-wrapper > p { color: var(--gray-500); margin-bottom: 2rem; font-size: 0.9375rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--gray-700); }
.form-group label strong { color: var(--primary); }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--dark);
  transition: border-color 0.15s, box-shadow 0.15s;
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgb(26 86 219 / 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-disclaimer { font-size: 0.775rem; color: var(--gray-500); text-align: center; margin-top: -0.25rem; }
.contact-info-card, .contact-hours-card, .contact-cta-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.contact-info-card h3, .contact-hours-card h3, .contact-cta-card h3 { font-size: 1.0625rem; margin-bottom: 1.25rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 0.875rem; margin-bottom: 1.25rem; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item svg { flex-shrink: 0; color: var(--primary); margin-top: 2px; }
.contact-info-item strong { display: block; font-size: 0.8rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.125rem; }
.contact-info-item a { font-size: 0.9375rem; font-weight: 600; color: var(--primary); }
.contact-info-item span { font-size: 0.875rem; color: var(--gray-700); }
.contact-hours-card p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 0.75rem; }
.contact-hours-card strong { color: var(--dark); }
.contact-cta-card p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 1.25rem; }

/* ===== MICRO MARKET CTA ===== */
.micro-market-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.review-card {
  background: white;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.review-card__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.review-card__text {
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.review-card__author strong {
  font-size: 0.9375rem;
  color: var(--dark);
}
.review-card__author span {
  font-size: 0.8125rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-page { min-height: 60vh; display: flex; align-items: center; padding: 4rem 0; }
.thank-you-content { text-align: center; max-width: 540px; margin: 0 auto; }
.thank-you-icon { margin-bottom: 1.5rem; }
.thank-you-icon svg { margin: 0 auto; }
.thank-you-content h1 { margin-bottom: 1rem; }
.thank-you-lead { font-size: 1.125rem; color: var(--gray-700); margin-bottom: 1rem; font-weight: 500; }
.thank-you-content > p { color: var(--gray-500); margin: 0 auto 2rem; font-size: 1rem; }
.thank-you-content > p a { color: var(--primary); font-weight: 600; }
.thank-you-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-us__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-story { grid-template-columns: 1fr; }
  .about-story__sidebar { grid-template-columns: repeat(4, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--gray-100); flex-direction: column; padding: 1rem; gap: 0.25rem; box-shadow: var(--shadow); }
  .nav__links.open { display: flex; }
  .nav__toggle { display: flex; margin-left: auto; }
  .nav__phone { display: none; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__visual { order: -1; }
  .hero__sub { margin: 0 auto 2rem; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .trust-bar__inner { flex-direction: column; align-items: flex-start; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .service-detail__inner, .service-detail__inner--reverse { grid-template-columns: 1fr; }
  .service-detail__inner--reverse .service-detail__content, .service-detail__inner--reverse .service-detail__image { order: unset; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__content p { margin: 0 auto; }
  .cta-banner__actions { justify-content: center; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-story__sidebar { grid-template-columns: 1fr 1fr; }
  .product-list { grid-template-columns: 1fr; }
}
