/* =============================================
   GreaseTrap Co. — Main Stylesheet
   Brand: Navy #0f1f3d | Orange #f97316 | White
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0f1f3d;
  --navy2:  #162b52;
  --orange: #f97316;
  --orange2:#ea6a0a;
  --white:  #ffffff;
  --light:  #f4f6fa;
  --gray:   #6b7280;
  --dark:   #111827;
  --radius: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

/* ── Typography ── */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; line-height: 1.2; }
h3 { font-size: 1.25rem; font-weight: 700; }
p  { color: var(--gray); line-height: 1.75; }

a { text-decoration: none; color: inherit; }

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange2); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy2); }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--orange); }
.nav-logo .logo-icon {
  width: 38px; height: 38px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { margin-left: 12px; }

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, #0a1628 0%, #0f1f3d 40%, #1a3a5c 70%, #2d1f0a 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
/* Desert ground strip */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(180,100,20,0.15) 0%, transparent 100%);
  pointer-events: none;
}
/* Saguaro scene container */
.hero-saguaro-scene {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.4);
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--orange); }
.hero p { color: rgba(255,255,255,0.72); font-size: 1.1rem; margin-bottom: 36px; max-width: 480px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat-num { font-size: 2rem; font-weight: 900; color: var(--white); }
.stat-num span { color: var(--orange); }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 36px;
  backdrop-filter: blur(10px);
}
.hero-card h3 { color: var(--white); margin-bottom: 20px; font-size: 1.15rem; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,0.8); font-size: 0.95rem;
}
.feature-list li .check {
  width: 22px; height: 22px; min-width: 22px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  color: white;
  margin-top: 1px;
}
.hero-phone {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; gap: 12px;
}
.hero-phone .phone-icon {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.hero-phone .phone-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; }
.hero-phone .phone-num { font-size: 1.2rem; font-weight: 800; color: var(--white); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--orange);
  padding: 16px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 32px 28px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.service-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 54px; height: 54px;
  background: rgba(249,115,22,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.service-card h3 { color: var(--dark); margin-bottom: 10px; }
.service-card p { font-size: 0.93rem; }

/* ── WHY US ── */
.why-us { background: var(--light); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 0;
}
.why-content { padding-top: 0; }
.why-content h2 { margin-bottom: 16px; }
.why-content > p { margin-bottom: 32px; }
.why-points { display: flex; flex-direction: column; gap: 20px; }
.why-point {
  display: flex; gap: 16px;
  align-items: flex-start;
}
.why-num {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem;
}
.why-point h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--dark); }
.why-point p { font-size: 0.9rem; }
.why-visual {
  background: var(--navy);
  border-radius: 20px;
  padding: 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.why-stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
}
.why-stat-card .big { font-size: 2.4rem; font-weight: 900; color: var(--orange); }
.why-stat-card .label { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 4px; }
.why-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── AREAS ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.area-card {
  background: var(--white);
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.2s;
  cursor: default;
}
.area-card:hover { border-color: var(--orange); box-shadow: 0 4px 20px rgba(249,115,22,0.15); }
.area-card .area-icon { font-size: 2rem; margin-bottom: 10px; }
.area-card h4 { font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.area-card p { font-size: 0.82rem; }

/* ── PROCESS ── */
.process { background: var(--navy); }
.process h2 { color: var(--white); text-align: center; margin-bottom: 12px; }
.process .sub { color: rgba(255,255,255,0.6); text-align: center; margin-bottom: 56px; max-width: 540px; margin-left: auto; margin-right: auto; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(12.5%); right: calc(12.5%);
  height: 2px;
  background: rgba(249,115,22,0.3);
}
.step { text-align: center; position: relative; }
.step-num {
  width: 72px; height: 72px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 900;
  color: var(--white);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.step h4 { color: var(--white); margin-bottom: 8px; font-size: 1rem; }
.step p { color: rgba(255,255,255,0.55); font-size: 0.88rem; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 28px;
}
.stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.95rem; color: var(--dark); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 800; font-size: 1rem;
}
.author-name { font-weight: 700; font-size: 0.95rem; color: var(--dark); }
.author-biz  { font-size: 0.8rem; color: var(--gray); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--orange);
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p  { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 1.05rem; }
.cta-btns    { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white   { background: var(--white); color: var(--orange); }
.btn-white:hover { background: #fff3; color: var(--white); }
.btn-white-outline { background: transparent; color: var(--white); border: 2px solid white; }
.btn-white-outline:hover { background: var(--white); color: var(--orange); }

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.blog-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-3px); }
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  position: relative;
}
.blog-tag {
  position: absolute; bottom: 12px; left: 16px;
  background: var(--orange); color: white;
  font-size: 0.75rem; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 0.8rem; color: var(--gray); margin-bottom: 10px; }
.blog-card-body h3 { font-size: 1.05rem; color: var(--dark); margin-bottom: 10px; line-height: 1.4; }
.blog-card-body p  { font-size: 0.88rem; flex: 1; margin-bottom: 20px; }
.read-more { color: var(--orange); font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; gap: 4px; }
.read-more:hover { gap: 8px; }

