/* ===================================================
   SPOTNRIDES — BOLT CLONE LANDING PAGE
   Font: Montserrat | Color System: Blue/White/Green
   =================================================== */

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

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

body {
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: #0f172a;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---------- VARIABLES ---------- */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --secondary: #3b82f6;
  --bg: #ffffff;
  --bg-light: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --success: #2563eb;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 20px 40px rgba(0,0,0,.1), 0 8px 16px rgba(0,0,0,.05);
  --shadow-xl: 0 40px 80px rgba(0,0,0,.12);
}

/* ---------- UTILITIES ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(37,99,235,.35); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--primary); background: #eff6ff; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--bg-light); }

.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-white:hover { background: #f0f9ff; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,.15); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 10px; }



/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* ---------- HEADER (responsive overrides) ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #010221;
  z-index: 1000;
  transition: box-shadow .25s ease;
}
.header.scrolled {
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}

/* push page content below the fixed header */
body { padding-top: 68px; }

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
  position: relative;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 100%;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
  margin-left: auto;
}

.nav-links > li { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: all .2s;
}
.nav-link:hover,
.dropdown-toggle:hover { color: var(--primary-light); background: rgba(255,255,255,.06); }

.caret { font-size: 20px; transition: transform .2s; }

/* ---- Dropdowns (desktop = hover, mobile = click) ---- */
.dropdown-menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width:max-content;
  max-width: calc(100vw - 32px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s ease;
  z-index: 1100;
}
.dropdown-menu li a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
}
.dropdown-menu li a:hover { background: var(--bg-light); color: var(--primary); }

@media (min-width: 901px) {
  .has-dropdown:hover .dropdown-menu,
  .has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .has-dropdown:hover .caret,
  .has-dropdown.open .caret { transform: rotate(180deg); }
  .mobile-only-action { display: none; }
}

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 8px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile / tablet drawer ---- */
@media (max-width: 900px) {
  .nav-actions { display: none !important; }
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    position: fixed;
    top: 68px; left: 0; right: 0;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    background: #0f172a;
    padding: 12px 16px 24px;
    box-shadow: var(--shadow-lg);
    margin-left: 0;
    z-index: 999;
  }
  .nav-links.open { display: flex; }

  .nav-link { padding: 12px 10px; justify-content: space-between; }

  .dropdown-menu {
    position: static;
    display: none;
    opacity: 1; visibility: visible; transform: none;
    background: rgba(255,255,255,.04);
    border: none;
    box-shadow: none;
    margin: 0 0 6px;
    padding: 4px 0 4px 14px;
    max-width: 100%;
  }
  .dropdown-menu li a { color: rgba(255,255,255,.75); }
  .dropdown-menu li a:hover { background: rgba(255,255,255,.06); color: #fff; }
  .has-dropdown.open .dropdown-menu { display: block; }
  .has-dropdown.open .caret { transform: rotate(180deg); }

  .mobile-only-action { display: block; margin-top: 10px; }
  .mobile-only-action .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .nav-logo img { height: 100%; max-width: 130px; }
}

@media (max-width: 360px) {
  .nav { gap: 12px; }
  .nav-logo img { height: 28px; max-width: 110px; }
}




/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 10vh;
  display: flex;
  align-items: center;
  padding: 50px 0 20px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,.12), transparent 70%);
  top: -100px; left: -100px;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,.08), transparent 70%);
  bottom: 0; right: 200px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr; 

   /* grid-template-columns: 2fr 1fr; */
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #eff6ff;
  border: 1px solid rgba(37,99,235,.2);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: .02em;
}

.badge-pulse {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,99,235,.4); }
  50% { box-shadow: 0 0 0 6px rgba(37,99,235,0); }
}

.hero-title {
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero-title em { font-style: normal; color: var(--primary); }
.highlight-7 {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--success));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 0;
}

