/* ============================================
   YARD FORCE RVA — Main Stylesheet
   Brand: Deep Green #007A33, Lime #78BE20, Earth #8B6914
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;1,400&display=swap');

/* ---- CSS Variables ---- */
:root {
  --green-dark:   #007A33;
  --green-mid:    #005C26;
  --green-deep:   #003D1A;
  --lime:         #78BE20;
  --lime-light:   #9ED84A;
  --earth:        #8B6914;
  --earth-light:  #C49A28;
  --cream:        #F5F0E8;
  --white:        #FFFFFF;
  --gray-100:     #F8F8F6;
  --gray-200:     #EBEBEB;
  --gray-400:     #9A9A8E;
  --gray-700:     #3D3D36;
  --gray-900:     #1A1A14;
  --font-display: 'Oswald', sans-serif;
  --font-body:    'Source Sans 3', sans-serif;
  --radius:       6px;
  --radius-lg:    12px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.18);
  --transition:   0.25s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--lime); }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--gray-900);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
.section-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  display: block;
  margin-bottom: 0.5rem;
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 88px 0; }
.section--alt { background: var(--gray-100); }
.section--dark {
  background: var(--green-deep);
  color: var(--white);
}
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--cream { background: var(--cream); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--lime);
  color: var(--green-deep);
  border-color: var(--lime);
}
.btn-primary:hover {
  background: var(--lime-light);
  border-color: var(--lime-light);
  color: var(--green-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(120,190,32,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-dark {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn-dark:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
  transform: translateY(-1px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--green-deep);
  border-bottom: 3px solid var(--lime);
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-logo img {
  height: 80px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--lime);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 8px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
  display: block;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--green-mid);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { margin-top: 16px; width: fit-content; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(0,61,26,0.97) 0%, rgba(0,61,26,0.85) 50%, rgba(0,92,38,0.75) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(120,190,32,0.08) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(120,190,32,0.06) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(120,190,32,0.15);
  border: 1px solid rgba(120,190,32,0.4);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
  font-size: 0.82rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--lime); }
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-trust {
  margin-top: 56px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.hero-trust-item svg { color: var(--lime); flex-shrink: 0; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--lime);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-deep);
}

/* ============================================
   SERVICES
   ============================================ */
.services-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.services-intro p { font-size: 1.1rem; color: var(--gray-400); margin-top: 16px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--lime);
}
.service-card-img {
  height: 200px;
  background: var(--gray-200);
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--lime);
  color: var(--green-deep);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-icon {
  width: 44px; height: 44px;
  background: rgba(120,190,32,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--green-dark);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--green-deep); }
.service-card p { font-size: 0.93rem; color: var(--gray-400); line-height: 1.6; flex: 1; }
.service-card-includes {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.service-card-includes li {
  font-size: 0.88rem;
  color: var(--gray-700);
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
}
.service-card-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
}
.service-card-cta {
  margin-top: 20px;
}
.service-card-cta a {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.service-card-cta a:hover { gap: 12px; color: var(--lime); }

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--lime), rgba(120,190,32,0.3));
}
.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--green-dark);
  border: 3px solid var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lime);
}
.step h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--white); }
.step p { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* ============================================
   PLANS
   ============================================ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.plan-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
}
.plan-card.featured {
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(120,190,32,0.12);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--green-deep);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-card h3 { font-size: 1.3rem; color: var(--green-deep); margin-bottom: 8px; }
.plan-card p { font-size: 0.93rem; color: var(--gray-400); margin-bottom: 24px; }
.plan-includes { margin-bottom: 28px; }
.plan-includes li {
  font-size: 0.9rem;
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-200);
  padding-left: 22px;
  position: relative;
  color: var(--gray-700);
}
.plan-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 700;
}
.plan-includes li.exclude::before { content: '✗'; color: var(--gray-400); }
.plan-includes li.exclude { color: var(--gray-400); }

