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

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

:root {
  --yellow: #F5C518;
  --yellow-dark: #d4a900;
  --green: #27ae60;
  --green-dark: #1e8449;
  --black: #1a1a1a;
  --white: #ffffff;
  --gray-bg: #f8f8f8;
  --gray-light: #f0f0f0;
  --gray-border: #e0e0e0;
  --gray-text: #666;
  --font-display: 'Anton', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1100px;
  --section-pad: 80px 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  line-height: 1.6;
  background: #fff;
}

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

img { max-width: 100%; display: block; }

/* ===================== NAV ===================== */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  color: #fff;
  letter-spacing: 1px;
}

.nav-logo span { color: var(--green); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--yellow); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover { background: var(--yellow-dark); transform: translateY(-1px); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 560px;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 70px;
  overflow: hidden;
}

/* Mosaic grid overlay */
.hero-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(5, 1fr);
  opacity: 0.18;
  pointer-events: none;
}

.hero-mosaic-cell {
  border: 1px solid rgba(255,255,255,0.15);
}

.hero-mosaic-cell:nth-child(3n)   { background: #2a2a2a; }
.hero-mosaic-cell:nth-child(5n)   { background: #333; }
.hero-mosaic-cell:nth-child(7n)   { background: #242424; }
.hero-mosaic-cell:nth-child(2n+1) { background: #1e1e1e; }
.hero-mosaic-cell:nth-child(4n)   { background: #2c2c2c; }
.hero-mosaic-cell:nth-child(11)   { background: #c8a000; opacity: 0.4; }
.hero-mosaic-cell:nth-child(19)   { background: #9b7200; opacity: 0.4; }
.hero-mosaic-cell:nth-child(27)   { background: #b8860b; opacity: 0.3; }
.hero-mosaic-cell:nth-child(33)   { background: #8b6914; opacity: 0.3; }

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  width: 100%;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--yellow);
  font-size: 18px;
}

.stars .half { opacity: 0.6; }

.hero-rating-text {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}

.hero-rating-text a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 96px);
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  margin-bottom: 32px;
}

.hero-form {
  background: #fff;
  border-radius: 8px;
  padding: 14px 14px 14px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-form select {
  flex: 1;
  min-width: 110px;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-border);
  border-radius: 6px;
  font-size: 14px;
  color: #888;
  font-family: var(--font-body);
  background: #fff;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.hero-form select:focus { outline: none; border-color: var(--yellow); }

.form-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 15px;
  font-family: var(--font-body);
  padding: 13px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  letter-spacing: 0.3px;
}

.form-btn:hover { background: var(--yellow-dark); }

/* ===================== PRESS BAR ===================== */
.press-bar {
  padding: 22px 40px;
  border-bottom: 1px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.press-label {
  font-size: 12px;
  color: #aaa;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.press-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.press-logo {
  font-weight: 800;
  font-size: 16px;
  color: #bbb;
  letter-spacing: -0.5px;
  transition: color 0.2s;
}

.press-logo:hover { color: #888; }

.press-logo.circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 800;
}

/* ===================== SECTIONS ===================== */
.section { padding: var(--section-pad); }
.section-inner { max-width: var(--max-width); margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 56px; }

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.05;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--gray-text);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto;
}

/* ===================== 3-COLUMN CARDS ===================== */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1.5px solid var(--gray-border);
  border-radius: 8px;
  overflow: hidden;
}

.feature-card {
  padding: 44px 36px;
  border-right: 1.5px solid var(--gray-border);
  text-align: center;
  background: #fff;
}

.feature-card:last-child { border-right: none; }

.feature-icon {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--gray-text);
  font-size: 15px;
  line-height: 1.6;
}

/* ===================== WHY SECTION ===================== */
.why-section { background: #fff; }

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1.5px solid var(--gray-border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 48px;
}

.why-card {
  padding: 44px 36px;
  border-right: 1.5px solid var(--gray-border);
  text-align: center;
  background: #fff;
}

.why-card:last-child { border-right: none; }

.why-icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.why-card p { color: var(--gray-text); font-size: 15px; line-height: 1.6; }

/* ===================== SPLIT CTA BANNER ===================== */
.split-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.split-cta-left {
  background: var(--yellow);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}

.split-cta-left::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
}

.split-cta-left h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.split-cta-left p {
  font-size: 16px;
  color: rgba(0,0,0,0.7);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-dark:hover { background: #333; transform: translateY(-1px); }

.split-cta-right {
  background: #fff;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1.5px solid var(--gray-border);
  border-left: none;
}

.years-badge {
  position: relative;
  width: 130px; height: 130px;
  margin-bottom: 20px;
}

.years-badge-ring {
  width: 130px; height: 130px;
  border: 4px solid var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.years-num {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  color: var(--black);
}

.years-plus {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--yellow);
  margin-top: -4px;
}

.split-cta-right h3 {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.split-cta-right p { color: var(--gray-text); font-size: 15px; }

/* ===================== SPLIT CTA SECTION ===================== */
.split-cta-section { padding: 80px 24px; }

/* ===================== COMPARISON TABLE ===================== */
.comparison-section {
  padding: 80px 24px;
  text-align: center;
}

.comparison-section .section-header h2 {
  font-size: clamp(40px, 6vw, 72px);
}

.comparison-table {
  max-width: 860px;
  margin: 0 auto 32px;
  border: 1.5px solid var(--gray-border);
  border-radius: 10px;
  overflow: hidden;
}

.comp-header {
  display: grid;
  grid-template-columns: 180px repeat(5, 1fr);
  background: #f8f8f8;
  border-bottom: 1.5px solid var(--gray-border);
  padding: 14px 20px;
}

.comp-header-cell {
  font-size: 12px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: center;
}

.comp-header-cell:first-child { text-align: left; }

.comp-row {
  display: grid;
  grid-template-columns: 180px repeat(5, 1fr);
  padding: 18px 20px;
  border-bottom: 1.5px solid var(--gray-border);
  align-items: center;
}

.comp-row:last-child { border-bottom: none; }

.comp-row.ours { background: #fffdf0; }

.comp-brand {
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
}

.comp-brand.logo-brand {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
}

.comp-brand.logo-brand span { color: var(--green); }

.comp-cell { text-align: center; }

.check-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #2e7d32;
}

.check-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #bbb;
}

.comp-cta-wrap { margin-top: 12px; }

.btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-1px); }

/* ===================== REVIEWS ===================== */
.reviews-section {
  background: var(--yellow);
  padding: 80px 24px;
  text-align: center;
}

.reviews-section .section-header h2 {
  font-size: clamp(42px, 7vw, 80px);
  line-height: 1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto 48px;
}

.review-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  text-align: left;
  position: relative;
}

.review-card.featured { background: var(--black); color: #fff; }

.review-author {
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

.review-stars { color: var(--yellow); font-size: 13px; margin-bottom: 12px; }
.review-card.featured .review-stars { color: var(--yellow); }

.review-text { font-size: 14px; line-height: 1.65; color: #555; }
.review-card.featured .review-text { color: rgba(255,255,255,0.75); }

.review-badge {
  position: absolute;
  top: 16px; right: 16px;
  width: 26px; height: 26px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--black);
}

.review-card.featured .review-badge { background: #fff; }

.review-platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.12);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 700;
}

.platform-badge .p-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 900;
  color: var(--black);
}

.reviews-cta { margin-top: 12px; }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--black);
  color: #fff;
  padding: 48px 40px 24px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h4 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-brand h4 span { color: var(--green); }

