/* ============================================
   RELIABLE AUTO REPAIR OF WAYNE — STYLES
   Teal + Slate Grey | Vibrant Modern
   ============================================ */

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

:root {
  --teal-50:  #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;

  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;

  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(2,6,23,.08), 0 1px 2px rgba(2,6,23,.06);
  --shadow-md: 0 4px 16px rgba(2,6,23,.1), 0 2px 6px rgba(2,6,23,.06);
  --shadow-lg: 0 12px 40px rgba(2,6,23,.14), 0 4px 12px rgba(2,6,23,.08);
  --shadow-xl: 0 24px 60px rgba(2,6,23,.18), 0 8px 20px rgba(2,6,23,.1);

  --transition: .25s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: var(--font-body);
  color: var(--slate-800);
  background: var(--slate-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; color: var(--slate-900); }

.accent { color: var(--teal-600); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal-700);
  background: var(--teal-100);
  border: 1px solid var(--teal-200);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--slate-500);
  max-width: 560px;
  line-height: 1.7;
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal-600);
  color: #fff;
  border-color: var(--teal-600);
}
.btn-primary:hover {
  background: var(--teal-700);
  border-color: var(--teal-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,148,136,.3);
}

.btn-secondary {
  background: transparent;
  color: var(--slate-700);
  border-color: var(--slate-300);
}
.btn-secondary:hover {
  border-color: var(--teal-600);
  color: var(--teal-700);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248,250,252,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--slate-200);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(248,250,252,.95);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--slate-900);
}
.logo:hover { color: var(--teal-600); }

.logo-icon { color: var(--teal-600); }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-line1 { font-size: .85rem; font-weight: 500; color: var(--slate-500); letter-spacing: .04em; text-transform: uppercase; }
.logo-line2 { font-size: 1.15rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 16px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--slate-600);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--teal-700); background: var(--teal-50); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-600) !important;
  color: #fff !important;
  border-radius: var(--radius-sm) !important;
  padding: 10px 18px !important;
  font-weight: 600 !important;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--teal-700) !important; transform: translateY(-1px); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--slate-50);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--teal-200);
  top: -200px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: var(--teal-100);
  bottom: -100px; left: -100px;
}
.shape-3 {
  width: 200px; height: 200px;
  background: var(--teal-300);
  top: 40%; left: 35%;
  opacity: .3;
}
.shape-4 {
  width: 120px; height: 120px;
  background: var(--teal-400);
  top: 20%; left: 10%;
  border-radius: var(--radius-lg);
  transform: rotate(30deg);
  filter: blur(0);
  opacity: .25;
}
.shape-5 {
  width: 80px; height: 80px;
  background: var(--slate-300);
  bottom: 25%; right: 30%;
  border-radius: var(--radius-md);
  transform: rotate(45deg);
  filter: blur(0);
  opacity: .3;
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--teal-700);
  background: rgba(13,148,136,.08);
  border: 1px solid rgba(13,148,136,.2);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--teal-500);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--slate-900);
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--slate-500);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--slate-200);
}
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-600);
}
.stat-label {
  font-size: .8rem;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--slate-200);
}

/* Hero Image */
.hero-image { position: relative; }
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: var(--teal-600);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: .3;
}
.hero-float-card {
  position: absolute;
  bottom: 32px;
  left: -32px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  font-size: .9rem;
  color: var(--slate-700);
  animation: float 4s ease-in-out infinite;
}
.hero-float-card svg { color: var(--teal-500); flex-shrink: 0; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Services ── */
.services {
  padding: 100px 0;
  background: #fff;
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-300), var(--teal-500));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover {
  border-color: var(--teal-200);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: #fff;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-100);
  color: var(--teal-700);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--teal-600);
  color: #fff;
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--slate-800);
}
.service-card p {
  font-size: .92rem;
  color: var(--slate-500);
  line-height: 1.7;
}

/* ── About ── */
.about {
  padding: 100px 0;
  background: var(--slate-50);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-images {
  position: relative;
  min-height: 480px;
}
.about-img-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--slate-50);
  z-index: 3;
}
.about-img-secondary img { width: 100%; height: 170px; object-fit: cover; }
.about-accent-block {
  position: absolute;
  top: -30px;
  right: 40px;
  width: 160px;
  height: 160px;
  background: var(--teal-500);
  border-radius: var(--radius-xl);
  opacity: .15;
  z-index: 1;
}

