/* =============================================
   Roberto Campuzano's Sod — styles.css
   Colors: Deep Green #2D6A2D | Brown #8B5E3C | Off-white #FAFAF7
   ============================================= */

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

:root {
  --green:        #2D6A2D;
  --green-dark:   #1e4a1e;
  --green-light:  #3d8c3d;
  --brown:        #8B5E3C;
  --brown-light:  #a87450;
  --cream:        #FAFAF7;
  --cream-dark:   #f0ede6;
  --text:         #1a1a1a;
  --text-muted:   #5a5a5a;
  --white:        #ffffff;
  --border:       #ddd8ce;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.15);
  --radius:       8px;
  --radius-lg:    16px;
  --transition:   0.25s ease;
  --font:         'Segoe UI', system-ui, -apple-system, sans-serif;
  --max-w:        1200px;
  --section-pad:  5rem 1.25rem;
}

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--white);
  color: var(--green);
  transform: translateY(-1px);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.section-header--left { text-align: left; }
.section-header--left p { margin: 0; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 1rem 0;
}
.site-header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 0.6rem 0;
}
.site-header.scrolled .logo-primary { color: var(--green); }
.site-header.scrolled .logo-secondary { color: var(--brown); }
.site-header.scrolled .main-nav a { color: var(--text); }
.site-header.scrolled .header-cta { background: var(--green); color: var(--white); }
.site-header.scrolled .lang-toggle { color: var(--green); border-color: var(--green); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */
.logo a {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-primary {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  transition: color var(--transition);
}
.logo-secondary {
  font-size: 1.6rem;
  font-weight: 900;
  color: #a8e6a8;
  letter-spacing: 0.1em;
  transition: color var(--transition);
}

/* Nav */
.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}
.main-nav a {
  display: block;
  padding: 0.5rem 0.85rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover { color: var(--white); background: rgba(255,255,255,0.15); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 0.75rem; }

.lang-toggle {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.05em;
}
.lang-toggle:hover { background: rgba(255,255,255,0.15); }

.header-cta {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
  padding: 0.6rem 1.25rem;
  font-size: 0.95rem;
}
.header-cta:hover { background: var(--brown-light); border-color: var(--brown-light); transform: translateY(-1px); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.site-header.scrolled .nav-toggle span { background: var(--text); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20,50,20,0.72) 0%,
    rgba(20,50,20,0.45) 60%,
    rgba(20,50,20,0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 7rem 1.25rem 4rem;
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #a8e6a8;
  margin-bottom: 1rem;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  opacity: 0.92;
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  animation: bounce 2s infinite;
  z-index: 1;
}
.hero-scroll-hint svg { width: 2rem; height: 2rem; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--white);
  padding: 3.5rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.trust-card {
  text-align: center;
  padding: 1.5rem 1rem;
}
.trust-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.trust-icon svg { width: 1.5rem; height: 1.5rem; stroke: var(--green); }
.trust-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--green-dark); }
.trust-card p { font-size: 0.9rem; color: var(--text-muted); }

/* =============================================
   WHAT'S INCLUDED
   ============================================= */
.included {
  padding: var(--section-pad);
  background: var(--cream);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step {
  position: relative;
  text-align: center;
  padding: 2rem 1rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.step:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

/* Subtle flow arrow between steps within each row (not after 3rd or 6th) */
.step:not(:nth-child(3n))::after {
  content: '';
  position: absolute;
  right: -1.15rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(45, 106, 45, 0.22);
  border-top: 2px solid rgba(45, 106, 45, 0.22);
  z-index: 2;
  pointer-events: none;
}

.step-number {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.step-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step-icon svg { width: 1.4rem; height: 1.4rem; stroke: var(--brown); }
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step p { font-size: 0.875rem; color: var(--text-muted); }

/* =============================================
   PRICING
   ============================================= */
.pricing {
  padding: var(--section-pad);
  background: var(--green-dark);
  color: var(--white);
}
.pricing .section-header h2 { color: var(--white); }
.pricing .section-header p { color: rgba(255,255,255,0.8); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.pricing-card {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover { transform: translateY(-4px); }

.pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--brown);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
  z-index: 2;
}
.pricing-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.pricing-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.pricing-card:hover .pricing-img img { transform: scale(1.04); }

.pricing-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}
.pricing-body h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-dark);
}
.price { display: flex; align-items: baseline; gap: 0.25rem; }
.price-amount { font-size: 2.5rem; font-weight: 900; color: var(--green); line-height: 1; }
.price-unit { font-size: 1rem; color: var(--text-muted); }

.grass-traits {
  list-style: none;
  padding: 0;
  flex: 1;
}
.grass-traits li {
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.grass-traits li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.grass-traits li:last-child { border-bottom: none; font-weight: 600; color: var(--text); }

.pricing-body .btn { margin-top: 0.5rem; }

.pricing-note {
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}
.pricing-note a { color: #a8e6a8; text-decoration: underline; }

/* =============================================
   BEFORE & AFTER GALLERY
   ============================================= */
.gallery {
  padding: var(--section-pad);
  background: var(--cream-dark);
}
.slider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
  gap: 2rem;
}

/* Slider component */
.ba-slider-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.ba-slider {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
}
.ba-after,
.ba-before {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ba-after img,
.ba-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-before {
  clip-path: inset(0 50% 0 0);
}
.ba-label {
  position: absolute;
  top: 1rem;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  pointer-events: none;
}
.ba-label-before { left: 1rem; }
.ba-label-after { right: 1rem; }

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  cursor: col-resize;
  z-index: 10;
}
.ba-divider::before,
.ba-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: rgba(255,255,255,0.5);
}
.ba-divider::before { top: 0; bottom: calc(50% + 22px); }
.ba-divider::after { top: calc(50% + 22px); bottom: 0; }

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.ba-handle svg { width: 20px; height: 20px; stroke: var(--green); fill: none; stroke-width: 2; }

/* =============================================
   PROCESS
   ============================================= */
.process {
  padding: var(--section-pad);
  background: var(--white);
}
.process-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.process-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.process-image img { width: 100%; height: 100%; object-fit: cover; }

.process-text { display: flex; flex-direction: column; gap: 1.5rem; }

.process-list {
  list-style: none;
  counter-reset: process;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.process-list li {
  display: flex;
  gap: 1rem;
  counter-increment: process;
  align-items: flex-start;
}
.process-list li::before {
  content: counter(process);
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  margin-top: 0.15rem;
}
.process-list li strong {
  display: block;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--green-dark);
}
.process-list li span { font-size: 0.9rem; color: var(--text-muted); }

/* =============================================
   SERVICE AREA
   ============================================= */
.service-area {
  padding: var(--section-pad);
  background: var(--cream);
}
.service-area-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
.service-cities h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.cities-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.cities-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.cities-list li::before {
  content: "📍";
  font-size: 0.85rem;
}
.service-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.service-map iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: var(--section-pad);
  background: var(--green-dark);
  color: var(--white);
}
.about .section-header h2 { color: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: center;
}
.about-photo-placeholder {
  aspect-ratio: 3/4;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 2px dashed rgba(255,255,255,0.3);
  padding: 2rem;
  text-align: center;
}
.about-photo-placeholder svg { width: 80px; opacity: 0.5; }
.about-photo-placeholder p { font-size: 0.85rem; opacity: 0.6; }

