/* ============================================================
   TURPOS Landing — v2 "Aurora" Design System
   Namespace: tp-
   File: public/css/landing-modern.css
   Loaded LAST in landing layout — overrides legacy theme styles
   Direction: tech / mobile-app onboarding, dark aurora hero,
   bento features, inline SVG icons, backup as hero differentiator.
   ============================================================ */

/* ── CSS Variables ── */
:root {
  /* Brand greens */
  --tp-ink: #05130c;          /* near-black green (hero base) */
  --tp-ink-2: #08210f;
  --tp-green-900: #0f3d24;
  --tp-green-700: #1c6b41;
  --tp-green-500: #239b5b;
  --tp-mint-400: #34d399;     /* brighter neon mint */
  --tp-mint-300: #6ee7b7;
  --tp-accent: #FC9400;
  --tp-accent-hover: #e08500;

  /* Surfaces */
  --tp-bg-light: #f5faf7;
  --tp-bg-white: #ffffff;
  --tp-bg-tinted: #ecf6f0;
  --tp-border: rgba(15, 61, 36, 0.10);
  --tp-border-strong: rgba(35, 155, 91, 0.28);

  /* Text */
  --tp-text-dark: #08160f;
  --tp-text-body: #344b3f;
  --tp-text-muted: #67786f;
  --tp-text-light: #9aa8a0;

  /* On-dark text */
  --tp-on-dark: rgba(255,255,255,0.92);
  --tp-on-dark-muted: rgba(214,235,224,0.66);

  /* Radii */
  --tp-radius-sm: 10px;
  --tp-radius-md: 18px;
  --tp-radius-lg: 26px;
  --tp-radius-xl: 34px;
  --tp-radius-pill: 999px;

  /* Shadows */
  --tp-shadow-xs: 0 1px 3px rgba(8, 22, 15, 0.05), 0 1px 2px rgba(0,0,0,0.04);
  --tp-shadow-sm: 0 4px 14px rgba(8, 22, 15, 0.07), 0 1px 4px rgba(0,0,0,0.04);
  --tp-shadow-md: 0 10px 30px rgba(8, 22, 15, 0.10), 0 2px 8px rgba(0,0,0,0.05);
  --tp-shadow-lg: 0 20px 56px rgba(8, 22, 15, 0.14), 0 4px 16px rgba(0,0,0,0.07);
  --tp-shadow-xl: 0 32px 80px rgba(8, 22, 15, 0.20), 0 10px 28px rgba(0,0,0,0.10);
  --tp-glow-mint: 0 0 0 1px rgba(52,211,153,0.18), 0 18px 50px rgba(52,211,153,0.22);

  /* Layout */
  --tp-max-width: 1200px;
  --tp-section-py: 110px;
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--tp-text-body);
  background: var(--tp-bg-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Preloader */
#preloader { background: var(--tp-ink); }
#loader { border-top-color: var(--tp-mint-400) !important; }

/* Scrollbar */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--tp-bg-light); }
::-webkit-scrollbar-thumb { background: var(--tp-green-500); border-radius: 4px; }
::selection { background: rgba(52,211,153,0.28); color: var(--tp-text-dark); }

/* ── Utilities ── */
.tp-container {
  max-width: var(--tp-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.tp-gradient-text {
  background: linear-gradient(110deg, var(--tp-mint-300) 0%, var(--tp-mint-400) 45%, var(--tp-accent) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Subtle dotted grid pattern overlay (use on dark) */
.tp-grid-pattern {
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.tp-btn-primary,
.tp-btn-outline,
.tp-btn-accent,
.tp-btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  border-radius: var(--tp-radius-pill);
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  border: none;
}
.tp-btn-primary svg, .tp-btn-outline svg, .tp-btn-accent svg, .tp-btn-light svg { width: 18px; height: 18px; }

.tp-btn-primary {
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--tp-green-500) 0%, var(--tp-mint-400) 100%);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(35, 155, 91, 0.38);
}
.tp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(35, 155, 91, 0.5); color: #fff !important; }

.tp-btn-accent {
  padding: 15px 30px;
  background: var(--tp-accent);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(252, 148, 0, 0.4);
}
.tp-btn-accent:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(252, 148, 0, 0.55); background: var(--tp-accent-hover); color: #fff !important; }

.tp-btn-outline {
  padding: 14px 28px;
  background: transparent;
  color: var(--tp-green-700) !important;
  border: 1.5px solid var(--tp-border-strong);
}
.tp-btn-outline:hover { background: var(--tp-green-500); color: #fff !important; border-color: var(--tp-green-500); transform: translateY(-2px); }

/* Light button for dark backgrounds */
.tp-btn-light {
  padding: 14px 26px;
  background: rgba(255,255,255,0.10);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
}
.tp-btn-light:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); color: #fff !important; }

/* Legacy purple button override */
.puprple_btn, a.puprple_btn {
  background: linear-gradient(135deg, var(--tp-green-500) 0%, var(--tp-mint-400) 100%) !important;
  box-shadow: 0 8px 24px rgba(35, 155, 91, 0.38) !important;
  border-radius: var(--tp-radius-pill) !important;
  color: #fff !important;
}

/* ── Badges & section headers ── */
.tp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--tp-green-500);
  margin-bottom: 16px;
}
.tp-eyebrow::before {
  content: '';
  width: 22px; height: 2px;
  background: linear-gradient(90deg, var(--tp-green-500), var(--tp-mint-400));
  border-radius: 2px;
}
.tp-eyebrow.tp-eyebrow-center { justify-content: center; }
.tp-eyebrow.tp-on-dark { color: var(--tp-mint-300); }
.tp-eyebrow.tp-on-dark::before { background: linear-gradient(90deg, var(--tp-mint-400), transparent); }