.stat-item {
  flex: 1;
  min-width: 100px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 26px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.stat-suffix { font-size: 18px; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 11px; color: var(--muted); font-weight: 600; margin-top: 4px; letter-spacing: .04em; text-transform: uppercase; }

.stat-sep { width: 1px; background: var(--border); align-self: stretch; }

/* ---------- TECH STACK ---------- */




/* ---------- FAQ ---------- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: all .2s;
}
.faq-q:hover { background: var(--bg-light); }
.faq-q[aria-expanded="true"] { color: var(--primary); background: #eff6ff; }

.faq-arr {
  flex-shrink: 0;
  transition: transform .3s ease;
  color: var(--muted);
}
.faq-q[aria-expanded="true"] .faq-arr { transform: rotate(180deg); color: var(--primary); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-ai {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  position: relative;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #1d4ed8 100%);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.fc-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.fc-inner {
  position: relative;
  z-index: 1;
}
.final-cta h2 { font-size: clamp(26px, 3.5vw, 44px); font-weight: 900; color: #fff; margin-bottom: 16px; letter-spacing: -.02em; max-width: 680px; margin-left: auto; margin-right: auto; }
.final-cta p { color: rgba(255,255,255,.8); font-size: 16px; max-width: 560px; margin: 0 auto 36px; line-height: 1.75; }
.fc-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.fc-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  font-weight: 600;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #0f172a;
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
  background-image: linear-gradient(90deg, transparent, rgba(146, 121, 255, 0.069) 50%, rgba(22, 75, 235, 0.069) 100%, transparent 95%), linear-gradient(90deg, transparent, rgba(255, 121, 197, 0.069) 50%, rgba(22, 75, 235, 0.069) 100%, transparent 95%), linear-gradient(90deg, transparent, rgba(255, 121, 197, 0.069) 50%, rgba(22, 75, 235, 0.069) 100%, transparent 95%);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .nav-logo { margin-bottom: 16px; color: #fff; }
.footer-brand .nav-logo span { color: #fff; }
.footer-brand p { font-size: 14px; line-height: 1.75; margin-bottom: 20px; }

.ft-socials { display: flex; gap: 10px; flex-wrap:wrap;}
.soc-link {
  width: 25px; height: 25px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all .2s;
}

.ft-links h4 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.ft-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-links a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .2s; }
.ft-links a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content:center;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; text-align:center; }
.ft-legal { display: flex; gap: 20px; }
.ft-legal a { font-size: 13px; color: rgba(255,255,255,.4); }
.ft-legal a:hover { color: rgba(255,255,255,.8); }

/* ---------- SCROLL REVEAL ---------- */
[data-reveal], [data-reveal-right] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal-right] { transform: translateX(30px); }
[data-reveal].revealed, [data-reveal-right].revealed {
  opacity: 1;
  transform: translate(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .ai-grid { grid-template-columns: repeat(2, 1fr); }

  .revenue-grid { grid-template-columns: repeat(2, 1fr); }
  .full-width-card { grid-column: 1 / -1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-badge { display: inline-flex; }

  .what-is-grid { grid-template-columns: 1fr; }

  .tl-line { display: none; }
  .tl-item, .tl-item.tl-right {
    display: block;
  }
  .tl-item > *:nth-child(2) { display: none; }
  .tl-num { display: none; }
  .tl-item .tl-card, .tl-item.tl-right .tl-card { grid-column: auto; }
  .timeline { gap: 16px; }

  .growth-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .business-grid { grid-template-columns: repeat(2, 1fr); }
  .tab-inner { grid-template-columns: 1fr; }
  .tab-mockup { display: none; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-text p { max-width: 100%; }



  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .revenue-grid { grid-template-columns: 1fr; }
  .full-width-card { flex-direction: column; }
  .business-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 0; }
  .stat-sep { width: 100%; height: 1px; }
  .stat-item { padding: 14px 24px; text-align: center; align-items: center; }
  .trust-badges { flex-direction: column; align-items: center; }
  .ai-grid { grid-template-columns: 1fr; }

  .section { padding: 40px 0; }
  .tab-nav { flex-direction: column; }
  .tab-btn { border-bottom: none; border-right: 3px solid transparent; justify-content: flex-start; }
  .tab-btn.active { border-right-color: transparent; border-bottom-color: var(--primary); }
}

@media (max-width: 375px) {
  .container { padding: 0 16px; }
  .sec-title { font-size: 22px; }
}

/* ===================================================
   TASKRABBIT CLONE — PREMIUM DESIGN LAYER
   New brand tokens (kept separate from --primary/--secondary
   so header/footer/forms are not visually altered)
   =================================================== */
:root {
  --brand: #2563EB;
  --brand-dark: #1D4ED8;
  --brand-light: #60A5FA;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --ink: #0B1220;
  --card-border: #E7ECF3;
  --shadow-soft: 0 8px 30px rgba(15,23,42,.06);
  --shadow-mid: 0 16px 40px rgba(15,23,42,.10);
  --shadow-brand: 0 16px 40px rgba(37,99,235,.20);
}

/* ---------- SECTION HEADER (shared) ---------- */
.section { padding: 50px 0; }
.sec-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.sec-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--brand-dark);
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
  border: 1px solid rgba(37,99,235,.18);
  padding: 7px 16px; border-radius: 100px; margin-bottom: 18px;
}
.sec-label::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 3px rgba(37,99,235,.18); }
.sec-title { font-family: 'Montserrat', sans-serif; font-size: clamp(26px, 3.4vw, 40px); font-weight: 900; letter-spacing: -.02em; color: var(--ink); line-height: 1.2; margin: 0 0 14px; }
.sec-title .grad { background: linear-gradient(135deg, var(--brand), var(--brand-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sec-desc-center { font-size: 16px; color: var(--muted); line-height: 1.75; }
.light-section { background: var(--bg-light); }
.dark-section { background: var(--ink); color: rgba(255,255,255,.82); }
.dark-section .sec-title { color: #fff; }
.dark-section .sec-desc-center { color: rgba(255,255,255,.65); }

.btn-brand { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; border-color: transparent; box-shadow: var(--shadow-brand); }
.btn-brand:hover { transform: translateY(-2px); box-shadow: 0 20px 46px rgba(37,99,235,.3); }
.btn-accent-outline { background: transparent; color: var(--ink); border-color: var(--card-border); }
.btn-accent-outline:hover { border-color: var(--brand); color: var(--brand-dark); background: #EFF6FF; }

@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes floatYSlow { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-10px) rotate(2deg); } }
@keyframes gradientMove { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* ---------- HERO (TaskRabbit) ---------- */
.tr-hero { position: relative; padding: 64px 0 40px; overflow: hidden; background: linear-gradient(180deg, #F5F9FF 0%, #ffffff 65%); }
.tr-hero-glow-1 { position: absolute; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(37,99,235,.14), transparent 70%); top: -160px; left: -160px; pointer-events: none; }
.tr-hero-glow-2 { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(245,158,11,.14), transparent 70%); bottom: -120px; right: -80px; pointer-events: none; }
.tr-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(37,99,235,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(37,99,235,.05) 1px, transparent 1px); background-size: 42px 42px; -webkit-mask-image: radial-gradient(ellipse at 30% 20%, black, transparent 70%); mask-image: radial-gradient(ellipse at 30% 20%, black, transparent 70%); pointer-events: none; }
.tr-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px;}
.tr-hero-badge { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--card-border); box-shadow: var(--shadow-soft); color: var(--ink); padding: 8px 18px 8px 8px; border-radius: 100px; font-size: 13px; font-weight: 700; margin-bottom: 24px; }
.tr-hero-badge .dot { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand-light)); display: flex; align-items: center; justify-content: center; }
.tr-hero-badge .dot svg { width: 14px; height: 14px; color: #fff; }
.tr-hero h1 { font-family: 'Montserrat', sans-serif; font-size: clamp(32px, 4.4vw, 50px); font-weight: 900; line-height: 1.1; letter-spacing: -.02em; color: var(--ink); margin: 0 0 20px; }
.tr-hero h1 .grad { background:linear-gradient(135deg, #014EAB, #2f8cff 60%, #42bdf6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.tr-hero p.tr-hero-desc { font-size: 16.5px; color: var(--muted); max-width: 540px; line-height: 1.8; margin-bottom: 32px; }
.tr-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.tr-hero-ctas .btn { padding: 14px 26px; font-size: 15px; border-radius: 12px; }
.tr-hero-stats { display: flex; gap: 0; background: #fff; border: 1px solid var(--card-border); border-radius: 18px; box-shadow: var(--shadow-soft); overflow: hidden; }
.tr-stat { flex: 1; padding: 20px 18px; text-align: left; border-right: 1px solid var(--card-border); }
.tr-stat:last-child { border-right: none; }
.tr-stat b { display: block; font-size: 26px; font-weight: 900; color: var(--brand-dark); line-height: 1; margin-bottom: 6px; }
.tr-stat span { font-size: 11.5px; color: var(--muted); font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }

.tr-hero-visual { position: relative; height: 460px; display: flex; align-items: center; justify-content: center; }
.tr-hero-orb { position: absolute; width: 340px; height: 340px; border-radius: 44% 56% 60% 40% / 50% 45% 55% 50%; background: linear-gradient(135deg, #DBEAFE, #EFF6FF); animation: floatYSlow 8s ease-in-out infinite; box-shadow: inset 0 0 0 1px rgba(37,99,235,.12); }
.tr-hero-core { position: relative; width: 240px; height: 240px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand-dark)); display: flex; align-items: center; justify-content: center; box-shadow: 0 30px 60px rgba(37,99,235,.35); z-index: 2; }
.tr-hero-core svg { width: 96px; height: 96px; color: #fff; opacity: .95; }
.tr-float-card { position: absolute; background: #fff; border: 1px solid var(--card-border); border-radius: 16px; box-shadow: var(--shadow-mid); padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: var(--ink); z-index: 3; animation: floatY 5s ease-in-out infinite; }
.tr-float-card .ic { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tr-float-card .ic svg { width: 18px; height: 18px; }
.tr-float-card small { display: block; font-weight: 600; color: var(--muted); font-size: 10.5px; margin-top: 1px; }
.tr-fc-1 { top: 10px; left: -10px; animation-delay: .2s; }
.tr-fc-1 .ic { background: #EFF6FF; color: var(--brand-dark); }
.tr-fc-2 { bottom: 40px; left: -30px; animation-delay: 1s; }
.tr-fc-2 .ic { background: #FEF3C7; color: var(--accent-dark); }
.tr-fc-3 { top: 60px; right: -20px; animation-delay: .6s; }
.tr-fc-3 .ic { background: #EFF6FF; color: #2563EB; }
.tr-fc-4 { bottom: 0px; right: 10px; animation-delay: 1.4s; }
.tr-fc-4 .ic { background: #FCE7F3; color: #DB2777; }

@media (max-width: 900px) {
  .tr-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .tr-hero-ctas, .tr-hero-badge { justify-content: center; margin-left: auto; margin-right: auto; }
  .tr-hero p.tr-hero-desc { margin-left: auto; margin-right: auto; }
  .tr-hero-visual { height: 360px; margin-top: 20px; }
  .tr-hero-orb { width: 260px; height: 260px; }
  .tr-hero-core { width: 180px; height: 180px; }
  .tr-hero-core svg { width: 72px; height: 72px; }
}
@media (max-width: 560px) {
  .tr-hero-stats { flex-wrap: wrap; }
  .tr-stat { flex: 1 1 50%; border-bottom: 1px solid var(--card-border); }
  .tr-float-card { padding: 8px 12px; font-size: 11px; }
  .tr-float-card .ic { width: 28px; height: 28px; }
}

/* ---------- WHAT IS ---------- */
.what-is-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.wi-visual { position: relative; background: linear-gradient(160deg, var(--ink) 0%, #14213B 100%); border-radius: 26px; padding: 40px; min-height: 380px; display: flex; align-items: center; justify-content: center; overflow: hidden; box-shadow: var(--shadow-mid); }
.wi-visual::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 20%, rgba(37,99,235,.35), transparent 40%), radial-gradient(circle at 80% 80%, rgba(245,158,11,.25), transparent 45%); }
.wi-grid-icons { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.wi-chip { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 18px 10px; text-align: center; backdrop-filter: blur(6px); transition: transform .3s ease, background .3s ease; }
.wi-chip:hover { transform: translateY(-6px); background: rgba(255,255,255,.1); }
.wi-chip svg { width: 26px; height: 26px; color: var(--brand-light); margin-bottom: 8px; }
.wi-chip span { display: block; font-size: 12px; font-weight: 700; color: #fff; }
.wi-content h2 { margin-bottom: 18px; }
.wi-content p { color: var(--muted); font-size: 15.5px; line-height: 1.85; margin-bottom: 16px; }
.wi-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.wi-tags span { background: #EFF6FF; color: var(--brand-dark); border: 1px solid rgba(37,99,235,.2); font-size: 12.5px; font-weight: 700; padding: 8px 16px; border-radius: 100px; }
@media (max-width: 900px) { .what-is-grid { grid-template-columns: 1fr; } }

/* ---------- TIMELINE (How It Works) ---------- */
.timeline { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tl-line { display: none; }
.tl-item { background: #fff; border: 1px solid var(--card-border); border-radius: 18px; padding: 28px 22px; position: relative; box-shadow: var(--shadow-soft); transition: transform .3s ease, box-shadow .3s ease; }
.tl-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-mid); }
.tl-num { position: absolute; top: -16px; left: 22px; width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-brand); }
.tl-icon { width: 46px; height: 46px; border-radius: 12px; background: #EFF6FF; color: var(--brand-dark); display: flex; align-items: center; justify-content: center; margin: 14px 0 16px; }
.tl-icon svg { width: 22px; height: 22px; }
.tl-item h5 { font-size: 15.5px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.tl-item p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
@media (max-width: 900px) { .timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .timeline { grid-template-columns: 1fr; } }

/* ---------- REVENUE MODELS ---------- */
.revenue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rev-card { background: #fff; border: 1px solid var(--card-border); border-radius: 18px; padding: 30px 26px; transition: all .3s ease; position: relative; overflow: hidden; }
.rev-card:hover { border-color: rgba(37,99,235,.35); box-shadow: var(--shadow-mid); transform: translateY(-6px); }
.rev-card .rc-icon { width: 50px; height: 50px; border-radius: 14px; background: linear-gradient(135deg, #EFF6FF, #DBEAFE); color: var(--brand-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.rev-card .rc-icon svg { width: 24px; height: 24px; }
.rev-card h5 { font-size: 16px; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.rev-card p { font-size: 13.8px; color: var(--muted); line-height: 1.7; }
@media (max-width: 900px) { .revenue-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .revenue-grid { grid-template-columns: 1fr; } }

/* ---------- BUSINESS MODELS ---------- */
.business-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.biz-card { background: linear-gradient(180deg, #fff, #F8FAFF); border: 1px solid var(--card-border); border-radius: 20px; padding: 34px 28px; text-align: left; box-shadow: var(--shadow-soft); transition: transform .3s ease; }
.biz-card:hover { transform: translateY(-6px); }
.biz-card .bc-num { font-size: 13px; font-weight: 800; color: var(--brand-dark); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; display: inline-block; background: #EFF6FF; padding: 5px 12px; border-radius: 100px; }
.biz-card h5 { font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.biz-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
@media (max-width: 900px) { .business-grid { grid-template-columns: 1fr; } }

/* ---------- SERVICES / GROWTH GRID ---------- */
.growth-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc-card { background: #fff; border: 1px solid var(--card-border); border-radius: 18px; padding: 26px 22px; text-align: center; transition: all .3s ease; }
.svc-card:hover { border-color: rgba(37,99,235,.35); box-shadow: var(--shadow-mid); transform: translateY(-6px); }
.svc-card .sv-icon { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand-light)); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-brand); }
.svc-card .sv-icon svg { width: 26px; height: 26px; color: #fff; }
.svc-card h5 { font-size: 14.5px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.svc-card p { font-size: 12.8px; color: var(--muted); line-height: 1.6; }
@media (max-width: 900px) { .growth-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .growth-grid { grid-template-columns: 1fr; } }

/* ---------- MID CTA BANNERS ---------- */
.cta-inner { position: relative; background: linear-gradient(120deg, #0B1220, #2563EB 130%); background-size: 200% 200%; animation: gradientMove 12s ease infinite; border-radius: 26px; padding: 56px 60px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; overflow: hidden; }
.cta-inner::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 34px 34px; }
.cta-text { position: relative; z-index: 1; max-width: 600px; }
.cta-text h3 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 900; color: #fff; margin-bottom: 10px; letter-spacing: -.01em; }
.cta-text p { color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.7; max-width: 100%; }
.cta-inner .btn { position: relative; z-index: 1; flex-shrink: 0; }
@media (max-width: 900px) { .cta-inner { flex-direction: column; text-align: center; padding: 40px 28px; } .cta-text { max-width: 100%; } }

/* ---------- AI FEATURES ---------- */
.ai-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ai-card { background: #fff; border: 1px solid var(--card-border); border-radius: 18px; padding: 28px 24px; transition: all .3s ease; position: relative; }
.ai-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-mid); border-color: rgba(245,158,11,.35); }
.ai-card .ac-icon { width: 48px; height: 48px; border-radius: 13px; background: linear-gradient(135deg, #FEF3C7, #FDE68A); color: var(--accent-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.ai-card .ac-icon svg { width: 22px; height: 22px; }
.ai-card h5 { font-size: 15.5px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.ai-card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }
.ai-card .ac-tag { position: absolute; top: 20px; right: 20px; font-size: 9.5px; font-weight: 800; letter-spacing: .05em; color: var(--accent-dark); background: #FEF3C7; padding: 3px 8px; border-radius: 100px; }
@media (max-width: 900px) { .ai-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ai-grid { grid-template-columns: 1fr; } }

/* ---------- ADD-ONS ---------- */
.addon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.addon-chip { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--card-border); border-radius: 14px; padding: 16px 18px; font-size: 13.5px; font-weight: 700; color: var(--ink); transition: all .25s ease; }
.addon-chip:hover { border-color: var(--brand); background: #EFF6FF; transform: translateY(-3px); }
.addon-chip .aic { width: 34px; height: 34px; border-radius: 9px; background: #EFF6FF; color: var(--brand-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.addon-chip .aic svg { width: 17px; height: 17px; }
@media (max-width: 900px) { .addon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .addon-grid { grid-template-columns: 1fr; } }

/* ---------- WHY CHOOSE US ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.why-card { background: linear-gradient(180deg, #0F1A30, #0B1220); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; padding: 34px 28px; transition: transform .3s ease; }
.why-card:hover { transform: translateY(-6px); }
.why-card .wc-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, var(--brand), var(--brand-light)); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; box-shadow: var(--shadow-brand); }
.why-card .wc-icon svg { width: 24px; height: 24px; color: #fff; }
.why-card h5 { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.75; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- TRUST BADGES ---------- */
.trust-badges { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 40px; }
.trust-badges .tb-item { text-align: center; }
.trust-badges .tb-item b { display: block; font-size: 24px; font-weight: 900; color: var(--brand-dark); }
.trust-badges .tb-item span { font-size: 11.5px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }