/* ============================================
   STRYDERX — Premium Telehealth
   Full Visual Redesign
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #0EA5E9;
  --primary-dark: #0284C7;
  --accent: #10B981;
  --dark: #080E1A;
  --dark-2: #111827;
  --dark-3: #1F2937;
  --dark-4: #374151;
  --slate: #6B7280;
  --slate-light: #9CA3AF;
  --white: #FFFFFF;
  --danger: #EF4444;
  --warning: #F59E0B;
  --border: rgba(255,255,255,0.07);
  --border-med: rgba(255,255,255,0.12);
  --gradient: linear-gradient(135deg, #0EA5E9 0%, #6366F1 100%);
  --gradient-green: linear-gradient(135deg, #10B981 0%, #0EA5E9 100%);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  --shadow: 0 4px 24px rgba(0,0,0,0.25);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(14,165,233,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; object-fit: cover; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { color: var(--slate-light); line-height: 1.75; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); cursor: pointer; letter-spacing: 0.01em; white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn-primary { background: var(--gradient); color: var(--white); box-shadow: 0 4px 24px rgba(14,165,233,0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(14,165,233,0.55); }
.btn-white { background: var(--white); color: var(--dark); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.btn-ghost { background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.15); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.25); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-accent { background: var(--gradient-green); color: white; box-shadow: 0 4px 24px rgba(16,185,129,0.35); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(16,185,129,0.5); }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.btn-full { width: 100%; }
.btn-dark { background: var(--dark-3); color: white; border: 1px solid var(--border-med); }
.btn-dark:hover { background: var(--dark-4); }
.btn-outline-primary { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: white; }

/* ============================================
   LAYOUT
   ============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container-sm { max-width: 780px; margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; }
.section-sm { padding: 70px 0; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,165,233,0.1); border: 1px solid rgba(14,165,233,0.25);
  color: var(--primary); padding: 6px 16px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 20px;
}
.section-header { text-align: center; margin-bottom: 72px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; max-width: 580px; margin: 0 auto; }

/* TOP BANNER */
.top-banner { background: var(--gradient); padding: 11px 24px; text-align: center; font-size: 0.82rem; font-weight: 500; color: white; position: relative; letter-spacing: 0.01em; }
.banner-close { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.2); border-radius: 50%; width: 22px; height: 22px; cursor: pointer; color: white; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; border: none; transition: background 0.2s; }
.banner-close:hover { background: rgba(255,255,255,0.35); }