/* keep legacy label name working */
.tp-section-label {
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--tp-mint-400);
  margin-bottom: 12px; display: block;
}

.tp-section-title {
  font-size: clamp(30px, 4.2vw, 50px);
  font-weight: 800;
  color: var(--tp-text-dark);
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.tp-section-title span, .tp-section-title em {
  color: var(--tp-green-500); font-style: normal;
}

.tp-section-subtitle {
  font-size: 17px; color: var(--tp-text-muted);
  line-height: 1.7; max-width: 580px;
}

.tp-badge-new {
  background: var(--tp-accent); color: #fff;
  font-size: 10px; padding: 3px 9px; border-radius: 6px;
  vertical-align: middle; margin-left: 8px; font-weight: 800; letter-spacing: 0.5px;
}
.tp-badge {
  display: inline-block; padding: 6px 15px; border-radius: var(--tp-radius-pill);
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.tp-badge-green { background: rgba(35,155,91,0.1); color: var(--tp-green-700); border: 1px solid rgba(35,155,91,0.2); }
.tp-badge-orange { background: rgba(252,148,0,0.12); color: #c47700; border: 1px solid rgba(252,148,0,0.25); }

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
header {
  background: transparent !important;
  padding: 0 !important; box-shadow: none !important;
  position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important;
  z-index: 1000 !important;
}
header .container, header .container-fluid { max-width: 100% !important; padding: 0 !important; }
header .navbar {
  padding: 18px 44px !important;
  background: rgba(7, 24, 14, 0.45) !important;
  backdrop-filter: blur(20px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(140%) !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  transition: all 0.35s ease !important;
}
header.tp-scrolled .navbar {
  background: rgba(5, 19, 12, 0.92) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25) !important;
  padding-top: 12px !important; padding-bottom: 12px !important;
}

header .navbar-brand svg text { fill: #fff !important; font-weight: 800 !important; letter-spacing: 3px !important; }

header .navbar-nav .nav-item .nav-link {
  color: rgba(255,255,255,0.82) !important;
  font-weight: 600 !important; font-size: 14px !important;
  padding: 8px 15px !important; border-radius: var(--tp-radius-sm) !important;
  transition: color 0.2s, background 0.2s !important; background: transparent !important;
}
header .navbar-nav .nav-item .nav-link:hover { color: #fff !important; background: rgba(255,255,255,0.10) !important; }

header .navbar-nav .nav-item .nav-link.tp-nav-cta {
  background: var(--tp-accent) !important; color: #fff !important;
  padding: 9px 22px !important; border-radius: var(--tp-radius-pill) !important;
  font-weight: 800 !important; letter-spacing: 0.5px !important;
  box-shadow: 0 6px 18px rgba(252, 148, 0, 0.4) !important; margin-left: 10px !important;
}
header .navbar-nav .nav-item .nav-link.tp-nav-cta:hover {
  background: var(--tp-accent-hover) !important; transform: translateY(-1px) !important;
}

/* ── Fix legacy theme white navbar-nav background ── */
header .navbar-nav { background: transparent !important; }

/* ── Hamburger button ── */
header .navbar-toggler,
header .tp-nav-toggler {
  border: 1.5px solid rgba(255,255,255,0.40) !important;
  padding: 8px 11px !important;
  border-radius: var(--tp-radius-sm) !important;
  background: rgba(255,255,255,0.06) !important;
  outline: none !important;
  box-shadow: none !important;
  cursor: pointer;
}

.tp-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 18px;
  gap: 0;
  position: relative;
}
.tp-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}
.tp-hamburger span:nth-child(1) { top: 0; }
.tp-hamburger span:nth-child(2) { top: 8px; }
.tp-hamburger span:nth-child(3) { top: 16px; }

/* Open state → X */
.tp-nav-toggler.is-open .tp-hamburger span:nth-child(1) {
  top: 8px; transform: rotate(45deg);
}
.tp-nav-toggler.is-open .tp-hamburger span:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.tp-nav-toggler.is-open .tp-hamburger span:nth-child(3) {
  top: 8px; transform: rotate(-45deg);
}

/* ── Mobile nav backdrop ── */
#tp-nav-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 999;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.25s ease;
}
@media (max-width: 991px) {
  #tp-nav-backdrop { display: block; pointer-events: none; }
  #tp-nav-backdrop.visible { opacity: 1; pointer-events: auto; }
}

/* ── Mobile nav collapse ── */
@media (max-width: 991px) {
  header .navbar { padding: 12px 20px !important; }
  header .navbar-collapse {
    position: absolute !important;
    top: 100% !important; left: 0 !important; right: 0 !important;
    background: rgba(5, 19, 12, 0.98) !important;
    border-radius: 0 0 var(--tp-radius-md) var(--tp-radius-md) !important;
    padding: 8px 16px 20px !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.35) !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    z-index: 1000 !important;
  }
  header .navbar-nav { padding: 4px 0 !important; }
  header .navbar-nav .nav-item .nav-link {
    padding: 12px 14px !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    border-radius: 0 !important;
    font-size: 15px !important;
  }
  header .navbar-nav .nav-item:last-child .nav-link { border-bottom: none !important; }
  header .navbar-nav .nav-item .nav-link.tp-nav-cta {
    margin: 12px 0 0 !important;
    display: block !important;
    text-align: center !important;
    border-bottom: none !important;
    border-radius: var(--tp-radius-pill) !important;
    padding: 13px 22px !important;
  }
}

/* ============================================================
   HERO  (app-onboarding)
   ============================================================ */
.tp-hero, .banner_section {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 90px !important;
  background:
    radial-gradient(120% 120% at 80% -10%, rgba(52,211,153,0.20) 0%, transparent 45%),
    radial-gradient(90% 90% at 0% 110%, rgba(252,148,0,0.10) 0%, transparent 50%),
    linear-gradient(160deg, var(--tp-ink) 0%, var(--tp-ink-2) 40%, var(--tp-green-900) 100%) !important;
  overflow: hidden !important;
}
/* dotted grid overlay */
.tp-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 75%);
          mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 75%);
  pointer-events: none;
}
/* aurora glow blob */
.tp-hero::after {
  content: ''; position: absolute;
  top: -200px; right: -160px; width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(52,211,153,0.22) 0%, transparent 60%);
  filter: blur(30px); pointer-events: none;
}

