/* ==========================================================================
   ATX TRASH VALET — Editorial Design System
   Cormorant + Outfit · Deep green + warm white · Grain texture
   ========================================================================== */

:root {
  --navy:        #0f2818;
  --navy-mid:    #163420;
  --navy-light:  #1d4228;
  --navy-fade:   rgba(15,40,24,.96);
  --charcoal:    #1a3a1e;

  --gold:        #2e7d32;
  --gold-light:  #388e3c;
  --gold-bright: #4caf50;
  --gold-dim:    rgba(46,125,50,.07);
  --gold-glow:   rgba(46,125,50,.18);

  --cream:       #f7f6f2;
  --cream-dark:  #eeedea;
  --white:       #ffffff;
  --offwhite:    #faf9f6;

  --gray-200:    #dddbd5;
  --gray-300:    #c5c3bc;
  --gray-500:    #6b6b6b;
  --gray-600:    #555;
  --gray-700:    #2d2d2d;
  --gray-800:    #1a1a1a;

  --font-head:   'Cormorant', Georgia, 'Times New Roman', serif;
  --font-body:   'Outfit', system-ui, sans-serif;

  --r:           6px;
  --r-lg:        10px;
  --nav-h:       76px;
  --max-w:       1200px;
}

/* --- RESET --- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { font-size:16px; scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }
body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }
ul, ol { list-style:none; }
button { cursor:pointer; font-family:inherit; }
input, textarea, select { font-family:inherit; }

/* --- GRAIN TEXTURE --- */
body::after {
  content: '';
  position: fixed; inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0.028;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; color: var(--gray-800); }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); letter-spacing: -0.01em; }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; }

/* --- LAYOUT --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section-light { background: var(--offwhite); }
.section-dark { background: var(--navy); color: rgba(255,255,255,.85); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-cream { background: var(--cream); }
.section-pad { padding: 110px 0; }
.section-pad-sm { padding: 80px 0; }

/* Section numbering */
.section-head { margin-bottom: 48px; }
.section-num {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}
.section-dark .section-num { border-bottom-color: rgba(255,255,255,.12); }
.section-intro {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 520px;
  line-height: 1.8;
  margin-top: 14px;
}
.section-dark .section-intro { color: rgba(255,255,255,.45); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.4px;
  border: none; border-radius: 4px;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--gold-glow);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.8);
}
.btn-outline:hover {
  border-color: #fff;
  color: #fff;
}
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-ghost:hover {
  background: var(--gold);
  color: #fff;
}
.btn-sm { padding: 10px 20px; font-size: 0.78rem; }
.btn-lg { padding: 16px 36px; font-size: 0.88rem; }

