/* ═══════════════════════════════════════════════════════════════════
   CreekView Landscape LLC — Design System
   Vibe: Clean & Modern | Colors: Blue #2050e8 + Green #4cba38
   Font: Inter (Google Fonts CDN)
   ═══════════════════════════════════════════════════════════════════ */

/* --- CSS Custom Properties --- */
:root {
  --color-primary: #2050e8;
  --color-primary-dark: #1a3fb8;
  --color-primary-light: #e8eeff;
  --color-secondary: #4cba38;
  --color-secondary-dark: #3a9a2a;
  --color-secondary-light: #e8f7e5;
  --color-accent: #f59e0b;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f8fc;
  --color-bg-dark: #0f1b3d;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;
  --color-success: #16a34a;
  --color-error: #dc2626;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12);
  --spacing-section: 80px;
  --spacing-section-sm: 56px;
  --max-width: 1200px;
  --transition: .25s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
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; }

/* --- Skip to Content --- */
.skip-link {
  position: absolute; top: -100%; left: 16px; z-index: 9999;
  padding: 8px 16px; background: var(--color-primary); color: #fff;
  border-radius: var(--radius); font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 16px; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); margin-bottom: 14px; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); margin-bottom: 12px; }
h4 { font-size: 1.125rem; margin-bottom: 10px; }
p { margin-bottom: 16px; }
.muted { color: var(--color-text-muted); }
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-header p { color: var(--color-text-muted); font-size: 1.05rem; }

/* --- Layout --- */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--spacing-section) 0; }
.section--alt { background: var(--color-bg-alt); }
.section--dark { background: var(--color-bg-dark); color: #fff; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark .section-label { color: var(--color-secondary); }
.section--dark .muted, .section--dark p { color: rgba(255,255,255,.75); }
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; gap: 16px; align-items: center; }
.flex--wrap { flex-wrap: wrap; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body); font-size: .95rem; font-weight: 600;
  border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: all var(--transition);
  text-decoration: none; line-height: 1.2;
}
.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--green { background: var(--color-secondary); color: #fff; border-color: var(--color-secondary); }
.btn--green:hover { background: var(--color-secondary-dark); border-color: var(--color-secondary-dark); color: #fff; }
.btn--sm { padding: 10px 20px; font-size: .85rem; }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--full { width: 100%; }
.btn--white { background: #fff; color: var(--color-primary); border-color: #fff; }
.btn--white:hover { background: var(--color-primary-light); border-color: var(--color-primary-light); color: var(--color-primary-dark); }
.mt-2 { margin-top: 16px; }

/* --- Header --- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-width); margin: 0 auto; padding: 12px 24px;
}
.header__logo img { height: 42px; width: auto; }
.header__nav { display: flex; align-items: center; gap: 28px; }
.header__nav a {
  font-size: .9rem; font-weight: 500; color: var(--color-text);
  position: relative; padding: 4px 0; transition: color var(--transition);
}
.header__nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--color-primary); transition: width var(--transition);
}
.header__nav a:hover, .header__nav a.active { color: var(--color-primary); }
.header__nav a:hover::after, .header__nav a.active::after { width: 100%; }
.header__actions { display: flex; align-items: center; gap: 16px; }
.header__phone {
  font-weight: 600; color: var(--color-text); font-size: .9rem;
  display: flex; align-items: center; gap: 6px;
}
.header__phone:hover { color: var(--color-primary); }
.header__phone svg { width: 16px; height: 16px; flex-shrink: 0; }
.hamburger {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--color-text);
  transition: all .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 --- */
@media (max-width: 968px) {
  .header__nav {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 360px; height: 100vh;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: #fff; padding: 80px 32px 32px; z-index: 99;
    box-shadow: -4px 0 20px rgba(0,0,0,.15);
    transition: right .35s ease;
  }
  .header__nav.open { right: 0; }
  .header__nav a { font-size: 1.1rem; padding: 14px 0; width: 100%; border-bottom: 1px solid var(--color-border); }
  .header__nav a::after { display: none; }
  .hamburger { display: flex; }
  .nav-overlay {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 98;
  }
  .nav-overlay.open { display: block; }
  .header__phone { display: none; }
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  font-size: .8rem;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.breadcrumbs a { color: var(--color-text-muted); font-weight: 500; }
.breadcrumbs a:hover { color: var(--color-primary); }
.breadcrumbs span { color: var(--color-text-muted); }
.breadcrumbs .current { color: var(--color-text); font-weight: 500; }
.hero .breadcrumbs a, .hero .breadcrumbs span, .hero .breadcrumbs .current {
  color: rgba(255,255,255,.85);
}
.hero .breadcrumbs a:hover { color: #fff; }

/* --- Hero --- */
.hero {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1a3060 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(32,80,232,.3) 0%, transparent 60%);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.25rem); margin-bottom: 16px; }
.hero p { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 560px; margin-bottom: 24px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .2; z-index: 1;
}
.hero--page { padding: 72px 0 48px; }
.hero--page h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); }

/* --- Trust Bar --- */
.trust-bar { background: var(--color-bg-alt); border-bottom: 1px solid var(--color-border); padding: 16px 0; }
.trust-bar__inner {
  display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap;
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
}
.trust-bar__item {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 600; color: var(--color-text);
}
.trust-bar__item svg { width: 20px; height: 20px; color: var(--color-secondary); flex-shrink: 0; }

/* --- Cards --- */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 16/10;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 24px; }
.card__body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card__body p { color: var(--color-text-muted); font-size: .9rem; margin-bottom: 12px; }
.card__link {
  font-weight: 600; font-size: .9rem; color: var(--color-primary);
  display: inline-flex; align-items: center; gap: 4px;
}
.card__link:hover { gap: 8px; }
.card--horizontal { display: grid; grid-template-columns: 280px 1fr; }
.card--horizontal .card-img { aspect-ratio: unset; height: 100%; }

