/* ================================================================
   ECON Tech — Homepage-specific styles
   Hero slider, What We Do, Roadmap, Services grid, Why, Industries
   ================================================================ */

/* ── Hero Slider ── */
#hero {
  width: 100%;
  background: var(--dark);
  overflow: hidden;
}

.hs-track {
  position: relative;
  height: calc(100vh - 52px);
  min-height: 500px;
  overflow: hidden;
}

.hs-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-top: 80px;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.hs-slide.active { opacity: 1; pointer-events: all; }

/* Slide backgrounds */
.hs-slide-1 { background: linear-gradient(135deg, #0d0e16 0%, #1C1D29 45%, #26273A 100%); }
.hs-slide-1::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(223,8,8,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(223,8,8,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hs-slide-2 { background: linear-gradient(150deg, #1C1D29 0%, #1a0f14 55%, #0d0e16 100%); }
.hs-slide-2::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 45%, rgba(223,8,8,0.09) 0%, transparent 58%);
  z-index: 0;
}

.hs-slide-3 { background: linear-gradient(120deg, #13141f 0%, #1C1D29 50%, #1e1215 100%); }
.hs-slide-3::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 15% 65%, rgba(223,8,8,0.07) 0%, transparent 55%);
  z-index: 0;
}

/* Decorative red vertical accent line */
.hs-slide::before {
  content: '';
  position: absolute;
  left: 60px; top: 15%; bottom: 15%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--red) 30%, var(--red) 70%, transparent);
  opacity: 0.25;
  z-index: 1;
}

/* Slide content */
.hs-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 0 88px;
  max-width: 740px;
}

.hs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s 0.15s ease, transform 0.5s 0.15s ease;
}

.hs-slide.active .hs-eyebrow { opacity: 1; transform: none; }
.hs-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--red); }

.hs-slide h2 {
  font-family: var(--font-head);
  font-size: clamp(34px, 4.2vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s 0.25s ease, transform 0.65s 0.25s ease;
}

.hs-slide.active h2 { opacity: 1; transform: none; }

.hs-slide p {
  font-size: 17px;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s 0.4s ease, transform 0.6s 0.4s ease;
}

.hs-slide.active p { opacity: 1; transform: none; }

.hs-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s 0.55s ease, transform 0.5s 0.55s ease;
}

.hs-slide.active .hs-actions { opacity: 1; transform: none; }

/* Stats row */
.hs-stats {
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s 0.65s ease, transform 0.6s 0.65s ease;
}

.hs-stat {
  flex: 1;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.hs-stat:first-child { padding-left: 0; }
.hs-stat:last-child  { border-right: none; }
.hs-slide.active .hs-stats { opacity: 1; transform: none; }

.hs-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.hs-stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  margin-top: 5px;
  display: block;
}

/* Service pills — slide 2 */
.hs-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.38s ease, transform 0.6s 0.38s ease;
}

.hs-slide.active .hs-pills { opacity: 1; transform: none; }

.hs-pill {
  padding: 6px 14px;
  border: 1px solid rgba(223,8,8,0.28);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-head);
  letter-spacing: 0.04em;
}

/* Culture pillars — slide 3 */
.hs-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s 0.35s ease, transform 0.65s 0.35s ease;
}

.hs-slide.active .hs-pillars { opacity: 1; transform: none; }

.hs-pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hs-pillar-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid rgba(223,8,8,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(223,8,8,0.07);
  margin-top: 2px;
}

.hs-pillar-icon svg { width: 16px; height: 16px; }

.hs-pillar div strong {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.hs-pillar div span {
  font-size: 12px;
  color: rgba(255,255,255,0.48);
  line-height: 1.5;
}

/* Bottom tab bar */
.hs-sidenav {
  display: flex;
  width: 100%;
  height: 52px;
  background: rgba(16,17,26,0.97);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.hs-nav-item {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 24px;
  cursor: pointer;
  background: none;
  border: none;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
  text-align: left;
}

.hs-nav-item:last-child { border-right: none; }
.hs-nav-item:hover { background: rgba(255,255,255,0.03); }

.hs-nav-line-wrap {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.hs-nav-line-fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 0%;
  background: var(--red);
}

.hs-nav-num {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: rgba(255,255,255,0.10);
  line-height: 1;
  transition: color 0.35s;
  flex-shrink: 0;
}

.hs-nav-item.active .hs-nav-num { color: var(--red); }

.hs-nav-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.30);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.35s;
  white-space: nowrap;
}

.hs-nav-item.active .hs-nav-label { color: rgba(255,255,255,0.90); }
.hs-nav-item:hover .hs-nav-label  { color: rgba(255,255,255,0.55); }