/* ============================================
   HEADER
   ============================================ */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 28px; height: 68px; background: transparent; transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.header.scrolled { background: rgba(8,14,26,0.96); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-bottom: 1px solid var(--border); box-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.nav { display: flex; align-items: center; justify-content: space-between; max-width: 1300px; margin: 0 auto; height: 68px; }
.logo { font-size: 1.55rem; font-weight: 800; letter-spacing: -0.03em; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; flex-shrink: 0; }
.logo span { font-weight: 300; }
.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav-link { padding: 8px 13px; border-radius: 9px; font-size: 0.84rem; font-weight: 500; color: rgba(255,255,255,0.75); transition: var(--transition); white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-login { color: rgba(255,255,255,0.75); font-size: 0.88rem; font-weight: 500; padding: 8px 16px; border-radius: 9px; transition: var(--transition); }
.nav-login:hover { color: white; background: rgba(255,255,255,0.08); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { width: 22px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }
.mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: var(--dark-2); padding: 28px; z-index: 999; flex-direction: column; gap: 6px; overflow-y: auto; border-top: 1px solid var(--border); }
.mobile-menu.open { display: flex; }
.mobile-nav-link { padding: 15px 18px; border-radius: var(--radius); font-size: 1rem; font-weight: 500; color: var(--slate-light); border-bottom: 1px solid var(--border); transition: var(--transition); }
.mobile-nav-link:hover { color: white; background: rgba(255,255,255,0.05); }

/* ============================================
   HERO
   ============================================ */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg-img { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1600&q=85'); background-size: cover; background-position: center top; filter: brightness(0.3) saturate(0.7); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(8,14,26,0.97) 0%, rgba(8,14,26,0.8) 50%, rgba(8,14,26,0.3) 100%); }
.hero-glow { position: absolute; top: 15%; left: 3%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(14,165,233,0.1) 0%, transparent 70%); pointer-events: none; }
.hero-content { position: relative; z-index: 1; width: 100%; padding: 150px 0 110px; }
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(14,165,233,0.12); border: 1px solid rgba(14,165,233,0.3); backdrop-filter: blur(10px); padding: 9px 20px; border-radius: 50px; margin-bottom: 28px; font-size: 0.8rem; font-weight: 700; color: var(--primary); letter-spacing: 0.06em; text-transform: uppercase; }
.badge-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
.hero h1 { color: white; margin-bottom: 22px; }
.hero h1 em { font-style: normal; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.62); max-width: 540px; margin-bottom: 44px; line-height: 1.75; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 0.82rem; color: rgba(255,255,255,0.5); font-weight: 500; }
.hero-cards { display: flex; flex-direction: column; gap: 14px; }
.hero-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 20px 24px; transition: var(--transition); }
.hero-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(14,165,233,0.3); transform: translateX(6px); }
.hero-card-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.hero-card-icon { width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.hc-badge { padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; }
.hc-green { background: rgba(16,185,129,0.2); color: #34D399; }
.hc-blue { background: rgba(14,165,233,0.2); color: var(--primary); }
.hc-purple { background: rgba(139,92,246,0.2); color: #A78BFA; }
.hero-card h4 { font-size: 1rem; color: white; margin-bottom: 3px; }
.hero-card p { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin: 0; }
.hero-card-bar { height: 3px; border-radius: 3px; margin-top: 14px; overflow: hidden; background: rgba(255,255,255,0.08); }
.hero-card-bar-fill { height: 100%; border-radius: 3px; }

/* STATS BAR */
.stats-bar { background: var(--dark-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 48px 24px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.03em; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; margin-bottom: 6px; }
.stat-label { font-size: 0.85rem; color: var(--slate-light); font-weight: 500; }

/* ============================================
   CATEGORY CARDS — Photo grid
   ============================================ */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; aspect-ratio: 3/2; cursor: pointer; transition: var(--transition); display: block; }
.cat-card:hover { transform: translateY(-7px); box-shadow: 0 28px 64px rgba(0,0,0,0.55); }
.cat-card:hover .cat-img { transform: scale(1.07); }
.cat-card-wide { grid-column: span 2; }
.cat-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); }
.cat-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.78) 100%); }
.cat-hover-tint { position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s; background: linear-gradient(135deg, rgba(14,165,233,0.3) 0%, rgba(99,102,241,0.3) 100%); }
.cat-card:hover .cat-hover-tint { opacity: 1; }
.cat-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; }
.cat-tag { display: inline-block; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); color: white; padding: 4px 12px; border-radius: 50px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.cat-content h3 { color: white; font-size: 1.25rem; margin-bottom: 6px; }
.cat-content p { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin: 0 0 14px; }
.cat-link { display: inline-flex; align-items: center; gap: 7px; color: white; font-size: 0.82rem; font-weight: 600; transition: gap 0.2s; }
.cat-card:hover .cat-link { gap: 12px; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.hiw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.hiw-grid::after { content: ''; position: absolute; top: 46px; left: 16%; right: 16%; height: 1px; background: linear-gradient(90deg, transparent, rgba(14,165,233,0.5), transparent); }
.hiw-card { text-align: center; padding: 0 16px; }
.hiw-num { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 28px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; color: white; position: relative; z-index: 1; background: var(--gradient); box-shadow: 0 8px 36px rgba(14,165,233,0.35); }
.hiw-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.hiw-card p { font-size: 0.9rem; max-width: 270px; margin: 0 auto; }

/* PROOF BAND */
.proof-band { display: grid; grid-template-columns: 1.2fr 1fr; min-height: 520px; }
.proof-photo { position: relative; overflow: hidden; }
.proof-photo img { width: 100%; height: 100%; object-fit: cover; }
.proof-photo-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 50%, var(--dark-2) 100%); }
.proof-content { background: var(--dark-2); display: flex; flex-direction: column; justify-content: center; padding: 64px 56px; }
.proof-stars { color: #FBBF24; font-size: 1.2rem; letter-spacing: 3px; margin-bottom: 20px; }
.proof-quote { font-size: 1.3rem; font-weight: 600; color: white; line-height: 1.55; margin-bottom: 28px; }
.proof-author { display: flex; align-items: center; gap: 14px; }
.proof-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(14,165,233,0.4); background: var(--dark-3); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; }
.proof-name { font-weight: 700; font-size: 0.95rem; }
.proof-detail { font-size: 0.8rem; color: var(--slate-light); margin-top: 2px; }