/* --- Service Grid --- */
.service-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }

/* --- Area Grid --- */
.area-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.area-card {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px;
  background: #fff; border-radius: var(--radius); border: 1px solid var(--color-border);
  font-weight: 600; font-size: .95rem; color: var(--color-text);
  transition: all var(--transition);
}
.area-card:hover { border-color: var(--color-primary); color: var(--color-primary); transform: translateY(-2px); box-shadow: var(--shadow); }
.area-card svg { width: 18px; height: 18px; color: var(--color-primary); flex-shrink: 0; }

/* --- Stats --- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; text-align: center; }
.stat { padding: 24px; }
.stat__number { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; color: var(--color-primary); line-height: 1; margin-bottom: 4px; }
.stat__label { font-size: .85rem; color: var(--color-text-muted); font-weight: 500; }
.section--dark .stat__number { color: var(--color-secondary); }

/* --- Testimonials --- */
.testimonial-card {
  background: #fff; border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow); position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 16px; left: 24px;
  font-size: 4rem; color: var(--color-primary-light); font-family: Georgia, serif; line-height: 1;
}
.testimonial-card p { font-size: .95rem; line-height: 1.7; margin-bottom: 16px; position: relative; z-index: 1; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__name { font-weight: 700; font-size: .9rem; }
.testimonial__service { font-size: .8rem; color: var(--color-text-muted); }
.testimonial__stars { color: var(--color-accent); font-size: .9rem; letter-spacing: 2px; }

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff; padding: var(--spacing-section) 0; text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 24px; }

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item__question {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; padding: 20px 0;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  color: var(--color-text); text-align: left; line-height: 1.4;
}
.faq-item__question:hover { color: var(--color-primary); }
.faq-item__icon {
  font-size: 1.25rem; font-weight: 300; color: var(--color-primary);
  transition: transform .3s; flex-shrink: 0;
}
.faq-item__question[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item__answer p { padding: 0 0 20px; color: var(--color-text-muted); font-size: .95rem; }

/* --- Forms --- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: .85rem; font-weight: 600; color: var(--color-text);
  margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--color-border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .95rem; color: var(--color-text);
  background: #fff; transition: border-color 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(32,80,232,.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #94a3b8; }

/* --- 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; }

/* --- Thanks Message --- */
.thanks-msg { text-align: center; padding: 48px 24px; }
.thanks-msg h2 { color: var(--color-secondary); margin-bottom: 12px; }

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

/* --- Gallery --- */
.gallery-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg); aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px; background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: #fff; font-size: .85rem; font-weight: 500;
}

