/* ============================================================
   TRADIE TOOL — STYLESHEET v3
   tradietool.co.uk | A product of Innowave Systems
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --primary:         #ea580c;
  --primary-dark:    #c2410c;
  --primary-light:   #fff7ed;
  --primary-mid:     #fed7aa;
  --cyan:            #00ccff;
  --cyan-light:      #e0f8ff;
  --cyan-mid:        #7de8ff;
  --brand-dark:      #091526;
  --brand-mid:       #0d1f35;
  --green:           #14b981;
  --green-light:     #d1fae5;
  --green-dark:      #065f46;
  --purple:          #7b1fa2;
  --purple-light:    #f3e5f5;
  --blue:            #1976d2;
  --blue-light:      #e3f2fd;
  --orange:          #f57c00;
  --orange-light:    #fff8e1;
  --red:             #dc3545;
  --red-light:       #ffebee;
  --dark:            #0f1117;
  --text-body:       #374151;
  --text-muted:      #6b7280;
  --text-light:      #9ca3af;
  --border:          #e5e7eb;
  --border-light:    #f3f4f6;
  --bg-soft:         #f9fafb;
  --white:           #ffffff;
  --radius:          12px;
  --radius-lg:       20px;
  --radius-xl:       28px;
  --shadow-xs:       0 1px 3px rgba(0,0,0,.05), 0 2px 10px rgba(0,0,0,.04);
  --shadow-sm:       0 2px 8px rgba(0,0,0,.07), 0 4px 20px rgba(0,0,0,.05);
  --shadow:          0 4px 24px rgba(0,0,0,.09);
  --shadow-lg:       0 12px 48px rgba(0,0,0,.14);
  --font:            'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; overflow-x: hidden; }
body  { font-family: var(--font); color: var(--text-body); background: var(--white); line-height: 1.65; overflow-x: hidden; }
a     { text-decoration: none; color: inherit; }
img   { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
@media (max-width:480px) { .container { padding: 0 16px; } }

.section    { padding: 96px 0; }
.text-center { text-align: center; }

.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: var(--primary); background: var(--primary-light); border: 1px solid var(--primary-mid);
  padding: 4px 14px; border-radius: 100px; margin-bottom: 14px;
}
.section-label--white {
  color: rgba(255,255,255,.9); background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
}
.section-title {
  font-size: clamp(26px,4vw,44px); font-weight: 800; color: var(--dark);
  line-height: 1.12; margin-bottom: 14px; letter-spacing: -.03em;
}
.section-title--white { color: white; }
.section-sub  { font-size: 17px; color: var(--text-muted); line-height: 1.75; }
.section-sub--white { color: rgba(255,255,255,.65); }

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .07s; }
.d2 { transition-delay: .14s; }
.d3 { transition-delay: .21s; }
.d4 { transition-delay: .28s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 10px; font-weight: 700; font-size: 15px;
  transition: all .2s; font-family: var(--font); cursor: pointer; white-space: nowrap;
}
.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 13px; font-weight: 700; }

.btn-orange {
  background: var(--primary); color: white; border: none;
  box-shadow: 0 4px 16px rgba(234,88,12,.4);
}
.btn-orange:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(234,88,12,.5); }

/* For dark/hero backgrounds */
.btn-white  { background: white; color: var(--brand-dark); border: none; box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.btn-white:hover  { background: rgba(255,255,255,.92); transform: translateY(-2px); }
.btn-ghost  { background: transparent; color: rgba(255,255,255,.9); border: 1.5px solid rgba(255,255,255,.3); }
.btn-ghost:hover  { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.1); color: white; }

/* For white backgrounds */
.btn-outline { background: white; color: var(--text-body); border: 1.5px solid var(--border); box-shadow: var(--shadow-xs); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

.btn-video {
  display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px;
  border-radius: 10px; background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9); font-weight: 600; font-size: 14px;
  transition: all .2s; cursor: pointer; font-family: var(--font);
  backdrop-filter: blur(4px);
}
.btn-video:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); color: white; }
.btn-video-play {
  width: 30px; height: 30px; border-radius: 50%; background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(234,88,12,.5);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .35s, backdrop-filter .35s, box-shadow .35s, border-color .35s;
}
.navbar.transparent {
  background: rgba(9,21,38,.85);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(9,21,38,.75);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(0,204,255,.12);
  box-shadow: 0 4px 32px rgba(0,0,0,.25), 0 0 0 0.5px rgba(0,204,255,.08) inset;
}
.navbar-desktop {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 36px; max-width: 1280px; margin: 0 auto;
}

