/* =============================================
   MERIDIAN — Premium Contractor Agency Theme
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f5f0e8;
  --bg-dark: #1a3a2a;
  --fg: #1a1a18;
  --fg-muted: #5a5a54;
  --accent: #c9a84c;
  --accent-dark: #a8893a;
  --card: #ffffff;
  --border: rgba(26, 58, 42, 0.12);

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  --radius: 4px;
  --radius-lg: 12px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--bg-dark);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.header-nav {
  display: flex;
  gap: 2rem;
}

.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.header-nav a:hover { color: var(--bg-dark); }

/* --- Hero --- */
.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 70% 50%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 50%, black 0%, transparent 75%);
  opacity: 0.5;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.eyebrow-line {
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--accent);
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--bg-dark);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  gap: 2.5rem;
}

.hero-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }

.meta-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.meta-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg-dark);
}

/* --- Hero Visual --- */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 400px;
}

.geometric-frame {
  position: relative;
  width: 340px;
  height: 340px;
}

.geo-square {
  position: absolute;
  border: 2px solid var(--accent);
}

.geo-1 {
  width: 280px; height: 280px;
  top: 0; left: 0;
  background: rgba(201, 168, 76, 0.05);
}

.geo-2 {
  width: 200px; height: 200px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-color: var(--bg-dark);
  background: rgba(26, 58, 42, 0.04);
}

.geo-3 {
  width: 120px; height: 120px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--accent);
  opacity: 0.15;
  border: none;
}

.geo-brass-line {
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  transform: translateX(-50%) rotate(-15deg);
  transform-origin: center;
}

/* --- Stats Section --- */
.stats-section {
  background: var(--bg-dark);
  padding: 4rem 2rem;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.stat-block {
  padding: 0 2.5rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
  margin-top: 0.4rem;
}

.stat-note {
  display: block;
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.4);
  margin-top: 0.5rem;
  line-height: 1.5;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(245, 240, 232, 0.15);
}

/* --- Services --- */
.services-section {
  padding: var(--space-xl) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.services-header { margin-bottom: 3.5rem; }

.section-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--bg-dark);
  letter-spacing: -0.02em;
  max-width: 600px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(26, 58, 42, 0.1);
}

.service-card-accent {
  background: var(--bg-dark);
  border-color: transparent;
}

.service-card-accent .service-title,
.service-card-accent .service-desc,
.service-card-accent .service-list li { color: var(--bg); }

.service-card-accent .service-desc { color: rgba(245, 240, 232, 0.7); }

.service-card-accent .service-list li { color: rgba(245, 240, 232, 0.6); }

.service-card-accent .service-icon { color: var(--accent); }

.service-card-accent .service-price {
  background: var(--accent);
  color: var(--bg-dark);
}

.service-icon {
  color: var(--bg-dark);
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-list {
  list-style: none;
  margin-bottom: 2rem;
}

.service-list li {
  font-size: 0.875rem;
  color: var(--fg-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.service-price {
  display: inline-block;
  background: var(--bg-dark);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
}

/* --- Approach --- */
.approach-section {
  background: #ece8df;
  padding: var(--space-xl) 2rem;
}

.approach-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.approach-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-top: 1rem;
}

.approach-steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.step:first-child { border-top: 1px solid var(--border); }

.step-num {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  padding-top: 0.15rem;
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* --- Difference --- */
.difference-section {
  padding: var(--space-xl) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.diff-inner {}

.diff-label { margin-bottom: 2.5rem; }

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.diff-item {
  padding: 2.5rem;
  border: 1px solid var(--border);
  margin: -1px 0 0 -1px;
  transition: background 0.3s;
}

.diff-item:hover { background: var(--card); }

.diff-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.diff-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 0.75rem;
}

.diff-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* --- Manifesto --- */
.manifesto-section {
  background: var(--bg-dark);
  padding: var(--space-xl) 2rem;
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1.45;
  margin-bottom: 2.5rem;
  font-style: italic;
}

.manifesto-body {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* --- Closing --- */
.closing-section {
  padding: var(--space-xl) 2rem;
  background: var(--bg);
  text-align: center;
}

.closing-inner { max-width: 900px; margin: 0 auto; }

.closing-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--bg-dark);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

.closing-cta {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-stat { text-align: center; }

.cta-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.cta-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 0.4rem;
}

/* --- Footer --- */
.site-footer {
  background: #1a1a18;
  padding: 4rem 2rem 3rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bg);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.45);
  max-width: 300px;
  line-height: 1.6;
}

.footer-meta { text-align: right; }

.footer-built,
.footer-copy {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.35);
  line-height: 1.8;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 3rem 1.5rem; }
  .hero-visual { display: none; }
  .stats-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .stat-divider { display: none; }
  .stat-block { text-align: left; padding: 0; }
  .stat-note { margin: 0.4rem 0 0; max-width: none; }
  .services-grid { grid-template-columns: 1fr; }
  .approach-inner { grid-template-columns: 1fr; gap: 3rem; }
  .diff-grid { grid-template-columns: 1fr; }
  .header-nav { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
}

/* --- Button Variants --- */
.btn-primary {
  display: inline-block;
  background: var(--bg-dark);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  border: 2px solid var(--bg-dark);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--bg-dark);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: 2px solid var(--bg-dark);
  cursor: pointer;
}
.btn-ghost:hover {
  background: var(--bg-dark);
  color: var(--bg);
}

/* --- 3-col services grid --- */
.services-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

/* --- Service eyebrow --- */
.service-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* --- Light service card variant --- */
.service-card-light {
  background: var(--card);
  border: 1px solid var(--border);
}
.service-card-light .service-title,
.service-card-light .service-list li { color: var(--bg-dark); }
.service-card-light .service-list li { color: var(--fg-muted); }
.service-card-light .service-price {
  background: var(--accent);
  color: var(--bg-dark);
}