.footer-brand p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; }

.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

.footer-bottom-links {
  display: flex; gap: 20px; list-style: none;
}

.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

.back-to-top {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s;
}

.back-to-top:hover { background: rgba(255,255,255,0.15); }

/* ===================== PAGE HEADER (blog/services) ===================== */
.page-hero {
  background: var(--black);
  padding: 120px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #111 0%, #2a2a2a 50%, #111 100%);
  opacity: 0.9;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 80px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 18px;
  max-width: 520px;
  margin: 0 auto;
}

/* ===================== BLOG PAGE ===================== */
.blog-section { padding: 72px 24px; background: var(--gray-bg); }

.blog-inner { max-width: var(--max-width); margin: 0 auto; }

.blog-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  align-items: center;
}

.filter-label { font-size: 14px; font-weight: 600; color: #999; margin-right: 4px; }

.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--gray-border);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: #666;
  font-family: var(--font-body);
  transition: all 0.2s;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--gray-border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }

.blog-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-card-image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}

.blog-card-body { padding: 24px; }

.blog-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--black);
}

.blog-card-meta {
  font-size: 12px;
  color: #bbb;
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
}

.blog-card p { font-size: 14px; color: var(--gray-text); line-height: 1.65; margin-bottom: 18px; }

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.read-more:hover { color: var(--yellow-dark); }

.blog-load-more {
  text-align: center;
  padding: 20px 0;
}

/* ===================== SERVICES PAGE ===================== */
.services-section { padding: 72px 24px; }
.services-inner { max-width: var(--max-width); margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}

.service-card {
  border: 1.5px solid var(--gray-border);
  border-radius: 10px;
  padding: 36px 28px;
  text-align: left;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--yellow);
}

.service-card-icon {
  width: 60px; height: 60px;
  background: var(--yellow);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.service-card p { color: var(--gray-text); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }

.service-features { list-style: none; margin-bottom: 24px; }

.service-features li {
  font-size: 14px;
  color: #555;
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li:last-child { border-bottom: none; }

.service-features li::before { content: '✓'; color: var(--yellow-dark); font-weight: 900; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  transition: gap 0.2s;
}

.service-link:hover { gap: 10px; }

/* Services comparison / process */
.process-section {
  background: var(--black);
  padding: 80px 24px;
  text-align: center;
}

.process-section .section-header h2 { color: #fff; }
.process-section .section-header p { color: rgba(255,255,255,0.55); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.process-step {
  padding: 32px 20px;
  text-align: center;
  position: relative;
}

.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

.process-step p { color: rgba(255,255,255,0.5); font-size: 14px; }

/* CTA Section */
.cta-section {
  padding: 80px 24px;
  text-align: center;
  background: var(--yellow);
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cta-section p { font-size: 18px; color: rgba(0,0,0,0.6); margin-bottom: 32px; }

/* ===================== STATIC NAV (non-hero pages) ===================== */
.nav-static {
  position: relative;
  background: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
}

.nav-static .nav-links a { color: rgba(255,255,255,0.7); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .three-col, .why-cards, .reviews-grid, .services-grid, .blog-grid {
    grid-template-columns: 1fr;
  }
  .feature-card, .why-card { border-right: none; border-bottom: 1.5px solid var(--gray-border); }
  .feature-card:last-child, .why-card:last-child { border-bottom: none; }
  .split-cta { grid-template-columns: 1fr; }
  .split-cta-right { border-left: 1.5px solid var(--gray-border); border-top: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .comp-header, .comp-row { grid-template-columns: 120px repeat(5, 1fr); font-size: 12px; }
}

@media (max-width: 640px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero-form { flex-direction: column; }
  .hero-form select { width: 100%; }
  .form-btn { width: 100%; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; }
  .press-bar { gap: 16px; }
  .nav-static { padding: 16px 20px; }
}
