/* ============================================
   Kamryn's Lawn Care — Design System
   Dark + Gold theme matching business card
   ============================================ */

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

/* --- CSS Variables --- */
:root {
  --clr-primary: #c9a84c;
  --clr-primary-dark: #b08f3a;
  --clr-primary-light: #ddc06a;
  --clr-primary-glow: rgba(201, 168, 76, 0.2);
  --clr-accent: #3a7d44;
  --clr-accent-light: #5a9e64;
  --clr-bg: #141414;
  --clr-bg-alt: #1c1c1c;
  --clr-bg-card: #222222;
  --clr-surface: rgba(201, 168, 76, 0.07);
  --clr-border: rgba(201, 168, 76, 0.15);
  --clr-border-light: rgba(255, 255, 255, 0.08);
  --clr-text: #f0ece2;
  --clr-text-muted: #9a9589;
  --clr-text-light: #706b60;
  --clr-white: #ffffff;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-soft: 0 2px 20px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.5);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.section-padding { padding: 100px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  background: var(--clr-surface);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--clr-text);
}

.section-title .highlight {
  color: var(--clr-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  max-width: 600px;
  line-height: 1.8;
}

/* --- Background --- */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-blobs .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.15;
}

.bg-blobs .blob-1 {
  width: 500px;
  height: 500px;
  background: var(--clr-primary);
  top: -12%;
  left: -8%;
}

.bg-blobs .blob-2 {
  width: 400px;
  height: 400px;
  background: #8a6d2b;
  bottom: -8%;
  right: -6%;
}

.bg-blobs .blob-3 {
  width: 300px;
  height: 300px;
  background: var(--clr-primary-dark);
  top: 50%;
  left: 55%;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border-light);
  padding: 10px 0;
  box-shadow: var(--shadow-soft);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand .brand-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.navbar-brand .brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.navbar-brand .brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--clr-text);
}

.navbar-brand .brand-text span {
  color: var(--clr-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  color: var(--clr-text-muted);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-text);
}

.nav-links a.active {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  color: var(--clr-primary);
}

.nav-cta {
  background: var(--clr-primary) !important;
  color: var(--clr-bg) !important;
  font-weight: 600 !important;
  border: none !important;
  padding: 10px 24px !important;
}

.nav-cta:hover {
  background: var(--clr-primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--clr-primary-glow);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
  z-index: 0;
}

.hero-grid-overlay { display: none; }

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 100px;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--clr-primary);
  margin-bottom: 28px;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--clr-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--clr-text);
}

.hero-title .line { display: block; }

.hero-title .gradient-text {
  color: var(--clr-primary);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--clr-text-muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--clr-primary);
  color: var(--clr-bg);
  box-shadow: 0 4px 16px var(--clr-primary-glow);
}

.btn-primary:hover {
  background: var(--clr-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--clr-primary-glow);
}

.btn-outline {
  background: transparent;
  color: var(--clr-text);
  border: 1.5px solid var(--clr-border-light);
}

.btn-outline:hover {
  border-color: var(--clr-primary);
  background: var(--clr-surface);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--clr-border-light);
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-primary);
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, #2a2a2a, #1e1e1e);
  border: 1px solid var(--clr-border-light);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hero-card-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

/* CTA Business Card Image */
.cta-card-image {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.cta-card-image img {
  max-width: 520px;
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
}

.cta-card-image img:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.hero-card-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 24px;
  animation: float 4s ease-in-out infinite;
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--clr-text);
}

.hero-card-text {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* Floating badges */
.hero-float-badge {
  position: absolute;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
  animation: float 5s ease-in-out infinite;
}

.hero-float-badge.top-right { top: 30px; right: -20px; animation-delay: -1s; }
.hero-float-badge.bottom-left { bottom: 40px; left: -20px; animation-delay: -3s; }

.float-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--clr-surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-badge-text .fb-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-text);
}

.float-badge-text .fb-sub {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}

