/* ==========================================================================
   CN Landscaping LLC — Design System
   Brand: clean-modern | Primary: #785800 | Secondary: #000000
   Font: Inter (Google Fonts)
   ========================================================================== */

/* --- CSS Custom Properties --- */
:root {
  --color-primary: #785800;
  --color-primary-light: #9B7200;
  --color-primary-dark: #5A4200;
  --color-primary-bg: #FDF8EF;
  --color-secondary: #000000;
  --color-accent: #A67A00;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F8F6F3;
  --color-bg-dark: #1A1A1A;
  --color-text: #1A1A1A;
  --color-text-muted: #666666;
  --color-text-light: #999999;
  --color-text-inverse: #FFFFFF;
  --color-border: #E0E0E0;
  --color-border-light: #F0EEEB;
  --color-success: #2D6A2E;
  --color-error: #C62828;
  --color-star: #F59E0B;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3rem;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --radius: 8px;
  --radius-sm: 6px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --transition: 0.2s ease;
  --max-width: 1200px;
  --section-spacing: 5rem;
  --header-height: 90px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--header-height); }
body { font-family: var(--font-body); font-size: var(--fs-base); line-height: 1.7; color: var(--color-text); background: var(--color-bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-dark); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: var(--fw-bold); line-height: 1.25; color: var(--color-secondary); }
h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Skip Link --- */
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--color-primary); color: #fff; padding: 0.5rem 1rem; border-radius: var(--radius); z-index: 10000; font-weight: var(--fw-semibold); }
.skip-link:focus { top: 0.5rem; color: #fff; }

/* --- Container --- */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* --- Section --- */
section { padding: var(--section-spacing) 0; }
.section--alt { background: var(--color-bg-alt); }
.section--dark { background: var(--color-bg-dark); color: var(--color-text-inverse); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--color-text-inverse); }
.section--primary { background: var(--color-primary); color: var(--color-text-inverse); }
.section--primary h2, .section--primary h3, .section--primary h4 { color: var(--color-text-inverse); }

/* --- Section Label (Eyebrow) --- */
.section-label { display: inline-block; font-size: var(--fs-xs); font-weight: var(--fw-bold); letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 0.75rem; }
.section--dark .section-label, .section--primary .section-label { color: var(--color-star); }