.link-arrow {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.link-arrow:hover { gap: 10px; }

/* --- NAVIGATION --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: all .35s ease;
}
.nav.transparent { background: transparent; }
.nav.solid {
  background: var(--navy-fade);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto; padding: 0 32px; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 0.95rem;
  font-weight: 600; color: #fff;
  letter-spacing: 0.3px;
}
.nav-logo-img {
  width: 34px; height: 34px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-logo-mark {
  width: 34px; height: 34px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #fff; font-weight: 700;
}
.nav-logo span { color: var(--gold-bright); }
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  padding: 7px 14px;
  font-size: 0.82rem; font-weight: 400;
  color: rgba(255,255,255,.55);
  border-radius: 4px;
  transition: color .2s;
  letter-spacing: 0.2px;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: rgba(255,255,255,.9); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,.7);
  letter-spacing: 0.3px;
  transition: color .2s;
}
.nav-phone:hover { color: #fff; }
.nav-phone-icon { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: #fff;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }
.mobile-menu {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999; flex-direction: column;
  padding: 28px; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 16px; font-size: 1rem; font-weight: 400;
  color: rgba(255,255,255,.7); border-radius: 6px; transition: all .2s;
}
.mobile-menu a:hover { background: rgba(255,255,255,.05); color: #fff; }

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 0 0;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 30%, rgba(46,125,50,.08), transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(46,125,50,.06), transparent 60%);
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 32px 0;
}
.hero-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 28px;
}
.hero-heading {
  color: #fff;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 28px;
  max-width: 700px;
}
.hero-heading em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,.6);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.4);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex; align-items: center; gap: 28px;
  margin-bottom: 80px;
}
.hero-phone {
  display: flex; flex-direction: column;
  font-size: 0.95rem; font-weight: 500;
  color: #fff; letter-spacing: 0.3px;
}
.hero-phone-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.3);
  margin-bottom: 2px;
}
.hero-stats {
  position: relative; z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px 48px;
  display: flex; gap: 48px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 32px;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 1.4rem; font-weight: 600;
  color: #fff;
}
.hero-stat-label {
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-top: 2px;
}

/* --- SERVICE LIST --- */
.service-list { max-width: 800px; }
.service-item {
  padding: 36px 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-item:first-child { border-top: 1px solid var(--gray-200); }
.service-item-head {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 14px;
}
.service-num {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  min-width: 24px;
}
.service-item h3 { font-size: 1.4rem; }
.service-item p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
  max-width: 600px;
  padding-left: 40px;
}
.service-item .link-arrow { padding-left: 40px; }

/* --- STEPS --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 50px;
}
.step { position: relative; }
.step-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(255,255,255,.08);
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.45);
  line-height: 1.75;
}

/* --- SPLIT LAYOUT --- */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.split-text {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.85;
  margin-top: 16px;
}
.feature-stack {
  display: flex;
  flex-direction: column;
}
.feature-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-200);
}
.feature-item:first-child { border-top: 1px solid var(--gray-200); }
.feature-item h4 {
  margin-bottom: 4px;
  color: var(--gray-800);
}
.feature-item p {
  color: var(--gray-500);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* --- QUOTE BLOCK --- */
.quote-block {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
}
.quote-block blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 28px;
}
.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.85rem;
}
.quote-name { font-weight: 600; color: var(--gray-800); }
.quote-role { color: var(--gray-500); }
.quote-stars { color: var(--gold); letter-spacing: 2px; }

/* --- AREAS GRID --- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  margin-top: 40px;
}
.areas-grid a {
  padding: 18px 20px;
  background: var(--navy);
  font-size: 0.9rem;
  color: rgba(255,255,255,.55);
  transition: all .2s;
}
.areas-grid a:hover {
  color: #fff;
  background: rgba(255,255,255,.03);
}

/* --- FAQ --- */
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-size: 1rem; font-weight: 500;
  color: var(--gray-800);
  gap: 14px; user-select: none;
  transition: color .2s;
}
.faq-question:hover { color: var(--gold); }
.faq-arrow {
  font-size: 1.1rem; color: var(--gray-300);
  transition: transform .3s, color .3s;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); color: var(--gold); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding-bottom: 22px;
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.85;
}

/* --- CTA SECTION --- */
.cta-section {
  background: var(--gold);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 8px; }
.cta-section p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 24px; }
.cta-phone {
  font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}
.cta-phone a { color: #fff; }
.cta-phone a:hover { opacity: .85; }
.btn-dark {
  background: var(--navy);
  color: #fff;
  border: none;
}
.btn-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

/* --- FOOTER --- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.4);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600;
  color: #fff; margin-bottom: 12px;
}
.footer-brand h3 span { color: var(--gold-bright); }
.footer-brand p {
  font-size: 0.85rem; line-height: 1.75;
  max-width: 280px; margin-bottom: 16px;
}
.footer-phone { font-size: 0.95rem; font-weight: 500; color: var(--gold-bright); }
.footer-phone a { color: var(--gold-bright); }
.footer-phone a:hover { color: #fff; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  color: rgba(255,255,255,.25); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 0.85rem;
  color: rgba(255,255,255,.4);
  padding: 4px 0; transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 20px;
  display: flex; justify-content: space-between;
  font-size: 0.72rem; color: rgba(255,255,255,.2);
}

/* --- FORMS (contact page) --- */
.contact-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 60px) 0 60px;
  text-align: center;
}
.contact-hero h1 { color: #fff; margin-bottom: 12px; }
.contact-hero p { color: rgba(255,255,255,.45); font-size: 1.05rem; }
.contact-hero .section-label,
.contact-hero .section-num {
  color: var(--gold-bright);
  border-bottom: none;
  display: block;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  margin-top: -32px;
  position: relative; z-index: 2;
}
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
}
.contact-info-card { padding: 36px 0; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-200);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 40px; height: 40px;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.contact-info-item h4 { margin-bottom: 3px; }
.contact-info-item p { color: var(--gray-500); font-size: 0.88rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.75rem; font-weight: 600;
  color: var(--gray-700); letter-spacing: 0.3px;
}
.form-input {
  padding: 13px 15px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r);
  font-size: 0.92rem; color: var(--gray-800);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.form-input::placeholder { color: var(--gray-300); }
