/* Digitizly Sub-page Design System
 * Central stylesheet for all EN/FR/AR (and future NL/RU) sub-pages.
 * Referenced by all blog, service and industry pages via ../../css/site.css
 *
 * Design tokens kept in sync with index.html — edit both if changing core colours.
 */

/* ── Google Fonts (same stack as index.html) ── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

:root {
  /* ── Colours ── */
  --navy: #0D1B3E;
  --navy-mid: #12224E;
  --navy-light: #1A2F68;
  --electric: #4F6FFF;
  --electric-glow: #6B8BFF;
  --violet: #8B5CF6;
  --violet-soft: #A78BFA;
  --cyan: #06B6D4;
  --white: #FFFFFF;
  --off-white: #F0F4FF;
  --gray-100: #E8EDF8;
  --gray-300: #9BA8C7;
  --gray-500: #6B7A9F;
  --text-body: #CBD5F0;
  --text-muted: #8896B8;

  /* ── Gradients ── */
  --gradient-primary: linear-gradient(135deg, #4F6FFF 0%, #8B5CF6 100%);
  --gradient-hero: linear-gradient(145deg, #0D1B3E 0%, #1A1040 50%, #0D2B4E 100%);
  --gradient-card: linear-gradient(145deg, rgba(79,111,255,0.08) 0%, rgba(139,92,246,0.06) 100%);

  /* ── Shadows ── */
  --shadow-glow: 0 0 40px rgba(79,111,255,0.3);
  --shadow-card: 0 4px 30px rgba(13,27,62,0.4);

  /* ── Borders ── */
  --border-subtle: 1px solid rgba(79,111,255,0.15);
  --border-active: 1px solid rgba(79,111,255,0.5);

  /* ── Radius ── */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* ── Typography ── */
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{background:var(--navy);color:var(--text-body);font-family:var(--font-body);line-height:1.7;min-height:100vh;overflow-x:hidden}
h1,h2,h3,h4,h5,h6{font-family:var(--font-display);line-height:1.2}
a{color:var(--electric-glow);text-decoration:none}
a:hover{color:var(--electric-glow)}
img{max-width:100%;height:auto;display:block}
.container{max-width:1100px;margin:0 auto;padding:0 5%}
.container-narrow{max-width:780px;margin:0 auto;padding:0 5%}

/* ===== NAV ===== */
.site-nav{position:sticky;top:0;z-index:100;background:rgba(13,27,62,0.92);backdrop-filter:blur(16px);border-bottom:var(--border-subtle);padding:0 5%;display:flex;align-items:center;justify-content:space-between;height:64px}
.nav-logo{font-size:1.25rem;font-weight:800;background:var(--gradient-primary);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.nav-links{display:flex;align-items:center;gap:1.5rem}
.nav-links a{font-size:0.85rem;color:var(--text-body);font-weight:500;transition:var(--transition)}
.nav-links a:hover{color:var(--white)}
/* About Us nav button */
.nav-about-btn{display:inline-flex;align-items:center;background:#fff;padding:0.45rem 1.1rem;border-radius:8px;font-weight:700;font-size:0.85rem;text-decoration:none;box-shadow:0 3px 15px rgba(79,111,255,0.25);transition:box-shadow 0.2s,transform 0.2s;white-space:nowrap}
.nav-about-btn:hover{box-shadow:0 5px 20px rgba(79,111,255,0.42);transform:translateY(-1px)}
.nav-about-btn span{background:var(--gradient-primary);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;font-weight:700}
/* Language dropdown */
.nav-lang-wrap{position:relative}
.nav-lang-btn{display:flex;align-items:center;gap:0.35rem;background:transparent;border:1px solid rgba(255,255,255,0.12);color:var(--text-muted);font-size:0.75rem;font-family:inherit;padding:0.28rem 0.65rem;border-radius:6px;cursor:pointer;transition:all 0.2s;white-space:nowrap}
.nav-lang-btn:hover{background:rgba(79,111,255,0.12);border-color:var(--electric);color:var(--white)}
.lang-caret{font-size:0.6rem;opacity:0.7}
.nav-lang-menu{display:none;position:absolute;top:calc(100% + 6px);right:0;background:rgba(5,12,26,0.98);border:1px solid rgba(79,111,255,0.2);border-radius:8px;min-width:145px;box-shadow:0 8px 32px rgba(0,0,0,0.45);flex-direction:column;z-index:300;overflow:hidden}
.nav-lang-menu.open{display:flex}
.nav-lang-menu a{display:flex;align-items:center;gap:0.55rem;padding:0.55rem 0.9rem;font-size:0.82rem;color:var(--text-body);text-decoration:none;transition:all 0.2s;white-space:nowrap}
.nav-lang-menu a:hover,.nav-lang-menu a.active{background:rgba(79,111,255,0.12);color:var(--white)}
@media(max-width:768px){.nav-links .hide-mobile{display:none}}

/* ===== BREADCRUMB ===== */
.breadcrumb{padding:1rem 5%;font-size:0.8rem;color:var(--text-muted);background:var(--navy-mid);border-bottom:var(--border-subtle)}
.breadcrumb a{color:var(--text-muted)}
.breadcrumb a:hover{color:var(--white)}
.breadcrumb span{margin:0 0.4rem;opacity:0.4}

/* ===== HERO ===== */
.page-hero{background:var(--navy-mid);padding:3rem 5% 2.5rem;border-bottom:var(--border-subtle)}
.page-tag{display:inline-block;background:rgba(79,111,255,0.12);border:1px solid rgba(79,111,255,0.25);color:var(--electric-glow);font-size:0.75rem;font-weight:600;padding:0.3rem 0.8rem;border-radius:20px;text-transform:uppercase;letter-spacing:1px;margin-bottom:1rem}
.page-title{font-size:clamp(1.8rem,4vw,2.8rem);font-weight:800;line-height:1.2;margin-bottom:1rem;color:var(--white)}
.page-title .hl{background:var(--gradient-primary);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.page-meta{display:flex;flex-wrap:wrap;gap:1rem;align-items:center;font-size:0.8rem;color:var(--text-muted)}
.page-meta-item{display:flex;align-items:center;gap:0.3rem}

/* ===== FEATURED IMAGE ===== */
.featured-image-wrap{margin:2rem 5% 0;border-radius:var(--radius-lg);overflow:hidden;position:relative;max-height:480px}
.featured-image-wrap img{width:100%;object-fit:cover}
.img-caption{font-size:0.72rem;color:var(--text-muted);text-align:right;padding:0.4rem 1rem;background:rgba(0,0,0,0.3)}

/* ===== ARTICLE BODY ===== */
.article-wrap{display:grid;grid-template-columns:1fr 300px;gap:3rem;padding:3rem 5%;max-width:1100px;margin:0 auto}
@media(max-width:900px){.article-wrap{grid-template-columns:1fr}}
.article-body h2{font-size:1.4rem;font-weight:700;color:var(--white);margin:2.5rem 0 1rem}
.article-body h3{font-size:1.1rem;font-weight:700;color:var(--electric-glow);margin:2rem 0 0.75rem}
.article-body p{color:var(--text-body);line-height:1.8;margin-bottom:1.25rem}
.article-body ul,.article-body ol{color:var(--text-body);line-height:1.8;padding-left:1.5rem;margin-bottom:1.25rem}
.article-body li{margin-bottom:0.5rem}
.article-body strong{color:var(--gray-300)}
.article-body blockquote{border-left:3px solid var(--electric);padding:1rem 1.5rem;margin:1.5rem 0;background:rgba(79,111,255,0.05);border-radius:0 var(--radius-md) var(--radius-md) 0}
.article-body blockquote p{color:var(--gray-300);font-style:italic;font-size:1.05rem;margin:0}
.checklist{list-style:none!important;padding-left:0!important}
.checklist li{padding-left:1.8rem;position:relative}
.checklist li::before{content:'✓';position:absolute;left:0;color:var(--electric);font-weight:700}
.warn-list{list-style:none!important;padding-left:0!important}
.warn-list li{padding-left:1.8rem;position:relative}
.warn-list li::before{content:'⚠';position:absolute;left:0}
.stat-box{background:var(--gradient-card);border:var(--border-subtle);border-radius:var(--radius-md);padding:1.5rem 2rem;margin:2rem 0;text-align:center;border-left:3px solid var(--electric)}
.stat-box .stat-num{font-size:2.5rem;font-weight:800;background:var(--gradient-primary);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.stat-box .stat-label{font-size:0.85rem;color:var(--text-muted);margin-top:0.25rem}

/* ===== SIDEBAR ===== */
.sidebar-card{background:var(--gradient-card);border:var(--border-subtle);border-radius:var(--radius-lg);padding:1.5rem;margin-bottom:1.5rem}
.sidebar-card h4{font-size:0.9rem;font-weight:700;color:var(--white);margin-bottom:0.75rem}
.sidebar-card p{font-size:0.8rem;color:var(--text-muted);line-height:1.6}
.sidebar-cta{background:var(--gradient-primary);color:var(--white);padding:0.75rem 1.25rem;border-radius:var(--radius-md);font-weight:600;font-size:0.85rem;display:block;text-align:center;margin-top:1rem;transition:var(--transition)}
.sidebar-cta:hover{opacity:0.9;color:var(--white)}
.sidebar-links{display:flex;flex-direction:column;gap:0.5rem;margin-top:0.75rem}
.sidebar-links a{font-size:0.8rem;color:var(--text-muted);padding:0.5rem 0.75rem;border-radius:var(--radius-sm);border:var(--border-subtle);transition:var(--transition)}
.sidebar-links a:hover{background:rgba(79,111,255,0.08);color:var(--white);border-color:rgba(79,111,255,0.3)}

/* ===== CTA SECTION ===== */
.article-cta{background:var(--gradient-card);border:var(--border-subtle);border-radius:var(--radius-lg);padding:2.5rem 2rem;margin:2rem 0;text-align:center}
.article-cta h3{font-size:1.3rem;font-weight:700;color:var(--white);margin-bottom:0.75rem}
.article-cta p{color:var(--text-body);font-size:0.9rem;margin-bottom:1.5rem;max-width:500px;margin-left:auto;margin-right:auto}
.btn-primary{display:inline-block;background:var(--gradient-primary);color:var(--white);padding:0.75rem 1.75rem;border-radius:var(--radius-md);font-weight:700;font-size:0.9rem;transition:var(--transition)}
.btn-primary:hover{opacity:0.9;color:var(--white)}
.btn-secondary{display:inline-block;background:transparent;color:var(--electric);padding:0.7rem 1.5rem;border-radius:var(--radius-md);font-weight:600;font-size:0.9rem;border:1px solid var(--electric);margin-left:0.75rem;transition:var(--transition)}
.btn-secondary:hover{background:rgba(79,111,255,0.1);color:var(--white)}

/* ===== SERVICE PAGE ===== */
.service-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1.5rem;padding:3rem 5%;max-width:1100px;margin:0 auto}
.service-card{background:var(--gradient-card);border:var(--border-subtle);border-radius:var(--radius-lg);padding:1.75rem;transition:var(--transition)}
.service-card:hover{border-color:rgba(79,111,255,0.3);transform:translateY(-3px)}
.service-icon{font-size:1.75rem;margin-bottom:0.75rem}
.service-card h3{font-size:1rem;font-weight:700;color:var(--white);margin-bottom:0.5rem}
.service-card p{font-size:0.85rem;color:var(--text-body);line-height:1.6}

/* ===== LISTING PAGE ===== */
.listing-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:2rem;padding:3rem 5%;max-width:1100px;margin:0 auto}
.listing-card{background:var(--gradient-card);border:var(--border-subtle);border-radius:var(--radius-lg);overflow:hidden;transition:var(--transition);display:flex;flex-direction:column;padding:20px 5%}
.listing-card:hover{border-color:rgba(79,111,255,0.3);transform:translateY(-3px)}
.listing-card-img{height:180px;overflow:hidden}
.listing-card-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.4s ease}
.listing-card:hover .listing-card-img img{transform:scale(1.04)}
.listing-card-body{padding:1.5rem;flex:1;display:flex;flex-direction:column}
.listing-card-tag{font-size:0.7rem;font-weight:600;color:var(--electric-glow);text-transform:uppercase;letter-spacing:1px;margin-bottom:0.5rem}
.listing-card-title{font-size:1.05rem;font-weight:700;color:var(--white);margin-bottom:0.6rem;line-height:1.3}
.listing-card-excerpt{font-size:0.82rem;color:var(--text-body);line-height:1.6;flex:1;margin-bottom:1rem}
.listing-card-meta{font-size:0.72rem;color:var(--text-muted);display:flex;gap:1rem}
.read-more{display:inline-flex;align-items:center;gap:0.3rem;font-size:0.82rem;font-weight:600;color:var(--electric);margin-top:0.75rem}
.read-more:hover{color:var(--white)}

/* ===== RESULT TAG ===== */
.result-tag{display:inline-block;background:rgba(6,182,212,0.1);border:1px solid rgba(6,182,212,0.25);color:var(--cyan);font-size:0.8rem;padding:0.4rem 1rem;border-radius:20px;margin-bottom:2rem}

/* ===== FOOTER ===== */
.site-footer{background:rgba(13,27,62,0.8);border-top:var(--border-subtle);padding:3rem 5% 2rem;margin-top:4rem}
.footer-inner{display:grid;grid-template-columns:1fr 1fr 1fr;gap:2rem;max-width:1100px;margin:0 auto}
@media(max-width:640px){.footer-inner{grid-template-columns:1fr}}
.footer-brand{font-size:1.1rem;font-weight:800;background:var(--gradient-primary);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin-bottom:0.5rem}
.footer-copy{font-size:0.75rem;color:var(--text-muted);line-height:1.6}
.footer-heading{font-size:0.8rem;font-weight:700;color:var(--gray-300);text-transform:uppercase;letter-spacing:1px;margin-bottom:0.75rem}
.footer-links{display:flex;flex-direction:column;gap:0.4rem}
.footer-links a{font-size:0.82rem;color:var(--text-muted);transition:var(--transition)}
.footer-links a:hover{color:var(--white)}
.footer-bottom{max-width:1100px;margin:2rem auto 0;padding-top:1.5rem;border-top:var(--border-subtle);display:flex;justify-content:space-between;align-items:center;font-size:0.75rem;color:var(--text-muted);flex-wrap:wrap;gap:0.5rem}

/* ===== SERVICE & INDUSTRY PAGES ===== */
.service-page{max-width:1100px;margin:0 auto;padding:0 5% 4rem}
.service-hero{border-radius:var(--radius-lg);overflow:hidden;margin:2rem 0;max-height:420px}
.service-hero img{width:100%;height:100%;object-fit:cover}
.service-intro-wrap{margin:2rem 0}
.service-badge{display:inline-block;background:rgba(79,111,255,0.12);border:1px solid rgba(79,111,255,0.25);color:var(--electric-glow);font-size:0.75rem;font-weight:600;padding:0.3rem 0.8rem;border-radius:20px;text-transform:uppercase;letter-spacing:1px;margin-bottom:1rem}
.service-intro-wrap h1{font-family:var(--font-display);font-size:clamp(1.8rem,4vw,2.8rem);font-weight:800;color:var(--white);line-height:1.2;margin-bottom:1rem}
.service-intro{font-size:1rem;color:var(--text-body);line-height:1.8;max-width:780px}
.result-badge{display:inline-block;background:rgba(6,182,212,0.1);border:1px solid rgba(6,182,212,0.25);color:var(--cyan);font-size:0.82rem;font-weight:600;padding:0.5rem 1.2rem;border-radius:20px;margin-top:1.25rem}
.features-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1.5rem;margin:2.5rem 0}
.feature-card{background:var(--gradient-card);border:var(--border-subtle);border-radius:var(--radius-lg);padding:1.75rem;transition:var(--transition)}
.feature-card:hover{border-color:rgba(79,111,255,0.35);transform:translateY(-3px)}
.feature-icon{font-size:1.75rem;margin-bottom:0.75rem}
.feature-card h3{font-family:var(--font-display);font-size:1rem;font-weight:700;color:var(--white);margin-bottom:0.5rem}
.feature-card p{font-size:0.85rem;color:var(--text-body);line-height:1.6}
.cta-box{background:var(--gradient-card);border:var(--border-subtle);border-radius:var(--radius-lg);padding:2.5rem 2rem;margin:3rem 0;text-align:center}
.cta-box h3{font-family:var(--font-display);font-size:1.3rem;font-weight:700;color:var(--white);margin-bottom:0.75rem}
.cta-box p{color:var(--text-body);font-size:0.9rem;margin-bottom:1.5rem}

/* ===== BLOG LISTING PAGE ===== */
.listing-page{max-width:1100px;margin:0 auto;padding:0 5% 4rem}
.listing-header{padding:3rem 0 2rem}
.listing-header h1{font-family:var(--font-display);font-size:clamp(1.8rem,4vw,2.8rem);font-weight:800;color:var(--white);margin-bottom:0.75rem}
.listing-sub{font-size:1rem;color:var(--text-muted);max-width:600px}
.listing-tag{display:inline-flex;align-items:center;gap:0.3rem;background:rgba(79,111,255,0.12);border:1px solid rgba(79,111,255,0.25);color:var(--electric-glow);font-size:0.7rem;font-weight:600;padding:0.25rem 0.6rem;border-radius:12px;text-transform:uppercase;letter-spacing:1px;margin-bottom:0.5rem}
.listing-card h2{color:var(--white)}
.listing-card p{color:var(--text-body)}
[dir="rtl"] .listing-tag{letter-spacing:0;text-transform:none}

/* ============================================================
 * HOME PAGE ADDITIONS — Hero Slider, Tech Icons, Problem Form,
 * Testimonials Show/Hide, FAQ CTA
 * ============================================================ */

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; overflow: hidden; }
.hero-slide { display: none; animation: slideIn 0.6s ease; }
.hero-slide.active { display: block; }
@keyframes slideIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
.hero-slider-controls {
  display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; margin-bottom: 1.8rem;
}
.hero-slider-btn {
  width: 44px; height: 44px;
  background: rgba(79,111,255,0.18);
  border: 1px solid rgba(79,111,255,0.4);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.hero-slider-btn:hover { background: rgba(79,111,255,0.35); border-color: rgba(79,111,255,0.7); }
.hero-slider-dots { display: flex; gap: 6px; align-items: center; }
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(79,111,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--electric); width: 22px; border-radius: 4px; }

/* ===== HERO TECH ICON BG ===== */
.hero-tech-icons {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1;
}
.hero-tech-icon {
  position: absolute;
  opacity: 0.22;
  font-size: 2.5rem;
  animation: float 12s ease-in-out infinite;
  filter: drop-shadow(0 0 14px currentColor) brightness(1.4);
}

/* ===== HERO PROBLEM FORM ===== */
.hero-problem-form {
  background: rgba(26,47,104,0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  width: 100%;
  max-width: 400px;
}
.hero-problem-form h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.hero-problem-form p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.hero-problem-form textarea {
  width: 100%;
  background: rgba(13,27,62,0.6);
  border: 1px solid rgba(79,111,255,0.2);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.6;
  padding: 0.75rem 1rem;
  resize: vertical;
  min-height: 130px;
  transition: border-color 0.2s;
  outline: none;
}
.hero-problem-form textarea:focus { border-color: rgba(79,111,255,0.5); }
.hero-problem-form textarea::placeholder { color: var(--text-muted); }
.hero-problem-form .word-count {
  font-size: 0.72rem; color: var(--text-muted); text-align: right; margin-top: 0.3rem;
}
.hero-problem-form .btn-primary { width: 100%; justify-content: center; margin-top: 0.75rem; }

/* ============================================================
 * TESTIMONIAL CARDS — cs-card layout, image-first, 3-per-row
 * ============================================================ */
.testimonials { background: var(--navy-mid); }

.tcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.tcard {
  display: flex;
  flex-direction: column;
  background: var(--gradient-card);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: default;
}
.tcard:hover {
  transform: translateY(-4px);
  border-color: rgba(124,58,237,0.4);
  box-shadow: 0 16px 40px rgba(124,58,237,0.15);
}
.tcard.hidden-testimonial { display: none; }

/* Tooltip overlay — translucent dark, white bold text */
.tcard-tooltip {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 18, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.88);
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  font-size: 13px;
  line-height: 1.68;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  overflow-y: auto;
}
.tcard:hover .tcard-tooltip {
  opacity: 1;
  pointer-events: auto;
}
.tcard-tooltip-name {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
  line-height: 1.3;
}
.tcard-tooltip-role {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.52);
  margin-bottom: 10px;
  line-height: 1.4;
}
.tcard-tooltip-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.68;
  color: rgba(255,255,255,0.88);
}

