/* ============================================
   Contractor Marketing Engine — Global Styles
   Light theme. Orange + Slate palette.
   Inspired by Tailark component patterns.
   ============================================ */

/* --- Font Display --- */
@font-face { font-family: 'Inter'; font-display: swap; }

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #0f172a;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* --- Design Tokens --- */
:root {
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #78879b;
  --slate-500: #526070;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
  --max-w: 1200px;
  --max-w-narrow: 800px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--slate-900); }
h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { color: var(--slate-600); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: .9375rem; line-height: 1;
  padding: .875rem 1.75rem; border-radius: var(--radius-sm);
  border: none; cursor: pointer; transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--slate-900); color: var(--white); }
.btn-primary:hover { background: var(--slate-800); }
.btn-secondary { background: transparent; color: var(--slate-700); border: 1.5px solid var(--slate-200); }
.btn-secondary:hover { background: var(--slate-50); border-color: var(--slate-300); }
.btn-orange { background: var(--orange-500); color: var(--white); }
.btn-orange:hover { background: var(--orange-600); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; border-radius: var(--radius); }
.btn svg, .btn img { width: 1.125rem; height: 1.125rem; }

/* --- Badge --- */
.badge {
  display: inline-flex; align-items: center; gap: .375rem;
  font-size: .8125rem; font-weight: 500; color: var(--slate-600);
  background: var(--slate-100); padding: .375rem .875rem;
  border-radius: 100px; border: 1px solid var(--slate-200);
}
.badge-orange { background: var(--orange-50); color: var(--orange-700); border-color: var(--orange-200); }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-100);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem;
}
.site-header .logo img { height: 2.6rem; width: auto; object-fit: contain; }
.site-header nav { display: flex; align-items: center; gap: 2rem; }
.site-header nav > a,
.site-header nav > .nav-dropdown > a { font-size: .875rem; font-weight: 500; color: var(--slate-600); transition: color .2s; }
.site-header nav > a:hover,
.site-header nav > .nav-dropdown > a:hover { color: var(--slate-900); }
.header-cta { display: flex; align-items: center; gap: .75rem; }
.header-phone { font-size: .875rem; font-weight: 600; color: var(--slate-700); }
.nav-dropdown { position: relative; }
.nav-dropdown > a { cursor: pointer; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
  min-width: 260px; padding: .5rem 0; z-index: 200;
}
.nav-dropdown::after {
  content: ''; position: absolute; top: 100%; left: 0;
  width: 100%; height: 1rem;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: .625rem 1.25rem; font-size: .8125rem;
  font-weight: 500; color: var(--slate-600); transition: all .15s;
}
.nav-dropdown-menu a:hover { background: var(--orange-50); color: var(--orange-600); }
.header-cta .btn-primary { background: var(--orange-500); }
.header-cta .btn-primary:hover { background: var(--orange-600); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.mobile-toggle svg { width: 1.5rem; height: 1.5rem; color: var(--slate-700); }

/* ============================================
   BREADCRUMB
   ============================================ */
nav.breadcrumb {
  padding-top: 5rem; font-size: .8125rem; color: var(--slate-400);
}
nav.breadcrumb ol { display: flex; gap: .5rem; list-style: none; flex-wrap: wrap; }
nav.breadcrumb li + li::before { content: '›'; margin-right: .5rem; color: var(--slate-300); }
nav.breadcrumb a { color: var(--slate-500); text-decoration: underline; }
nav.breadcrumb a:hover { color: var(--orange-600); }
nav.breadcrumb [aria-current="page"] { color: var(--slate-700); font-weight: 600; }

/* ============================================
   HERO — Tailark Hero 2 pattern
   ============================================ */
.hero {
  padding: 8rem 0 4rem;
  background: var(--white);
  overflow: hidden;
}
.hero .container { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.hero-content { max-width: 640px; }
.hero-content .badge { margin-bottom: 1.5rem; }
.hero-content h1 { margin-bottom: 1.25rem; }
.hero-content h1 .text-orange { color: var(--orange-500); }
.hero-content .hero-sub {
  font-size: 1.125rem; color: var(--slate-500); line-height: 1.7;
  margin-bottom: 2rem; max-width: 540px;
}
.hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.hero-trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8125rem; font-weight: 500; color: var(--slate-500);
}
.hero-trust-item svg { width: 1rem; height: 1rem; color: var(--orange-500); }

.hero-form .contact-form {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.hero-form .contact-form h2,
.hero-form .contact-form h3 { font-size: 1.25rem; margin-bottom: .25rem; text-align: center; }
.hero-form .contact-form .form-sub,
.contact-form .form-sub { color: var(--orange-600); font-weight: 600; font-size: .9375rem; margin-bottom: 1.25rem; text-align: center; }
.contact-form h2,
.contact-form h3 { text-align: center; }

/* ============================================
   LOGO CLOUD
   ============================================ */
.logo-cloud {
  padding: 3rem 0 4rem;
  border-bottom: 1px solid var(--slate-100);
}
.logo-cloud p {
  text-align: center; font-size: .8125rem; font-weight: 500;
  color: var(--slate-400); text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 1.5rem;
}
.logo-cloud-grid {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2rem 3rem;
}
.logo-cloud-grid span {
  font-size: 1rem; font-weight: 700; color: var(--slate-300);
  letter-spacing: .02em;
}
.area-btn {
  display: inline-flex; align-items: center;
  padding: .5rem 1.25rem; border: 1px solid var(--slate-200);
  border-radius: 100px; font-size: .875rem; font-weight: 600;
  color: var(--slate-500); background: var(--white);
  transition: all .2s; text-decoration: none;
}
.area-btn:hover { border-color: var(--orange-400); color: var(--orange-600); background: var(--orange-50); }

/* ============================================
   SECTION — shared
   ============================================ */
.section { padding: 5rem 0; }
.section-alt { background: var(--slate-50); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-header p { margin-top: .75rem; font-size: 1.0625rem; }

/* ============================================
   FEATURES — Tailark Features 4 pattern (6 pillars)
   ============================================ */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--slate-200); border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-card {
  padding: 2.5rem 2rem;
  border-bottom: 1px solid var(--slate-200);
  border-right: 1px solid var(--slate-200);
}
.feature-card:nth-child(3n) { border-right: none; }
.feature-card:nth-child(n+4) { border-bottom: none; }
.feature-icon {
  width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.feature-icon svg { width: 1.5rem; height: 1.5rem; color: var(--orange-500); }
.feature-card h3 { margin-bottom: .5rem; font-size: 1.125rem; }
.feature-card p { font-size: .9375rem; line-height: 1.6; }

/* ============================================
   PILLARS — Pain → Outcome cards
   ============================================ */
.pillar-intro { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.pillar-intro h3 { font-size: 1.5rem; margin-bottom: .75rem; }
.pillar-intro p { font-size: 1.0625rem; }

.pillar-card {
  display: grid; grid-template-columns: auto 1fr 1fr;
  gap: 1.5rem; align-items: start;
  background: var(--white); border: 1px solid var(--slate-200);
  border-left: 4px solid var(--orange-500);
  border-radius: var(--radius-lg); padding: 2rem 2.5rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-md);
  transition: box-shadow .2s, transform .2s;
}
.pillar-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.pillar-number {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--orange-500);
  writing-mode: vertical-lr; transform: rotate(180deg);
  white-space: nowrap; align-self: center;
}
.pillar-pain h4, .pillar-outcome h4 {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: .5rem;
}
.pillar-pain h4 { color: #dc2626; }
.pillar-outcome h4 { color: #16a34a; }
.pillar-pain p, .pillar-outcome li {
  font-size: .9375rem; line-height: 1.6; color: var(--slate-600);
}
.pillar-outcome {
  background: var(--slate-50); border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem; border: 1px solid var(--slate-100);
}
.pillar-outcome ul { list-style: none; padding: 0; }
.pillar-outcome li { padding: .35rem 0; padding-left: 1.5rem; position: relative; font-weight: 500; color: var(--slate-800); font-size: .9375rem; }
.pillar-outcome li::before {
  content: ''; position: absolute; left: 0; top: .6rem;
  width: .625rem; height: .625rem; background: var(--orange-500);
  border-radius: 50%;
}
.pillar-card h3 {
  grid-column: 2 / -1; font-size: 1.25rem; margin-bottom: 0;
}
@media (max-width: 767px) {
  .pillar-card { grid-template-columns: 1fr; }
  .pillar-number { writing-mode: horizontal-tb; transform: none; }
  .pillar-card h3 { grid-column: 1; }
}

/* ============================================
   TESTIMONIALS — Video grid
   ============================================ */
.testimonial-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.testimonial-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 9/16; background: var(--slate-200);
}
.testimonial-card a { display: block; width: 100%; height: 100%; position: relative; }
.testimonial-card img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 3.5rem; height: 3.5rem; background: rgba(234,88,12,.9);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: transform .2s, background .2s;
}
.testimonial-card a:hover .testimonial-play { transform: translate(-50%, -50%) scale(1.1); background: var(--orange-600); }
.testimonial-play svg { width: 1.5rem; height: 1.5rem; color: #fff; margin-left: 2px; }
.testimonial-card .testimonial-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .75rem 1rem; background: linear-gradient(transparent, rgba(0,0,0,.7));
  font-size: .8125rem; font-weight: 600; color: #fff;
}
@media (max-width: 767px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   REVIEWS — Horizontal scroll marquee
   ============================================ */
.reviews-scroll-wrap { overflow: hidden; position: relative; }
.reviews-scroll-wrap::before,
.reviews-scroll-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 4rem; z-index: 2; pointer-events: none;
}
.reviews-scroll-wrap::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.reviews-scroll-wrap::after { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.section-alt .reviews-scroll-wrap::before { background: linear-gradient(to right, var(--slate-50), transparent); }
.section-alt .reviews-scroll-wrap::after { background: linear-gradient(to left, var(--slate-50), transparent); }

.reviews-track {
  display: flex; gap: 1.25rem; width: max-content;
  animation: scroll-reviews 45s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }

@keyframes scroll-reviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  flex-shrink: 0; width: 300px;
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: box-shadow .2s, transform .2s;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-card img { width: 100%; height: auto; display: block; }

/* ============================================
   STAT CARDS — Pain section on service pages
   ============================================ */
.stat-cards {
  display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
  max-width: 900px; margin: 0 auto;
}

/* ============================================
   PILLAR LINKS — Cross-link cards on service pages
   ============================================ */
.pillar-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.pillar-link-card {
  display: block; padding: 2rem; text-decoration: none;
  background: var(--white); border: 1px solid var(--slate-200);
  border-left: 4px solid var(--orange-500);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.pillar-link-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.pillar-link-card .pillar-link-label {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--orange-500); margin-bottom: .375rem;
}
.pillar-link-card h3 { font-size: 1.125rem; margin-bottom: .5rem; color: var(--slate-900); }
.pillar-link-card p { font-size: .875rem; color: var(--slate-500); margin-bottom: 0; }
@media (max-width: 767px) { .pillar-links { grid-template-columns: 1fr; } }

/* ============================================
   HOW IT WORKS — Steps
   ============================================ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.step-card { text-align: center; }
.step-number {
  font-size: 3.5rem; font-weight: 800; color: var(--orange-200);
  line-height: 1; margin-bottom: .75rem;
}
.step-icon {
  width: 4rem; height: 4rem; margin: 0 auto 1rem;
  background: var(--orange-50); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.step-icon svg { width: 1.5rem; height: 1.5rem; color: var(--orange-600); }
.step-card h3 { font-size: 1.125rem; margin-bottom: .375rem; }
.step-card p { font-size: .875rem; }

/* ============================================
   CASE STUDY
   ============================================ */
.case-study {
  background: var(--slate-900); color: var(--white);
  border-radius: var(--radius-lg); padding: 3.5rem;
  margin-top: 3rem;
}
.case-study h3 { color: var(--white); font-size: 1.5rem; margin-bottom: .5rem; }
.case-study .cs-sub { color: var(--orange-400); font-weight: 600; margin-bottom: 1rem; font-size: .9375rem; }
.case-study p { color: var(--slate-300); margin-bottom: 2rem; }
.cs-flow {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  text-align: center;
}
.cs-flow-step {
  background: rgba(255,255,255,.05); border-radius: var(--radius-sm);
  padding: 1.5rem 1rem;
}
.cs-flow-step .num { font-size: 1.75rem; font-weight: 800; color: var(--orange-400); }
.cs-flow-step .label { font-size: .8125rem; color: var(--slate-400); margin-top: .25rem; }
.cs-result {
  text-align: center; margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.cs-result .big { font-size: 2.5rem; font-weight: 800; color: var(--orange-400); }
.cs-result .label { color: var(--slate-400); font-size: .875rem; }

/* ============================================
   REVENUE CALCULATOR
   ============================================ */
.calculator-card {
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 3rem; max-width: 600px; margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.calc-slider { margin-bottom: 2rem; }
.calc-slider label {
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: .9375rem; color: var(--slate-700); margin-bottom: .75rem;
}
.calc-slider label span { color: var(--orange-500); font-size: 1.125rem; }
input[type="range"] {
  width: 100%; height: 6px; border-radius: 3px;
  background: var(--slate-200); outline: none;
  -webkit-appearance: none; appearance: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px;
  background: var(--orange-500); border-radius: 50%;
  cursor: pointer; border: 3px solid var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.calc-result {
  text-align: center; padding: 2rem;
  background: var(--slate-50); border-radius: var(--radius);
  margin-top: 1rem;
}
.calc-result .amount { font-size: 2rem; font-weight: 800; color: var(--orange-500); }
.calc-result p { color: var(--slate-500); font-size: .875rem; margin-top: .25rem; }

/* ============================================
   PRICING
   ============================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pricing-card {
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  position: relative; transition: box-shadow .2s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--orange-500); }
.pricing-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange-500); color: var(--white);
  font-size: .75rem; font-weight: 600; padding: .25rem 1rem;
  border-radius: 100px;
}
.pricing-card h3 { font-size: 1.25rem; margin-bottom: .25rem; }
.pricing-card .price-period { font-size: .8125rem; color: var(--slate-400); margin-bottom: 1.5rem; }
.pricing-card .price-desc { font-size: .9375rem; color: var(--slate-500); margin-bottom: 1.5rem; }
.pricing-features { margin-bottom: 2rem; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .875rem; color: var(--slate-600); padding: .375rem 0;
}
.pricing-features li svg { width: 1rem; height: 1rem; color: var(--orange-500); flex-shrink: 0; margin-top: .125rem; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ============================================
   FAQ — Accordion
   ============================================ */
.faq-list { max-width: var(--max-w-narrow); margin: 0 auto; }
.faq-item {
  border: 1px solid var(--slate-200); border-radius: var(--radius);
  margin-bottom: .75rem; overflow: hidden;
  background: var(--white);
}
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; font-size: 1rem; font-weight: 600;
  color: var(--slate-900); text-align: left;
}
.faq-question svg { width: 1.25rem; height: 1.25rem; color: var(--slate-400); transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: .9375rem; line-height: 1.7; color: var(--slate-600);
}

/* ============================================
   FAQ — Open (no accordion)
   ============================================ */
.faq-open-list { max-width: var(--max-w-narrow); margin: 0 auto; }
.faq-open-item {
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: var(--radius); padding: 1.5rem 2rem;
  margin-bottom: 1rem;
}
.faq-open-item h3 { font-size: 1.0625rem; margin-bottom: .5rem; }
.faq-open-item p { font-size: .9375rem; line-height: 1.7; color: var(--slate-600); }

/* ============================================
   ABOUT / AUTHOR
   ============================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-content h2 { margin-bottom: 1rem; }
.about-content p { margin-bottom: 1rem; }
.about-trust { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 1.5rem; }
.about-trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .875rem; font-weight: 500; color: var(--slate-700);
}
.about-trust-item svg { width: 1.125rem; height: 1.125rem; color: var(--orange-500); }

/* ============================================
   SERVICE AREAS
   ============================================ */
.areas-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.area-tag {
  display: inline-flex; align-items: center; gap: .375rem;
  padding: .625rem 1.25rem; border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm); font-size: .875rem; font-weight: 500;
  color: var(--slate-600); transition: all .2s;
}
.area-tag:hover { border-color: var(--orange-400); color: var(--orange-600); background: var(--orange-50); }
.area-tag svg { width: .875rem; height: .875rem; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-form { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-lg); padding: 2.5rem; }
.contact-form h3 { margin-bottom: .25rem; }
.contact-form .form-sub { color: var(--slate-500); font-size: .875rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .8125rem; font-weight: 600; color: var(--slate-700); margin-bottom: .375rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: .75rem 1rem; border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm); font-size: .9375rem; color: var(--slate-900);
  background: var(--white); transition: border-color .2s;
  font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--orange-400); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-reassurance { font-size: .75rem; color: var(--slate-500); margin-top: .75rem; }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card {
  background: var(--slate-50); border-radius: var(--radius);
  padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem;
}
.contact-info-icon {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  background: var(--orange-50); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 1.125rem; height: 1.125rem; color: var(--orange-600); }
.contact-info-card h4 { font-size: .875rem; font-weight: 600; margin-bottom: .125rem; }
.contact-info-card p, .contact-info-card a { font-size: .9375rem; color: var(--slate-600); }
.contact-info-card a:hover { color: var(--orange-600); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--slate-900); padding: 4rem 0; text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p { color: var(--slate-400); font-size: 1.0625rem; margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-group { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--slate-50); border-top: 1px solid var(--slate-200); padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: .875rem; color: var(--slate-500); margin-top: .75rem; max-width: 300px; line-height: 1.6; }
.footer-col h4 { font-size: .8125rem; font-weight: 600; color: var(--slate-900); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.footer-col a { display: block; font-size: .875rem; color: var(--slate-500); padding: .25rem 0; transition: color .2s; }
.footer-col a:hover { color: var(--orange-600); }
.footer-social { display: flex; gap: .75rem; margin-top: 1rem; }
.footer-social a {
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--slate-200); display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.footer-social a:hover { background: var(--orange-500); }
.footer-social a svg { width: 1rem; height: 1rem; color: var(--slate-600); }
.footer-social a:hover svg { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem; border-top: 1px solid var(--slate-200);
  font-size: .8125rem; color: var(--slate-400);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a:hover { color: var(--slate-700); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 768px) {
  .hero .container { grid-template-columns: 1fr 1fr; align-items: center; }
}
@media (max-width: 1023px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:nth-child(3n) { border-right: 1px solid var(--slate-200); }
  .feature-card:nth-child(2n) { border-right: none; }
  .feature-card:nth-child(n+5) { border-bottom: none; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .hero { padding: 6.5rem 0 3rem; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-content { max-width: 100%; }
  .site-header nav { display: none; }
  .mobile-toggle { display: block; }
  .header-phone { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none !important; }
  .feature-card:last-child { border-bottom: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .cs-flow { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
}
