/* ============================================================
   Village Car Buyer — style.css
   Color palette: green on white, large fonts for retirees
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Open+Sans:wght@400;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --green:        #09C659;
  --green-dark:   #165E34;
  --green-darker: #087335;
  --green-light:  #86F0B2;
  --white:        #FFFFFF;
  --gray-light:   #F4F6F4;
  --gray-mid:     #E0E5E0;
  --text-dark:    #1A1A1A;
  --text-mid:     #444444;
  --font-head:    'Anton', sans-serif;
  --font-body:    'Open Sans', sans-serif;
  --radius:       8px;
  --shadow:       0 4px 18px rgba(0,0,0,0.10);
  --transition:   0.25s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 1rem;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-darker); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; font-size: 1.05rem; }

/* ---------- Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}

.section--gray { background: var(--gray-light); }
.section--green { background: var(--green-dark); color: var(--white); }
.section--green h2,
.section--green h3,
.section--green p,
.section--green li { color: var(--white); }

.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-green-dark { color: var(--green-dark); }

.section-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-darker);
  margin-bottom: 0.5rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--green-darker);
  text-decoration: none;
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border: 3px solid var(--green);
  color: var(--green-dark);
}
.btn--outline:hover {
  background: var(--green);
  color: var(--white);
  text-decoration: none;
}

.btn--white {
  background: var(--white);
  color: var(--green-dark);
}
.btn--white:hover {
  background: var(--green-light);
  color: var(--green-darker);
  text-decoration: none;
}

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.2rem;
}

.btn--phone {
  background: var(--green);
  color: var(--white);
  font-size: 1.3rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn--phone:hover {
  background: var(--green-darker);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
}

/* ---------- HEADER / NAV ---------- */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--green);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  max-width: 1140px;
  margin: 0 auto;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.logo-text {
  line-height: 1.1;
}

.logo-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--green-dark);
  letter-spacing: 0.02em;
}

.logo-text span {
  font-size: 0.78rem;
  color: var(--text-mid);
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--gray-light);
  color: var(--green-darker);
  text-decoration: none;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.header-phone {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-dark);
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--green);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-shrink: 0;
}

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

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-mid);
  padding: 1rem 1.25rem 1.5rem;
  gap: 0.25rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid var(--gray-mid);
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--green-darker); text-decoration: none; }

.mobile-nav .mobile-phone {
  margin-top: 1rem;
  text-align: center;
}

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-darker) 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 420px; height: 420px;
  background: rgba(9,198,89,0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 360px; height: 360px;
  background: rgba(134,240,178,0.07);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tagline {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.75rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.hero h1 .highlight {
  color: var(--green);
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.badge .badge-icon { font-size: 1rem; }

/* Hero form card */
.hero-form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}

.hero-form-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}

.hero-form-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}

/* ---------- FORMS ---------- */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-note {
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-top: 0.5rem;
}

.form-submit { width: 100%; }

/* ---------- TRUST BADGES STRIP ---------- */
.trust-strip {
  background: var(--green-dark);
  padding: 1.75rem 0;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  justify-content: center;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.trust-item .icon {
  font-size: 1.5rem;
  color: var(--green-light);
}

/* ---------- STEPS / HOW IT WORKS ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--green);
  transition: transform var(--transition);
}

.step-card:hover { transform: translateY(-4px); }

.step-number {
  width: 60px;
  height: 60px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.step-card h3 {
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 1rem;
  color: var(--text-mid);
  margin: 0;
}

/* ---------- WHY CHOOSE US CARDS ---------- */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.reason-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--green);
}

.reason-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.reason-card h3 {
  color: var(--green-dark);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.reason-card p {
  font-size: 0.97rem;
  color: var(--text-mid);
  margin: 0;
}

/* ---------- COMPARISON TABLE ---------- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: 1rem;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.compare-table th {
  background: var(--green-dark);
  color: var(--white);
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 1rem;
}

.compare-table th:first-child { width: 40%; }

.compare-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--gray-mid);
  vertical-align: top;
}

.compare-table tr:last-child td { border-bottom: none; }

.compare-table tr:nth-child(even) td { background: var(--gray-light); }

.check { color: var(--green-darker); font-weight: 700; font-size: 1.1rem; }
.cross { color: #CC2222; font-weight: 700; font-size: 1.1rem; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem; left: 1.25rem;
  font-size: 4rem;
  color: var(--green-light);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--text-mid);
  font-style: italic;
}

.testimonial-author {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-dark);
}

.stars { color: #F5A623; font-size: 1.1rem; margin-bottom: 0.25rem; }

/* ---------- SERVICE AREA ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.area-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--green);
}

.area-card h3 {
  color: var(--green-dark);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.area-card p {
  font-size: 0.97rem;
  color: var(--text-mid);
  margin: 0;
}

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 3rem;
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 2.5rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--gray-mid);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--green-darker); }

.faq-question .faq-arrow {
  font-size: 1.2rem;
  color: var(--green);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding: 0 0 1.25rem;
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-darker) 100%);
  color: var(--white);
  padding: 4rem 0 3.5rem;
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 640px; margin: 0 auto; }

/* ---------- GUARANTEE BOX ---------- */
.guarantee-box {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-darker) 100%);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  color: var(--white);
  margin: 3rem 0;
}