/* ── BLOG POST ── */
.post-hero { background: var(--navy); padding: 64px 0; }
.post-hero .post-tag {
  display: inline-block;
  background: var(--orange); color: white;
  font-size: 0.8rem; font-weight: 700;
  padding: 5px 12px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.post-hero h1 { color: var(--white); max-width: 780px; }
.post-meta { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-top: 16px; }
.post-body { max-width: 780px; margin: 64px auto; padding: 0 24px; }
.post-body h2 { color: var(--dark); margin: 40px 0 16px; font-size: 1.6rem; }
.post-body h3 { color: var(--dark); margin: 28px 0 10px; }
.post-body p  { margin-bottom: 20px; color: #374151; line-height: 1.8; }
.post-body ul { margin: 0 0 20px 24px; }
.post-body ul li { color: #374151; line-height: 1.8; margin-bottom: 8px; }
.post-callout {
  background: rgba(249,115,22,0.08);
  border-left: 4px solid var(--orange);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.post-callout p { color: var(--dark); font-weight: 500; margin: 0; }
.post-cta {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin: 48px 0;
}
.post-cta h3 { color: var(--white); margin-bottom: 10px; }
.post-cta p  { color: rgba(255,255,255,0.7); margin-bottom: 24px; }

/* ── FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}
.form-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.form-card h3 { margin-bottom: 28px; color: var(--dark); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--dark);
  transition: border-color 0.2s;
  background: white;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--light);
  border-radius: 12px;
  padding: 20px;
}
.ci-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.ci-label { font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.ci-value { font-size: 1rem; font-weight: 700; color: var(--dark); margin-top: 2px; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 0.9rem; margin-top: 12px; max-width: 260px; }
.footer-col h5 { color: var(--white); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.85rem; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(160deg, #0a1628 0%, #0f1f3d 50%, #1a2d10 100%);
  padding: 72px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200'%3E%3Cg fill='%23f97316' opacity='0.08'%3E%3Crect x='100' y='80' width='14' height='120' rx='7'/%3E%3Cpath d='M107,115 Q107,99 94,99 Q81,99 81,88 Q81,77 89,77 Q96,77 96,87 Q96,99 107,99'/%3E%3Crect x='82' y='77' width='10' height='26' rx='5'/%3E%3Crect x='400' y='90' width='13' height='110' rx='6'/%3E%3Cpath d='M406,124 Q406,110 394,110 Q382,110 382,100 Q382,90 389,90 Q396,90 396,99 Q396,110 406,110'/%3E%3Cpath d='M413,136 Q413,122 425,122 Q437,122 437,112 Q437,102 430,102 Q423,102 423,110 Q423,122 413,122'/%3E%3Crect x='383' y='90' width='10' height='24' rx='5'/%3E%3Crect x='424' y='102' width='10' height='24' rx='5'/%3E%3Crect x='720' y='70' width='16' height='130' rx='8'/%3E%3Cpath d='M728,108 Q728,90 713,90 Q699,90 699,78 Q699,66 707,66 Q714,66 714,76 Q714,90 728,90'/%3E%3Cpath d='M736,124 Q736,106 751,106 Q765,106 765,94 Q765,82 757,82 Q749,82 749,92 Q749,106 736,106'/%3E%3Crect x='700' y='66' width='12' height='30' rx='6'/%3E%3Crect x='750' y='82' width='12' height='30' rx='6'/%3E%3Crect x='1050' y='85' width='14' height='115' rx='7'/%3E%3Cpath d='M1057,120 Q1057,105 1044,105 Q1032,105 1032,94 Q1032,83 1040,83 Q1047,83 1047,92 Q1047,105 1057,105'/%3E%3Crect x='1033' y='83' width='10' height='26' rx='5'/%3E%3Crect x='1330' y='78' width='15' height='122' rx='7'/%3E%3Cpath d='M1337,114 Q1337,98 1323,98 Q1310,98 1310,86 Q1310,74 1318,74 Q1325,74 1325,84 Q1325,98 1337,98'/%3E%3Cpath d='M1345,130 Q1345,114 1359,114 Q1372,114 1372,102 Q1372,90 1364,90 Q1357,90 1357,100 Q1357,114 1345,114'/%3E%3Crect x='1311' y='74' width='11' height='28' rx='5'/%3E%3Crect x='1358' y='90' width='11' height='28' rx='5'/%3E%3C/g%3E%3C/svg%3E") bottom center / cover no-repeat;
  pointer-events: none;
}
.page-hero h1 { color: var(--white); position: relative; }
.page-hero p  { color: rgba(255,255,255,0.65); margin-top: 12px; font-size: 1.05rem; position: relative; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block;
  background: rgba(249,115,22,0.1);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p  { max-width: 540px; margin: 0 auto; }

/* ── DESERT / ARIZONA IMAGERY ── */
.desert-section {
  background: linear-gradient(160deg, #0a1628 0%, #0f1f3d 50%, #1c2e10 100%);
  position: relative;
  overflow: hidden;
}
.desert-section .saguaro-bg {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  opacity: 0.18;
  pointer-events: none;
}

/* Photo cards */
.photo-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.photo-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.photo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,31,61,0.85) 0%, transparent 60%);
  display: flex; align-items: flex-end;
  padding: 20px;
}
.photo-card-overlay span {
  color: white; font-weight: 700; font-size: 0.95rem;
}

/* Visual service images */
.svc-img {
  width: 100%; height: 240px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}
.svc-img-placeholder {
  width: 100%; height: 240px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

/* Arizona pride strip */
.az-strip {
  background: linear-gradient(135deg, #0f1f3d 0%, #1a2f50 40%, #2d1f0a 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.az-strip h2 { color: white; margin-bottom: 10px; }
.az-strip p  { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 32px; }
.az-strip .saguaro-bg {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  width: 100%; opacity: 0.12;
  pointer-events: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 60px 0; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 20px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .why-stat-row { grid-template-columns: 1fr; }
}
