@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,700&display=swap');

/* ── CSS VARIABLES (exact from index.css) ── */
:root {
  --font-inter: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;

  --background:        hsl(40, 20%, 98%);
  --foreground:        hsl(220, 20%, 12%);
  --card:              hsl(0, 0%, 100%);
  --card-foreground:   hsl(220, 20%, 12%);
  --primary:           hsl(4, 75%, 55%);
  --primary-foreground:hsl(0, 0%, 100%);
  --secondary:         hsl(220, 15%, 16%);
  --secondary-foreground: hsl(0, 0%, 98%);
  --muted:             hsl(210, 20%, 94%);
  --muted-foreground:  hsl(220, 10%, 45%);
  --accent:            hsl(4, 75%, 55%);
  --border:            hsl(40, 15%, 88%);
  --input:             hsl(40, 15%, 88%);
  --radius:            0.75rem;

  /* Derived */
  --primary-10: hsla(4, 75%, 55%, 0.10);
  --primary-20: hsla(4, 75%, 55%, 0.20);
  --primary-30: hsla(4, 75%, 55%, 0.30);
  --primary-90: hsla(4, 75%, 55%, 0.90);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-inter);
  background: var(--background);
  color: var(--foreground);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-inter); }

/* ── TYPOGRAPHY ── */
.font-display { font-family: var(--font-display); }

/* ── NAVBAR ── */
nav#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.5s ease;
  background: transparent;
}
nav#navbar.scrolled {
  background: hsla(0,0%,100%,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  cursor: pointer;
}
.nav-logo-img {
  width: 40px; height: 40px;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-img img { width: 100%; height: 100%; object-fit: contain; }
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  transition: color 0.3s;
}
.nav-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s;
}
nav#navbar:not(.scrolled) .nav-logo-name { color: white; }
nav#navbar:not(.scrolled) .nav-logo-sub  { color: rgba(255,255,255,0.7); }
nav#navbar.scrolled .nav-logo-name { color: var(--foreground); }
nav#navbar.scrolled .nav-logo-sub  { color: var(--muted-foreground); }

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-links button {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  background: transparent;
  border-radius: var(--radius);
  transition: all 0.2s;
}
nav#navbar:not(.scrolled) .nav-links button {
  color: rgba(255,255,255,0.8);
}
nav#navbar:not(.scrolled) .nav-links button:hover {
  color: white;
  background: rgba(255,255,255,0.1);
}
nav#navbar.scrolled .nav-links button {
  color: var(--muted-foreground);
}
nav#navbar.scrolled .nav-links button:hover {
  color: var(--foreground);
  background: var(--muted);
}

.nav-right {
  display: flex; align-items: center; gap: 0.75rem;
}
.nav-phone {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.875rem; font-weight: 500;
  transition: color 0.3s;
}
nav#navbar:not(.scrolled) .nav-phone { color: white; }
nav#navbar.scrolled .nav-phone { color: var(--foreground); }

.btn-reach {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.55rem 1.5rem;
  border: none;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.btn-reach:hover { background: hsl(4,75%,45%); transform: translateY(-1px); }

.nav-mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0.5rem;
}
nav#navbar:not(.scrolled) .nav-mobile-toggle svg { stroke: white; }
nav#navbar.scrolled .nav-mobile-toggle svg { stroke: var(--foreground); }

.nav-mobile-menu {
  display: none;
  background: var(--card);
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  padding: 1rem;
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu button {
  display: block; width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  background: transparent; border: none;
  color: var(--foreground);
  font-size: 0.95rem; font-weight: 500;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.nav-mobile-menu button:hover { background: var(--muted); }
.nav-mobile-menu .btn-reach-mobile {
  margin-top: 0.75rem;
  width: 100%;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.nav-mobile-menu .btn-reach-mobile button {
  background: var(--primary);
  color: white;
  border-radius: 9999px;
  text-align: center;
}

/* ── HERO ── */
#home {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-gradient-1 {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.80), rgba(0,0,0,0.60), rgba(0,0,0,0.30));
}
.hero-gradient-2 {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.50), transparent, transparent);
}
.hero-content {
  position: relative; z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 2rem;
  width: 100%;
}
.hero-inner { max-width: 760px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary-20);
  backdrop-filter: blur(8px);
  border: 1px solid var(--primary-30);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}
