:root {
  --orange: #ff8c00;
  --orange-dark: #e07800;
  --orange-light: #ffaa33;
  --dark: #1c1c1c;
  --dark-2: #242424;
  --gray: #484848;
  --gray-mid: #686868;
  --gray-light: #888;
  --bg: #f5f5f3;
  --bg-warm: #f0ede8;
  --white: #ffffff;
  --border: #ddd;
  --border-warm: #d8d3cb;
  --sans: 'Open Sans', sans-serif;
  --condensed: 'Open Sans Condensed', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.6;
}

/* ── STICKY BAR ── */
.sticky-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
}
.sticky-bar a { color: #fff; text-decoration: none; }
.sticky-bar a:hover { text-decoration: underline; }
.sticky-sep { opacity: 0.45; font-weight: 300; font-size: 16px; }
.sticky-label { font-weight: 400; opacity: 0.88; }
.sticky-number {
  font-weight: 700;
  opacity: 0.95;
  letter-spacing: 0.03em;
}
.sticky-actions { display: flex; gap: 6px; }
.sticky-btn {
  padding: 5px 16px;
  border-radius: 4px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
  transition: background .15s, border-color .15s;
  white-space: nowrap;
}
.sticky-btn:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.9); text-decoration: none; }

/* ── HERO ── */
.hero {
  background: var(--dark-2);
  padding-top: 96px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.012) 0px,
    rgba(255,255,255,0.012) 1px,
    transparent 1px,
    transparent 32px
  );
  pointer-events: none;
  z-index: 0;
}
.standard-badge-img {
  width: 88px;
  height: auto;
  display: block;
  margin-bottom: 16px;
  opacity: 0.88;
  filter: brightness(0) invert(1);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.65) 52%, rgba(8,8,8,0.42) 100%);
  z-index: 1;
  background: linear-gradient(100deg, rgba(8, 8, 8, 0.92) 0% 100%);
}
.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 36px;
  display: grid;
  grid-template-columns: 1fr 408px;
  gap: 52px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.hero-left { padding-top: 10px; }
.hero-cards-row {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-eyebrow {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.06;
  color: #fff;
  margin-bottom: 20px;
  text-transform: none;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,140,0,0.18);
  border: 1px solid rgba(255,140,0,0.4);
  color: var(--orange-light);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px 6px 10px;
  border-radius: 2px;
  margin-bottom: 22px;
  letter-spacing: 0.03em;
}
.proof-badge::before {
  content: '●';
  font-size: 8px;
  color: var(--orange);
  animation: blink 2s ease infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── HERO H2 + FULL-WIDTH CARDS ── */
.hero-content-block { padding: 0; }
.hero-h2 {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255,255,255,0.92);
  line-height: 1.25;
  text-transform: none;
  letter-spacing: -0.005em;
  padding: 28px 0 18px;
}
.hero-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.hero-block {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 28px 36px;
}
.hero-block.standard {
  border: 1.5px solid var(--orange);
  border-radius: 15px;
  background: none;
}
.hero-block:last-child {
  border: none;
  background: rgba(255,255,255,0.05);
}
.standard-inner {
  display: flex;
  gap: 24px;
  align-items: center;
}
.standard-copy { flex: 1; }
.standard-badge-img {
  width: 88px;
  height: auto;
  display: block;
  opacity: 0.88;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}