/* Logo */
.navbar-logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.logo-img-wrap { display: flex; align-items: center; }
.logo-img      { height: 32px; }
.logo-white    { display: block; }
.logo-dark     { display: none; }
/* Text fallback */
.logo-text { font-size: 21px; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.logo-text .t { color: white; }
.logo-text .o { color: var(--primary); }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links > li > a {
  font-size: 14px; font-weight: 600; padding: 7px 13px; border-radius: 8px;
  color: rgba(255,255,255,.8); display: block; transition: all .18s;
}
.nav-links > li > a:hover { background: rgba(0,204,255,.1); color: white; }
.navbar.scrolled .nav-links > li > a:hover { background: rgba(0,204,255,.12); color: white; }

.navbar-actions { display: flex; align-items: center; gap: 10px; }
.btn-nav-login {
  font-size: 14px; font-weight: 600; padding: 8px 17px; border-radius: 8px;
  color: rgba(255,255,255,.8); border: 1.5px solid rgba(255,255,255,.22); transition: all .18s;
}
.btn-nav-login:hover { background: rgba(255,255,255,.1); color: white; border-color: rgba(255,255,255,.5); }
.navbar.scrolled .btn-nav-login { border-color: rgba(0,204,255,.25); color: rgba(255,255,255,.85); }
.navbar.scrolled .btn-nav-login:hover { background: rgba(0,204,255,.1); color: white; border-color: rgba(0,204,255,.5); }
.btn-nav-cta {
  font-size: 14px; font-weight: 700; padding: 9px 20px; border-radius: 8px;
  background: var(--primary); color: white; display: flex; align-items: center; gap: 7px;
  box-shadow: 0 2px 8px rgba(234,88,12,.35); transition: all .18s;
}
.btn-nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(234,88,12,.5); }

/* Mobile */
.navbar-mobile { display: none; align-items: center; justify-content: space-between; padding: 14px 20px; }
.mobile-logo .logo-text { font-size: 20px; }
.mobile-actions { display: flex; align-items: center; gap: 8px; }
.mobile-call-btn { width: 40px; height: 40px; border-radius: 10px; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-size: 17px; }
.mobile-menu-btn { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.12); color: white; display: flex; align-items: center; justify-content: center; font-size: 20px; border: 1.5px solid rgba(255,255,255,.2); }
.navbar.scrolled .mobile-menu-btn { background: var(--bg-soft); color: var(--dark); border-color: var(--border); }

/* Drawer */
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1200; opacity: 0; transition: opacity .3s; }
.mobile-overlay.open { opacity: 1; }
.mobile-drawer  { position: fixed; top: 0; right: 0; bottom: 0; width: 300px; max-width: 90vw; background: white; z-index: 1300; transform: translateX(100%); transition: transform .3s ease; overflow-y: auto; box-shadow: -8px 0 40px rgba(0,0,0,.15); }
.mobile-drawer.open { transform: translateX(0); }
.drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--border); }
.drawer-close  { width: 36px; height: 36px; border-radius: 8px; background: var(--bg-soft); color: var(--text-muted); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.drawer-nav    { padding: 14px; }
.drawer-link   { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 10px; font-size: 15px; font-weight: 600; color: var(--text-body); transition: all .18s; margin-bottom: 2px; }
.drawer-link i { color: var(--text-light); }
.drawer-link:hover { background: var(--primary-light); color: var(--primary); }
.drawer-link:hover i { color: var(--primary); }
.drawer-cta    { padding: 14px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.drawer-cta-btn { display: block; width: 100%; padding: 13px; background: var(--primary); color: white; border-radius: 10px; font-size: 15px; font-weight: 700; text-align: center; transition: all .18s; }
.drawer-cta-btn:hover { background: var(--primary-dark); }
.drawer-cta-btn.outline { background: transparent; border: 1.5px solid var(--border); color: var(--text-body); }
.drawer-cta-btn.outline:hover { border-color: var(--primary); color: var(--primary); }

/* Scroll-to-top */
.scroll-top { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 44px; height: 44px; border-radius: 12px; background: var(--dark); color: white; font-size: 18px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: all .25s; }
.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--primary); transform: translateY(-2px); }

/* ============================================================
   HERO — dark, rich, colourful
   ============================================================ */
.hero {
  background: linear-gradient(150deg, #091e38 0%, #0d2340 50%, #091e38 100%);
  padding: 130px 0 0; position: relative; overflow: hidden;
   display: flex; flex-direction: column;
}

/* Animated gradient orbs */
.orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(90px); will-change: transform; opacity: 1;
}
.orb-1 { width: 650px; height: 650px; background: radial-gradient(circle, rgba(234,88,12,.22) 0%, transparent 65%); top: -180px; right: -120px; animation: orb1 14s ease-in-out infinite; }
.orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,204,255,.10) 0%, transparent 65%); bottom: 40px; left: -100px; animation: orb2 18s ease-in-out infinite; }
.orb-3 { width: 320px; height: 320px; background: radial-gradient(circle, rgba(20,185,129,.12) 0%, transparent 65%); top: 45%; right: 18%; animation: orb3 11s ease-in-out infinite; }
@keyframes orb1 { 0%,100%{transform:translate(0,0)} 33%{transform:translate(-28px,22px)} 66%{transform:translate(18px,-18px)} }
@keyframes orb2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(24px,-22px)} }
@keyframes orb3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-16px,22px)} }