.hero-badge span {
  color: var(--primary);
  font-size: 0.875rem; font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title-accent {
  display: block;
  color: var(--primary);
}

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.70);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 4rem;
}
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 9999px;
  font-size: 0.95rem; font-weight: 600;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.btn-hero-primary:hover { background: hsl(4,75%,45%); transform: translateY(-2px); }
.btn-hero-primary svg { transition: transform 0.2s; }
.btn-hero-primary:hover svg { transform: translateX(4px); }

.btn-hero-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.30);
  color: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 0.95rem; font-weight: 600;
  transition: background 0.2s;
  cursor: pointer;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.10); }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 1rem;
}
.hero-stat-badge {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  padding: 0.65rem 1.25rem;
}
.hero-stat-badge svg { color: var(--primary); }
.hero-stat-badge span { color: rgba(255,255,255,0.90); font-size: 0.875rem; font-weight: 500; }

.hero-scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.scroll-dot {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.30);
  border-radius: 12px;
  display: flex; justify-content: center;
  padding-top: 8px;
}
.scroll-dot-inner {
  width: 6px; height: 12px;
  background: rgba(255,255,255,0.50);
  border-radius: 3px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* ── SECTION COMMONS ── */
section { padding: 6rem 2rem; }
.section-container { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
  display: block;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.section-desc {
  color: var(--muted-foreground);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── SERVICES ── */
#services { background: var(--background); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.5s ease;
}
.service-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: var(--primary-20);
  transform: translateY(-4px);
}
.service-icon {
  width: 56px; height: 56px;
  background: var(--primary-10);
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: var(--primary-20); }
.service-icon svg { color: var(--primary); width: 28px; height: 28px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}
.service-card p { color: var(--muted-foreground); line-height: 1.7; font-size: 0.95rem; }

/* ── STATS BAR ── */
#stats { background: var(--primary); padding: 4rem 2rem; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1280px; margin: 0 auto;
}
.stat-item { text-align: center; }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 0.5rem;
  display: block;
}
.stat-label {
  color: rgba(255,255,255,0.70);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── PROJECTS ── */
#projects { background: hsl(210, 20%, 94%); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.project-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.project-card:hover img { transform: scale(1.10); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.80), rgba(0,0,0,0.20), transparent);
  opacity: 0.70;
  transition: opacity 0.5s;
}
.project-card:hover .project-overlay { opacity: 0.90; }
.project-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem 2rem;
}
.project-badge {
  display: inline-block;
  background: var(--primary-20);
  backdrop-filter: blur(8px);
  border: 1px solid var(--primary-30);
  color: var(--primary);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.6rem;
}
.project-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: white; margin-bottom: 0.3rem;
}
.project-info p { color: rgba(255,255,255,0.70); font-size: 0.875rem; }

/* ── ABOUT ── */
#about { background: var(--background); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; border-radius: 1rem;
  object-fit: cover; aspect-ratio: 4/3;
}
.about-stat-card {
  position: absolute;
  bottom: -1.5rem; right: -1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  min-width: 180px;
}
.about-stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 700;
  color: var(--primary);
  display: block; line-height: 1;
  margin-bottom: 0.4rem;
}
.about-stat-label { color: var(--muted-foreground); font-size: 0.875rem; line-height: 1.4; }