/* Replace photo placeholder: */
.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-text { display: flex; flex-direction: column; gap: 1rem; }
.about-text p { color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.75; }

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #a8e6a8;
  line-height: 1.1;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.65); font-weight: 500; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: var(--section-pad);
  background: var(--cream-dark);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 4px solid var(--green);
}
.stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 0.05em; }
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.reviewer strong { display: block; font-size: 0.95rem; color: var(--green-dark); }
.reviewer span { font-size: 0.85rem; color: var(--text-muted); }

/* =============================================
   FAQ
   ============================================= */
.faq {
  padding: var(--section-pad);
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
  color: var(--green-dark);
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  flex-shrink: 0;
  color: var(--green);
  transition: transform var(--transition);
}
.faq-item[open] summary { background: var(--cream); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  background: var(--cream);
}
.faq-item summary:hover { background: var(--cream-dark); }

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: var(--section-pad);
  background: var(--brown);
  color: var(--white);
}
.contact .section-header h2 { color: var(--white); }
.contact .section-header p { color: rgba(255,255,255,0.85); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info .section-header { margin-bottom: 1rem; }
.contact-info .section-header h2 { color: var(--white); }
.contact-info .section-header p { color: rgba(255,255,255,0.85); }

.contact-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  transition: opacity var(--transition);
}
.contact-phone:hover { opacity: 0.85; }
.contact-phone svg { width: 1.5rem; height: 1.5rem; }
.contact-note { font-size: 0.9rem; color: rgba(255,255,255,0.75); font-style: italic; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}
.form-group textarea { resize: vertical; }
.form-disclaimer { font-size: 0.8rem; color: var(--text-muted); text-align: center; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding: 3.5rem 1.25rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-brand .logo-primary { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-brand .logo-secondary { color: #a8e6a8; font-size: 1.4rem; }
.footer-brand p { font-size: 0.9rem; }
.footer-phone { font-size: 1.25rem; font-weight: 700; color: #a8e6a8; }

.footer-links h4,
.footer-area h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links ul,
.footer-area ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-area li { font-size: 0.9rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.85rem; }
.lang-toggle--footer {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}
.lang-toggle--footer:hover { color: var(--white); border-color: rgba(255,255,255,0.6); }

/* =============================================
   MOBILE NAVIGATION
   ============================================= */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 999;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; }
  .main-nav ul { flex-direction: column; align-items: center; gap: 0.5rem; }
  .main-nav a { font-size: 1.4rem; color: var(--white); padding: 0.75rem 2rem; }
  .main-nav { margin-left: 0; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .process-inner { grid-template-columns: 1fr; }
  .process-image { max-height: 400px; order: -1; }
  .process-image img { height: 400px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-image { max-width: 280px; margin: 0 auto; }
  .contact-inner { grid-template-columns: 1fr; }
  .service-area-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --section-pad: 3.5rem 1.25rem; }
  .hero-content h1 { font-size: 2.25rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; justify-content: center; }
  .slider-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  /* Hide flow arrows on mobile — they only make sense in a row context */
  .step::after { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { padding: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1.25rem; }
  .about-stats { gap: 1.5rem; }
}

@media (max-width: 400px) {
  .steps-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
}

/* =============================================
   UTILITY
   ============================================= */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* Focus visible for keyboard navigation */
:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

/* Smooth section transitions */
section { scroll-margin-top: 80px; }