/* --- Section Header --- */
.section-header { max-width: 640px; margin-bottom: 3rem; }
.section-header--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header p { color: var(--color-text-muted); font-size: var(--fs-md); margin-top: 1rem; }
.section--dark .section-header p { color: rgba(255,255,255,0.75); }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.85rem 1.75rem; font-family: var(--font-body); font-size: var(--fs-base); font-weight: var(--fw-semibold); border-radius: var(--radius); border: 2px solid transparent; cursor: pointer; transition: all var(--transition); text-decoration: none; line-height: 1.2; white-space: nowrap; }
.btn--primary { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn--primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); color: #fff; }
.btn--secondary { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn--secondary:hover { background: var(--color-primary); color: #fff; }
.btn--white { background: #fff; color: var(--color-primary); border-color: #fff; }
.btn--white:hover { background: var(--color-primary-bg); border-color: var(--color-primary-bg); color: var(--color-primary); }
.btn--sm { padding: 0.6rem 1.25rem; font-size: var(--fs-sm); }
.btn--lg { padding: 1rem 2rem; font-size: var(--fs-md); }
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.mt-2 { margin-top: 1rem; }

/* --- Header --- */
.header { position: sticky; top: 0; z-index: 1000; background: var(--color-bg-dark); border-bottom: 1px solid rgba(255,255,255,0.1); height: var(--header-height); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.header__logo img { height: 72px; width: auto; }
.header__nav { display: flex; align-items: center; gap: 2rem; }
.header__nav-list { display: flex; align-items: center; gap: 0.25rem; }
.header__nav-link { display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.5rem 0.75rem; font-size: var(--fs-sm); font-weight: var(--fw-medium); color: rgba(255,255,255,0.85); border-radius: var(--radius-sm); transition: all var(--transition); }
.header__nav-link:hover, .header__nav-link.active { color: var(--color-primary); background: rgba(255,255,255,0.08); }
.header__actions { display: flex; align-items: center; gap: 1rem; }
.header__phone { display: inline-flex; align-items: center; gap: 0.5rem; font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: rgba(255,255,255,0.9); }
.header__phone svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.9); }
.header__phone:hover { color: var(--color-primary); }
.header__cta { display: none; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown { position: absolute; top: 100%; left: 0; min-width: 220px; background: #2a2a2a; border-radius: var(--radius); box-shadow: var(--shadow-md); border: 1px solid rgba(255,255,255,0.1); padding: 0.5rem 0; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all var(--transition); z-index: 100; }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 0.5rem 1rem; font-size: var(--fs-sm); color: rgba(255,255,255,0.85); font-weight: var(--fw-medium); }
.dropdown a:hover { background: rgba(255,255,255,0.08); color: var(--color-primary); }

/* Mobile Toggle */
.header__toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; color: rgba(255,255,255,0.9); }
.header__toggle svg { width: 24px; height: 24px; }

/* --- Hero --- */
.hero { position: relative; padding: 6rem 0 5rem; background: var(--color-bg-dark); color: var(--color-text-inverse); overflow: hidden; min-height: 500px; display: flex; align-items: center; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%); z-index: 1; }
.hero .container { position: relative; z-index: 2; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero h1 { color: #fff; max-width: 700px; margin-bottom: 1rem; }
.hero p { font-size: var(--fs-lg); max-width: 560px; color: rgba(255,255,255,0.9); margin-bottom: 0; }
.hero .section-label { color: var(--color-star); }
.hero .breadcrumbs { margin-bottom: 1.5rem; }
.hero .breadcrumbs a { color: rgba(255,255,255,0.7); }
.hero .breadcrumbs a:hover { color: #fff; }
.hero .breadcrumbs .current { color: rgba(255,255,255,0.5); }
.hero .breadcrumbs span { color: rgba(255,255,255,0.4); }

/* Inner Hero (service/about/etc pages) */
.hero--inner { min-height: auto; padding: 4rem 0 3.5rem; }

/* --- Trust Bar --- */
.trust-bar { background: var(--color-primary-bg); border-bottom: 1px solid var(--color-border-light); padding: 1rem 0; }
.trust-bar__list { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; }
.trust-bar__item { display: flex; align-items: center; gap: 0.5rem; font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--color-text); white-space: nowrap; }
.trust-bar__item svg { width: 18px; height: 18px; color: var(--color-primary); flex-shrink: 0; }
.trust-bar__item--military { background: var(--color-primary); color: #fff; padding: 0.35rem 0.85rem; border-radius: var(--radius-full); font-weight: var(--fw-bold); font-size: var(--fs-xs); letter-spacing: 0.03em; }
.trust-bar__item--military svg { color: #fff; }

/* --- Military Discount Mention --- */
.military-mention { background: var(--color-primary-bg); border-left: 3px solid var(--color-primary); padding: 0.75rem 1rem; border-radius: var(--radius-sm); font-size: var(--fs-sm); margin-top: 1rem; }

/* --- Breadcrumbs --- */
.breadcrumbs { font-size: var(--fs-sm); display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem; }
.breadcrumbs a { color: var(--color-text-muted); font-weight: var(--fw-medium); }
.breadcrumbs a:hover { color: var(--color-primary); }
.breadcrumbs span { color: var(--color-text-light); }
.breadcrumbs .current { color: var(--color-text-light); font-weight: var(--fw-normal); }

/* --- Cards --- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--color-border-light); overflow: hidden; transition: all var(--transition); }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-img { position: relative; overflow: hidden; aspect-ratio: 16/10; background: var(--color-bg-alt); }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-body h3 { font-size: var(--fs-lg); margin-bottom: 0.75rem; }
.card-body p { color: var(--color-text-muted); font-size: var(--fs-sm); }
.card-link { display: inline-flex; align-items: center; gap: 0.35rem; font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--color-primary); margin-top: 0.75rem; }
.card-link:hover { gap: 0.6rem; }
.card a.card-link-wrap { text-decoration: none; color: inherit; display: block; }
.card a.card-link-wrap:hover { color: inherit; }

/* --- Feature Cards (icon-based) --- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-card { text-align: center; padding: 2rem 1.5rem; }
.feature-card__icon { width: 56px; height: 56px; background: var(--color-primary-bg); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.feature-card__icon svg { width: 28px; height: 28px; color: var(--color-primary); }
.feature-card h3 { font-size: var(--fs-lg); margin-bottom: 0.5rem; }
.feature-card p { color: var(--color-text-muted); font-size: var(--fs-sm); }

/* --- Stats --- */
.stats { display: flex; justify-content: center; flex-wrap: wrap; gap: 3rem; }
.stat { text-align: center; }
.stat__value { font-size: var(--fs-4xl); font-weight: var(--fw-extrabold); color: var(--color-primary); line-height: 1; margin-bottom: 0.25rem; }
.section--dark .stat__value, .section--primary .stat__value { color: var(--color-star); }
.stat__label { font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.section--dark .stat__label { color: rgba(255,255,255,0.7); }

/* --- Testimonials --- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial { background: #fff; border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--color-border-light); }
.testimonial__stars { color: var(--color-star); font-size: var(--fs-lg); margin-bottom: 0.75rem; letter-spacing: 2px; }
.testimonial__text { font-size: var(--fs-base); color: var(--color-text); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial__author { font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--color-text); }
.testimonial__meta { font-size: var(--fs-xs); color: var(--color-text-muted); }

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item__question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-body); font-size: var(--fs-md); font-weight: var(--fw-semibold); color: var(--color-text); transition: color var(--transition); }
.faq-item__question:hover { color: var(--color-primary); }
.faq-item__icon { font-size: var(--fs-xl); font-weight: var(--fw-normal); color: var(--color-primary); transition: transform var(--transition); flex-shrink: 0; margin-left: 1rem; }
.faq-item__question[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { display: none; padding-bottom: 1.25rem; }
.faq-item__answer p { color: var(--color-text-muted); font-size: var(--fs-base); }
.faq-item__answer.open { display: block; }

/* --- CTA Section --- */
.cta-section { background: var(--color-bg-dark); padding: var(--section-spacing) 0; text-align: center; color: var(--color-text-inverse); }
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: var(--fs-md); max-width: 600px; margin: 0 auto 2rem; }

/* --- Two-Column Layout --- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }
.two-col__img { border-radius: var(--radius-lg); overflow: hidden; }
.two-col__img img { width: 100%; height: auto; }

/* --- Process Steps --- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; counter-reset: step; }
.process-step { position: relative; padding: 1.5rem; text-align: center; }
.process-step::before { counter-increment: step; content: counter(step); display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: var(--color-primary); color: #fff; font-weight: var(--fw-bold); font-size: var(--fs-lg); border-radius: var(--radius-full); margin: 0 auto 1rem; }
.process-step h3 { font-size: var(--fs-base); margin-bottom: 0.5rem; }
.process-step p { font-size: var(--fs-sm); color: var(--color-text-muted); }

/* --- Pricing Table --- */
.pricing-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.pricing-table th, .pricing-table td { padding: 0.85rem 1.25rem; text-align: left; border-bottom: 1px solid var(--color-border); font-size: var(--fs-sm); }
.pricing-table th { background: var(--color-bg-alt); font-weight: var(--fw-semibold); color: var(--color-text); }
.pricing-table tr:hover td { background: var(--color-primary-bg); }

/* --- Contact Form --- */
.form-container { background: #fff; border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); border: 1px solid var(--color-border-light); }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--color-text); margin-bottom: 0.35rem; }
.form-group .required { color: var(--color-error); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.75rem 1rem; font-size: var(--fs-base); font-family: var(--font-body); border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: var(--color-bg); color: var(--color-text); transition: border-color var(--transition), box-shadow var(--transition); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(120,88,0,0.12); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* --- SMS Consent (A2P Compliance) --- */
.sms-consent { margin: 16px 0; }
.sms-consent__label { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; line-height: 1.5; color: var(--color-text-muted); cursor: pointer; margin-bottom: 12px; }
.sms-consent__label input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; width: 16px; height: 16px; cursor: pointer; accent-color: var(--color-primary); }
.sms-consent__label a { color: var(--color-primary); text-decoration: underline; }
.sms-consent__item { margin-bottom: 0.75rem; }

/* --- Contact Info --- */
.contact-info { display: grid; gap: 1.5rem; }
.contact-info__item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info__item svg { width: 24px; height: 24px; flex-shrink: 0; color: var(--color-primary); margin-top: 2px; }
.contact-info__item a { color: var(--color-primary); font-weight: var(--fw-medium); }

/* --- Form Wrapper --- */
.form-wrapper { background: var(--color-bg-alt); border-radius: var(--radius-lg); padding: 2rem; }
.form-wrapper__title { font-size: var(--fs-xl); font-weight: var(--fw-bold); margin-bottom: 1.5rem; }

/* --- Map Placeholder --- */
.map-placeholder { background: var(--color-bg-alt); border-radius: var(--radius); padding: 2rem; text-align: center; min-height: 300px; display: flex; align-items: center; justify-content: center; color: var(--color-text-muted); }

/* --- Image Placeholder System --- */
.img-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; background: var(--color-bg-alt); color: var(--color-text-light); font-size: var(--fs-sm); text-align: center; padding: 1rem; }
.img-real { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; opacity: 0; transition: opacity 0.3s ease; }
.img-real.loaded { opacity: 1; }

/* --- Area Grid --- */
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.area-card { display: flex; align-items: center; gap: 0.5rem; padding: 1rem 1.25rem; background: #fff; border: 1px solid var(--color-border-light); border-radius: var(--radius); transition: all var(--transition); font-weight: var(--fw-medium); color: var(--color-text); }
.area-card:hover { border-color: var(--color-primary); color: var(--color-primary); box-shadow: var(--shadow-sm); }
.area-card svg { width: 18px; height: 18px; color: var(--color-primary); flex-shrink: 0; }

/* --- Content Page --- */
.content-section h2 { margin-bottom: 1rem; }
.content-section h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.content-section p { color: var(--color-text-muted); }
.content-section ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.content-section ul li { color: var(--color-text-muted); margin-bottom: 0.35rem; }
.content-section ul li strong { color: var(--color-text); }

/* --- Gallery Grid --- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; background: var(--color-bg-alt); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.gallery-item:hover img { transform: scale(1.05); }

/* --- Blog Cards --- */
.blog-card { border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid var(--color-border-light); transition: all var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-md); }
.blog-card__img { aspect-ratio: 16/9; overflow: hidden; background: var(--color-bg-alt); }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 1.5rem; }
.blog-card__date { font-size: var(--fs-xs); color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.blog-card__body h3 { font-size: var(--fs-lg); margin-bottom: 0.5rem; }
.blog-card__body h3 a { color: var(--color-text); }
.blog-card__body h3 a:hover { color: var(--color-primary); }
.blog-card__body p { font-size: var(--fs-sm); color: var(--color-text-muted); }

/* --- Author --- */
.author-box { display: flex; gap: 1.5rem; padding: 1.5rem; background: var(--color-bg-alt); border-radius: var(--radius); margin-top: 2rem; }
.author-box__img { width: 64px; height: 64px; border-radius: var(--radius-full); overflow: hidden; flex-shrink: 0; background: var(--color-border); }
.author-box__info h4 { font-size: var(--fs-base); margin-bottom: 0.25rem; }
.author-box__info p { font-size: var(--fs-sm); color: var(--color-text-muted); margin: 0; }

/* --- Footer --- */
.footer { background: var(--color-bg-dark); color: rgba(255,255,255,0.8); padding: 4rem 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer__brand p { font-size: var(--fs-sm); margin-top: 1rem; color: rgba(255,255,255,0.6); max-width: 280px; }
.footer__social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer__social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: var(--radius-sm); transition: all var(--transition); }
.footer__social a:hover { background: var(--color-primary); }
.footer__social a svg { width: 16px; height: 16px; fill: #fff; }
.footer h4 { font-size: var(--fs-sm); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: 0.08em; color: #fff; margin-bottom: 1.25rem; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul a { color: rgba(255,255,255,0.6); font-size: var(--fs-sm); transition: color var(--transition); }
.footer ul a:hover { color: #fff; }
.footer__contact li { display: flex; gap: 0.5rem; align-items: flex-start; margin-bottom: 0.75rem; color: rgba(255,255,255,0.6); font-size: var(--fs-sm); }
.footer__contact li strong { color: rgba(255,255,255,0.8); font-weight: var(--fw-semibold); white-space: nowrap; }
.footer__contact a { color: rgba(255,255,255,0.6); }
.footer__contact a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; }
.footer__bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer__bottom-copy { font-size: var(--fs-xs); color: rgba(255,255,255,0.4); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { font-size: var(--fs-xs); color: rgba(255,255,255,0.4); }
.footer__legal a:hover { color: rgba(255,255,255,0.7); }
.footer__credit { font-size: var(--fs-xs); color: rgba(255,255,255,0.3); }
.footer__credit a { color: rgba(255,255,255,0.3); }
.footer__credit a:hover { color: rgba(255,255,255,0.5); }

/* --- Muted --- */
.muted { color: var(--color-text-muted); }
.text-center { text-align: center; }
.text-white { color: #fff; }

/* --- Thanks Message --- */
.thanks-msg { text-align: center; padding: 3rem 2rem; }
.thanks-msg h3 { color: var(--color-success); margin-bottom: 0.75rem; }

/* --- Lead (intro paragraph) --- */
.lead { font-size: var(--fs-lg); color: var(--color-text-muted); max-width: 640px; }

/* --- Checklist --- */
.checklist { list-style: none; padding: 0; }
.checklist li { display: flex; gap: 0.75rem; padding: 0.5rem 0; font-size: var(--fs-base); color: var(--color-text-muted); }
.checklist li::before { content: ''; display: block; width: 20px; height: 20px; background: var(--color-primary-bg); border-radius: var(--radius-full); flex-shrink: 0; margin-top: 2px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23785800' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E"); background-size: 14px; background-repeat: no-repeat; background-position: center; }

/* --- Divider --- */
.divider { height: 1px; background: var(--color-border); margin: 2rem 0; border: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (min-width: 768px) {
  .header__cta { display: inline-flex; }
}

@media (max-width: 1024px) {
  .card-grid, .feature-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .two-col { gap: 2.5rem; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --fs-4xl: 2.25rem;
    --fs-3xl: 1.875rem;
    --fs-2xl: 1.5rem;
    --section-spacing: 3.5rem;
  }
  .header__nav { position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0; background: var(--color-bg-dark); flex-direction: column; align-items: stretch; padding: 1.5rem; transform: translateX(100%); transition: transform 0.3s ease; z-index: 999; overflow-y: auto; }
  .header__nav.open { transform: translateX(0); }
  .header__nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .header__nav-link { padding: 0.85rem 0.5rem; font-size: var(--fs-base); border-bottom: 1px solid rgba(255,255,255,0.1); border-radius: 0; }
  .header__toggle { display: flex; }
  .header__phone { display: none; }
  .header__actions { gap: 0.5rem; }
  .has-dropdown .dropdown { position: static; box-shadow: none; border: none; opacity: 1; visibility: visible; transform: none; padding: 0 0 0 1rem; min-width: auto; }
  .card-grid, .feature-grid, .testimonial-grid, .gallery-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col--reverse { direction: ltr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .process-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 3.5rem 0 3rem; }
  .hero h1 { font-size: var(--fs-3xl); }
  .stats { gap: 2rem; }
  .trust-bar__list { gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer__bottom .container { flex-direction: column; text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .trust-bar__list { flex-direction: column; align-items: center; gap: 0.5rem; }
  .area-grid { grid-template-columns: 1fr; }
}

/* --- Print --- */
@media print {
  .header, .footer, .cta-section, .trust-bar { display: none; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
}