/* --- Services Section --- */
.services {
  position: relative;
  z-index: 1;
  background: var(--clr-bg-alt);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .section-subtitle { margin: 0 auto; }

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

.service-card {
  position: relative;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-light);
  transition: var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-primary-light));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-border);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
}

.service-card:hover .service-icon svg { stroke: var(--clr-bg); }

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--clr-primary);
  transition: var(--transition);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--clr-text);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* --- Why Choose Us --- */
.why-us {
  position: relative;
  z-index: 1;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-content .section-subtitle { margin-bottom: 40px; }

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-us-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-us-item .check-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.why-us-item .check-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--clr-primary);
}

.why-us-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--clr-text);
}

.why-us-item p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  z-index: 1;
  background: var(--clr-bg-alt);
}

.cta-box {
  text-align: center;
  padding: 80px 60px;
  border-radius: var(--radius-xl);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-light);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
}

.cta-box .section-title,
.cta-box .section-subtitle,
.cta-box .hero-buttons,
.cta-box .cta-card-image {
  position: relative;
  z-index: 2;
}

.cta-box .section-subtitle { margin: 0 auto 40px; }
.cta-box .hero-buttons { justify-content: center; }

/* --- Footer --- */
.footer {
  position: relative;
  z-index: 1;
  padding: 60px 0 30px;
  border-top: 1px solid var(--clr-border-light);
  background: var(--clr-bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .brand-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--clr-text);
}

.footer-brand .brand-text span { color: var(--clr-primary); }

.footer-brand p {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--clr-text);
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--clr-primary);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--clr-border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
}

.footer-socials a:hover svg { stroke: var(--clr-bg); }

.footer-socials a svg {
  width: 18px;
  height: 18px;
  stroke: var(--clr-text-muted);
  transition: var(--transition);
}

/* --- Info Page --- */

.page-header {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  z-index: 1;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
}

.page-header .section-title,
.page-header .section-subtitle,
.page-header .section-label {
  position: relative;
  z-index: 2;
}

.page-header .section-subtitle { margin: 0 auto; }

/* About Section */
.about-section { position: relative; z-index: 1; }

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

.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--clr-text);
}

.about-content p {
  color: var(--clr-text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-visual { position: relative; }

.about-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-light);
  box-shadow: var(--shadow-card);
}

.about-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.about-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--clr-bg);
}

.about-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-text);
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-value-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: var(--clr-primary);
  margin-top: 7px;
}

.about-value-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--clr-text);
}

.about-value-item p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 0;
}

/* Process Section */
.process-section {
  position: relative;
  z-index: 1;
  background: var(--clr-bg-alt);
}

.process-header {
  text-align: center;
  margin-bottom: 60px;
}

.process-header .section-subtitle { margin: 0 auto; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  position: relative;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-light);
  text-align: center;
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: var(--clr-border);
  box-shadow: var(--shadow-hover);
}

.process-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--clr-primary);
  line-height: 1;
  margin-bottom: 16px;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--clr-text);
}

.process-step p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* Coverage Section */
.coverage-section { position: relative; z-index: 1; }

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

.coverage-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--clr-text);
}

.coverage-content p {
  color: var(--clr-text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.coverage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.coverage-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--clr-text-muted);
}

.coverage-list li svg {
  width: 18px;
  height: 18px;
  stroke: var(--clr-primary);
  min-width: 18px;
}

.coverage-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-stat-card {
  padding: 28px 32px;
  border-radius: var(--radius-md);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-light);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.info-stat-card:hover {
  transform: translateX(8px);
  border-color: var(--clr-border);
  box-shadow: var(--shadow-hover);
}

.info-stat-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--radius-md);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-stat-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--clr-primary);
}

.info-stat-text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-primary);
}

.info-stat-text p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero .container {
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .why-us-grid,
  .about-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(20, 20, 20, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 8px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--clr-border-light);
  }

  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; z-index: 1001; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .process-grid { grid-template-columns: 1fr; }
  .coverage-list { grid-template-columns: 1fr; }

  .cta-box {
    padding: 50px 24px;
  }
}