/* Grid texture — trade graph paper feel */
.hero-grid-tex {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,204,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,204,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 65% 40%, black 0%, transparent 100%);
}

.hero-inner {
  flex: 1; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 48px; align-items: center; position: relative; z-index: 2;
  padding-bottom: 64px;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,204,255,.07); border: 1px solid rgba(0,204,255,.2);
  border-radius: 100px; padding: 5px 14px 5px 8px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85);
  margin-bottom: 22px; backdrop-filter: blur(4px);
}
.eyebrow-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--primary); color: white;
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: lpulse 2s ease-in-out infinite; }
@keyframes lpulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

.hero h1 {
  font-size: clamp(30px,4.5vw,58px); font-weight: 800; line-height: 1.1;
  color: white; margin-bottom: 20px; letter-spacing: -.03em;
}
.hero h1 .hl  { color: var(--primary); }
.hero h1 .hl-cyan { color: var(--cyan); }
.hero-desc { font-size: 17px; color: rgba(255,255,255,.68); margin-bottom: 32px; line-height: 1.75; max-width: 520px; }

.hero-cta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

/* Feature pills */
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.75); padding: 5px 12px;
  border-radius: 100px; font-size: 12px; font-weight: 600;
  transition: all .2s;
}
.hero-pill i { color: var(--primary); font-size: 12px; }
.hero-pill:hover { background: rgba(255,255,255,.13); color: white; }

/* App image column */
.hero-visual { display: flex; align-items: flex-end; justify-content: center; position: relative; }
.hero-app-img {
  width: 100%; position: relative; z-index: 2;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.6));
  animation: appfloat 7s ease-in-out infinite;
}
@keyframes appfloat { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-10px) rotate(.3deg)} }

/* Glow under app */
.hero-visual::before {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 280px; height: 80px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(234,88,12,.35) 0%, transparent 70%);
  filter: blur(20px); z-index: 1;
}

/* Floating badges */
.app-badge {
  position: absolute; z-index: 3; background: white; border-radius: 14px;
  padding: 10px 14px; box-shadow: 0 8px 32px rgba(0,0,0,.2), 0 0 0 1px rgba(0,0,0,.06);
  display: flex; align-items: center; gap: 10px;
  animation: bfloat 5s ease-in-out infinite;
}
.app-badge:nth-child(3) { animation-delay: -2.5s; }
@keyframes bfloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
.b-icon { width: 32px; height: 32px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.b-label { font-size: 12px; font-weight: 700; color: var(--dark); line-height: 1; }
.b-sub   { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* Wave bottom of hero */
.hero-bottom-wave { display: none; }
.hero { padding-bottom: 80px; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip { background: white; padding: 20px 0; border-bottom: 1px solid var(--border); }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--text-body); }
.trust-item i { color: var(--green); font-size: 15px; }
.trust-sep { width: 1px; height: 18px; background: var(--border); flex-shrink: 0; }

/* ============================================================
   STATS ROW
   ============================================================ */
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: var(--brand-dark); border-radius: var(--radius-xl);
  overflow: hidden; margin-top: 56px;
  box-shadow: 0 20px 60px rgba(9,21,38,.3);
}
.stat-cell {
  padding: 36px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.07);
  position: relative; overflow: hidden;
}
.stat-cell:last-child { border-right: none; }
.stat-cell::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 160px; height: 3px; background: var(--primary);
  border-radius: 0 0 3px 3px;
}
.stat-cell:first-child::before { background: var(--cyan); }
.stat-n   { font-size: 44px; font-weight: 800; color: white; line-height: 1; letter-spacing: -.04em; }
.stat-n .acc { color: var(--primary); }
.stat-n .acc-cyan { color: var(--cyan); }
.stat-lbl { font-size: 13px; color: rgba(255,255,255,.45); font-weight: 600; margin-top: 6px; letter-spacing: .02em; }

/* ============================================================
   SECTION BACKGROUNDS — colourful alternating
   ============================================================ */