/* --- Process / Steps --- */
.process-grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); counter-reset: step; }
.process-step { text-align: center; position: relative; }
.process-step::before {
  counter-increment: step; content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; margin: 0 auto 16px;
  background: var(--color-primary-light); color: var(--color-primary);
  border-radius: 50%; font-weight: 800; font-size: 1.1rem;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { font-size: .9rem; color: var(--color-text-muted); }

/* --- Checklist --- */
.checklist { list-style: none; padding: 0; }
.checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: .95rem;
}
.checklist li::before {
  content: '✓'; display: flex; align-items: center; justify-content: center;
  min-width: 20px; height: 20px; margin-top: 2px;
  background: var(--color-secondary-light); color: var(--color-secondary);
  border-radius: 50%; font-size: .7rem; font-weight: 700;
}

/* --- Blog Cards --- */
.blog-card .card-img { aspect-ratio: 16/9; }
.blog-card .card__body { padding: 20px 24px; }
.blog-meta { font-size: .8rem; color: var(--color-text-muted); margin-bottom: 8px; }

/* --- Why Choose Us / Features --- */
.features-grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.feature-card { text-align: center; padding: 32px 24px; }
.feature-card__icon {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: var(--color-primary-light); border-radius: var(--radius-lg);
  color: var(--color-primary);
}
.feature-card__icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { font-size: .9rem; color: var(--color-text-muted); }

/* --- Content Page --- */
.content { padding: var(--spacing-section) 0; }
.content h2 { margin-top: 32px; margin-bottom: 16px; }
.content h3 { margin-top: 24px; margin-bottom: 12px; }
.content ul, .content ol { padding-left: 24px; margin-bottom: 16px; }
.content ul { list-style: disc; }
.content ol { list-style: decimal; }
.content li { margin-bottom: 8px; color: var(--color-text-muted); }
.content table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.content th, .content td { padding: 12px 16px; border: 1px solid var(--color-border); text-align: left; font-size: .9rem; }
.content th { background: var(--color-bg-alt); font-weight: 600; }

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

/* --- Address Autocomplete Dropdown --- */
.address-dropdown{position:absolute;top:100%;left:0;right:0;z-index:1000;background:#fff;border:1px solid #ddd;border-top:none;border-radius:0 0 8px 8px;box-shadow:0 4px 12px rgba(0,0,0,.1);list-style:none;margin:0;padding:0;max-height:240px;overflow-y:auto}
.address-dropdown__item{padding:10px 14px;cursor:pointer;font-size:14px;line-height:1.4;border-bottom:1px solid #f0f0f0;transition:background .15s}
.address-dropdown__item:last-child{border-bottom:none}
.address-dropdown__secondary{color:#888;font-size:13px}
.address-dropdown__item--active,.address-dropdown__item:hover{background:var(--color-primary-light,#f0f7ff)}

/* --- Footer --- */
.footer { background: var(--color-bg-dark); color: rgba(255,255,255,.75); padding: 64px 0 0; }
.footer__inner {
  display: grid; gap: 40px;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__brand p { font-size: .9rem; line-height: 1.6; max-width: 300px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff;
  transition: background var(--transition);
}
.footer__social a:hover { background: var(--color-primary); color: #fff; }
.footer__social a svg { width: 16px; height: 16px; }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,.65); font-size: .9rem; }
.footer ul a:hover { color: #fff; }
.footer__contact p { display: flex; align-items: flex-start; gap: 8px; font-size: .9rem; margin-bottom: 10px; }
.footer__contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--color-secondary); }
.footer__bottom {
  margin-top: 48px; padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  max-width: var(--max-width); margin-left: auto; margin-right: auto;
  font-size: .8rem;
}
.footer__legal { display: flex; gap: 16px; }
.footer__legal a { color: rgba(255,255,255,.5); font-size: .8rem; }
.footer__legal a:hover { color: #fff; }

/* --- Utilities --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-1 { margin-top: 8px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.pt-0 { padding-top: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* --- Responsive --- */
@media (max-width: 768px) {
  :root { --spacing-section: 56px; --spacing-section-sm: 40px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col--reverse { direction: ltr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .hero { padding: 80px 0 56px; }
  .hero--page { padding: 56px 0 36px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .card--horizontal { grid-template-columns: 1fr; }
  .trust-bar__inner { gap: 16px; }
  .service-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .stats { grid-template-columns: 1fr; }
}

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