/* ============================================
   SERVICE AREA
   ============================================ */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.area-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: all var(--transition);
}
.area-chip:hover {
  border-color: var(--lime);
  color: var(--green-dark);
  background: rgba(120,190,32,0.06);
  transform: translateY(-2px);
}
.area-chip svg { color: var(--lime); flex-shrink: 0; }

/* ============================================
   CONTACT / QUOTE FORM
   ============================================ */
.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.form-info h2 { color: var(--white); margin-bottom: 16px; }
.form-info p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 32px; }
.form-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.82);
  font-size: 0.93rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.form-info-list li svg { color: var(--lime); margin-top: 2px; flex-shrink: 0; }
.form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-box h3 {
  font-size: 1.4rem;
  color: var(--green-deep);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--lime);
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color var(--transition);
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(120,190,32,0.15);
}
textarea { resize: vertical; min-height: 100px; }
.form-upload {
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--gray-100);
}
.form-upload:hover { border-color: var(--lime); background: rgba(120,190,32,0.04); }
.form-upload input[type="file"] { display: none; }
.form-upload p { font-size: 0.88rem; color: var(--gray-400); margin-top: 8px; }
.form-upload svg { color: var(--green-dark); margin: 0 auto; }
.form-disclaimer {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 16px;
  line-height: 1.5;
}
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success svg { color: var(--lime); margin: 0 auto 16px; }
.form-success h3 { color: var(--green-deep); margin-bottom: 8px; }
.form-success p { color: var(--gray-400); font-size: 0.93rem; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--green-dark); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(120,190,32,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-dark);
  transition: all var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--lime);
  color: var(--green-deep);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 22px;
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--green-deep);
  border-top: 3px solid var(--lime);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 56px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}
.footer-col ul li { padding: 5px 0; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--lime); }
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  padding: 5px 0;
  color: rgba(255,255,255,0.65);
}
.footer-contact li svg { color: var(--lime); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  max-width: 640px;
  line-height: 1.6;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  padding: 72px 0;
  text-align: center;
  border-bottom: 3px solid var(--lime);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--lime); }

/* ============================================
   PET WASTE CALLOUT
   ============================================ */
.callout-strip {
  background: linear-gradient(135deg, var(--earth), var(--earth-light));
  padding: 40px 0;
  text-align: center;
}
.callout-strip h2 { color: var(--white); margin-bottom: 10px; }
.callout-strip p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 24px; }

/* ============================================
   TESTIMONIAL STRIP
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.review-stars { color: var(--earth-light); font-size: 1rem; margin-bottom: 12px; }
.review-text {
  font-size: 0.93rem;
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.review-author {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
}
.review-location { font-size: 0.8rem; color: var(--gray-400); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(120,190,32,0.12) 0%, transparent 70%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.78); margin-bottom: 32px; position: relative; font-size: 1.05rem; }
.cta-banner .btn { position: relative; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 480px;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.value-item {
  background: rgba(120,190,32,0.08);
  border: 1px solid rgba(120,190,32,0.2);
  border-radius: var(--radius);
  padding: 20px;
}
.value-item h4 { color: var(--green-dark); margin-bottom: 6px; font-size: 0.95rem; }
.value-item p { font-size: 0.85rem; color: var(--gray-400); }

/* ============================================
   SERVICE AREA PAGE
   ============================================ */
.area-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.area-card:hover {
  border-color: var(--lime);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.area-card h3 { font-size: 1.2rem; color: var(--green-deep); margin-bottom: 8px; }
.area-card p { font-size: 0.88rem; color: var(--gray-400); margin-bottom: 16px; }
.area-card-services li {
  font-size: 0.85rem;
  color: var(--gray-700);
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
}
.area-card-services li::before { content: '→'; position: absolute; left: 0; color: var(--lime); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps-grid::before { display: none; }
  .form-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { min-height: 100svh; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .steps-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-trust { gap: 16px; }
  .trust-bar-inner { gap: 24px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .area-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .form-box { padding: 24px; }
}

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp 0.6s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.25s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.4s; opacity: 0; }
.animate-delay-4 { animation-delay: 0.55s; opacity: 0; }
