/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #1a1a1a;
  background: #FAFAF5;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== FONT VARIABLES ===== */
:root {
  --forest: #1B4332;
  --forest-light: #2D6A4F;
  --forest-dark: #081C15;
  --off-white: #FAFAF5;
  --cream: #F0EFEB;
  --sand: #E8E4DB;
  --accent-green: #52B788;
  --accent-blue: #48CAE4;
  --accent-amber: #F4A259;
  --accent-teal: #2A9D8F;
  --accent-rose: #E07A5F;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #6b6b6b;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(27,67,50,0.08);
  --shadow-lg: 0 12px 48px rgba(27,67,50,0.12);
}

h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; line-height: 1.15; font-weight: 700; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,250,245,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27,67,50,0.08);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--forest);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:not(.btn):hover { color: var(--forest); }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent-green);
  transition: width 0.3s;
}
.nav-links a:not(.btn):hover::after { width: 100%; }

/* Nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.938rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}
.btn--primary:hover {
  background: var(--forest-light);
  border-color: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,67,50,0.25);
}
.btn--sm { padding: 10px 22px; font-size: 0.875rem; }
.btn--lg { padding: 18px 36px; font-size: 1.063rem; }
.btn--outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn--outline:hover {
  background: var(--forest);
  color: #fff;
  transform: translateY(-2px);
}
.btn--light {
  background: #fff;
  color: var(--forest);
  border-color: #fff;
}
.btn--light:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--off-white);
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape { position: absolute; }
.shape--circle {
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,183,136,0.12) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.shape--rect {
  width: 300px; height: 400px;
  background: rgba(27,67,50,0.04);
  bottom: 60px; left: -80px;
  transform: rotate(-15deg);
  border-radius: 24px;
}
.shape--diamond {
  width: 200px; height: 200px;
  background: rgba(244,162,89,0.08);
  top: 160px; left: 35%;
  transform: rotate(45deg);
  border-radius: 12px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27,67,50,0.08);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.tag-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-headline {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--forest-dark);
  margin-bottom: 24px;
  line-height: 1.08;
}
.text-accent {
  color: var(--accent-green);
  position: relative;
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--text-mid);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--sand);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
}
.stat-label {
  font-size: 0.813rem;
  color: var(--text-light);
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--sand);
}
.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 560/700;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute;
  bottom: -20px; left: -30px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.float-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.hero-float-card strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  color: var(--forest);
}
.hero-float-card span {
  font-size: 0.813rem;
  color: var(--text-light);
}
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ===== SECTION COMMON ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.section-dot {
  width: 28px; height: 3px;
  background: var(--accent-green);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--forest-dark);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.063rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(82,183,136,0.08);
  pointer-events: none;
}
.services .section-label { color: var(--accent-green); }
.services .section-title { color: #fff; }
.services .section-sub { color: rgba(255,255,255,0.7); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.35s;
  backdrop-filter: blur(8px);
}
.service-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 20px 48px rgba(0,0,0,0.2);
}
.service-icon {
  width: 64px; height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
}
.service-icon--green  { background: linear-gradient(135deg, #52B788, #2D6A4F); }
.service-icon--blue   { background: linear-gradient(135deg, #48CAE4, #0077B6); }
.service-icon--amber  { background: linear-gradient(135deg, #F4A259, #E76F51); }
.service-icon--forest { background: linear-gradient(135deg, #95D6A8, #52B788); }
.service-icon--teal   { background: linear-gradient(135deg, #2A9D8F, #1B4332); }
.service-icon--rose   { background: linear-gradient(135deg, #E07A5F, #C1666B); }
.service-card h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.938rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-green);
  transition: gap 0.3s;
}
.service-link:hover { gap: 10px; }

/* ===== WHY US ===== */
.why-us {
  padding: 100px 0;
  background: var(--off-white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-img-stack { position: relative; }
.why-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-img--1 { aspect-ratio: 400/500; }
.why-img--2 {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 60%;
  aspect-ratio: 400/300;
  border: 6px solid var(--off-white);
}
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-badge {
  position: absolute;
  top: -20px; right: -20px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--accent-amber);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.688rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(244,162,89,0.4);
  z-index: 2;
}
.why-badge svg { width: 22px; height: 22px; }
.why-content .section-sub { margin-bottom: 32px; }
.why-list { display: flex; flex-direction: column; gap: 28px; }
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-check {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(82,183,136,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.063rem;
  color: var(--forest);
  margin-bottom: 4px;
}
.why-item p {
  font-size: 0.938rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.about::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(27,67,50,0.04);
  pointer-events: none;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-text p:first-of-type { font-size: 1.063rem; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-feature {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}
.af-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 4px;
}
.af-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.938rem;
  color: var(--forest);
}
.about-visual { position: relative; }
.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 520/480;
}
.about-img-accent {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 55%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 5px solid var(--cream);
  box-shadow: var(--shadow);
  aspect-ratio: 320/240;
}
.about-img-accent img, .about-img-main img { width: 100%; height: 100%; object-fit: cover; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: var(--off-white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--sand);
  transition: all 0.3s;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-green);
}
.testimonial-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-green);
  opacity: 0.3;
  position: absolute;
  top: 16px; left: 24px;
  pointer-events: none;
}
.testimonial-text {
  font-size: 0.938rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  padding-top: 24px;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-meta strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  color: var(--forest);
}
.testimonial-meta span {
  font-size: 0.813rem;
  color: var(--text-light);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 100px 0;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-shape { position: absolute; border-radius: 50%; }
.cta-shape--1 {
  width: 400px; height: 400px;
  background: rgba(82,183,136,0.1);
  top: -150px; left: -100px;
}
.cta-shape--2 {
  width: 250px; height: 250px;
  background: rgba(244,162,89,0.08);
  bottom: -80px; right: 10%;
}
.cta-shape--3 {
  width: 120px; height: 120px;
  background: rgba(72,202,228,0.1);
  top: 30%; right: 25%;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 48px;
}
.cta-content { flex: 1; }
.cta-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #fff;
  margin-bottom: 16px;
}
.cta-text {
  font-size: 1.063rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 480px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  flex-shrink: 0;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.ci-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(27,67,50,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.938rem;
  color: var(--forest);
  margin-bottom: 4px;
}
.contact-item p {
  font-size: 0.938rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.contact-item a {
  color: var(--forest-light);
  border-bottom: 1px solid rgba(45,106,79,0.2);
  transition: border-color 0.2s;
}
.contact-item a:hover { border-color: var(--accent-green); }
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--sand);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--sand);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.938rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 4px rgba(82,183,136,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(82,183,136,0.1);
  border-radius: var(--radius-sm);
  color: var(--forest);
  font-weight: 500;
  margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success svg { flex-shrink: 0; color: var(--accent-green); }

/* ===== FOOTER ===== */
.footer {
  background: var(--forest-dark);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.063rem;
  color: #fff;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.938rem; line-height: 1.7; max-width: 280px; }
.footer-links strong,
.footer-contact strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.938rem;
  color: #fff;
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover { color: var(--accent-green); padding-left: 4px; }
.footer-contact p { font-size: 0.938rem; line-height: 1.8; }
.footer-contact a {
  color: var(--accent-green);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--accent-blue); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.813rem;
  color: rgba(255,255,255,0.4);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s;
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--forest-light);
  transform: translateY(-4px);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
  .hero-img-wrap { aspect-ratio: 480/400; }
  .hero-float-card { left: 10px; bottom: -10px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-img-stack { max-width: 480px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-width: 480px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(250,250,245,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--sand);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .why-img--2 { right: -10px; bottom: -20px; }
  .about-img-accent { right: -10px; bottom: -15px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 1.875rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-features { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