.tp-hero-content { position: relative; z-index: 2; padding: 0; }

.tp-hero-label {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(52,211,153,0.12);
  border: 1px solid rgba(52,211,153,0.3);
  border-radius: var(--tp-radius-pill);
  padding: 8px 16px; margin-bottom: 26px;
  color: var(--tp-mint-300); font-size: 13px; font-weight: 600;
  backdrop-filter: blur(6px);
}
.tp-hero-label .tp-dot {
  width: 8px; height: 8px; background: var(--tp-mint-400); border-radius: 50%; flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(52,211,153,0.22);
  animation: tp-pulse 2.2s ease-in-out infinite;
}
@keyframes tp-pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(52,211,153,0.22); }
  50% { box-shadow: 0 0 0 8px rgba(52,211,153,0.05); }
}

.tp-hero-title {
  font-size: clamp(36px, 5.6vw, 66px);
  font-weight: 900; color: #fff;
  line-height: 1.04; margin-bottom: 22px; letter-spacing: -1.8px;
}

.tp-hero-subtitle {
  font-size: 18px; color: var(--tp-on-dark-muted);
  line-height: 1.7; margin-bottom: 34px; max-width: 500px;
}

/* App store buttons */
.tp-app-buttons { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 36px; }
.tp-app-buttons a { transition: transform 0.2s ease, box-shadow 0.2s ease; border-radius: 12px; }
.tp-app-buttons a:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.3); }
.tp-app-buttons img { height: 52px; display: block; border-radius: 10px; }

/* Social proof */
.tp-social-proof { display: flex; align-items: center; gap: 14px; }
.tp-avatar-stack { display: flex; }
.tp-avatar-stack img {
  width: 42px; height: 42px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.85); margin-right: -13px; object-fit: cover; transition: transform 0.2s;
}
.tp-avatar-stack img:last-child { margin-right: 0; }
.tp-avatar-stack img:hover { transform: scale(1.12) translateY(-2px); z-index: 2; }
.tp-social-proof-text { color: var(--tp-on-dark); font-size: 14px; font-weight: 600; line-height: 1.4; padding-left: 14px; }
.tp-social-proof-text strong { color: #fff; font-size: 19px; font-weight: 800; display: block; }
.tp-social-proof-stars { color: var(--tp-accent); font-size: 13px; letter-spacing: 1px; }

/* ── Hero device / phone mockup ── */
.tp-hero-image-wrap {
  position: relative; display: flex; align-items: center; justify-content: center; padding: 20px 0;
}

/* glow ring behind mockup */
.tp-hero-image-wrap::before {
  content: ''; position: absolute; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(52,211,153,0.28) 0%, transparent 65%);
  filter: blur(24px); z-index: 1;
}

.tp-hero-mockup {
  position: relative; z-index: 2;
  width: 420px; max-width: 88%;
  object-fit: contain;
  filter: drop-shadow(0 40px 70px rgba(0,0,0,0.50));
  animation: tp-float 5s ease-in-out infinite;
}