.hero-block-label {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-block-label .lmark {
  width: 16px; height: 16px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
}
.hero-block p {
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
}

/* ── FORM CARD ── */
.form-card {
  background: #fff;
  border-radius: 4px;
  padding: 28px 26px;
  box-shadow: 0 12px 56px rgba(0,0,0,0.38), 0 2px 8px rgba(0,0,0,0.18);
}
.form-card-title {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 19px;
  color: var(--dark);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.form-card-sub {
  font-size: 13px;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 18px;
}
.step-bar { display: flex; gap: 5px; margin-bottom: 18px; }
.step-seg {
  height: 3px; flex: 1;
  background: #e8e8e8;
  border-radius: 1px;
  transition: background .3s;
}
.step-seg.on { background: var(--orange); }

.form-step { display: none; }
.form-step.active { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.fg { margin-bottom: 11px; }
.fg label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray-mid);
  margin-bottom: 5px;
}
.fg input, .fg textarea, .fg select {
  width: 100%;
  padding: 11px 12px;
  border: 1.5px solid #d8d8d8;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--dark);
  background: #fdfdfd;
  transition: border-color .18s, box-shadow .18s;
  -webkit-appearance: none;
  appearance: none;
  min-height: 44px;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,140,0,0.11);
  background: #fff;
}
.fg textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
  cursor: pointer;
}
.budget-note {
  background: #fffaf3;
  border: 1px solid #f0ddb5;
  border-radius: 3px;
  padding: 9px 12px;
  font-size: 12px;
  color: #6b4c00;
  line-height: 1.5;
  margin-bottom: 13px;
}
.budget-note strong { color: var(--orange-dark); }
.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: #fff;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background .18s, transform .1s;
  min-height: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.btn-submit:hover { background: var(--orange-dark); }
.btn-submit:active { transform: scale(0.99); }
.form-privacy { text-align: center; font-size: 11.5px; color: var(--gray-light); margin-top: 9px; }
.form-scarcity { text-align: center; font-size: 12px; font-weight: 700; color: var(--orange); margin-top: 6px; }

/* ── SHARED SECTION STYLES ── */
section { padding: 72px 24px; }
.container { max-width: 1080px; margin: 0 auto; }

.section-eyebrow {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: var(--condensed);
  font-weight: 700;
  text-transform: none;
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  color: var(--dark);
}
.section-title.light { color: #fff; }
.section-title.upper { text-transform: uppercase; }

/* ── IMAGE PLACEHOLDER ── */
.img-placeholder {
  background: #e8e3db;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #a09890;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(0,0,0,0.03) 0, rgba(0,0,0,0.03) 1px,
    transparent 1px, transparent 12px
  );
}
.img-placeholder svg { opacity: 0.35; position: relative; z-index: 1; }
.img-placeholder span { position: relative; z-index: 1; }

/* ── WHY SECTION ── */
.why-section {
  background: #fff url('../images/building-background.jpg') center/cover no-repeat;
  position: relative;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.91);
  pointer-events: none;
}
.why-section .container { position: relative; z-index: 1; }
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 40px;
}
.why-img { height: 420px; }
.why-img-real {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
}
.why-list { display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  transition: background .15s;
}
.why-item:last-child { border-bottom: none; }
.why-num-box {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--orange);
  color: #fff;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  margin-top: 1px;
}
.why-item h4 {
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.3;
}
.why-item p { font-size: 13.5px; color: var(--gray-mid); line-height: 1.6; }