.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 24px; }
.about-text {
  font-size: 1rem;
  color: var(--slate-500);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-values {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: var(--slate-700);
  font-weight: 500;
}
.value-check {
  width: 20px; height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-100);
  color: var(--teal-600);
  border-radius: 50%;
  margin-top: 1px;
}

/* ── Why Us ── */
.why {
  padding: 100px 0;
  background: var(--slate-900);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: var(--teal-700);
  border-radius: 50%;
  opacity: .15;
  filter: blur(100px);
}
.why::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 400px; height: 400px;
  background: var(--teal-600);
  border-radius: 50%;
  opacity: .1;
  filter: blur(80px);
}

.why-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why .section-tag { background: rgba(13,148,136,.2); border-color: rgba(13,148,136,.3); color: var(--teal-300); }
.why .section-title { color: #fff; }
.why .section-desc { color: var(--slate-400); }

.why-list { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.why-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.why-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal-600);
  opacity: .4;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.why-body h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 6px;
}
.why-body p {
  font-size: .92rem;
  color: var(--slate-400);
  line-height: 1.7;
}

.why-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.why-image img { width: 100%; height: 560px; object-fit: cover; }
.why-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--teal-600);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.why-float-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; opacity: .8; }
.why-float-num { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; }

/* ── Reviews ── */
.reviews {
  padding: 100px 0;
  background: #fff;
  position: relative;
}
.reviews::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-400), var(--teal-600), var(--teal-400));
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.review-card:hover {
  border-color: var(--teal-200);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  display: flex;
  gap: 4px;
  color: var(--teal-500);
  margin-bottom: 16px;
}
.review-text {
  font-size: .95rem;
  color: var(--slate-600);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px; height: 40px;
  background: var(--teal-600);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.review-name { display: block; font-weight: 600; font-size: .9rem; color: var(--slate-800); }
.review-location { display: block; font-size: .8rem; color: var(--slate-400); }

/* ── Contact ── */
.contact {
  padding: 100px 0;
  background: var(--slate-50);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-tag { margin-bottom: 16px; }
.contact-info .section-title { margin-bottom: 16px; }
.contact-desc {
  font-size: 1rem;
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: var(--teal-100);
  color: var(--teal-700);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: .9rem;
  color: var(--slate-800);
  margin-bottom: 2px;
}
.contact-item span, .contact-item a {
  font-size: .9rem;
  color: var(--slate-500);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--teal-600); }

/* Form */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.form-note {
  font-size: .88rem;
  color: var(--slate-400);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--slate-800);
  background: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(13,148,136,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-400); }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: var(--radius-sm);
  color: var(--teal-700);
  font-weight: 500;
  font-size: .9rem;
}
.form-success svg { color: var(--teal-500); flex-shrink: 0; }

/* ── Footer ── */
.footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: 72px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--slate-800);
}
.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-logo { margin-bottom: 4px; }
.footer-logo .logo-icon { color: var(--teal-400); }
.footer-logo .logo-line1 { color: var(--slate-500); }
.footer-logo .logo-line2 { color: #fff; }

.footer h4 {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--slate-300);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .9rem;
  color: var(--slate-400);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--teal-400); }

.footer-hours, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .9rem;
}
.footer-contact a {
  color: var(--slate-400);
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--teal-400); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: .82rem;
  color: var(--slate-500);
}

/* ── Mobile Menu Overlay ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(248,250,252,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--slate-800);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--teal-600); background: var(--teal-50); }
.mobile-menu .nav-cta {
  margin-top: 16px;
  font-size: 1.1rem !important;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { max-width: 500px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { min-height: 380px; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-image img { height: 400px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-inner { gap: 40px; }
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-float-card { left: 16px; bottom: 16px; }
  .hero-img-accent { display: none; }

  .services { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }

  .about { padding: 72px 0; }
  .about-img-secondary { right: -10px; bottom: -20px; width: 170px; }
  .about-img-secondary img { height: 130px; }
  .about-accent-block { width: 100px; height: 100px; top: -16px; right: 20px; }
  .about-values { grid-template-columns: 1fr; }

  .why { padding: 72px 0; }
  .why-list { gap: 24px; }

  .reviews { padding: 72px 0; }
  .reviews-grid { grid-template-columns: 1fr; }

  .contact { padding: 72px 0; }
  .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

  .footer { padding: 56px 0 0; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .section-title { font-size: 1.8rem; }
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