/* ── Trust bar (homepage) ── */
#trust {
  background: var(--gray-100);
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
}

.trust-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.trust-label {
  font-size: 11px;
  color: var(--gray-mid);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
  white-space: nowrap;
}

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

.trust-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  color: var(--gray-mid);
  letter-spacing: 0.03em;
  opacity: 0.65;
  transition: opacity var(--transition);
  cursor: default;
  white-space: nowrap;
}

.trust-logo:hover { opacity: 1; }

/* ── What We Do ── */
#what {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

#what h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}

#what h2 span { color: var(--red); }

#what .what-desc {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 32px;
}

.what-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.what-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--red);
  transition: box-shadow var(--transition);
}

.what-card:hover { box-shadow: var(--shadow-card); }

.what-card-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.what-card-icon svg { width: 22px; height: 22px; }

.what-card h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.what-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── Roadmap ── */
#roadmap {
  padding: var(--section-pad) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.roadmap-header { margin-bottom: 64px; }

.rm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.rm-eyebrow::before { content: ''; display: block; width: 20px; height: 2px; background: var(--red); }

#roadmap h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 16px;
}

.roadmap-sub {
  font-size: 16px;
  color: var(--gray-mid);
  max-width: 580px;
  line-height: 1.7;
}

.roadmap-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 56px;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  top: 39px;
  left: calc(10% + 10px);
  right: calc(10% + 10px);
  height: 1px;
  background: var(--dark-light);
  z-index: 0;
}

.rm-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.rm-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--gray-mid);
  background: var(--dark-mid);
  border: 1px solid var(--dark-light);
  transition: all 0.3s;
}

.rm-num.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.rm-step:hover .rm-num:not(.active) {
  border-color: var(--red);
  color: var(--red);
}

.rm-arrow {
  position: absolute;
  top: 28px;
  right: -6px;
  color: var(--red);
  font-size: 22px;
  font-weight: 700;
  z-index: 2;
  line-height: 1;
}

.rm-card h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.rm-card p {
  font-size: 12.5px;
  color: var(--gray-mid);
  line-height: 1.65;
}

/* Roadmap inline CTA */
.roadmap-cta { margin-top: 56px; }

.roadmap-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--dark-mid);
  border: 1px solid var(--dark-light);
  border-left: 4px solid var(--red);
  border-radius: 4px;
  padding: 32px 40px;
}

.roadmap-cta-eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.roadmap-cta-text h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.roadmap-cta-text p {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.6;
  max-width: 520px;
}

.roadmap-cta-text strong { color: var(--white); }
.roadmap-cta-btn { white-space: nowrap; flex-shrink: 0; }

/* ── Services Grid ── */
#services {
  padding: var(--section-pad) 0;
  background: var(--gray-100);
}

#services h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}

#services h2 span { color: var(--red); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.svc-card {
  background: var(--white);
  padding: 36px 28px 32px;
  transition: background 0.3s;
  position: relative;
}

.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gray-200);
  transition: background 0.3s;
}

.svc-card:hover { background: var(--dark); }
.svc-card:hover::after { background: var(--red); }
.svc-card:hover .svc-card-title { color: var(--white); }
.svc-card:hover .svc-card-desc  { color: rgba(255,255,255,0.60); }
.svc-card:hover .svc-tag        { border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.55); }

.svc-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.svc-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-icon svg { width: 30px; height: 30px; }

.svc-card-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.25;
  transition: color 0.3s;
}

.svc-card-desc {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.svc-tag {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid var(--gray-200);
  border-radius: 2px;
  color: var(--gray-500);
  transition: all 0.3s;
}

.svc-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap var(--transition);
}

.svc-read-more::after { content: '→'; transition: transform var(--transition); }
.svc-read-more:hover  { gap: 10px; }
.svc-card:hover .svc-read-more { color: rgba(255,255,255,0.9); }

/* ── Why ECON Tech ── */
#why {
  padding: var(--section-pad) 0;
  background: var(--white);
}

#why h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}

#why h2 span { color: var(--red); }

#why .sub {
  font-size: 17px;
  color: var(--gray-500);
  margin-bottom: 52px;
  max-width: 540px;
}

.why-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: border-color var(--transition);
}

.why-item:hover { border-color: var(--red); }

.why-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  color: var(--gray-200);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}

.why-item h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.why-item p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
}

.why-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 40px;
  background: var(--dark);
  border-radius: var(--radius-xl);
}

.why-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.why-stat p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}