/* Photo — full width, square crop */
.tcard-img {
  width: 50%;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: #1a1a2e;
}

/* Card body */
.tcard-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.tcard-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.tcard-name a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.tcard-name a:hover { color: var(--electric); }
.tcard-role   { font-size: 0.7rem; color: rgba(255,255,255,0.42); margin-top: 1px; }
.tcard-stars  { color: #F59E0B; font-size: 0.78rem; letter-spacing: 1.5px; margin: 5px 0 2px; }
.tcard-text {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.72;
  font-style: italic;
  margin-top: 2px;
  flex: 1;
}
.tcard-read-more {
  color: var(--electric);
  text-decoration: none;
  font-style: normal;
  font-weight: 600;
  font-size: 0.78rem;
  white-space: nowrap;
}
.tcard-read-more:hover { text-decoration: underline; }
.tcard-platform { font-size: 0.64rem; color: rgba(255,255,255,0.25); margin-top: 8px; }

@media (max-width: 960px) { .tcard-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tcard-grid { grid-template-columns: 1fr; } }

/* ===== TESTIMONIALS SHOW/HIDE ===== */
.show-more-btn {
  display: block;
  margin: 2.5rem auto 0;
  background: transparent;
  border: var(--border-active);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.show-more-btn:hover { background: rgba(79,111,255,0.1); transform: translateY(-2px); }

@keyframes float { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }

/* ===== FAQ CTA ===== */
.faq-cta { text-align: center; margin-top: 1.5rem; }
.faq-cta a { display: inline-block; padding: 0.65rem 1.5rem; border-radius: 30px; border: 1px solid rgba(79,111,255,0.4); color: var(--electric); font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: var(--transition); }
.faq-cta a:hover { background: rgba(79,111,255,0.1); border-color: rgba(79,111,255,0.7); }

/* ============================================================
 * STAT PILLS — results section pill UI
 * ============================================================ */
.result-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0.5rem 0;
}
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.4;
  border: 1px solid;
  transition: var(--transition);
  cursor: default;
  white-space: nowrap;
}
.stat-pill:hover { transform: translateY(-2px); }
.stat-pill strong {
  font-family: var(--font-display);
  font-weight: 800;
}
/* sp1 — headline stats, electric blue */
.stat-pill.sp1 {
  background: rgba(79,111,255,0.12);
  border-color: rgba(79,111,255,0.28);
  color: var(--electric-glow);
  font-size: 0.92rem;
}
.stat-pill.sp1 strong { color: var(--electric); font-size: 1.05rem; }
/* sp2 — secondary stats, violet */
.stat-pill.sp2 {
  background: rgba(139,92,246,0.12);
  border-color: rgba(139,92,246,0.25);
  color: var(--violet-soft);
  font-size: 0.85rem;
}
.stat-pill.sp2 strong { font-size: 0.97rem; }
/* sp3 — supporting stats, cyan */
.stat-pill.sp3 {
  background: rgba(6,182,212,0.09);
  border-color: rgba(6,182,212,0.2);
  color: var(--cyan);
  font-size: 0.8rem;
}
.stat-pill.sp3 strong { font-size: 0.9rem; }
/* sp4 — minor stats, muted */
.stat-pill.sp4 {
  background: rgba(79,111,255,0.06);
  border-color: rgba(79,111,255,0.12);
  color: var(--gray-300);
  font-size: 0.76rem;
}
.stat-pill.sp4 strong { font-size: 0.85rem; }