/* ── TRUST SECTION ── */
.trust-section { background: var(--dark); }
.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 40px;
}
.trust-img { height: 360px; }
.trust-img-real {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.stats-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.stat-box {
  background: rgba(255,255,255,0.04);
  padding: 24px 20px;
}
.stat-box:hover { background: rgba(255,140,0,0.08); }
.stat-big {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 38px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 12.5px; color: rgba(255,255,255,0.48); line-height: 1.45; }

/* ── TRUST PROOF LIST ── */
.trust-proof-list {
  list-style: none;
  margin-bottom: 20px;
}
.trust-proof-list li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.trust-proof-list li:last-child { border-bottom: none; }
.trust-proof-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.testimonial-pull {
  padding: 26px 28px;
  background: rgba(255,140,0,0.09);
  border-radius: 4px;
  border: 1px solid rgba(255,140,0,0.22);
}
.testimonial-pull blockquote {
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 12px;
}
.testimonial-pull cite {
  font-style: normal;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ── TRUST TESTIMONIALS ── */
.trust-testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
  align-items: stretch;
}
.trust-testimonials-label {
  padding-right: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trust-testimonials-title {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 32px);
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-top: 8px;
}
.trust-tcard {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,140,0,0.25);
  border-radius: 6px;
  padding: 28px 32px;
}
.trust-tcard-icon {
  color: var(--orange);
  font-size: 22px;
  display: block;
  margin-bottom: 14px;
}
.trust-tcard blockquote {
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin-bottom: 12px;
}
.trust-tcard cite {
  display: block;
  font-style: normal;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ── HERO LOGO ── */
.hero-logo {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

/* ── PROCESS ── */
.process-section { background: var(--bg-warm); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
}
.phase {
  background: #fff;
  border-radius: 4px;
  padding: 28px 22px;
  transition: box-shadow .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
.phase::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.phase:hover::before { transform: scaleX(1); }
.phase:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-2px); }
.phase-num {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 52px;
  color: rgba(255,140,0,0.12);
  line-height: 1;
  margin-bottom: 14px;
  user-select: none;
}
.phase-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.phase h4 {
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.25;
  text-transform: none;
}
.phase p { font-size: 13px; color: var(--gray-mid); line-height: 1.65; }

/* ── MID CTA ── */
.mid-cta-bar {
  background: var(--orange);
  padding: 30px 24px;
  text-align: center;
}
.mid-cta-bar p { font-size: 15px; color: rgba(255,255,255,0.82); margin-bottom: 5px; }
.mid-cta-bar a {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.mid-cta-bar a:hover { text-decoration: underline; }

/* ── CATEGORIES ── */
.cat-section { background: var(--dark-2); }
.cat-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 22px;
}
.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 2px;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background .18s, border-color .18s, color .18s;
}
.cat-link:hover {
  background: rgba(255,140,0,0.12);
  border-color: rgba(255,140,0,0.45);
  color: var(--orange-light);
}
.cat-arrow { color: var(--orange); font-size: 16px; line-height: 1; }
.cat-note { font-size: 14px; color: rgba(255,255,255,0.38); }

/* ── VIDEO ── */
.video-section {
  background: #fff url('../images/robotic-arm-background.jpg') center/cover no-repeat;
  position: relative;
}
.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.91);
  pointer-events: none;
}
.video-section .container { position: relative; z-index: 1; }
.video-sub { font-size: 15px; color: var(--gray-mid); max-width: 500px; margin: 8px 0 32px; line-height: 1.65; }
.video-wrapper {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0,0,0,0.13);
  border: 1px solid var(--border-warm);
  aspect-ratio: 16/9;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.video-wrapper iframe { width: 100%; height: 100%; display: block; }
.video-ph-inner {
  text-align: center;
  color: rgba(255,255,255,0.3);
  position: relative;
  z-index: 1;
}
.video-play-ring {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(255,140,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--orange);
}
.video-ph-inner p { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); }

/* ── TESTIMONIALS ── */
/* ── TESTIMONIALS CAROUSEL ── */
.testimonials-section { background: #fff; padding: 72px 24px; }
.testimonials-section .section-eyebrow { text-align: center; display: block; }
.testimonials-section .section-title { text-align: center; margin-bottom: 40px; }
.testimonials-carousel-wrap { position: relative; overflow: hidden; margin-top: 44px; }
.testimonials-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testimonials-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}
.testimonial-card {
  background: #f0f0ee;
  border-radius: 12px;
  padding: 40px 32px 36px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-quote-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: #fff;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.testimonial-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  margin-bottom: 16px;
  width: 100%;
}
.testimonial-logo-wrap img {
  max-height: 54px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
}
.testimonial-logo-wrap.on-light {}
.logo-black { filter: brightness(0); }
.testimonial-card blockquote {
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  color: var(--gray);
  line-height: 1.55;
  margin-bottom: 20px;
  flex: 1;
}
.testimonial-card cite {
  font-style: normal;
  font-size: 14px;
  color: var(--gray-mid);
  display: block;
}
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.testimonials-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.18);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.testimonials-dots button.active { background: var(--orange); transform: scale(1.4); }
.testimonials-dots button:hover:not(.active) { background: rgba(255,140,0,0.5); }