textarea.form-input { min-height: 110px; resize: vertical; font-family: var(--font-body); }
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%236b6b6b' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 34px;
}
.form-success { display:none; text-align:center; padding:36px; }
.form-success.show { display:block; }
.form-success-icon {
  width: 56px; height: 56px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 0 auto 16px;
}
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--gray-500); }
.form-error {
  display:none; background:#fef2f2; border:1px solid #fecaca;
  border-radius:var(--r); padding:11px 15px; color:#c0392b;
  font-size:0.85rem; margin-bottom:12px;
}
.form-error.show { display:block; }

/* --- LEGACY CARD SUPPORT (inner pages) --- */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: box-shadow .3s, border-color .3s;
}
.service-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.service-icon {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--gray-500); font-size: 0.92rem; line-height: 1.75; margin-bottom: 16px; }
.service-card .learn-more { font-size: 0.85rem; font-weight: 500; color: var(--gold); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
}
.why-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  transition: border-color .2s;
}
.why-card:hover { border-color: var(--gold); }
.why-icon {
  width: 40px; height: 40px;
  background: var(--gold-dim);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.why-card h4 { margin-bottom: 4px; }
.why-card p { color: var(--gray-500); font-size: 0.85rem; line-height: 1.65; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
}
.testimonial {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  padding: 28px 24px;
}
.testimonial p {
  font-size: 0.92rem;
  color: rgba(255,255,255,.55);
  line-height: 1.8; font-style: italic;
  margin-bottom: 18px;
}
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 36px; height: 36px;
  background: var(--gold-dim);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: var(--gold);
  font-family: var(--font-head);
}
.testimonial-name { font-weight: 600; color: #fff; font-size: 0.88rem; }
.testimonial-role { font-size: 0.75rem; color: rgba(255,255,255,.35); }
.stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 14px; }

/* Trust bar (legacy) */
.trust-bar { display: none; }

/* Accent line (legacy) */
.accent-line { display: block; width: 40px; height: 2px; background: var(--gold); margin-bottom: 16px; }
.accent-line-long { width: 60px; }
.accent-line-center { margin-left: auto; margin-right: auto; }
.section-label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.section-dark .section-label { color: var(--gold-bright); }

/* --- REVEAL --- */
.reveal {
  opacity: 0;
  transition: opacity .7s ease;
}
.reveal.visible {
  opacity: 1;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 2px; }

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
  .split-layout { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: 92vh; }
  .hero-inner { padding: 40px 24px 0; }
  .hero-heading { font-size: 2.6rem; }
  .hero-stats { flex-wrap: wrap; gap: 24px; padding: 0 24px 36px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-pad { padding: 70px 0; }
  .section-pad-sm { padding: 50px 0; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .services-grid, .why-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-bar { flex-direction: column; gap: 6px; text-align: center; }
  .container { padding: 0 20px; }
  .service-item p, .service-item .link-arrow { padding-left: 0; }

  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  [style*="order:0"], [style*="order:1"] { order: unset !important; }
}

@media (max-width: 480px) {
  .hero-heading { font-size: 2.1rem; }
  .areas-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
}