.why-stat {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding-bottom: 32px;
}

.why-stat:last-child { border: none; padding-bottom: 0; }

/* ── Industries ── */
#industries {
  padding: 80px 0;
  background: var(--gray-100);
}

#industries h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 2.5vw, 38px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

#industries h2 span { color: var(--red); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 48px;
}

.ind-card {
  background: var(--white);
  padding: 36px 28px 32px;
  transition: background 0.3s;
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}

a.ind-card { cursor: pointer; }

.ind-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gray-200);
  transition: background 0.3s;
}

.ind-card:hover { background: var(--dark); }
.ind-card:hover::after { background: var(--red); }
.ind-card:hover .ind-card-title { color: var(--white); }
.ind-card:hover .ind-card-desc  { color: rgba(255,255,255,0.60); }
.ind-card:hover .ind-tag        { border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.55); }

.ind-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  margin-bottom: 14px;
}

.ind-icon-wrap {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ind-icon-wrap svg { width: 30px; height: 30px; }

.ind-card-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.25;
  transition: color 0.3s;
}

.ind-card-desc {
  font-size: 13.5px;
  color: var(--gray-mid);
  line-height: 1.65;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.ind-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.ind-tag {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid var(--gray-200);
  border-radius: 2px;
  color: var(--gray-mid);
  transition: all 0.3s;
}

/* Clients banner */
.clients-banner {
  margin-top: 56px;
  padding: 32px 0 0;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.clients-banner-label {
  font-size: 11px;
  color: var(--gray-mid);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
  white-space: nowrap;
}

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

.client-logo-name {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--gray-mid);
  opacity: 0.65;
  transition: opacity var(--transition);
  cursor: default;
  white-space: nowrap;
}

.client-logo-name:hover { opacity: 1; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .roadmap-timeline { grid-template-columns: 1fr 1fr; gap: 24px; }
  .roadmap-timeline::before { display: none; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hs-content { padding: 0 24px 0 30px; }
  .hs-slide::before { left: 18px; }
  .hs-nav-item { padding: 16px 18px; gap: 10px; }
  .hs-stats { flex-wrap: wrap; }
  .hs-stat { flex: 0 0 auto; padding: 0; border-right: none; }
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .roadmap-timeline { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-items-grid { grid-template-columns: 1fr; }
  .roadmap-cta-inner { flex-direction: column; align-items: flex-start; padding: 24px; }
}

@media (max-width: 480px) {
  .hs-nav-label { display: none; }
  .hs-nav-item  { justify-content: center; }
  .industries-grid { grid-template-columns: 1fr; }
}

/* ── Page-specific styles extracted from reference ── */

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

.logo-icon {
      width: 36px; height: 36px;
      background: var(--red);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 14px;
      color: var(--white);
    }

#what > .container > .two-col > div:first-child > p {
      font-size: 17px;
      color: var(--gray-700);
      line-height: 1.8;
      margin-bottom: 32px;
    }

#roadmap .rm-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-head); font-weight: 700; font-size: 11px;
      letter-spacing: 0.14em; text-transform: uppercase; color: var(--red);
      margin-bottom: 16px;
    }

#roadmap .rm-eyebrow::before { content: ''; display: block; width: 20px; height: 2px; background: var(--red); }

#roadmap .roadmap-sub {
      font-size: 16px;
      color: var(--gray-mid);
      max-width: 580px;
      line-height: 1.7;
    }

.rm-card { width: 100%; }

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

.why-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

#cta {
      padding: 100px 0;
      background: var(--dark);
      position: relative;
      overflow: hidden;
      text-align: center;
    }

#cta::before {
      content: '';
      position: absolute;
      top: -50%;
      left: 50%;
      transform: translateX(-50%);
      width: 800px; height: 400px;
      
    }

.cta-inner { position: relative; }

#cta h2 {
      font-family: var(--font-head);
      font-size: clamp(28px, 4vw, 52px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 20px;
    }

#cta h2 span { color: var(--red); }

#cta p { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 40px; }

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.cta-trust-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      margin-top: 52px;
      flex-wrap: wrap;
    }

.cta-trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: rgba(255,255,255,0.45);
    }

.cta-trust-item::before { content: '✓'; color: var(--red); font-weight: 700; }

footer {
      background: #1C1D29;
      padding: 64px 0 32px;
      color: rgba(255,255,255,0.50);
    }

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

.footer-brand p { font-size: 13px; line-height: 1.75; margin-top: 14px; max-width: 280px; }

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

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

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

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

.footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
    }

.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }

.footer-bottom a:hover { color: var(--red); }