/* TRUST GRID */
.trust-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-card { background: var(--dark-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 24px; text-align: center; transition: var(--transition); }
.trust-card:hover { border-color: rgba(14,165,233,0.3); transform: translateY(-5px); box-shadow: var(--shadow-glow); }
.trust-card-icon { font-size: 2.4rem; margin-bottom: 18px; }
.trust-card h4 { font-size: 1rem; margin-bottom: 10px; }
.trust-card p { font-size: 0.82rem; color: var(--slate); margin: 0; }

/* TESTIMONIALS */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.test-card { background: var(--dark-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); }
.test-card:hover { border-color: rgba(14,165,233,0.25); transform: translateY(-4px); }
.test-stars { color: #FBBF24; font-size: 1rem; letter-spacing: 2px; margin-bottom: 18px; }
.test-text { font-size: 0.92rem; color: var(--slate-light); line-height: 1.75; font-style: italic; margin-bottom: 24px; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; color: white; background: var(--gradient); flex-shrink: 0; }
.test-name { font-weight: 600; font-size: 0.9rem; }
.test-detail { font-size: 0.76rem; color: var(--slate); margin-top: 1px; }

/* FAQ */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 24px 0; text-align: left; font-size: 0.98rem; font-weight: 600; color: white; cursor: pointer; transition: var(--transition); background: none; border: none; }
.faq-q:hover { color: var(--primary); }
.faq-icon { width: 30px; height: 30px; border-radius: 50%; background: rgba(14,165,233,0.1); border: 1px solid rgba(14,165,233,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--primary); flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: white; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }
.faq-a p { font-size: 0.9rem; }

/* CTA SECTION */
.cta-wrap { position: relative; overflow: hidden; border-radius: var(--radius-xl); margin: 0 28px; }
.cta-bg-img { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1559839734-2b71ea197ec2?w=1400&q=80'); background-size: cover; background-position: center; filter: brightness(0.22) saturate(0.5); }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(14,165,233,0.22) 0%, rgba(99,102,241,0.18) 100%); }
.cta-inner { position: relative; z-index: 1; text-align: center; padding: 100px 60px; }
.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p { font-size: 1.05rem; max-width: 520px; margin: 0 auto 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
.footer { background: var(--dark); border-top: 1px solid var(--border); padding: 80px 0 44px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand p { font-size: 0.85rem; color: var(--slate); margin: 16px 0 24px; max-width: 290px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 40px; height: 40px; border-radius: 11px; background: var(--dark-2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; color: var(--slate-light); transition: var(--transition); }
.social-btn:hover { border-color: var(--primary); color: var(--primary); }
.footer-col h5 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-link { font-size: 0.87rem; color: var(--slate-light); transition: var(--transition); }
.footer-link:hover { color: white; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 0.78rem; color: var(--slate); margin: 0; }
.footer-disclaimer { background: var(--dark-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-top: 32px; font-size: 0.74rem; color: var(--slate); line-height: 1.65; }

/* PAGE HERO */
.page-hero { padding: 145px 0 90px; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.22) saturate(0.6); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,14,26,0.35) 0%, rgba(8,14,26,0.97) 100%); }
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--slate); margin-bottom: 18px; }
.breadcrumb a { color: var(--primary); }
.breadcrumb-sep { color: var(--dark-4); }
.page-hero h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; max-width: 600px; margin: 0 0 36px; }
.page-hero-stats { display: flex; gap: 44px; margin-top: 40px; flex-wrap: wrap; }
.page-hero-stat-num { font-size: 1.9rem; font-weight: 800; display: block; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-hero-stat-lbl { font-size: 0.78rem; color: var(--slate-light); margin-top: 2px; }

/* PRODUCT GRID */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; }
.product-card { background: var(--dark-2); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); cursor: pointer; }
.product-card:hover { transform: translateY(-7px); border-color: rgba(14,165,233,0.35); box-shadow: 0 24px 48px rgba(0,0,0,0.4); }
.product-card-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; position: relative; background: var(--dark-3); }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-body { padding: 22px; }
.prod-tag { display: inline-block; background: rgba(14,165,233,0.12); color: var(--primary); padding: 3px 11px; border-radius: 50px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.product-card h4 { font-size: 1.05rem; margin-bottom: 8px; color: white; }
.product-card p { font-size: 0.82rem; color: var(--slate); margin-bottom: 0; line-height: 1.6; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; padding: 14px 22px 22px; }
.product-price { font-size: 1.25rem; font-weight: 800; color: white; }
.product-price span { font-size: 0.78rem; color: var(--slate); font-weight: 400; }

/* AUTH */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; position: relative; overflow: hidden; }
.auth-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1400&q=80'); background-size: cover; background-position: center; filter: brightness(0.15) saturate(0.5); }
.auth-bg-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(14,165,233,0.08) 0%, transparent 60%); }
.auth-container { width: 100%; max-width: 460px; position: relative; z-index: 1; }
.auth-logo { text-align: center; margin-bottom: 36px; }
.auth-card { background: rgba(17,24,39,0.92); backdrop-filter: blur(24px); border: 1px solid var(--border-med); border-radius: var(--radius-xl); padding: 44px 40px; }
.auth-card h2 { text-align: center; margin-bottom: 6px; font-size: 1.8rem; }
.auth-card > p { text-align: center; font-size: 0.88rem; margin-bottom: 32px; }
.auth-tabs { display: flex; background: var(--dark); border-radius: 12px; padding: 4px; margin-bottom: 28px; border: 1px solid var(--border); }
.auth-tab { flex: 1; padding: 10px; text-align: center; border-radius: 9px; font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: var(--transition); color: var(--slate-light); }
.auth-tab.active { background: var(--dark-2); color: white; }
.social-login { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.social-login-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; border-radius: var(--radius); border: 1px solid var(--border-med); background: var(--dark); color: white; font-size: 0.84rem; font-weight: 500; cursor: pointer; transition: var(--transition); }
.social-login-btn:hover { border-color: var(--primary); background: rgba(14,165,233,0.05); }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-divider span { font-size: 0.76rem; color: var(--slate); }
.auth-switch { text-align: center; margin-top: 22px; font-size: 0.86rem; color: var(--slate); }
.auth-switch a { color: var(--primary); font-weight: 600; }
.trust-badges { display: flex; gap: 24px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 6px; font-size: 0.74rem; color: var(--slate); }
.password-wrap { position: relative; }
.password-toggle { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--slate); cursor: pointer; font-size: 0.9rem; padding: 4px; }
.forgot-link { text-align: right; margin-top: -12px; margin-bottom: 20px; font-size: 0.8rem; }
.forgot-link a { color: var(--primary); }
.register-panel { display: none; }