/* --- Testimonials Section --- */
.testimonials-section {
  background: #ece8df;
  padding: var(--space-xl) 2rem;
}
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-header { margin-bottom: 3.5rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card-featured {
  background: var(--bg-dark);
  border-color: transparent;
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent);
  line-height: 0.7;
  opacity: 0.4;
  font-weight: 800;
}

.testimonial-card-featured .testimonial-quote-mark { opacity: 0.3; }

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--fg);
  font-style: italic;
}

.testimonial-card-featured .testimonial-quote { color: rgba(245, 240, 232, 0.8); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card-featured .testimonial-avatar {
  background: var(--accent);
  color: var(--bg-dark);
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--bg-dark);
}

.testimonial-card-featured .testimonial-name { color: var(--bg); }

.testimonial-role {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.testimonial-card-featured .testimonial-role { color: rgba(245, 240, 232, 0.6); }

.testimonial-result {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.testimonial-card-featured .testimonial-result { border-top-color: rgba(245, 240, 232, 0.15); }

.testimonial-stat {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
}

.testimonial-stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.testimonial-card-featured .testimonial-stat-label { color: rgba(245, 240, 232, 0.6); }

/* --- Social Proof Bar --- */
.social-proof-bar {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.proof-item {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}

.proof-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.proof-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
  margin-top: 0.4rem;
  line-height: 1.4;
}

.proof-divider {
  width: 1px;
  height: 60px;
  background: rgba(245, 240, 232, 0.15);
}

/* --- Pricing Section --- */
.pricing-section {
  background: var(--bg);
  padding: var(--space-xl) 2rem;
}
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 4rem; }
.pricing-header .section-eyebrow { display: block; margin: 0 auto 0.75rem; }
.pricing-header .section-title { max-width: 600px; margin: 0 auto 1.25rem; }
.pricing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
}

.pricing-card-featured {
  background: var(--bg-dark);
  border-color: transparent;
  transform: scale(1.04);
}

.pricing-tier-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-dark);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1.25rem;
  border-radius: 0 0 var(--radius) var(--radius);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-tier-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.pricing-card-featured .pricing-tier-label { color: rgba(245, 240, 232, 0.6); }

.pricing-tier-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 1.5rem;
}

.pricing-card-featured .pricing-tier-name { color: var(--bg); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--bg-dark);
  letter-spacing: -0.03em;
}

.pricing-card-featured .price-amount { color: var(--accent); }

.price-period {
  font-size: 1rem;
  color: var(--fg-muted);
  font-weight: 400;
}

.pricing-card-featured .price-period { color: rgba(245, 240, 232, 0.5); }

.pricing-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.pricing-card-featured .pricing-tagline {
  color: rgba(245, 240, 232, 0.65);
  border-bottom-color: rgba(245, 240, 232, 0.15);
}

.pricing-includes {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-includes li {
  font-size: 0.875rem;
  color: var(--fg-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-includes li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.pricing-card-featured .pricing-includes li { color: rgba(245, 240, 232, 0.7); }
.pricing-card-featured .pricing-includes li::before { background: var(--accent); }

.pricing-cta {
  display: block;
  text-align: center;
  background: var(--bg-dark);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s;
}

.pricing-cta:hover { background: var(--accent); color: var(--bg-dark); }

.pricing-cta-primary {
  background: var(--accent);
  color: var(--bg-dark);
}

.pricing-cta-primary:hover { background: var(--accent-dark); }

.pricing-guarantee {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.pricing-guarantee a {
  color: var(--bg-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- CTA Section --- */
.cta-section {
  background: var(--bg-dark);
  padding: var(--space-xl) 2rem;
}

.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.cta-eyebrow { color: var(--accent); }

.cta-headline {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--bg);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.cta-promises {
  list-style: none;
}

.cta-promises li {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.8);
  font-weight: 500;
  padding: 0.4rem 0;
}

.cta-form-wrap {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.cta-form-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.cta-form-header p:first-child {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bg-dark);
}

.cta-form-sub {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-top: 0.35rem;
}

.cta-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.02em;
}

.form-group .optional {
  font-weight: 400;
  color: var(--fg-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--fg);
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--bg-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--fg-muted); opacity: 0.7; }

.form-group textarea { resize: vertical; min-height: 80px; }

.form-submit {
  background: var(--bg-dark);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 1.1rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}

.form-submit:hover:not(:disabled) { background: var(--accent); color: var(--bg-dark); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.form-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.5;
}

.form-success {
  background: rgba(26, 58, 42, 0.06);
  border: 1px solid rgba(26, 58, 42, 0.15);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.form-success p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bg-dark);
}

/* --- Responsive --- */
@media (max-width: 1100px) {
  .services-grid-3 { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pricing-card-featured { transform: none; }
  .cta-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 3rem 1.5rem; }
  .hero-visual { display: none; }
  .stats-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .stat-divider { display: none; }
  .stat-block { text-align: left; padding: 0; }
  .stat-note { margin: 0.4rem 0 0; max-width: none; }
  .services-grid { grid-template-columns: 1fr; }
  .approach-inner { grid-template-columns: 1fr; gap: 3rem; }
  .diff-grid { grid-template-columns: 1fr; }
  .header-nav { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .social-proof-bar { flex-direction: column; gap: 2rem; }
  .proof-divider { width: 80px; height: 1px; }
}

@media (max-width: 480px) {
  .hero-meta { flex-direction: column; gap: 1rem; }
  .closing-cta { gap: 1.5rem; }
  .cta-num { font-size: 2.2rem; }
  .services-grid-3 { grid-template-columns: 1fr; }
}