:root {
  /* SL standard palette — override --primary and --primary-light per client */
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --primary: #006aad;
  --primary-light: #3390cc;
  --primary-dark: #004d7d;
  --white: #ffffff;
  --offwhite: #f5f3ef;
  --gray: #888888;
  --gray-light: #cccccc;
  --border: rgba(255,255,255,0.1);
  --container: 1200px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  /* Legacy aliases — kept so older inline styles still resolve */
  --green: var(--primary);
  --green-light: var(--primary-light);
  --green-dark: var(--primary-dark);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--offwhite);
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── UTILITY ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.trust-bar-inner {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s;
  width: 100%;
  text-align: center;
}
.btn-primary:hover { background: var(--primary-light); }

/* ── TOP BAR ── */
.topbar {
  background: var(--black);
  padding: 10px 0;
  text-align: center;
}
.topbar p {
  color: var(--gray-light);
  font-size: 13px;
  font-family: var(--font-body);
}
.topbar a {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 600;
}

/* ── NAV ── */
nav {
  background: var(--dark);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--primary);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  flex: 1;
  min-width: 0;
}
.wordmark span { color: var(--primary-light); }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-condensed);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--primary-light); }
.phone-icon {
  width: 20px;
  height: 20px;
  fill: var(--primary-light);
}

/* ── HERO ── */
.hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(26,26,26,0.85) 100%);
  z-index: 1;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding: 60px 24px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 60px);
  color: var(--white);
  line-height: 1.0;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--primary-light);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-bullets {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}
.bullet-check {
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  color: white;
}

/* ── FORM CARD ── */
.form-card {
  background: var(--white);
  padding: 32px 28px;
  border-top: 4px solid var(--primary);
}
.form-card h2 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--black);
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.form-card .form-sub {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #ddd;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group textarea { height: 80px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); background: #fff; }
.form-qualifier {
  font-size: 12px;
  color: var(--gray);
  margin-top: 10px;
  line-height: 1.5;
  text-align: center;
}
.form-qualifier strong { color: var(--black); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--black);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.trust-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}
.stars { color: #f5c518; font-size: 15px; letter-spacing: 1px; }

/* ── PARTNER LOGOS BAR ── */
.logos-section {
  background: var(--offwhite);
  padding: 40px 0;
  border-bottom: 1px solid #e0ddd7;
}
.logos-label {
  text-align: center;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 24px;
}
.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

/* ── SECTION BASE ── */
.section { padding: 80px 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-black { background: var(--black); color: var(--white); }
.section-offwhite { background: var(--offwhite); }
.section-white { background: var(--white); }

.section-eyebrow {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.section-heading-white { color: var(--white); }
.section-heading-dark { color: var(--black); }
.section-sub {
  font-size: 17px;
  line-height: 1.7;
  max-width: 600px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}
.section-sub-dark { color: #555; }

/* ── PROBLEM SECTION ── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.problem-copy p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}
.fail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}
.fail-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid #E24B4A;
}
.fail-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.transition-line {
  font-family: var(--font-condensed);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  border-left: 4px solid var(--primary);
  padding-left: 16px;
  margin-top: 24px;
  line-height: 1.4;
}

/* ── DIFFERENCE SECTION ── */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.trav-photo {
  background: #e8e5e0;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.trav-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  padding: 14px 20px;
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.diff-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}
.diff-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}
.diff-bullets li:last-child { border-bottom: none; }
.diff-check {
  width: 24px;
  height: 24px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: white;
  margin-top: 1px;
}
.closing-line {
  font-family: var(--font-condensed);
  font-size: 19px;
  font-weight: 700;
  color: var(--black);
  border-left: 4px solid var(--primary);
  padding-left: 16px;
  line-height: 1.4;
}

/* ── PARTNER PROOF SECTION ── */
.proof-section { text-align: center; }
.proof-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 32px 0;
}
.proof-logo-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  min-width: 160px;
}
.proof-line {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  max-width: 480px;
  margin: 0 auto;
}

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.review-card {
  background: var(--white);
  border: 1px solid #e8e5e0;
  padding: 24px;
  border-top: 3px solid var(--primary);
}
.review-stars { color: #f5c518; font-size: 16px; margin-bottom: 12px; }
.review-text {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
  font-style: italic;
}
.review-author {
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.reviews-cta-row {
  text-align: center;
  margin-top: 32px;
}
.btn-google-reviews {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 14px 24px;
  border: 1.5px solid var(--black);
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-google-reviews:hover { background: var(--black); color: var(--white); }
.btn-google-reviews .g-logo { font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: 0; text-transform: none; }
.btn-google-reviews .g-logo .g-b { color: #4285F4; }
.btn-google-reviews .g-logo .g-r { color: #EA4335; }
.btn-google-reviews .g-logo .g-y { color: #FBBC05; }
.btn-google-reviews .g-logo .g-g { color: #34A853; }
.btn-google-reviews:hover .g-logo span { color: var(--white); }
a.trust-review-link, a.eyebrow-review-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
}
a.trust-review-link:hover, a.eyebrow-review-link:hover { opacity: 0.8; }

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--primary);
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 3px solid var(--offwhite);
}
.step-title {
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.3;
}
.step-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* ── BUILT TO LAST ── */
.last-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.last-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}
.last-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.last-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.last-img-block {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.last-img-block:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 2/1;
}

/* ── GALLERY STRIP ── */
.gallery-section { padding: 0; overflow: hidden; }
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.gallery-item {
  aspect-ratio: 3/2;
  background: #ccc;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── SECOND CTA ── */
.cta-section {
  background: var(--dark);
  padding: 80px 0;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.cta-left h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.cta-left p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-light);
  text-decoration: none;
  font-family: var(--font-condensed);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.cta-phone:hover { color: var(--white); }

/* ── FAQ ── */
.faq-section { background: var(--offwhite); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.faq-item {
  background: var(--white);
  border: 1px solid #e8e5e0;
  padding: 24px;
  border-left: 4px solid var(--primary);
}
.faq-q {
  font-family: var(--font-condensed);
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.faq-a {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 40px 0;
  border-top: 2px solid var(--primary);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-info {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  text-align: center;
}
.footer-info a { color: var(--gray-light); text-decoration: none; }
.footer-phone {
  font-family: var(--font-condensed);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-light);
  text-decoration: none;
  letter-spacing: 0.03em;
}

/* ── WIDESCREEN ── */
@media (min-width: 1200px) {
  .hero-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ── TABLET ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 42px; }
  .problem-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .last-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ── MOBILE ── */
@media (max-width: 640px) {
  .section { padding: 56px 24px; }
  .container { padding: 0; }
  .hero-inner { padding: 40px 20px; }
  .hero h1 { font-size: 32px; line-height: 1.05; }
  .section-heading { font-size: 30px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { padding: 16px 12px; border-bottom: 1px solid #eee; }
  .step:last-child { border-bottom: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .logos-row { gap: 20px; }
  .proof-logos { gap: 16px; }
  .trust-bar-inner { gap: 16px; flex-direction: column; }
  .cta-inner { padding: 0; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-info { text-align: center; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .last-grid { grid-template-columns: 1fr; }
  .wordmark { max-width: 160px; }
  .nav-phone { font-size: 17px; }
  /* Flat solid hero overlay on mobile — never transparent gradient */
  .hero-bg { background: rgba(10,10,10,0.92); }
}

/* ── SMALL MOBILE ── */
@media (max-width: 380px) {
  .hero h1 { font-size: 30px; }
  .form-card { padding: 24px 18px; }
  .gallery-strip { grid-template-columns: 1fr; }
}