/* Floating glass UI chips */
.tp-float-card {
  position: absolute; z-index: 4;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px; padding: 13px 16px; color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  display: flex; align-items: center; gap: 12px;
}
.tp-float-card .tp-float-ic {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--tp-green-500), var(--tp-mint-400));
}
.tp-float-card .tp-float-ic svg { width: 20px; height: 20px; color: #fff; }
.tp-float-card-value { font-size: 18px; font-weight: 800; line-height: 1.05; }
.tp-float-card-label { font-size: 11.5px; opacity: 0.78; white-space: nowrap; }
.tp-float-card-1 { top: 14%; left: -4%; animation: tp-float 4.5s ease-in-out infinite; }
.tp-float-card-2 { bottom: 16%; right: -6%; animation: tp-float 4.5s ease-in-out 1.6s infinite; }
.tp-float-card-3 { bottom: 44%; left: -10%; animation: tp-float 5s ease-in-out 0.8s infinite; }

@keyframes tp-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* hero wave (legacy svg) lives at bottom */
.tp-hero-wave { display: none; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.tp-trust {
  background: var(--tp-ink-2);
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.tp-trust-inner {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 14px 40px; text-align: center;
}
.tp-trust-item { display: flex; align-items: center; gap: 10px; color: var(--tp-on-dark-muted); font-size: 14px; font-weight: 600; }
.tp-trust-item svg { width: 20px; height: 20px; color: var(--tp-mint-400); flex-shrink: 0; }

/* ============================================================
   BACKUP SPOTLIGHT  (the differentiator)
   ============================================================ */
.tp-backup {
  position: relative; overflow: hidden;
  padding: var(--tp-section-py) 0;
  background:
    radial-gradient(100% 100% at 100% 0%, rgba(52,211,153,0.16) 0%, transparent 50%),
    linear-gradient(160deg, var(--tp-ink) 0%, var(--tp-green-900) 100%);
}
.tp-backup::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px; pointer-events: none;
}
.tp-backup .row { position: relative; z-index: 2; }

.tp-backup-text .tp-eyebrow { color: var(--tp-mint-300); }
.tp-backup-text .tp-eyebrow::before { background: linear-gradient(90deg, var(--tp-mint-400), transparent); }
.tp-backup-title {
  font-size: clamp(28px, 4vw, 46px); font-weight: 900; color: #fff;
  line-height: 1.12; letter-spacing: -1px; margin-bottom: 18px;
}
.tp-backup-sub { font-size: 17px; color: var(--tp-on-dark-muted); line-height: 1.7; margin-bottom: 32px; max-width: 520px; }

/* compare card: rivals vs turpos */
.tp-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 34px; }
.tp-compare-col {
  border-radius: var(--tp-radius-md); padding: 22px 22px; border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}
.tp-compare-col.tp-compare-us {
  background: linear-gradient(160deg, rgba(52,211,153,0.16), rgba(35,155,91,0.06));
  border-color: rgba(52,211,153,0.4);
  box-shadow: var(--tp-glow-mint);
}
.tp-compare-head { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 800; margin-bottom: 16px; color: #fff; }
.tp-compare-head .tp-compare-tag { font-size: 10.5px; padding: 2px 8px; border-radius: 6px; font-weight: 800; letter-spacing: 0.4px; }
.tp-compare-us .tp-compare-tag { background: var(--tp-mint-400); color: var(--tp-ink); }
.tp-compare-rivals .tp-compare-tag { background: rgba(255,255,255,0.14); color: var(--tp-on-dark-muted); }
.tp-compare-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.tp-compare-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.5; color: var(--tp-on-dark); }
.tp-compare-list li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.tp-compare-rivals .tp-compare-list li { color: var(--tp-on-dark-muted); }
.tp-compare-rivals .tp-compare-list li svg { color: #f87171; }
.tp-compare-us .tp-compare-list li svg { color: var(--tp-mint-400); }

/* visual side */
.tp-backup-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 360px; }
.tp-backup-shield {
  position: relative; z-index: 2;
  width: 200px; height: 200px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 40% 30%, rgba(52,211,153,0.45), rgba(35,155,91,0.12));
  border: 1px solid rgba(52,211,153,0.4);
  box-shadow: 0 0 0 14px rgba(52,211,153,0.06), 0 24px 60px rgba(0,0,0,0.4);
}
.tp-backup-shield svg { width: 92px; height: 92px; color: #fff; }
.tp-backup-shield::after {
  content: ''; position: absolute; inset: -26px; border-radius: 50%;
  border: 1px dashed rgba(52,211,153,0.3); animation: tp-spin 18s linear infinite;
}
@keyframes tp-spin { to { transform: rotate(360deg); } }
/* orbiting mini chips */
.tp-backup-orbit { position: absolute; z-index: 3; background: rgba(255,255,255,0.10); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 14px; padding: 10px 14px; color: #fff;
  display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 700; box-shadow: 0 14px 30px rgba(0,0,0,0.35); }
.tp-backup-orbit svg { width: 18px; height: 18px; color: var(--tp-mint-300); }
.tp-backup-orbit-1 { top: 8%; left: 4%; animation: tp-float 4.5s ease-in-out infinite; }
.tp-backup-orbit-2 { bottom: 12%; right: 2%; animation: tp-float 4.5s ease-in-out 1.5s infinite; }
.tp-backup-orbit-3 { bottom: 30%; left: -2%; animation: tp-float 5s ease-in-out 0.7s infinite; }

/* ============================================================
   FEATURES — bento grid
   ============================================================ */
.tp-features { padding: var(--tp-section-py) 0; background: var(--tp-bg-light); position: relative; }

.tp-features-header { text-align: center; max-width: 660px; margin: 0 auto 60px; }
.tp-features-header .tp-section-title { margin-left: auto; margin-right: auto; }
.tp-features-header .tp-section-subtitle { margin: 0 auto; }

.tp-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tp-feature-card {
  background: var(--tp-bg-white);
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-radius-lg);
  padding: 30px 28px;
  position: relative; overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.tp-feature-card:hover { transform: translateY(-6px); box-shadow: var(--tp-shadow-lg); border-color: var(--tp-border-strong); }

/* span helpers for bento rhythm */
.tp-feature-card.tp-span-2 { grid-column: span 2; }

.tp-feature-icon-wrap {
  width: 56px; height: 56px; border-radius: 15px;
  background: linear-gradient(135deg, rgba(35,155,91,0.12) 0%, rgba(52,211,153,0.18) 100%);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; flex-shrink: 0;
}
.tp-feature-icon-wrap svg { width: 26px; height: 26px; color: var(--tp-green-500); }
.tp-feature-title-row { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.tp-feature-card h4 { font-size: 19px; font-weight: 800; color: var(--tp-text-dark); margin: 0; letter-spacing: -0.3px; }
.tp-feature-card p { font-size: 14.5px; color: var(--tp-text-muted); line-height: 1.65; margin: 0; }

/* Highlighted (backup) feature card — dark, accented */
.tp-feature-card.tp-feature-highlight {
  background: linear-gradient(155deg, var(--tp-ink) 0%, var(--tp-green-900) 100%);
  border-color: rgba(52,211,153,0.35);
  color: #fff;
}
.tp-feature-card.tp-feature-highlight::after {
  content: ''; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(52,211,153,0.28) 0%, transparent 65%); pointer-events: none;
}
.tp-feature-highlight h4 { color: #fff; position: relative; z-index: 2; }
.tp-feature-highlight p { color: var(--tp-on-dark-muted); position: relative; z-index: 2; }
.tp-feature-highlight .tp-feature-icon-wrap { background: rgba(52,211,153,0.18); position: relative; z-index: 2; }
.tp-feature-highlight .tp-feature-icon-wrap svg { color: var(--tp-mint-300); }
.tp-feature-highlight .tp-feature-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; position: relative; z-index: 2;
  color: var(--tp-mint-300); font-weight: 700; font-size: 14px; text-decoration: none;
}
.tp-feature-highlight .tp-feature-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.tp-feature-highlight .tp-feature-link:hover svg { transform: translateX(4px); }

/* ============================================================
   ABOUT / STATS
   ============================================================ */
.tp-about { padding: var(--tp-section-py) 0; background: var(--tp-bg-white); }
.tp-about-image { position: relative; display: flex; align-items: center; justify-content: center; }
.tp-about-image img { max-width: 90%; position: relative; z-index: 2; }
.tp-about-image::before {
  content: ''; position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(52,211,153,0.16), transparent 70%); filter: blur(10px);
}
.tp-about-text { padding-left: 40px; display: flex; flex-direction: column; justify-content: center; }
.tp-about-desc { font-size: 16px; color: var(--tp-text-muted); line-height: 1.75; margin-bottom: 36px; }