/* ── FAQ ── */
.faq-section { background: var(--bg); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 40px;
}
.faq-left-img { height: 440px; position: sticky; top: 80px; }
.faq-item { border-bottom: 1px solid var(--border-warm); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  line-height: 1.4;
  transition: color .15s;
}
.faq-btn:hover { color: var(--orange); }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  font-weight: 300;
  transition: transform .3s, background .2s, color .2s;
  line-height: 1;
  color: var(--gray-light);
}
.faq-item.open .faq-btn { color: var(--orange); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--orange); border-color: var(--orange); color: #fff; }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s ease, padding .3s;
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.72;
}
.faq-item.open .faq-body { max-height: 300px; padding-bottom: 18px; }

/* ── FORM 2 ── */
.form2-section { background: var(--dark); padding: 72px 24px; }
.form2-inner { max-width: 700px; margin: 0 auto; }
.form2-header { text-align: center; margin-bottom: 32px; }
.form2-header .section-eyebrow { text-align: center; }
.form2-header .section-title { color: #fff; }
.form2-header p { font-size: 15px; color: rgba(255,255,255,0.4); margin-top: 10px; line-height: 1.65; }

/* ── FINAL CTA ── */
.final-cta { background: var(--orange); text-align: center; padding: 86px 24px; }
.final-cta h2 {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: clamp(30px, 5vw, 52px);
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1.05;
}
.final-cta p { font-size: 17px; color: rgba(255,255,255,0.72); max-width: 480px; margin: 0 auto 32px; line-height: 1.6; }
.final-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  padding: 15px 30px;
  background: #fff;
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  transition: background .18s;
}
.btn-white:hover { background: rgba(255,255,255,0.91); }
.btn-ghost {
  padding: 15px 26px;
  border: 2px solid rgba(255,255,255,0.55);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  transition: border-color .18s, background .18s;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ── MODAL ── */
.landing-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.62);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.landing-modal-overlay.open {
  display: flex;
}
.landing-modal {
  background: #fff;
  border-radius: 6px;
  padding: 36px 32px 28px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  animation: fadeUp .3s ease both;
}
.landing-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: var(--gray-light);
  cursor: pointer;
  padding: 4px 8px;
  transition: color .15s;
}
.landing-modal-close:hover { color: var(--dark); }
.landing-modal .form-card-title { margin-bottom: 4px; }
.landing-modal .form-card-sub { margin-bottom: 20px; }
.final-cta .btn-white { cursor: pointer; border: none; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-left > * { animation: fadeUp .55s ease both; }
.hero-left > *:nth-child(2) { animation-delay: .07s; }
.hero-left > *:nth-child(3) { animation-delay: .13s; }
.hero-left > *:nth-child(4) { animation-delay: .18s; }
.form-card { animation: fadeUp .6s .1s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-card { max-width: 520px; }
  .hero-blocks { grid-template-columns: 1fr; }
  .hero-block.standard { border-radius: 12px; }
  .standard-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .why-layout { grid-template-columns: 1fr; }
  .why-img { height: 280px; }
  .trust-layout { grid-template-columns: 1fr; }
  .trust-img { height: 240px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .why-img-real { height: 300px; }
  .trust-testimonials { grid-template-columns: 1fr; }
  .testimonials-slide { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .testimonial-card { padding: 24px 18px; }
  section { padding: 52px 18px; }
  .hero { padding-top: 82px; }
  .hero-inner { padding: 0 18px 32px; }
  .hero-cards-row { padding: 0 18px; }
  .form-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-2x2 { grid-template-columns: 1fr 1fr; }
  .sticky-bar { font-size: 12px; gap: 12px; flex-wrap: wrap; padding: 10px 14px; }
  .cat-links { gap: 8px; }
}

/* Remove Divi accent color from blockquotes */
blockquote {
    border: 0px;
}