.about-content .section-label { text-align: left; }
.about-content .section-title { text-align: left; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.about-content p {
  color: var(--muted-foreground);
  font-size: 1.05rem; line-height: 1.8;
  margin-bottom: 1rem;
}
.about-checks {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem; margin-top: 2rem;
}
.about-check {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.875rem; font-weight: 500;
  color: var(--foreground);
}
.about-check svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

/* ── CONTACT ── */
#contact { background: var(--background); }
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; }
.contact-icon {
  width: 48px; height: 48px;
  background: var(--primary-10);
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { color: var(--primary); width: 20px; height: 20px; }
.contact-item-label {
  font-size: 0.875rem; font-weight: 600;
  color: var(--foreground); margin-bottom: 0.25rem;
  display: block;
}
.contact-item-value {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6; white-space: pre-line;
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.875rem; font-weight: 500; color: var(--foreground); }
.form-group input,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  font-family: var(--font-inter);
  color: var(--foreground);
  background: var(--card);
  outline: none;
  transition: border-color 0.2s;
  height: 48px;
}
.form-group textarea { height: auto; min-height: 140px; resize: none; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: hsl(220,10%,70%); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-full { margin-bottom: 1.25rem; }

.btn-send {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.9rem;
  border-radius: 9999px;
  font-size: 0.95rem; font-weight: 600;
  font-family: var(--font-inter);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: background 0.2s, transform 0.15s;
}
.btn-send:hover { background: hsl(4,75%,45%); transform: translateY(-1px); }
.btn-send.sending { opacity: 0.7; pointer-events: none; }
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.toast-success {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 500;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  z-index: 9999;
  animation: slideIn 0.3s ease;
  display: none;
}
.toast-success.show { display: block; }
@keyframes slideIn {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ── FOOTER ── */
footer {
  background: var(--secondary);
  color: var(--secondary-foreground);
}
.footer-main {
  max-width: 1280px; margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}
.footer-logo {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1rem;
}
.footer-logo-img {
  width: 40px; height: 40px;
  border-radius: 8px; overflow: hidden;
  background: white;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-img img { width: 100%; height: 100%; object-fit: contain; }
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: white; display: block;
}
.footer-logo-sub {
  font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
}
.footer-brand-desc {
  color: rgba(255,255,255,0.60);
  font-size: 0.875rem; line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-contacts { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-contacts a {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.60);
  transition: color 0.2s;
}
.footer-contacts a:hover { color: var(--primary); }
.footer-contacts a svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.footer-contacts .footer-address {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.60);
}
.footer-contacts .footer-address svg { margin-top: 2px; flex-shrink: 0; }

.footer-col h4 {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: white; margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li button,
.footer-col ul li span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.60);
  background: transparent; border: none;
  transition: color 0.2s; padding: 0;
  display: block;
}
.footer-col ul li button:hover { color: var(--primary); }

.footer-hours-row {
  display: flex; justify-content: space-between;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.60);
  margin-bottom: 0.25rem;
}
.footer-hours-row span:last-child { color: white; font-weight: 600; }
.footer-hours-note {
  font-size: 0.75rem; font-style: italic;
  color: rgba(255,255,255,0.40);
  display: block; margin-bottom: 1.5rem;
}
.footer-appt {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 0.75rem;
  padding: 1rem 1.2rem;
}
.footer-appt strong { display: block; font-size: 0.875rem; color: white; margin-bottom: 0.2rem; }
.footer-appt small { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.50); margin-bottom: 0.5rem; }
.footer-appt a { color: var(--primary); font-size: 0.9rem; font-weight: 700; }
.footer-appt a:hover { text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
}
.footer-bottom-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p,
.footer-bottom a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.40);
}
.footer-bottom a:hover { color: rgba(255,255,255,0.60); }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid { gap: 3rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .nav-mobile-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-stat-card { bottom: 10px; right: 10px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .about-checks { grid-template-columns: 1fr; }
  .hero-content { padding: 6rem 1.5rem; }
  section { padding: 4rem 1.5rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-buttons { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { text-align: center; justify-content: center; }
}
