/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; color: #1a1a1a; background: #fff; line-height: 1.6; }
img, video { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Variables ── */
:root {
  --primary: #2e7d32;
  --primary-dark: #1b5e20;
  --primary-light: #e8f5e9;
  --secondary: #4caf50;
  --white: #fff;
  --bg: #f9fafb;
  --border: #e5e7eb;
  --muted: #6b7280;
  --card-shadow: 0 1px 4px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.06);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 9999px;
}

/* ── Layout ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
@media(min-width:768px) { .container { padding: 0 32px; } }
@media(min-width:1024px) { .container { padding: 0 48px; } }
.text-center { text-align: center; }
.bg-white { background: #fff; }
.bg-muted { background: #f9fafb; }
.bg-muted-border { background: #f3f4f6; border-bottom: 1px solid var(--border); }
.bg-primary { background: var(--primary); }
.bg-primary-light { background: var(--primary-light); }
.text-white { color: #fff; }

/* ── Header ── */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 80px; }
.header-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { height: 81px; width: auto; object-fit: contain; }
.header-brand { display: none; flex-direction: column; }
@media(min-width:640px) { .header-brand { display: flex; } }
.brand-name { font-weight: 800; font-size: 1rem; color: var(--primary); line-height: 1.2; }
.brand-tagline { font-size: .65rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.header-nav { margin-left: auto; }
.nav-list { display: none; gap: 8px; align-items: center; }
@media(min-width:768px) { .nav-list { display: flex; } }
.nav-list a { padding: 8px 14px; font-size: .9rem; font-weight: 500; color: #374151; border-radius: var(--radius-full); transition: color .2s, background .2s; }
.nav-list a:hover, .nav-list a.active { color: var(--primary); background: var(--primary-light); }
.nav-list a.active { font-weight: 700; border-bottom: 2px solid var(--primary); border-radius: 0; background: transparent; padding-bottom: 6px; }
.btn-call { display: none; align-items: center; gap: 8px; background: var(--primary); color: #fff; padding: 10px 20px; border-radius: var(--radius-full); font-size: .875rem; font-weight: 700; transition: background .2s; white-space: nowrap; }
@media(min-width:768px) { .btn-call { display: flex; } }
.btn-call:hover { background: var(--primary-dark); }

/* ── Hamburger ── */
.hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; border-radius: 8px; transition: background .2s; margin-left: auto; }
@media(min-width:768px) { .hamburger { display: none; } }
.hamburger:hover { background: var(--primary-light); }
.hamburger span { display: block; width: 24px; height: 2px; background: #374151; border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav ── */
.mobile-nav { display: none; position: fixed; top: 80px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 16px; z-index: 99; box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a { display: block; padding: 12px 16px; font-weight: 600; color: #374151; border-radius: var(--radius-sm); transition: background .2s; }
.mobile-nav a:hover, .mobile-nav a.active { background: var(--primary-light); color: var(--primary); }
.mobile-nav .mobile-call { display: block; margin-top: 12px; background: var(--primary); color: #fff; text-align: center; padding: 14px; border-radius: var(--radius-sm); font-weight: 700; }

/* ── WhatsApp Float ── */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 200; background: #25d366; color: #fff; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,.4); transition: transform .2s, box-shadow .2s; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.5); }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-full); font-weight: 700; font-size: .95rem; cursor: pointer; border: 2px solid transparent; transition: background .2s, color .2s, border-color .2s, box-shadow .2s; text-decoration: none; }
.btn-whatsapp { background: #25d366; color: #fff; border-color: #25d366; }
.btn-whatsapp:hover { background: #20b858; border-color: #20b858; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); }
.btn-outline-green { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-green:hover { background: var(--primary-light); }
.btn-full { width: 100%; justify-content: center; height: 64px; font-size: 1rem; border-radius: var(--radius); }

/* ── Section ── */
.section { padding: 80px 0; }
@media(min-width:768px) { .section { padding: 96px 0; } }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label { display: inline-block; background: var(--primary-light); color: var(--primary); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 6px 14px; border-radius: var(--radius-full); margin-bottom: 12px; }
.section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 900; color: #1a1a1a; margin-bottom: 12px; line-height: 1.2; }
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 640px; margin: 0 auto; line-height: 1.8; }

/* ── Hero ── */
.hero { position: relative; min-height: 75vh; display: flex; align-items: center; justify-content: center; padding: 80px 0; overflow: hidden; }
@media(min-width:768px) { .hero { min-height: 95vh; } }
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: 25% 20%; }
@media(min-width:768px) { .hero-img { object-position: center; } }
.hero-overlay { position: absolute; inset: 0; background: rgba(46,125,50,.7); mix-blend-mode: multiply; }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(to top, #fff 0%, transparent 40%); }
.hero-content { position: relative; z-index: 10; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.hero-title { font-size: clamp(2.5rem, 7vw, 4.5rem); font-weight: 900; color: #fff; line-height: 1.1; }
.hero-sub { font-size: clamp(1rem, 2.5vw, 1.2rem); color: rgba(255,255,255,.9); max-width: 640px; line-height: 1.8; font-weight: 500; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 8px; }

/* ── Service Cards ── */
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media(min-width:640px) { .cards-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px) { .cards-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; display: flex; flex-direction: column; gap: 16px; transition: box-shadow .3s, transform .3s; }
.service-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.12); transform: translateY(-6px); }
.service-icon { width: 72px; height: 72px; border-radius: 16px; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.service-card h3 { font-size: 1.25rem; font-weight: 800; color: #1a1a1a; }
.service-card p { color: var(--muted); font-size: .95rem; line-height: 1.7; flex: 1; }
.card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 600; font-size: .875rem; transition: gap .2s; }
.service-card:hover .card-link { gap: 10px; }

/* ── Promo ── */
.promo-img { width: 100%; display: block; border-radius: 16px; box-shadow: 0 8px 32px rgba(0,0,0,.1); }

/* ── Process ── */
.section-process { background: var(--primary); position: relative; overflow: hidden; }
.process-bg-pattern { position: absolute; inset: 0; opacity: .1; background-image: repeating-linear-gradient(0deg,#fff 0,#fff 1px,transparent 1px,transparent 10px),repeating-linear-gradient(90deg,#fff 0,#fff 1px,transparent 1px,transparent 10px); pointer-events: none; }
.process-container { position: relative; z-index: 1; }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media(min-width:640px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-card { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); padding: 32px 28px; position: relative; }
.process-num { font-size: 5rem; font-weight: 900; color: rgba(255,255,255,.35); line-height: 1; position: absolute; top: 16px; right: 24px; }
.process-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; margin-top: 16px; color: #fff; }
.process-card p { color: rgba(255,255,255,.8); font-size: .95rem; line-height: 1.7; }

/* ── Why They Keep Coming Back ── */
.why-layout { display: flex; flex-direction: column; gap: 48px; align-items: center; }
@media(min-width:1024px) { .why-layout { flex-direction: row; gap: 48px; } }
.why-img-col { width: 100%; }
@media(min-width:1024px) { .why-img-col { width: 50%; } }
.why-img-wrap { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.15); }
.why-img-wrap img { width: 100%; height: auto; display: block; }
.why-img-ring { position: absolute; inset: 0; border-radius: var(--radius); box-shadow: inset 0 0 0 1px rgba(0,0,0,.1); pointer-events: none; }
.why-text-col { width: 100%; display: flex; flex-direction: column; gap: 24px; }
@media(min-width:1024px) { .why-text-col { width: 50%; } }
.why-heading { font-size: clamp(1.75rem, 3.5vw, 2.25rem); font-weight: 700; color: #1a1a1a; line-height: 1.25; }
.why-intro { font-size: 1.05rem; color: var(--muted); line-height: 1.8; }
.why-list { display: flex; flex-direction: column; gap: 16px; margin-top: 16px; }
.why-item { display: flex; align-items: center; gap: 16px; background: #f3f4f6; padding: 16px 20px; border-radius: 12px; }
.why-x { width: 40px; height: 40px; border-radius: 50%; background: rgba(239,68,68,.1); color: #ef4444; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-item span { font-weight: 600; font-size: 1.1rem; color: #1a1a1a; }

/* ── Features Grid ── */
.features-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media(min-width:640px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px; display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: .9rem; }
.feature-item svg { color: var(--primary); flex-shrink: 0; }

/* ── CTA Banner Section ── */
.cta-banner-section { position: relative; overflow: hidden; }
.cta-banner-bg { position: absolute; inset: 0; }
.cta-banner-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cta-banner-overlay { position: absolute; inset: 0; background: rgba(46,125,50,.95); mix-blend-mode: multiply; }
.cta-container { position: relative; z-index: 1; }

/* ── CTA Card ── */
.cta-card { background: #fff; border: 1px solid var(--border); border-radius: 24px; box-shadow: 0 8px 48px rgba(0,0,0,.1); padding: 56px 48px; text-align: center; }
.cta-card h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 900; margin-bottom: 16px; }
.cta-card p { color: var(--muted); max-width: 600px; margin: 0 auto 40px; font-size: 1.05rem; line-height: 1.8; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 20px 0; font-size: 1.05rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #1a1a1a; transition: color .2s; }
.faq-q:hover { color: var(--primary); }
.faq-icon { flex-shrink: 0; transition: transform .3s; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-a { padding: 0 0 20px; color: var(--muted); line-height: 1.8; font-size: .95rem; }

/* ── Page Hero ── */
.page-hero { padding: 80px 0 88px; }
@media(min-width:768px) { .page-hero { padding: 100px 0 112px; } }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; margin-bottom: 16px; line-height: 1.2; }
.page-hero.bg-primary h1, .page-hero.bg-primary p { color: #fff; }
.page-hero.bg-primary p { color: rgba(255,255,255,.85); }
.page-hero p { font-size: 1.1rem; max-width: 640px; margin: 0 auto; line-height: 1.8; }

/* ── Services Detail ── */
.services-detail-grid { display: flex; flex-direction: column; gap: 48px; }
.service-detail-card { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media(min-width:768px) { .service-detail-card { grid-template-columns: 200px 1fr; align-items: center; } }
.service-detail-card.reverse { direction: ltr; }
@media(min-width:768px) { .service-detail-card.reverse { grid-template-columns: 1fr 200px; } .service-detail-card.reverse .service-detail-icon { order: 2; } .service-detail-card.reverse .service-detail-body { order: 1; } }
.service-detail-icon { width: 120px; height: 120px; border-radius: 24px; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; margin: 0 auto; }
@media(min-width:768px) { .service-detail-icon { width: 100%; height: 160px; } }
.service-detail-body h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 12px; }
.service-detail-body > p { color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.service-checklist { display: flex; flex-direction: column; gap: 10px; }
.service-checklist li { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: .95rem; }
.service-checklist svg { color: var(--primary); flex-shrink: 0; }

/* ── About Section ── */
.about-layout { display: flex; flex-direction: column; gap: 48px; }
@media(min-width:1024px) { .about-layout { flex-direction: row; align-items: flex-start; gap: 64px; } }
.about-text { flex: 1; display: flex; flex-direction: column; gap: 32px; }
.about-photo { display: none; }
@media(min-width:1024px) { .about-photo { display: block; width: 40%; flex-shrink: 0; position: sticky; top: 100px; } }
.about-photo img { width: 100%; height: auto; border-radius: 20px; box-shadow: 0 24px 64px rgba(0,0,0,.15); display: block; }
.about-photo-mobile { display: block; border-radius: 20px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.15); }
.about-photo-mobile img { width: 100%; height: auto; display: block; }
@media(min-width:1024px) { .about-photo-mobile { display: none; } }
.about-heading { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 900; color: #1a1a1a; margin-bottom: 12px; margin-top: 8px; line-height: 1.2; }
.about-intro { font-size: 1.05rem; color: var(--muted); line-height: 1.85; }
.mv-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media(min-width:540px) { .mv-grid { grid-template-columns: 1fr 1fr; } }
.mv-card { background: #fff; border: 1px solid rgba(46,125,50,.12); border-radius: var(--radius); padding: 24px; box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.mv-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.mv-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: #1a1a1a; }
.mv-card p { font-size: .875rem; color: var(--muted); line-height: 1.75; }
.values-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--primary); margin-bottom: 12px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.value-item { display: flex; align-items: center; gap: 10px; background: #f3f4f6; padding: 12px 16px; border-radius: 12px; font-weight: 600; font-size: .875rem; color: #1a1a1a; }
.value-item svg { color: var(--primary); flex-shrink: 0; }
.erd-card { background: rgba(46,125,50,.05); border: 1px solid rgba(46,125,50,.2); border-radius: var(--radius); padding: 24px; }
.erd-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; color: #1a1a1a; }
.erd-subtitle { font-size: .875rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.erd-card p { font-size: .875rem; color: var(--muted); line-height: 1.75; }

/* ── Chips ── */
.chips-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip { background: #fff; border: 1px solid var(--primary); color: var(--primary); padding: 10px 20px; border-radius: var(--radius-full); font-weight: 600; font-size: .875rem; }

/* ── Contact Layout ── */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media(min-width:1024px) { .contact-layout { grid-template-columns: 5fr 7fr; } }
.contact-section-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 24px; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.contact-card--wide { grid-column: 1 / -1; }
@media(max-width:480px) { .contact-cards { grid-template-columns: 1fr; } }
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; gap: 16px; box-shadow: var(--card-shadow); }
.contact-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.contact-card p { font-size: .85rem; color: var(--muted); margin-bottom: 8px; }
.card-action-link { font-size: .85rem; font-weight: 700; color: var(--primary); }
.card-action-link:hover { text-decoration: underline; }
.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: 0 2px 8px rgba(0,0,0,.07); height: 320px; }
.contact-map iframe { width: 100%; height: 100%; display: block; }

/* ── Form Card ── */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 8px 48px rgba(0,0,0,.1); padding: 40px; }
@media(min-width:768px) { .form-card { padding: 48px; } }
.form-card h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 8px; }
.form-card > p { color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.trust-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--primary-light); border: 1px solid rgba(46,125,50,.2); color: var(--primary); padding: 8px 16px; border-radius: var(--radius-full); font-size: .8rem; font-weight: 700; }
.inspection-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media(min-width:640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .875rem; font-weight: 600; color: #374151; }
.form-group input, .form-group textarea { padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: .95rem; font-family: inherit; background: #fafafa; transition: border-color .2s, box-shadow .2s; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(46,125,50,.12); }
.form-group textarea { resize: vertical; min-height: 180px; line-height: 1.6; }

/* ── Footer ── */
.site-footer { background: rgba(46,125,50,.04); border-top: 1px solid rgba(46,125,50,.1); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; }
@media(min-width:768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo-link { display: flex; align-items: center; gap: 12px; }
.footer-logo-img { height: 108px; width: auto; object-fit: contain; }
.footer-brand-name { display: block; font-weight: 800; font-size: 1.1rem; color: var(--primary); line-height: 1.2; }
.footer-brand-tagline { display: block; font-size: .65rem; color: rgba(46,125,50,.7); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.footer-desc { font-size: .875rem; color: var(--muted); line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.08); color: rgba(46,125,50,.7); display: flex; align-items: center; justify-content: center; transition: color .2s; }
.footer-social a:hover { color: var(--primary); }
.footer-col-title { font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: .875rem; color: var(--muted); font-weight: 500; transition: color .2s; }
.footer-links li a:hover { color: var(--primary); }
.footer-links.muted li { font-size: .875rem; color: var(--muted); }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; color: var(--muted); }
.footer-contact-list svg { color: var(--primary); flex-shrink: 0; margin-top: 1px; }
.footer-contact-list a { color: var(--muted); transition: color .2s; }
.footer-contact-list a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(46,125,50,.1); margin-top: 16px; padding-top: 40px; display: flex; flex-direction: column; align-items: center; gap: 12px; padding-bottom: 16px; }
@media(min-width:768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: .875rem; color: var(--muted); }
.footer-pills { display: flex; align-items: center; gap: 8px; font-size: .75rem; color: var(--muted); font-weight: 500; }
.footer-pills .dot { width: 4px; height: 4px; background: rgba(46,125,50,.3); border-radius: 50%; }
.footer-credit { text-align: center; padding: 12px 0 24px; font-size: .75rem; color: rgba(107,114,128,.6); }
.footer-credit a { font-weight: 700; color: rgba(46,125,50,.7); transition: color .2s; letter-spacing: .04em; }
.footer-credit a:hover { color: var(--primary); text-decoration: underline; }