.tp-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 38px; }
.tp-stat-card {
  background: var(--tp-bg-light); border: 1px solid var(--tp-border);
  border-radius: var(--tp-radius-md); padding: 22px 20px; text-align: center; transition: transform 0.2s, box-shadow 0.2s;
}
.tp-stat-card:hover { transform: translateY(-3px); box-shadow: var(--tp-shadow-sm); }
.tp-stat-value { font-size: 34px; font-weight: 900; color: var(--tp-green-700); line-height: 1; margin-bottom: 6px; letter-spacing: -1px; }
.tp-stat-value span { color: var(--tp-mint-400); }
.tp-stat-label { font-size: 13px; color: var(--tp-text-muted); font-weight: 600; }
.counter-value { display: inline; }

/* ============================================================
   DARK SECTION — reusable modifier
   ============================================================ */
.tp-section-dark {
  background:
    radial-gradient(100% 100% at 0% 100%, rgba(52,211,153,0.13) 0%, transparent 50%),
    linear-gradient(160deg, var(--tp-ink) 0%, var(--tp-green-900) 100%);
  position: relative;
}
.tp-section-dark::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px; pointer-events: none;
}
.tp-section-dark .row { position: relative; z-index: 2; }

/* Text overrides on dark */
.tp-section-dark .tp-eyebrow { color: var(--tp-mint-300); }
.tp-section-dark .tp-eyebrow::before { background: linear-gradient(90deg, var(--tp-mint-400), transparent); }
.tp-section-dark .tp-section-label { color: var(--tp-mint-300); }
.tp-section-dark .tp-modern-ui-title,
.tp-section-dark .tp-section-title { color: #fff; }
.tp-section-dark .tp-section-title em { color: var(--tp-mint-300); }
.tp-section-dark .tp-modern-ui-subtitle,
.tp-section-dark .tp-section-subtitle { color: var(--tp-on-dark-muted); }
.tp-section-dark .tp-benefit-text h5 { color: #fff; }
.tp-section-dark .tp-benefit-text p { color: var(--tp-on-dark-muted); }
.tp-section-dark .tp-about-desc { color: var(--tp-on-dark-muted); }
.tp-section-dark .tp-stat-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.tp-section-dark .tp-stat-value { color: var(--tp-mint-300); }
.tp-section-dark .tp-stat-label { color: var(--tp-on-dark-muted); }
.tp-section-dark .tp-btn-primary { box-shadow: 0 8px 24px rgba(52,211,153,0.35); }

/* ============================================================
   MODERN UI
   ============================================================ */
.tp-modern-ui { padding: var(--tp-section-py) 0; overflow: hidden; }
.tp-modern-ui-text { padding-right: 40px; }
.tp-modern-ui-title { font-size: clamp(28px, 3.6vw, 44px); font-weight: 800; color: var(--tp-text-dark); line-height: 1.15; letter-spacing: -0.8px; margin-bottom: 18px; }
.tp-modern-ui-subtitle { font-size: 16px; color: var(--tp-text-muted); line-height: 1.7; margin-bottom: 36px; }

.tp-benefit-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 22px; }
.tp-benefit-item { display: flex; align-items: flex-start; gap: 18px; }
.tp-benefit-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, var(--tp-green-500), var(--tp-mint-400));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(35,155,91,0.32);
}
.tp-benefit-icon svg { width: 23px; height: 23px; color: #fff; }
.tp-benefit-text h5 { font-size: 16.5px; font-weight: 800; color: var(--tp-text-dark); margin: 0 0 6px; }
.tp-benefit-text p { font-size: 14.5px; color: var(--tp-text-muted); margin: 0; line-height: 1.6; }

.tp-modern-ui-image { display: flex; align-items: center; justify-content: center; position: relative; }
.tp-modern-ui-image img { max-width: 100%; max-height: 500px; object-fit: contain; position: relative; z-index: 2; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.tp-how-it-works { padding: var(--tp-section-py) 0; background: var(--tp-bg-white); position: relative; }
.tp-how-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.tp-how-header .tp-section-title, .tp-how-header .tp-section-subtitle { margin-left: auto; margin-right: auto; }

.tp-steps-wrap { display: flex; flex-direction: column; gap: 30px; }
.tp-step {
  display: grid; grid-template-columns: 64px 1fr; gap: 26px; align-items: start;
  background: var(--tp-bg-light); border: 1px solid var(--tp-border);
  border-radius: var(--tp-radius-lg); padding: 32px 34px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.tp-step:hover { transform: translateY(-4px); box-shadow: var(--tp-shadow-md); border-color: var(--tp-border-strong); }
.tp-step-reversed { direction: ltr; }
.tp-step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--tp-green-500), var(--tp-mint-400));
  color: #fff; font-size: 22px; font-weight: 900; border-radius: 18px;
  box-shadow: 0 8px 20px rgba(35,155,91,0.36);
}
.tp-step-title { font-size: 22px; font-weight: 800; color: var(--tp-text-dark); margin-bottom: 10px; letter-spacing: -0.4px; }
.tp-step-subtitle {
  display: inline-block; background: rgba(52,211,153,0.12); color: var(--tp-green-700);
  font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: var(--tp-radius-pill);
  margin-bottom: 12px; letter-spacing: 0.4px;
}
.tp-step-desc { font-size: 15px; color: var(--tp-text-muted); line-height: 1.7; margin: 0; }
.tp-step-icons { display: flex; gap: 10px; margin-top: 16px; }
.tp-step-icons a {
  display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px;
  background: var(--tp-bg-white); border: 1px solid var(--tp-border); border-radius: 12px;
  color: var(--tp-green-700); transition: all 0.2s; text-decoration: none;
}
.tp-step-icons a svg { width: 20px; height: 20px; }
.tp-step-icons a:hover { background: var(--tp-green-500); color: #fff; transform: translateY(-2px); border-color: var(--tp-green-500); }

/* Video block */
.tp-video-block { margin-top: 64px; border-radius: var(--tp-radius-xl); overflow: hidden; position: relative; box-shadow: var(--tp-shadow-xl); cursor: pointer; }
.tp-video-block img { width: 100%; display: block; max-height: 440px; object-fit: cover; }
.tp-video-overlay { position: absolute; inset: 0; background: rgba(5,19,12,0.5); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; transition: background 0.2s; }
.tp-video-block:hover .tp-video-overlay { background: rgba(5,19,12,0.6); }
.tp-play-btn {
  width: 78px; height: 78px; background: rgba(255,255,255,0.16);
  backdrop-filter: blur(8px); border: 2px solid rgba(255,255,255,0.55); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff; transition: transform 0.2s, background 0.2s;
}
.tp-play-btn svg { width: 30px; height: 30px; margin-left: 3px; }
.tp-video-block:hover .tp-play-btn { transform: scale(1.1); background: rgba(255,255,255,0.24); }
.tp-video-label { color: #fff; font-size: 16px; font-weight: 600; }

/* ============================================================
   FAQ
   ============================================================ */
.tp-faq { padding: var(--tp-section-py) 0; background: var(--tp-bg-light); }
.tp-faq-header { text-align: center; max-width: 600px; margin: 0 auto 54px; }
.tp-faq-header .tp-section-title, .tp-faq-header .tp-section-subtitle { margin-left: auto; margin-right: auto; }

.tp-faq .faq_panel .accordion .card {
  background: var(--tp-bg-white) !important; border: 1px solid var(--tp-border) !important;
  border-radius: var(--tp-radius-md) !important; overflow: hidden !important;
  margin-bottom: 12px !important; box-shadow: var(--tp-shadow-xs) !important; transition: box-shadow 0.2s, border-color 0.2s !important;
}
.tp-faq .faq_panel .accordion .card:hover { box-shadow: var(--tp-shadow-sm) !important; border-color: var(--tp-border-strong) !important; }
.tp-faq .faq_panel .accordion .card-header { background: transparent !important; border-bottom: none !important; padding: 0 !important; }
.tp-faq .faq_panel .accordion .card-header h2 { margin: 0 !important; }
.tp-faq .faq_panel .accordion .card-header button {
  display: flex !important; align-items: center !important; gap: 14px !important; width: 100% !important;
  text-align: left !important; padding: 21px 24px !important; font-size: 16px !important; font-weight: 700 !important;
  color: var(--tp-text-dark) !important; background: transparent !important; border: none !important;
  text-decoration: none !important; transition: color 0.2s !important;
}
.tp-faq .faq_panel .accordion .card-header button:hover { color: var(--tp-green-500) !important; }
.tp-faq .faq_panel .accordion .card-header button.active { color: var(--tp-green-700) !important; }
.tp-faq .icon_faq { font-size: 20px !important; flex-shrink: 0 !important; color: var(--tp-green-500) !important; transition: transform 0.25s ease !important; }
.tp-faq .active .icon_faq { transform: rotate(45deg) !important; }
.tp-faq .card-body { padding: 0 24px 24px !important; }
.tp-faq .card-body p { font-size: 15px !important; color: var(--tp-text-muted) !important; line-height: 1.75 !important; margin: 0 !important; }

/* ============================================================
   GET STARTED / CTA
   ============================================================ */
.tp-getstarted { padding: var(--tp-section-py) 0; }
.tp-cta-card {
  position: relative; overflow: hidden;
  border-radius: var(--tp-radius-xl); padding: 64px 60px;
  background:
    radial-gradient(100% 120% at 90% -10%, rgba(52,211,153,0.28) 0%, transparent 50%),
    linear-gradient(150deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 0 1px rgba(52,211,153,0.15), var(--tp-shadow-xl);
}
.tp-cta-card::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none;
}
.tp-cta-card::after {
  content: ''; position: absolute; bottom: -50px; left: -50px; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(252,148,0,0.14) 0%, transparent 70%); pointer-events: none;
}
.tp-cta-text { position: relative; z-index: 2; }
.tp-cta-text h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 900; color: #fff; margin-bottom: 16px; line-height: 1.15; letter-spacing: -0.8px; }
.tp-cta-text p { font-size: 16px; color: var(--tp-on-dark-muted); margin-bottom: 32px; line-height: 1.65; }
.tp-cta-image { display: flex; align-items: center; justify-content: flex-end; position: relative; z-index: 2; }
.tp-cta-image img { max-height: 380px; object-fit: contain; filter: drop-shadow(0 28px 56px rgba(0,0,0,0.4)); }

@media (max-width: 767px) {
  .tp-cta-card { padding: 42px 28px; }
  .tp-cta-image { justify-content: center; margin-top: 32px; }
  .tp-cta-image img { max-height: 260px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.tp-footer { background: var(--tp-ink); color: var(--tp-on-dark-muted); }
.tp-footer-top { padding: 76px 0 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.tp-footer-logo svg { display: block; margin-bottom: 18px; }
.tp-footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; color: rgba(214,235,224,0.55); }
.tp-footer-contact { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 8px; }
.tp-footer-contact a { color: rgba(255,255,255,0.72); text-decoration: none; font-size: 14px; transition: color 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.tp-footer-contact a svg { width: 16px; height: 16px; color: var(--tp-mint-400); }
.tp-footer-contact a:hover { color: var(--tp-mint-400); }
.tp-social-links { display: flex; gap: 10px; list-style: none; padding: 0; margin: 0; }
.tp-social-links a {
  width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7); text-decoration: none; transition: all 0.2s;
}
.tp-social-links a svg { width: 18px; height: 18px; }
.tp-social-links a:hover { background: var(--tp-mint-400); color: var(--tp-ink); transform: translateY(-3px); border-color: var(--tp-mint-400); }
.tp-footer-col-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 20px; }
.tp-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.tp-footer-links a { color: rgba(214,235,224,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s, padding-left 0.2s; }
.tp-footer-links a:hover { color: var(--tp-mint-400); padding-left: 4px; }
.tp-footer-app-btns { display: flex; flex-direction: column; gap: 12px; }
.tp-footer-app-btns a { transition: transform 0.2s, filter 0.2s; display: inline-block; }
.tp-footer-app-btns a:hover { transform: translateY(-2px); filter: brightness(1.05); }
.tp-footer-app-btns img { height: 48px; border-radius: 10px; }
.tp-footer-bottom { padding: 22px 0; }
.tp-footer-bottom p { margin: 0; font-size: 13px; color: rgba(214,235,224,0.4); }
.tp-footer-bottom .row { align-items: center; }
footer { background: var(--tp-ink) !important; }
footer .bottom_footer { background: rgba(0,0,0,0.2) !important; }

/* ── Go top ── */
.go_top { background: var(--tp-green-500) !important; border-radius: 14px !important; box-shadow: var(--tp-shadow-md) !important; transition: transform 0.2s, box-shadow 0.2s !important; }
.go_top:hover { transform: translateY(-3px) !important; box-shadow: var(--tp-shadow-lg) !important; }

/* ============================================================
   RESPONSIVE — Tablet (≤991px)
   ============================================================ */
@media (max-width: 991px) {
  :root { --tp-section-py: 72px; }

  /* Bento: 2 col */
  .tp-bento { grid-template-columns: repeat(2, 1fr); }
  .tp-feature-card.tp-span-2 { grid-column: span 2; }

  /* Section padding resets */
  .tp-modern-ui-text { padding-right: 0; margin-bottom: 36px; }
  .tp-about-text { padding-left: 0; margin-top: 36px; }

  /* Backup */
  .tp-compare { grid-template-columns: 1fr; gap: 12px; }
  .tp-backup-visual { margin-top: 48px; min-height: 260px; }
  .tp-backup-orbit-2 { right: 6%; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤767px)
   ============================================================ */
@media (max-width: 767px) {
  :root { --tp-section-py: 56px; }

  /* Disable AOS stagger on mobile — no blank gaps while scrolling */
  [data-aos] {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
  }

  /* ── Hero ── */
  .tp-hero, .banner_section { padding: 100px 0 60px !important; }
  .tp-hero-title { font-size: clamp(28px, 8.5vw, 40px); letter-spacing: -0.5px; }
  .tp-hero-subtitle { font-size: 16px; text-align: center; margin-left: auto; margin-right: auto; }
  .tp-hero-label { font-size: 12px; }
  /* Center hero text column on mobile */
  .tp-hero-content .col-lg-6:first-child { text-align: center; }
  .tp-app-buttons { justify-content: center; }
  .tp-app-buttons img { height: 46px; }
  .tp-social-proof { justify-content: center; }
  /* Phone mockup */
  .tp-hero-image-wrap { margin-top: 36px; }
  .tp-hero-mockup { width: 88%; max-width: 320px; }
  /* Hide all float cards */
  .tp-float-card { display: none !important; }

  /* ── Trust strip ── */
  .tp-trust-inner { gap: 10px 20px; justify-content: center; }
  .tp-trust-item { font-size: 13px; }
  /* Remove eyebrow line on centered elements */
  .tp-eyebrow.tp-eyebrow-center::before { display: none; }

  /* ── Section headers — center on mobile ── */
  .tp-how-header, .tp-faq-header, .tp-features-header { text-align: center; }
  .tp-how-header .tp-section-label, .tp-faq-header .tp-section-label { display: block; }
  .tp-section-subtitle { text-align: center; margin-left: auto; margin-right: auto; }

  /* ── Features bento ── */
  .tp-bento { grid-template-columns: 1fr; gap: 14px; }
  .tp-feature-card { padding: 22px 20px; }
  .tp-feature-card.tp-span-2 { grid-column: span 1; }

  /* ── Backup ── */
  .tp-backup-title { font-size: clamp(26px, 7vw, 36px); }
  .tp-backup-sub { font-size: 15px; }
  /* Hide complex orbital visual on mobile — too cramped */
  .tp-backup-visual { display: none; }

  /* ── About ── */
  .tp-about-text { padding-left: 0; margin-top: 28px; text-align: center; }
  .tp-about-text .tp-btn-primary { margin-left: auto; margin-right: auto; }
  .tp-stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .tp-stat-value { font-size: 28px; }

  /* ── Modern UI ── */
  .tp-modern-ui-text { padding-right: 0; margin-bottom: 32px; }
  .tp-benefit-item { text-align: left; align-items: flex-start; }
  .tp-benefit-text { text-align: left; }
  .tp-modern-ui-title { font-size: clamp(24px, 6.5vw, 36px); }
  .tp-modern-ui-image { margin-top: 32px; overflow: hidden; border-radius: var(--tp-radius-lg); }
  .tp-modern-ui-image img { max-height: 300px; width: 100%; object-fit: cover; object-position: top; }

  /* ── FAQ ── */
  .tp-faq .faq_panel .accordion .card-header button {
    font-size: 14px !important; padding: 16px 18px !important;
  }

  /* ── Get Started ── */
  .tp-cta-card { padding: 36px 24px; }
  .tp-cta-text { text-align: center; }
  .tp-cta-text h2 { font-size: clamp(22px, 6vw, 32px); letter-spacing: -0.3px; }
  .tp-cta-image { justify-content: center; margin-top: 28px; }
  .tp-cta-image img { max-height: 220px; }

  /* ── Features cards — center content on mobile ── */
  .tp-feature-card { text-align: center; }
  .tp-feature-icon-wrap { margin-left: auto; margin-right: auto; }
  .tp-feature-title-row { justify-content: center; }

  /* ── Footer — center first col (logo/contact/social) on mobile ── */
  .tp-footer-logo { text-align: center; }
  .tp-footer-logo svg { display: inline-block; }
  .tp-footer-desc { text-align: center; }
  .tp-footer-contact { align-items: center; }
  .tp-social-links { justify-content: center; }
  .tp-footer-logo svg { width: 64px !important; height: 64px !important; }
  .tp-footer-top { padding: 48px 0 32px; }
  .tp-footer-col-title { margin-top: 8px; }
}

/* ============================================================
   RESPONSIVE — Small mobile (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .tp-hero-title { font-size: 28px; }
  .tp-app-buttons { flex-direction: column; align-items: center; }
  .tp-app-buttons a { width: 100%; max-width: 210px; }
  .tp-app-buttons img { height: 48px; width: 100%; object-fit: contain; }
  .tp-stats-grid { grid-template-columns: 1fr 1fr; }
  .tp-trust-inner { flex-direction: column; align-items: center; gap: 10px; }
  .tp-footer-bottom .col-md-6:last-child { display: none; }
}

/* ── Scroll-to-top button ──────────────────────────────── */
#tp-scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--tp-green-500) 0%, var(--tp-mint-400) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(52,211,153,0.35), 0 2px 8px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
}
#tp-scroll-top.tp-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
#tp-scroll-top:hover {
  box-shadow: 0 8px 28px rgba(52,211,153,0.5), 0 2px 8px rgba(0,0,0,0.2);
  transform: translateY(-2px) scale(1.05);
}
#tp-scroll-top svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* AOS guard */
[data-aos] { pointer-events: auto !important; }

/* legacy row_am spacing reset */
.tp-features.row_am, .tp-about.row_am, .tp-modern-ui.row_am,
.tp-how-it-works.row_am, .tp-faq.row_am, .tp-getstarted.row_am, .tp-backup.row_am {
  padding: var(--tp-section-py) 0 !important;
}