/* ===== PROOF DRIVE SECTION ===== */
.proof-drive-section {
  background: linear-gradient(135deg, rgba(16,185,129,0.07) 0%, rgba(6,182,212,0.05) 100%);
  border-top: 1px solid rgba(16,185,129,0.18);
  border-bottom: 1px solid rgba(16,185,129,0.18);
  padding: 5rem 5%;
  text-align: center;
}
.proof-drive-inner { max-width: 720px; margin: 0 auto; }
.proof-drive-tag {
  display: inline-block;
  background: rgba(16,185,129,0.12);
  color: #10B981;
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 20px;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.proof-drive-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.proof-drive-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.proof-drive-features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.8rem;
}
.proof-drive-feat {
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.22);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: #10B981;
  font-weight: 600;
}
.proof-drive-price {
  font-size: 2rem;
  font-weight: 800;
  color: #10B981;
  margin-bottom: 2rem;
}
.proof-drive-price span {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
}
.btn-proof-drive-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #10B981;
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-proof-drive-cta:hover { background: #0d9968; transform: translateY(-2px); }

/* ===== HERO PROOF DRIVE BUTTON ===== */
.btn-proof-drive {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #10B981;
  border: 2px solid #10B981;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-proof-drive:hover {
  background: #10B981;
  color: #fff;
  transform: translateY(-2px);
}