/* FORMS */
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 0.84rem; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea { width: 100%; background: var(--dark-3); border: 1.5px solid var(--border-med); border-radius: var(--radius); padding: 14px 16px; color: white; font-size: 0.92rem; transition: var(--transition); outline: none; }
.form-input::placeholder { color: var(--slate); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14,165,233,0.12); }
.form-select { color: white; } .form-select option { background: var(--dark-2); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-hint { font-size: 0.76rem; color: var(--slate); margin-top: 6px; }
.radio-group, .checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.radio-option, .checkbox-option { display: flex; align-items: flex-start; gap: 13px; background: var(--dark-3); border: 1.5px solid var(--border-med); border-radius: var(--radius); padding: 15px 16px; cursor: pointer; transition: var(--transition); }
.radio-option:hover, .checkbox-option:hover { border-color: rgba(14,165,233,0.4); }
.radio-option.selected, .checkbox-option.selected { border-color: var(--primary); background: rgba(14,165,233,0.07); }
.radio-option input, .checkbox-option input { margin-top: 2px; accent-color: var(--primary); flex-shrink: 0; }
.option-label { font-size: 0.88rem; font-weight: 600; color: white; }
.option-desc { font-size: 0.76rem; color: var(--slate); margin-top: 2px; }

/* INTAKE */
.intake-header-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(8,14,26,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 0 28px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.intake-back { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--slate-light); transition: var(--transition); }
.intake-back:hover { color: var(--primary); }
.intake-secure { display: flex; align-items: center; gap: 6px; font-size: 0.76rem; color: var(--slate); }
.step-dots { display: flex; align-items: center; gap: 8px; }
.step-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--dark-4); transition: var(--transition); }
.step-dot.active { background: var(--primary); transform: scale(1.3); box-shadow: 0 0 8px rgba(14,165,233,0.6); }
.step-dot.done { background: var(--accent); }
.intake-container { max-width: 660px; margin: 0 auto; padding: 100px 28px 80px; }
.progress-text { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--slate); margin-bottom: 10px; }
.progress-bar { background: var(--dark-3); border-radius: 50px; height: 5px; margin-bottom: 48px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--gradient); border-radius: 50px; transition: width 0.4s ease; }
.intake-step { display: none; }
.intake-step.active { display: block; animation: fadeUp 0.3s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.intake-step h2 { margin-bottom: 8px; font-size: 1.9rem; }
.intake-step > p { font-size: 0.95rem; margin-bottom: 32px; }
.intake-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 36px; gap: 16px; }
.condition-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.condition-btn { background: var(--dark-2); border: 1.5px solid var(--border-med); border-radius: var(--radius); padding: 18px 16px; cursor: pointer; display: flex; align-items: center; gap: 14px; transition: var(--transition); text-align: left; }
.condition-btn:hover { border-color: rgba(14,165,233,0.4); background: rgba(14,165,233,0.04); }
.condition-btn.selected { border-color: var(--primary); background: rgba(14,165,233,0.08); }
.condition-emoji { font-size: 1.6rem; flex-shrink: 0; }
.condition-name { font-size: 0.9rem; font-weight: 600; color: white; }
.condition-sub { font-size: 0.74rem; color: var(--slate); margin-top: 2px; }
.alert-box { background: rgba(14,165,233,0.07); border: 1px solid rgba(14,165,233,0.2); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 28px; display: flex; gap: 12px; align-items: flex-start; }
.alert-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.alert-text { font-size: 0.84rem; color: var(--slate-light); line-height: 1.55; }
.alert-text strong { color: var(--primary); }
.success-screen { display: none; text-align: center; padding: 50px 0; }
.success-screen.active { display: block; animation: fadeUp 0.4s ease; }
.success-icon { width: 80px; height: 80px; border-radius: 50%; background: rgba(16,185,129,0.15); border: 2px solid rgba(16,185,129,0.35); display: flex; align-items: center; justify-content: center; font-size: 2.4rem; margin: 0 auto 24px; }
.next-steps { background: var(--dark-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; text-align: left; margin-bottom: 28px; }
.next-steps h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); margin-bottom: 18px; }
.next-step-item { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--border); }
.next-step-item:last-child { border-bottom: none; }
.next-step-num { width: 28px; height: 28px; border-radius: 50%; background: rgba(14,165,233,0.15); color: var(--primary); font-size: 0.78rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.next-step-text { font-size: 0.86rem; color: var(--slate-light); line-height: 1.5; }
.next-step-text strong { color: white; }

/* DASHBOARD */
.dashboard-layout { display: flex; min-height: 100vh; }
.sidebar { width: 256px; background: var(--dark-2); border-right: 1px solid var(--border); padding: 24px 14px; position: fixed; top: 0; left: 0; bottom: 0; display: flex; flex-direction: column; z-index: 100; }
.sidebar-logo { padding: 8px 10px 24px; border-bottom: 1px solid var(--border); margin-bottom: 18px; }
.user-badge { display: flex; align-items: center; gap: 10px; background: var(--dark); border: 1px solid var(--border); border-radius: var(--radius); padding: 11px 13px; margin-bottom: 18px; }
.user-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.88rem; flex-shrink: 0; }
.user-name { font-size: 0.86rem; font-weight: 600; }
.user-plan { font-size: 0.7rem; color: var(--accent); }
.sidebar-nav { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.sidebar-link { display: flex; align-items: center; gap: 11px; padding: 11px 13px; border-radius: var(--radius); font-size: 0.86rem; font-weight: 500; color: var(--slate-light); transition: var(--transition); }
.sidebar-link:hover { color: white; background: rgba(255,255,255,0.06); }
.sidebar-link.active { color: white; background: rgba(14,165,233,0.13); border: 1px solid rgba(14,165,233,0.2); }
.sidebar-icon { font-size: 1rem; width: 20px; text-align: center; }
.notif-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--danger); margin-left: auto; }
.sidebar-bottom { border-top: 1px solid var(--border); padding-top: 14px; }
.dashboard-main { margin-left: 256px; flex: 1; padding: 36px; min-width: 0; background: var(--dark); }
.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.dash-header h1 { font-size: 1.9rem; }
.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 28px; }
.dash-stat { background: var(--dark-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; transition: var(--transition); }
.dash-stat:hover { border-color: rgba(14,165,233,0.25); }
.dash-stat-lbl { font-size: 0.75rem; color: var(--slate); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.dash-stat-val { font-size: 1.75rem; font-weight: 800; color: white; margin-bottom: 4px; }
.dash-stat-ch { font-size: 0.75rem; }
.ch-up { color: var(--accent); } .ch-dn { color: var(--danger); }
.dash-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 22px; }
.dash-card { background: var(--dark-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; }
.dash-card-hdr { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.dash-card-hdr h3 { font-size: 1rem; }
.order-list { display: flex; flex-direction: column; gap: 14px; }
.order-item { display: flex; align-items: center; gap: 14px; padding: 14px; background: var(--dark); border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); }
.order-item:hover { border-color: rgba(14,165,233,0.2); }
.order-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(14,165,233,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.order-info { flex: 1; min-width: 0; }
.order-name { font-size: 0.88rem; font-weight: 600; margin-bottom: 2px; }
.order-date { font-size: 0.74rem; color: var(--slate); }
.status { padding: 4px 11px; border-radius: 50px; font-size: 0.7rem; font-weight: 700; white-space: nowrap; }
.s-active { background: rgba(16,185,129,0.15); color: #34D399; }
.s-pending { background: rgba(245,158,11,0.15); color: var(--warning); }
.timeline { display: flex; flex-direction: column; }
.tl-item { display: flex; gap: 14px; padding-bottom: 22px; position: relative; }
.tl-item:not(:last-child)::before { content: ''; position: absolute; left: 16px; top: 34px; bottom: 0; width: 2px; background: var(--border); }
.tl-dot { width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; border: 2px solid var(--border); background: var(--dark-2); }
.tl-dot.done { background: rgba(16,185,129,0.15); border-color: var(--accent); }
.tl-dot.curr { background: rgba(14,165,233,0.15); border-color: var(--primary); animation: pulse 2s infinite; }
.tl-title { font-size: 0.86rem; font-weight: 600; margin-bottom: 2px; padding-top: 5px; }
.tl-time { font-size: 0.73rem; color: var(--slate); }
.sub-item { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--border); }
.sub-item:last-child { border-bottom: none; }
.sub-left { display: flex; align-items: center; gap: 14px; }
.sub-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(14,165,233,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.sub-name { font-size: 0.88rem; font-weight: 600; margin-bottom: 2px; }
.sub-detail { font-size: 0.73rem; color: var(--slate); }
.refill-bar { background: var(--dark); border-radius: 4px; height: 6px; margin: 6px 0 3px; overflow: hidden; width: 160px; }
.refill-fill { height: 100%; border-radius: 4px; }
.msg-list { display: flex; flex-direction: column; gap: 11px; }
.msg-item { background: var(--dark); border: 1px solid var(--border); border-radius: var(--radius); padding: 15px; cursor: pointer; transition: var(--transition); }
.msg-item:hover { border-color: rgba(14,165,233,0.25); }
.msg-item.unread { border-left: 3px solid var(--primary); }
.msg-hdr { display: flex; justify-content: space-between; margin-bottom: 5px; }
.msg-from { font-size: 0.84rem; font-weight: 600; }
.msg-time { font-size: 0.73rem; color: var(--slate); }
.msg-prev { font-size: 0.8rem; color: var(--slate-light); }

/* UTILITIES */
.text-gradient { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.text-center { text-align: center; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-cards { display: none; }
  .hero-content { text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card-wide { grid-column: span 1; }
  .trust-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .proof-band { grid-template-columns: 1fr; }
  .proof-photo { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .dash-grid { grid-template-columns: 1fr; }
  .sidebar { width: 220px; }
  .dashboard-main { margin-left: 220px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hiw-grid { grid-template-columns: 1fr; }
  .hiw-grid::after { display: none; }
  .test-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .trust-grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .cta-wrap { margin: 0 16px; }
  .cta-inner { padding: 60px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .sidebar { transform: translateX(-100%); transition: transform 0.3s ease; width: 250px; }
  .sidebar.open { transform: translateX(0); }
  .dashboard-main { margin-left: 0; padding: 20px 16px; }
  .auth-card { padding: 32px 24px; }
  .condition-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn { width: 100%; }
  .dash-stats { grid-template-columns: 1fr; }
}