.bg-white  { background: white; }
.bg-soft   { background: var(--bg-soft); }
.bg-orange { background: linear-gradient(135deg, #fff7ed 0%, #fff3e4 100%); }
.bg-green  { background: linear-gradient(135deg, #f0fdf4 0%, #e8f9f0 100%); }
.bg-blue   { background: linear-gradient(135deg, #eff6ff 0%, #e8f3ff 100%); }
.bg-purple { background: linear-gradient(135deg, #faf5ff 0%, #f3eaff 100%); }
.bg-dark   { background: var(--brand-dark); }

/* ============================================================
   FEATURE GRID (4-col)
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 52px; }

.feat-card {
  background: white; border-radius: var(--radius-lg); padding: 24px;
  border: 1.5px solid var(--border); transition: all .28s; position: relative; overflow: hidden;
}
.feat-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  transform: scaleX(0); transform-origin: left; transition: transform .28s; border-radius: 3px 3px 0 0;
}
.feat-card:hover { border-color: transparent; box-shadow: 0 8px 32px rgba(0,0,0,.1); transform: translateY(-3px); }
.feat-card:hover::after { transform: scaleX(1); }

/* Colour accent per card */
.accent-orange::after { background: var(--primary); }
.accent-green::after  { background: var(--green); }
.accent-purple::after { background: var(--purple); }
.accent-blue::after   { background: var(--blue); }
.accent-orange:hover  { box-shadow: 0 8px 32px rgba(234,88,12,.12); }
.accent-green:hover   { box-shadow: 0 8px 32px rgba(20,185,129,.12); }
.accent-purple:hover  { box-shadow: 0 8px 32px rgba(123,31,162,.1); }
.accent-blue:hover    { box-shadow: 0 8px 32px rgba(25,118,210,.1); }

.feat-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 21px; margin-bottom: 14px; flex-shrink: 0; }
.feat-card h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 7px; display: flex; align-items: center; gap: 7px; line-height: 1.3; }
.feat-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.ai-badge { display: inline-flex; align-items: center; background: linear-gradient(135deg,#7b1fa2,#9c27b0); color: white; font-size: 9px; font-weight: 800; padding: 2px 7px; border-radius: 100px; letter-spacing: .04em; }

/* ============================================================
   DEEP-DIVE TWO-COL SECTIONS
   ============================================================ */
.deep-grid         { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.deep-grid.flip    { direction: rtl; }
.deep-grid.flip > * { direction: ltr; }

.fli-list  { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.fli       { display: flex; align-items: flex-start; gap: 14px; }
.fli-icon  { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.fli h5    { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.fli p     { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* Mock UI windows */
.mock-ui   { background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg), 0 0 0 1px var(--border); overflow: hidden; }
.mock-hdr  { background: #f5f5f7; padding: 10px 14px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid #e8e8ec; }
.mock-dot  { width: 11px; height: 11px; border-radius: 50%; }
.mock-body { padding: 18px; }
.mock-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.mock-table th { background: var(--bg-soft); padding: 9px 12px; text-align: left; font-size: 10px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .07em; border-bottom: 1px solid var(--border); }
.mock-table td { padding: 10px 12px; border-bottom: 1px solid var(--border-light); color: var(--text-body); font-weight: 500; }
.mock-table tr:last-child td { border-bottom: none; }
.supp-n   { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.supp-av  { width: 26px; height: 26px; border-radius: 50%; color: white; font-size: 10px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.job-nm   { font-weight: 700; color: var(--dark); }
.pill     { font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 100px; white-space: nowrap; }
.pill-green  { background: #d1fae5; color: #065f46; }
.pill-blue   { background: #dbeafe; color: #1d4ed8; }
.pill-yellow { background: #fef9c3; color: #a16207; }
.pill-red    { background: #fee2e2; color: #b91c1c; }
.pill-purple { background: #ede9fe; color: #6d28d9; }
.pill-grey   { background: #f3f4f6; color: #374151; }

/* ============================================================
   HOW IT WORKS — 4 steps
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 52px; position: relative; }
.steps-line {
  position: absolute; top: 34px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--green));
  opacity: .15; z-index: 0; pointer-events: none;
}
.step-card {
  background: white; border-radius: var(--radius-lg); padding: 28px;
  border: 1.5px solid var(--border); text-align: center;
  position: relative; z-index: 1; transition: all .26s;
}
.step-card:hover { border-color: var(--primary); box-shadow: 0 8px 28px rgba(234,88,12,.1); transform: translateY(-3px); }
.step-num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--primary);
  color: white; font-size: 20px; font-weight: 800; display: flex;
  align-items: center; justify-content: center; margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(234,88,12,.4);
}
.step-card h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 52px; align-items: start; }
.p-card { background: white; border-radius: var(--radius-xl); padding: 30px; border: 1.5px solid var(--border); transition: all .25s; }
.p-card:hover:not(.p-feat) { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); }
.p-feat { background: var(--brand-dark); border-color: var(--brand-dark); transform: translateY(-8px); box-shadow: 0 20px 60px rgba(9,21,38,.3); }
.p-badge { display: inline-flex; align-items: center; gap: 5px; background: var(--primary); color: white; font-size: 10px; font-weight: 800; padding: 4px 12px; border-radius: 100px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .07em; }
.p-name  { font-size: 19px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.p-desc  { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
.p-price { font-size: 44px; font-weight: 800; color: var(--dark); line-height: 1; letter-spacing: -.04em; display: flex; align-items: flex-end; gap: 4px; }
.p-per   { font-size: 15px; color: var(--text-muted); margin-bottom: 4px; }
.p-note  { font-size: 12px; color: var(--text-muted); margin-top: 4px; margin-bottom: 18px; }
.p-div   { height: 1px; background: var(--border); margin-bottom: 18px; }
.p-feats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.p-feat-row { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--text-body); }
.p-chk { width: 18px; height: 18px; border-radius: 50%; background: var(--green-light); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; margin-top: 2px; }
.p-feat .p-name  { color: white; }
.p-feat .p-desc  { color: rgba(255,255,255,.55); }
.p-feat .p-price { color: white; }
.p-feat .p-per   { color: rgba(255,255,255,.5); }
.p-feat .p-note  { color: rgba(255,255,255,.4); }
.p-feat .p-div   { background: rgba(255,255,255,.1); }
.p-feat .p-feat-row { color: rgba(255,255,255,.8); }
.p-feat .p-chk   { background: rgba(234,88,12,.25); color: var(--primary); }
.p-btn { display: block; width: 100%; padding: 13px; border-radius: 10px; font-size: 14px; font-weight: 700; text-align: center; transition: all .2s; font-family: var(--font); cursor: pointer; border: none; }
.p-btn-orange { background: var(--primary); color: white; } .p-btn-orange:hover { background: var(--primary-dark); transform: translateY(-1px); }
.p-btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--text-body); } .p-btn-outline:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.p-btn-white   { background: white; color: var(--brand-dark); font-weight: 800; } .p-btn-white:hover { background: rgba(255,255,255,.9); }
.p-btn-dark-outline { background: transparent; border: 1.5px solid rgba(255,255,255,.2); color: rgba(255,255,255,.8); } .p-btn-dark-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.45); }

.no-fees { margin-top: 32px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 26px; display: flex; align-items: center; gap: 16px; }
.nf-ic { width: 46px; height: 46px; border-radius: 11px; background: var(--green-light); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 21px; flex-shrink: 0; }
.nf-txt h4 { font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 2px; }
.nf-txt p  { font-size: 13px; color: var(--text-muted); }

/* ============================================================
   TESTIMONIALS — bold redesign
   ============================================================ */
.testi-section { background: white; }

.testi-header {
  background: linear-gradient(135deg, #091e38 0%, #0d2340 60%, #091e38 100%);
  padding: 80px 0 100px;
  position: relative; overflow: hidden;
}
.testi-header::before {
  content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(234,88,12,.15) 0%, transparent 65%);
  top: -200px; right: -80px; pointer-events: none;
}
.testi-header::after {
  content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,204,255,.08) 0%, transparent 65%);
  bottom: -100px; left: 60px; pointer-events: none;
}
.testi-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap; position: relative; z-index: 2;
}
.testi-header-stats {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,.06); border: 1px solid rgba(0,204,255,.15);
  border-radius: 16px; overflow: hidden;
}
.testi-stat { padding: 20px 28px; text-align: center; }
.testi-stat-n { font-size: 24px; font-weight: 800; color: white; line-height: 1; }
.testi-stat-l { font-size: 12px; color: rgba(255,255,255,.45); font-weight: 600; margin-top: 4px; letter-spacing: .03em; }
.testi-stat-div { width: 1px; height: 48px; background: rgba(255,255,255,.1); }

.testi-cards-wrap { margin-top: -48px; padding-bottom: 0; position: relative; z-index: 10; }

.testi-cards { display: grid; grid-template-columns: 1.15fr 1fr; gap: 20px; align-items: start; }
.testi-right-col { display: flex; flex-direction: column; gap: 20px; }

.tc {
  background: white; border-radius: 20px; padding: 32px;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,.06), 0 1px 4px rgba(0,0,0,.04);
  transition: all .25s; position: relative; overflow: hidden;
}
.tc:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.1); border-color: var(--primary); }

.tc-large {
  background: linear-gradient(145deg, #0d2340, #091e38);
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(9,21,38,.35);
}
.tc-large:hover { border-color: var(--primary); }
.tc-large .tc-quote-mark { color: var(--primary); }
.tc-large .tc-text { color: rgba(255,255,255,.82); font-size: 16px; }
.tc-large .tc-name { color: white; }
.tc-large .tc-co   { color: rgba(255,255,255,.45); }
.tc-large .tc-stars{ color: #fb923c; }

.tc-accent { background: linear-gradient(145deg, #fff7ed, #fff3e4); border-color: var(--primary-mid); }
.tc-accent:hover { border-color: var(--primary); }
.tc-accent .tc-quote-mark { color: var(--primary); }

.tc-quote-mark {
  font-size: 64px; line-height: .8; font-weight: 800; color: var(--border);
  margin-bottom: 12px; display: block; font-family: Georgia, serif; letter-spacing: -.03em;
}
.tc-text { font-size: 15px; line-height: 1.75; color: var(--text-body); margin-bottom: 20px; font-style: italic; }
.tc-result { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.tc-result-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 100px;
  background: rgba(234,88,12,.1); color: var(--primary);
}
.tc-result-pill--green { background: var(--green-light); color: var(--green-dark); }
.tc-result-pill--blue  { background: var(--blue-light);  color: var(--blue); }
.tc-result-pill--light { background: rgba(255,255,255,.6); color: var(--orange); border: 1px solid rgba(234,88,12,.2); }
.tc-auth { display: flex; align-items: center; gap: 12px; }
.tc-av { width: 44px; height: 44px; border-radius: 12px; color: white; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; flex-shrink: 0; }
.tc-auth-info { flex: 1; }
.tc-name  { font-size: 14px; font-weight: 700; color: var(--dark); }
.tc-co    { font-size: 12px; color: var(--text-muted); margin-top: 1px; }
.tc-stars { font-size: 13px; color: #f59e0b; letter-spacing: 1px; margin-left: auto; flex-shrink: 0; }

.testi-trust-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-top: 28px; background: var(--bg-soft);
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden; flex-wrap: wrap;
}
.testi-trust-item { display: flex; align-items: center; gap: 10px; padding: 18px 28px; font-size: 14px; color: var(--text-body); flex: 1; min-width: 220px; }
.testi-trust-item i { color: var(--primary); font-size: 18px; flex-shrink: 0; }
.testi-trust-sep { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners-lbl { text-align: center; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--text-light); margin-bottom: 32px; }
.partners-row { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.partner-item { opacity: .35; transition: all .22s; filter: grayscale(1); }
.partner-item:hover { opacity: .8; filter: none; }
.partner-item img { height: 28px; object-fit: contain; }
.partner-name { font-size: 18px; font-weight: 800; color: var(--text-muted); letter-spacing: .04em; transition: color .2s; }
.partner-item:hover .partner-name { color: var(--dark); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 720px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q    { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 0; font-size: 15px; font-weight: 600; color: var(--dark); background: none; border: none; cursor: pointer; text-align: left; gap: 16px; font-family: var(--font); transition: color .18s; }
.faq-q i  { font-size: 13px; color: var(--text-light); transition: transform .25s; flex-shrink: 0; }
.faq-q.open { color: var(--primary); }
.faq-q.open i { transform: rotate(180deg); color: var(--primary); }
.faq-a    { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a.open { max-height: 400px; }
.faq-a p  { padding-bottom: 18px; font-size: 14px; line-height: 1.8; color: var(--text-muted); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #091526 0%, #0f2244 55%, #091526 100%);
  padding: 90px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle,rgba(234,88,12,.14) 0%,transparent 65%); top: -250px; right: -80px; pointer-events: none; animation: orb1 14s ease-in-out infinite; }
.cta-section::after  { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle,rgba(20,185,129,.08) 0%,transparent 65%); bottom: -120px; left: 60px; pointer-events: none; }
.cta-section h2 { font-size: clamp(28px,4vw,46px); font-weight: 800; color: white; margin-bottom: 14px; letter-spacing: -.03em; }
.cta-section h2 span { color: var(--primary); }
.cta-section p  { font-size: 17px; color: rgba(255,255,255,.6); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 52px; align-items: start; }
.c-info { background: white; border-radius: var(--radius-xl); padding: 32px; border: 1px solid var(--border); box-shadow: var(--shadow-xs); }
.c-method { display: flex; align-items: center; gap: 14px; padding: 13px 16px; border-radius: var(--radius); background: var(--bg-soft); border: 1px solid var(--border); margin-bottom: 10px; font-weight: 600; color: var(--text-body); transition: all .2s; }
.c-method:hover { border-color: var(--primary); background: var(--primary-light); color: var(--primary); }
.c-method-ic { width: 40px; height: 40px; border-radius: 10px; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.c-method:hover .c-method-ic { background: white; }
.c-form { background: white; border-radius: var(--radius-xl); padding: 36px; border: 1.5px solid var(--border); box-shadow: var(--shadow-xs); }
.c-form h3 { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark); }
.f-input,.f-select,.f-textarea { padding: 11px 14px; border-radius: 10px; border: 1.5px solid var(--border); font-family: var(--font); font-size: 14px; color: var(--text-body); transition: border-color .2s; background: white; width: 100%; }
.f-input:focus,.f-select:focus,.f-textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(234,88,12,.08); }
.f-textarea { min-height: 110px; resize: vertical; }
.f-submit { width: 100%; padding: 14px; border-radius: 10px; background: var(--primary); color: white; font-size: 15px; font-weight: 700; transition: all .2s; font-family: var(--font); cursor: pointer; border: none; box-shadow: 0 4px 14px rgba(234,88,12,.3); }
.f-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #060f1c; padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.ft-brand-desc { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.8; margin-top: 14px; max-width: 280px; }
.ft-socials { display: flex; gap: 8px; margin-top: 20px; }
.ft-social { width: 36px; height: 36px; border-radius: 9px; border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.4); display: flex; align-items: center; justify-content: center; font-size: 15px; transition: all .2s; }
.ft-social:hover { background: var(--primary); border-color: var(--primary); color: white; }
.footer-col h5 { font-size: 11px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.85); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.25); flex-wrap: wrap; gap: 8px; }

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.vm-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,.8); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity .25s; }
.vm-overlay.open { opacity: 1; pointer-events: all; }
.vm-wrap  { position: relative; width: 100%; max-width: 900px; border-radius: 16px; overflow: hidden; box-shadow: 0 40px 120px rgba(0,0,0,.5); background: #000; }
.vm-wrap iframe,.vm-wrap video { display: block; width: 100%; aspect-ratio: 16/9; border: none; }
.vm-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; aspect-ratio: 16/9; background: linear-gradient(135deg,#091526,#122040); color: white; gap: 16px; padding: 24px; text-align: center; }
.vm-play { width: 72px; height: 72px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 26px; box-shadow: 0 8px 32px rgba(234,88,12,.5); }
.vm-placeholder p { font-size: 15px; font-weight: 600; color: rgba(255,255,255,.6); max-width: 380px; line-height: 1.6; }
.vm-close { position: absolute; top: -46px; right: 0; background: rgba(255,255,255,.15); color: white; border-radius: 8px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; transition: background .2s; }
.vm-close:hover { background: rgba(255,255,255,.3); }

/* ============================================================
   STATUS BADGES (preserved from app)
   ============================================================ */
.status-completed  { background: #e5f6ee; color: #14b981; }
.status-pending    { background: #fff8e1; color: #f57c00; }
.status-in-progress{ background: #e3f2fd; color: #1976d2; }
.status-on-hold    { background: #f3e5f5; color: #7b1fa2; }
.status-failed     { background: #ffebee; color: #dc3545; }
.status-cancelled  { background: #ffebee; color: #dc3545; }
.status-partial    { background: #e3f2fd; color: #1976d2; }
.status-refunded   { background: #f3e5f5; color: #7b1fa2; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1100px) {
  .feature-grid  { grid-template-columns: repeat(3,1fr); }
  .pricing-grid  { grid-template-columns: repeat(2,1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-row     { grid-template-columns: repeat(2,1fr); }
  .stat-cell     { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat-cell:last-child,.stat-cell:nth-child(2) { border-bottom: none; }
}
@media (max-width:900px) {
  .hero-inner        { grid-template-columns: 1fr; }
  .hero-visual       { display: none; }
  .deep-grid,.deep-grid.flip { grid-template-columns: 1fr; direction: ltr; }
  .deep-grid.flip .deep-text { order: 1; }
  .deep-grid.flip .deep-mock { order: 2; }
  .deep-text { order: 1; }
  .deep-mock  { order: 2; }
  .feature-grid      { grid-template-columns: repeat(2,1fr); }
  .steps-grid        { grid-template-columns: repeat(2,1fr); }
  .steps-line        { display: none; }
  .test-grid         { grid-template-columns: 1fr; }
  .testi-cards       { grid-template-columns: 1fr; }
  .testi-header-inner{ flex-direction: column; align-items: flex-start; }
  .testi-header-stats{ width: 100%; }
  .testi-stat        { flex: 1; }
  .testi-trust-sep   { display: none; }
  .testi-trust-item  { min-width: 100%; border-bottom: 1px solid var(--border); }
  .testi-trust-item:last-child { border-bottom: none; }
  .contact-grid      { grid-template-columns: 1fr; }
  .form-row          { grid-template-columns: 1fr; }
}
@media (max-width:768px) {
  .navbar-desktop { display: none !important; }
  .navbar-mobile  { display: flex !important; }
  .section  { padding: 64px 0; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .p-feat        { transform: none; }
  .feature-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-inner   { gap: 14px; }
  .trust-sep     { display: none; }
  .cta-btns      { flex-direction: column; align-items: center; }
  .stats-row     { grid-template-columns: 1fr 1fr; }
}
@media (max-width:640px) {
  .hero-cta   { flex-direction: column; align-items: flex-start; }
  .hero-pills { gap: 6px; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-row  { grid-template-columns: 1fr; }
  .stat-cell  { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .testi-header { padding: 60px 0 80px; }
  .testi-header-stats { flex-wrap: wrap; }
  .testi-stat { min-width: 50%; }
  .testi-stat-div { display: none; }
  .tc { padding: 24px; }
}

/* ============================================================
   HERO — fix bottom, remove wave gap
   ============================================================ */
.hero { padding-bottom: 80px; }
.hero-bottom-wave { display: none; }

/* ============================================================
   TESTIMONIALS — bold redesign
   ============================================================ */
.testi-section { background: white; }

.testi-header {
  background: linear-gradient(135deg, #091526 0%, #0d1f38 60%, #091526 100%);
  padding: 80px 0 100px;
  position: relative; overflow: hidden;
}
.testi-header::before {
  content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(234,88,12,.15) 0%, transparent 65%);
  top: -200px; right: -80px; pointer-events: none;
}
.testi-header::after {
  content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(20,185,129,.08) 0%, transparent 65%);
  bottom: -100px; left: 60px; pointer-events: none;
}
.testi-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap; position: relative; z-index: 2;
}
.testi-header-stats { display: flex; align-items: center; gap: 0; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; overflow: hidden; }
.testi-stat { padding: 20px 28px; text-align: center; }
.testi-stat-n { font-size: 24px; font-weight: 800; color: white; line-height: 1; }
.testi-stat-l { font-size: 12px; color: rgba(255,255,255,.45); font-weight: 600; margin-top: 4px; letter-spacing: .03em; }
.testi-stat-div { width: 1px; height: 48px; background: rgba(255,255,255,.1); }

.testi-cards-wrap {
  margin-top: -48px;
  padding-bottom: 0;
  position: relative; z-index: 10;
}

.testi-cards {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 20px;
  align-items: start;
}
.testi-right-col { display: flex; flex-direction: column; gap: 20px; }

/* Base card */
.tc {
  background: white;
  border-radius: 20px;
  padding: 32px;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,.06), 0 1px 4px rgba(0,0,0,.04);
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.tc:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.1); border-color: var(--primary); }

/* Large featured card */
.tc-large {
  background: linear-gradient(145deg, #0d1f38, #091526);
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(9,21,38,.35);
}
.tc-large:hover { border-color: var(--primary); }
.tc-large .tc-quote-mark { color: var(--primary); }
.tc-large .tc-text { color: rgba(255,255,255,.82); font-size: 16px; }
.tc-large .tc-name { color: white; }
.tc-large .tc-co   { color: rgba(255,255,255,.45); }
.tc-large .tc-stars{ color: #fb923c; }

/* Accent card (3rd) */
.tc-accent {
  background: linear-gradient(145deg, #fff7ed, #fff3e4);
  border-color: var(--primary-mid);
}
.tc-accent:hover { border-color: var(--primary); }
.tc-accent .tc-quote-mark { color: var(--primary); }

/* Quote mark */
.tc-quote-mark {
  font-size: 64px; line-height: .8; font-weight: 800; color: var(--border);
  margin-bottom: 12px; display: block; font-family: Georgia, serif; letter-spacing: -.03em;
}

/* Card text */
.tc-text {
  font-size: 15px; line-height: 1.75; color: var(--text-body);
  margin-bottom: 20px; font-style: italic;
}

/* Result pills */
.tc-result { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.tc-result-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 100px;
  background: rgba(234,88,12,.1); color: var(--primary);
}
.tc-result-pill--green { background: var(--green-light); color: var(--green-dark); }
.tc-result-pill--blue  { background: var(--blue-light);  color: var(--blue); }
.tc-result-pill--light { background: rgba(255,255,255,.6); color: var(--orange); border: 1px solid rgba(234,88,12,.2); }

/* Author row */
.tc-auth { display: flex; align-items: center; gap: 12px; }
.tc-av {
  width: 44px; height: 44px; border-radius: 12px; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; flex-shrink: 0;
}
.tc-auth-info { flex: 1; }
.tc-name  { font-size: 14px; font-weight: 700; color: var(--dark); }
.tc-co    { font-size: 12px; color: var(--text-muted); margin-top: 1px; }
.tc-stars { font-size: 13px; color: #f59e0b; letter-spacing: 1px; margin-left: auto; flex-shrink: 0; }
.tc-large .tc-av { border-radius: 12px; }

/* Bottom trust row */
.testi-trust-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-top: 28px; background: var(--bg-soft);
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  flex-wrap: wrap;
}
.testi-trust-item {
  display: flex; align-items: center; gap: 10px; padding: 18px 28px;
  font-size: 14px; color: var(--text-body); flex: 1; min-width: 220px;
}
.testi-trust-item i { color: var(--primary); font-size: 18px; flex-shrink: 0; }
.testi-trust-sep { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }

@media (max-width: 900px) {
  .testi-cards { grid-template-columns: 1fr; }
  .testi-header-inner { flex-direction: column; align-items: flex-start; }
  .testi-header-stats { width: 100%; }
  .testi-stat { flex: 1; }
  .testi-trust-sep { display: none; }
  .testi-trust-item { min-width: 100%; border-bottom: 1px solid var(--border); }
  .testi-trust-item:last-child { border-bottom: none; }
}
@media (max-width: 640px) {
  .testi-header { padding: 60px 0 80px; }
  .testi-header-stats { flex-wrap: wrap; }
  .testi-stat { min-width: 50%; }
  .testi-stat-div { display: none; }
  .tc { padding: 24px; }
  .tc-large .tc-text { font-size: 15px; }
}