.guarantee-amount {
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--white);
  line-height: 1;
}

.guarantee-box h2 { color: var(--white); margin-bottom: 1rem; }
.guarantee-box p { color: rgba(255,255,255,0.9); font-size: 1.1rem; max-width: 560px; margin: 0 auto 1.5rem; }

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.contact-detail {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.contact-detail .icon { font-size: 1.5rem; margin-top: 0.1rem; }

.contact-detail strong { display: block; color: var(--text-dark); }
.contact-detail span { color: var(--text-mid); font-size: 0.97rem; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.hours-table td { padding: 0.45rem 0; font-size: 0.97rem; }
.hours-table td:first-child { font-weight: 700; color: var(--text-dark); width: 50%; }
.hours-table td:last-child { color: var(--text-mid); }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: var(--green);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 2rem; }

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo-text strong { color: var(--white); font-size: 1.4rem; }
.footer-brand .logo-text span { color: rgba(255,255,255,0.65); }
.footer-brand p { margin-top: 1rem; font-size: 0.95rem; color: rgba(255,255,255,0.7); }

.footer-phone-big {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--green-light);
  margin-top: 1rem;
  letter-spacing: 0.02em;
}
.footer-phone-big:hover { color: var(--white); text-decoration: none; }

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.75); font-size: 0.97rem; }
.footer-col ul li a:hover { color: var(--green-light); text-decoration: none; }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 0 0 1.25rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--white); text-decoration: none; }

/* ---------- ABOUT PAGE ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-visual {
  background: linear-gradient(135deg, var(--green-dark), var(--green-darker));
  border-radius: 12px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  color: var(--white);
}

.about-stat { margin-bottom: 1.5rem; }
.about-stat-num {
  font-family: var(--font-head);
  font-size: 4rem;
  color: var(--green-light);
  line-height: 1;
}
.about-stat-label { font-size: 1rem; color: rgba(255,255,255,0.8); margin: 0; }

.values-list { list-style: none; margin-top: 1.5rem; }
.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-mid);
}
.values-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  background: var(--gray-light);
  padding: 0.7rem 0;
  font-size: 0.88rem;
}

.breadcrumb-inner {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex-wrap: wrap;
  color: var(--text-mid);
}

.breadcrumb-inner a { color: var(--text-mid); }
.breadcrumb-inner a:hover { color: var(--green-darker); }
.breadcrumb-inner .sep { color: var(--gray-mid); }
.breadcrumb-inner .current { color: var(--green-dark); font-weight: 600; }

/* ---------- NOTICE / ALERT ---------- */
.notice {
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.97rem;
  margin-bottom: 1rem;
}
.notice--success { background: #E8FAF1; border-left: 4px solid var(--green); color: var(--green-darker); }
.notice--info { background: #E8F4FF; border-left: 4px solid #2196F3; color: #1565C0; }

/* ---------- SCROLL TOP ---------- */
#scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: var(--green-dark);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 500;
  transition: background var(--transition);
}

#scroll-top:hover { background: var(--green); }
#scroll-top.show { display: flex; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { text-align: center; padding: 3.5rem 0 3rem; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-form-card { max-width: 540px; margin: 0 auto; }

  .steps-grid { grid-template-columns: 1fr; max-width: 480px; margin: 2rem auto 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 0.9rem; }
  .compare-table th, .compare-table td { padding: 0.75rem; }
}

@media (max-width: 680px) {
  html { font-size: 17px; }

  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .section { padding: 3.5rem 0; }

  .guarantee-amount { font-size: 3.5rem; }
  .guarantee-box { padding: 2rem 1.25rem; }

  .reasons-grid { grid-template-columns: 1fr; }

  .compare-table { display: block; overflow-x: auto; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .btn--lg { padding: 0.9rem 1.75rem; font-size: 1.1rem; }
  .trust-strip-inner { flex-direction: column; align-items: flex-start; padding: 0 1.25rem; }
}

/* ---------- LOCAL TEAM SECTION ---------- */
.section--local {
  background: linear-gradient(135deg, #f0faf4 0%, #e6f7ed 100%);
  border-top: 4px solid var(--green);
  border-bottom: 4px solid var(--green);
}
.local-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.local-banner-content h2 {
  font-family: var(--font-head);
  color: var(--green-dark);
  line-height: 1.3;
}
.local-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.local-stat {
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: 12px;
  padding: 1.25rem 2rem;
  text-align: center;
  min-width: 180px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.local-stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--green-dark);
  line-height: 1.1;
}
.local-stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-top: 0.3rem;
  line-height: 1.3;
}
.team-photo {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.local-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .local-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .local-banner-content p { margin-left: auto; margin-right: auto; }
  .local-stats {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .local-stat { min-width: 140px; flex: 1; }
}
