/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #7c3aed;
  --primary-dark: #6d28d9;
  --primary-light: #a78bfa;
  --primary-bg: #f3f0ff;
  --accent: #f43f5e;
  --accent-light: #fef2f2;
  --bg: #ffffff;
  --bg-soft: #fafafe;
  --bg-section: #f8f7ff;
  --bg-card: #ffffff;
  --text: #1e1b3a;
  --text-secondary: #64618a;
  --text-muted: #9794b0;
  --border: #e8e6f0;
  --border-light: #f0eef8;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --shadow-sm: 0 1px 3px rgba(124,58,237,0.06);
  --shadow: 0 4px 20px rgba(124,58,237,0.08);
  --shadow-lg: 0 12px 40px rgba(124,58,237,0.12);
  --shadow-card: 0 2px 16px rgba(30,27,58,0.06);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
.footer { margin-top: auto; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; }

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 720px; }
.container-md { max-width: 900px; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: var(--radius-full);
  font-weight: 600; font-size: 0.9rem; border: 2px solid transparent; cursor: pointer;
  transition: all 0.3s; text-decoration: none; line-height: 1.4;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #9333ea);
  color: #fff; border-color: transparent;
  box-shadow: 0 4px 16px rgba(124,58,237,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(124,58,237,0.4);
  color: #fff;
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent), #e11d48);
  color: #fff; box-shadow: 0 4px 16px rgba(244,63,94,0.3);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(244,63,94,0.4); color: #fff; }
.btn-outline {
  background: transparent; color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-white { background: #fff; color: var(--primary); box-shadow: var(--shadow); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--primary); }
.btn-ghost { background: var(--primary-bg); color: var(--primary); }
.btn-ghost:hover { background: var(--primary); color: #fff; }
.btn-sm { padding: 7px 16px; font-size: 0.82rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-danger { background: var(--danger); color: #fff; }

/* === ANNOUNCEMENT BAR === */
.announcement-bar {
  background: linear-gradient(90deg, var(--primary), #9333ea, var(--accent));
  text-align: center; padding: 10px 20px; font-size: 0.82rem; font-weight: 500; color: #fff;
}
.announcement-bar a { color: #fff; text-decoration: underline; }

/* === TOP BAR === */
.top-bar {
  /* updated */
  background: #fff; border-bottom: 1px solid var(--border-light);
  font-size: 0.78rem; color: #fff;
}
.top-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 38px; gap: 16px;
}
.top-bar-left { display: flex; align-items: center; }
.top-bar-promo {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-secondary); font-weight: 500;
}
.top-bar-promo i { color: var(--accent); font-size: 0.72rem; }
.top-bar-promo strong { color: var(--accent); }
.top-bar-right { display: flex; align-items: center; gap: 18px; }
.top-bar-right a {
  color: var(--text-muted); text-decoration: none;
  display: flex; align-items: center; gap: 5px;
  font-weight: 500; transition: color 0.2s; font-size: 0.78rem;
}
.top-bar-right a:hover { color: var(--primary); }
.top-bar-right a i { font-size: 0.72rem; color: var(--accent); }

@media (max-width: 900px) {
  .top-bar-promo { display: none; }
  .top-bar-inner { justify-content: center; }
  .top-bar-right {
    display: flex; width: 100%; justify-content: space-between;
  }
  .top-bar-right a { display: none !important; }
  .top-bar-right .top-bar-destek { display: flex !important; align-items: center; gap: 5px; font-size: 0.78rem; }
  .top-bar-right .top-bar-blog { display: flex !important; align-items: center; gap: 5px; font-size: 0.78rem; }
}

/* === NAVBAR === */
.navbar {
  background: rgba(255,255,255,0.92); backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-light);
  position: sticky; top: 0; z-index: 100; height: 64px;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 16px;
}
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 112px; width: auto; display: block; margin: -24px 0; }

/* Center links */
.nav-center { display: flex; align-items: center; gap: 4px; }
.nav-link {
  color: var(--text-secondary); padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 600; transition: all 0.2s;
  background: none; border: none; cursor: pointer; font-family: inherit;
  text-decoration: none; white-space: nowrap;
}
.nav-link:hover { color: var(--primary); background: var(--primary-bg); }
.nav-link i { font-size: 0.6rem; margin-left: 3px; transition: transform 0.2s; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown:hover .nav-link i { transform: rotate(180deg); }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  min-width: 210px; background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 6px; z-index: 50;
  box-shadow: var(--shadow-lg); animation: dropIn 0.15s ease;
}
@keyframes dropIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  border-radius: var(--radius-sm); color: var(--text-secondary); font-size: 0.88rem;
  transition: all 0.15s; text-decoration: none;
}
.dropdown-item:hover { background: var(--primary-bg); color: var(--primary); }
.dropdown-item i { width: 18px; text-align: center; font-size: 1.05rem; }

/* Right actions */
.nav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-link-desktop { display: inline-flex; }
.nav-user-name { font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; white-space: nowrap; }

/* Profile Dropdown */
.nav-profile-dropdown { position: relative; }
.nav-profile-btn {
  display: flex; align-items: center; gap: 8px;
  background: none; border: 1.5px solid var(--border); padding: 5px 12px 5px 5px;
  border-radius: var(--radius-full); cursor: pointer; font-family: inherit;
  transition: all 0.2s;
}
.nav-profile-btn:hover { border-color: var(--primary-light); background: var(--primary-bg); }
.nav-profile-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #e11d48);
  color: #fff; font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.nav-profile-name { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.nav-profile-btn i { font-size: 0.55rem; color: var(--text-muted); transition: transform 0.2s; }

/* Profile Menu */
.nav-profile-menu {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  width: 280px; background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  z-index: 50; overflow: hidden; animation: dropIn 0.2s ease;
}
.nav-profile-menu.open { display: block; }
.npm-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; border-bottom: 1px solid var(--border-light);
}
.npm-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #e11d48);
  color: #fff; font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.npm-header strong { display: block; font-size: 0.88rem; }
.npm-header span { font-size: 0.75rem; color: var(--text-muted); }
.npm-balance {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; background: rgba(16,185,129,0.06);
  font-size: 0.82rem; color: var(--text-secondary);
}
.npm-balance i { color: #059669; }
.npm-balance strong { color: #059669; }
.npm-links { padding: 6px 0; }
.npm-links a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; font-size: 0.85rem; color: var(--text-secondary);
  text-decoration: none; transition: all 0.15s;
}
.npm-links a:hover { background: var(--primary-bg); color: var(--primary); }
.npm-links a i { width: 16px; text-align: center; font-size: 0.8rem; }
.npm-logout {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; font-size: 0.85rem; color: var(--danger);
  text-decoration: none; border-top: 1px solid var(--border-light);
  transition: background 0.15s;
}
.npm-logout:hover { background: rgba(239,68,68,0.04); color: var(--danger); }
.npm-logout i { width: 16px; text-align: center; }

/* Mobile user info */
.mobile-user-info {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 12px; margin-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}
.mobile-user-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #e11d48);
  color: #fff; font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mobile-user-info strong { display: block; font-size: 0.9rem; }
.mobile-user-info span { font-size: 0.8rem; color: #059669; font-weight: 600; }

/* Hamburger */
.nav-hamburger {
  display: none; width: 36px; height: 36px; background: none; border: none;
  cursor: pointer; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; padding: 6px;
}
.nav-hamburger span {
  display: block; width: 20px; height: 2px; background: var(--text);
  border-radius: 2px; transition: all 0.2s;
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 12px 40px rgba(30,27,58,0.12);
  border-radius: 0 0 20px 20px;
}
.mobile-menu.open { max-height: calc(100vh - 80px); max-height: calc(100dvh - 80px); overflow-y: auto; padding-bottom: 0; }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border-light);
  height: 64px;
}
.mobile-menu-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-section); border: none; cursor: pointer;
  color: var(--text-muted); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu-body { flex: 1; overflow-y: auto; padding: 12px 0; }
.mobile-link {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 24px; color: var(--text); font-size: 0.95rem;
  font-weight: 500; text-decoration: none; transition: background 0.15s;
}
.mobile-link:hover { background: var(--primary-bg); color: var(--primary); }
.mobile-link-sub { padding-left: 36px; font-size: 0.9rem; color: var(--text-secondary); }
.mobile-link-sub i { width: 20px; text-align: center; font-size: 1rem; }
.mobile-section-title {
  padding: 20px 24px 8px; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted);
}
.mobile-menu-footer { padding: 16px 20px 24px; border-top: 1px solid var(--border-light); display: flex; flex-direction: column; gap: 8px; margin-bottom: env(safe-area-inset-bottom, 0px); }

/* Responsive */
@media (max-width: 900px) {
  .nav-center { display: none; }
  .nav-link-desktop { display: none !important; }
  .nav-hamburger { display: flex; }
}
@media (min-width: 901px) {
  .nav-hamburger { display: none; }
  .mobile-menu { display: none !important; }
}

/* === HERO === */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,63,94,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { position: relative; z-index: 2; }
h1.hero-badge,
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; background: var(--primary-bg);
  border: 1px solid rgba(124,58,237,0.15); border-radius: var(--radius-full);
  font-size: 0.82rem; font-weight: 600; color: var(--primary); margin-bottom: 24px;
  letter-spacing: 0; line-height: 1.4;
}
.hero-badge i { font-size: 0.75rem; }
.hero .hero-title,
.hero h1:not(.hero-badge) { font-size: 2.6rem; font-weight: 800; line-height: 1.12; margin-bottom: 20px; letter-spacing: -1px; color: var(--text); }
.hero-br { display: block; }
@media (max-width: 480px) { .hero-br { display: inline; } }
.hero .hero-title .highlight,
.hero h1:not(.hero-badge) .highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 32px; line-height: 1.7; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; margin-bottom: 48px; }
/* Hero Social Proof / Avatars */
.hero-social-proof {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
  padding: 14px 24px; background: rgba(255,255,255,0.6);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full); backdrop-filter: blur(8px);
  width: fit-content;
}
.hero-avatars { display: flex; }
.hero-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.75rem;
  border: 3px solid #fff; margin-left: -10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  object-fit: cover;
}
.hero-avatar:first-child { margin-left: 0; }
.hero-avatar-count {
  background: var(--text) !important; color: #fff;
  font-size: 0.65rem; font-weight: 800; letter-spacing: -0.3px;
}
.hero-proof-text { display: flex; flex-direction: column; gap: 1px; }
.hero-proof-stars { font-size: 0.72rem; color: #f59e0b; display: flex; align-items: center; gap: 2px; }
.hero-proof-stars strong { color: var(--text); font-size: 0.82rem; margin-left: 4px; }
.hero-proof-text > span { font-size: 0.78rem; color: #fff; }

.hero-stats { display: flex; gap: 40px; }
.hero-stats .stat { position: relative; }
.hero-stats .stat + .stat::before {
  content: ''; position: absolute; left: -20px; top: 4px; bottom: 4px;
  width: 1px; background: var(--border);
}
.hero-stats strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--text); }
.hero-stats span { font-size: 0.8rem; color: var(--text-muted); }

/* Hero Visual */
.hero-visual { position: relative; z-index: 2; display: flex; justify-content: center; }
.hero-device { position: relative; width: 300px; height: 580px; }

/* Phone Frame */
.hero-phone-frame {
  position: relative; width: 280px; height: 560px; margin: 0 auto;
  background: #f0f0f5; border-radius: 44px;
  padding: 10px; box-shadow: 0 30px 80px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05),
  inset 0 0 0 2px rgba(255,255,255,0.8);
}
.hero-phone-notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 28px; background: #1e1b3a; border-radius: 0 0 16px 16px;
  z-index: 5;
}
.hero-phone-screen {
  width: 100%; height: 100%; border-radius: 36px; overflow: hidden;
  position: relative; background: #000;
}
.hero-phone-photo { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Phone UI overlays */
.hero-phone-ui-top {
  position: absolute; top: 36px; left: 16px; right: 16px;
  display: flex; justify-content: space-between; align-items: center;
  color: #fff; font-size: 0.8rem;
}
.hero-phone-dots { display: flex; gap: 3px; }
.hero-phone-dots span { width: 28px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.4); }
.hero-phone-dots span:first-child { width: 50px; background: rgba(255,255,255,0.6); }

.hero-phone-ui-bottom {
  position: absolute; bottom: 12px; left: 16px; right: 16px;
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,0.85); font-size: 1.2rem;
}
.hero-phone-actions { display: flex; gap: 16px; }

/* Floating hearts on phone */
.hero-phone-heart {
  position: absolute; color: #ff4d6d; font-size: 1rem;
  animation: heartFloat 3s ease-in-out infinite;
}
.hero-phone-heart.h1 { bottom: 30%; right: 25%; animation-delay: 0s; font-size: 0.8rem; }
.hero-phone-heart.h2 { bottom: 35%; right: 20%; animation-delay: 1s; font-size: 1.2rem; opacity: 0.7; }
@keyframes heartFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
  50% { transform: translateY(-12px) scale(1.2); opacity: 1; }
}

/* Floating Stat Badges */
.hero-stat-badge {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: #fff; border-radius: 14px; padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.04);
  animation: badgeFloat 4s ease-in-out infinite;
  z-index: 3;
}
.hero-stat-badge.sb1 { top: 140px; left: -40px; animation-delay: 0s; }
.hero-stat-badge.sb2 { left: -50px; bottom: 160px; animation-delay: 1.2s; }
.hero-stat-badge.sb3 { right: -50px; bottom: 100px; animation-delay: 0.6s; }

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hsb-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem;
}
.hsb-info strong { display: block; font-size: 1.05rem; font-weight: 800; color: var(--text); }
.hsb-info span { font-size: 0.7rem; color: var(--text-muted); }
.hsb-tag {
  padding: 2px 8px; border-radius: 6px; font-size: 0.65rem; font-weight: 700;
}
.hsb-tag.green { background: rgba(16,185,129,0.12); color: #059669; }
.hsb-tag.pink { background: rgba(244,63,94,0.12); color: #e11d48; }
.hsb-bars { display: flex; align-items: flex-end; gap: 3px; height: 24px; }
.hsb-bars span {
  width: 5px; border-radius: 2px; background: #10b981;
  animation: barGrow 1.5s ease-in-out infinite;
}
.hsb-bars span:nth-child(1) { height: 8px; animation-delay: 0s; }
.hsb-bars span:nth-child(2) { height: 14px; animation-delay: 0.2s; }
.hsb-bars span:nth-child(3) { height: 20px; animation-delay: 0.4s; }
.hsb-bars span:nth-child(4) { height: 12px; animation-delay: 0.6s; }
@keyframes barGrow {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.3); }
}

/* === PLATFORMS SECTION === */
.platforms-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg), #fef7fb, #fdf2f8, #fef7fb, var(--bg));
}
.section-label {
  text-align: center; text-transform: uppercase; font-size: 0.78rem;
  font-weight: 700; letter-spacing: 2px; color: var(--primary);
  margin-bottom: 12px;
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 10px; }
.section-header h2 .highlight { color: var(--primary); }
.section-header p { color: var(--text-secondary); font-size: 1.05rem; max-width: 500px; margin: 0 auto; }

.platform-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.platform-card {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 32px 20px; text-align: center;
  transition: all 0.3s; cursor: pointer; position: relative; overflow: hidden;
  text-decoration: none; color: var(--text);
}
.platform-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--platform-color, var(--primary-bg)));
  opacity: 0; transition: opacity 0.3s;
}
.platform-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.platform-card:hover::before { opacity: 1; }
.platform-icon {
  width: 64px; height: 64px; border-radius: 18px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; position: relative; z-index: 1;
  transition: transform 0.3s;
}
.platform-card:hover .platform-icon { transform: scale(1.1); }
.platform-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; position: relative; z-index: 1; }
.platform-card p { font-size: 0.8rem; color: var(--text-muted); position: relative; z-index: 1; margin-bottom: 16px; }
.platform-card .btn { position: relative; z-index: 1; }

/* === TRUST BADGES === */
.trust-section {
  padding: 60px 0;
  background: var(--bg-section);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { text-align: center; padding: 24px 16px; }
.trust-icon {
  width: 52px; height: 52px; border-radius: 14px; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--primary);
  background: linear-gradient(135deg, var(--primary-bg), rgba(124,58,237,0.08));
}
.trust-item h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.trust-item p { font-size: 0.82rem; color: var(--text-muted); }

/* === PROMO / PROFESSIONAL SECTION === */
.promo-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e1b3a, #2d1f5e);
  color: #fff; position: relative; overflow: hidden;
}
.promo-section::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 50%; height: 100%; background: linear-gradient(135deg, rgba(124,58,237,0.2), transparent);
  pointer-events: none;
}
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.promo-label {
  text-transform: uppercase; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2px; color: var(--primary-light); margin-bottom: 12px;
}
.promo-content h2 { font-size: 2.4rem; font-weight: 800; line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.5px; }
.promo-content p { color: #fff; font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; }
.promo-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.promo-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; color: rgba(255,255,255,0.85);
}
.promo-feature i { color: var(--success); font-size: 1rem; }
.promo-visual {
  position: relative; display: flex; justify-content: center;
}
.promo-video-wrap {
  width: 240px; border-radius: 16px;
  overflow: hidden; position: relative;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  aspect-ratio: 9/16;
}
.promo-video {
  width: 100%; height: 100%; display: block; object-fit: cover;
}
.promo-video-overlay {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3); transition: opacity 0.3s;
}
.promo-video-overlay.hidden { opacity: 0; pointer-events: none; }
.promo-play-btn {
  background: none; border: none; cursor: pointer;
}
.promo-play-btn i {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.95); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; padding-left: 3px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  transition: transform 0.3s;
}
.promo-play-btn:hover i { transform: scale(1.1); }

/* Video Controls */
.promo-video-controls {
  position: absolute; bottom: 10px; left: 10px; right: 10px;
  display: flex; gap: 6px; justify-content: center;
}
.pvc-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-size: 0.8rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.pvc-btn:hover { background: rgba(0,0,0,0.7); }

@media (max-width: 1024px) {
  .promo-visual { display: flex !important; justify-content: center; }
  .promo-video-wrap { width: 200px; }
}
@media (max-width: 768px) {
  .promo-video-wrap { width: 180px; }
}

/* === POPULAR SERVICES === */
.popular-section {
  padding: 80px 0;
  background: var(--bg);
}
.service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 28px; position: relative;
  transition: all 0.3s; overflow: hidden;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-badge {
  position: absolute; top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--accent), #e11d48);
  color: #fff; font-size: 0.7rem; font-weight: 700; padding: 4px 12px;
  border-radius: var(--radius-full);
}
.service-platform { font-size: 0.82rem; font-weight: 600; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.service-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; }
.service-price { margin-bottom: 16px; }
.service-price .price { font-size: 1.6rem; font-weight: 800; color: var(--primary); }
.service-price .per-unit { font-size: 0.82rem; color: var(--text-muted); }
.service-meta { display: flex; gap: 16px; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 16px; }
.service-meta i { margin-right: 4px; color: var(--primary-light); }
.service-features { list-style: none; margin-bottom: 20px; }
.service-features li { padding: 4px 0; font-size: 0.85rem; color: var(--text-secondary); }
.service-features i { color: var(--success); margin-right: 8px; width: 16px; }
.service-features i.fa-clock { color: var(--primary-light); }

/* === TESTIMONIALS === */
.testimonials-section {
  padding: 80px 0;
  background: var(--bg-section);
}
.testimonials-header { text-align: center; margin-bottom: 16px; }
.testimonials-rating { text-align: center; margin-bottom: 40px; }
.testimonials-rating .stars { color: #f59e0b; font-size: 1.1rem; margin-right: 8px; }
.testimonials-rating span { font-size: 0.9rem; color: var(--text-muted); }
/* Scroll-snap horizontal track */
.testimonial-scroll-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  /* hide scrollbar but keep functionality */
  scrollbar-width: thin;
  scrollbar-color: var(--border-light) transparent;
}
.testimonial-scroll-track::-webkit-scrollbar { height: 5px; }
.testimonial-scroll-track::-webkit-scrollbar-track { background: transparent; }
.testimonial-scroll-track::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 4px; }

.testimonial-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 24px;
  transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.testimonial-photo {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  flex-shrink: 0; border: 2px solid var(--border-light);
}
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-bg), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--primary); font-size: 1rem; flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-badge { font-size: 0.75rem; color: var(--success); display: flex; align-items: center; gap: 4px; }
.testimonial-badge i { font-size: 0.7rem; }
.testimonial-stars { color: #f59e0b; font-size: 0.8rem; margin-bottom: 12px; }
.testimonial-text { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; }

/* === WHO USES US === */
.who-section { padding: 80px 0; }
.who-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.who-card {
  text-align: center; padding: 16px 12px; border-radius: var(--radius-lg);
  transition: all 0.3s; cursor: default;
  border: 1.5px solid transparent;
}
.who-card:hover { background: var(--primary-bg); border-color: var(--border-light); transform: translateY(-4px); }
.who-img {
  width: 110px; height: 110px; border-radius: 50%; margin: 0 auto 12px;
  overflow: hidden; border: 3px solid var(--border-light);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.who-card:hover .who-img { border-color: var(--primary-light); box-shadow: 0 6px 20px rgba(124,58,237,0.12); }
.who-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.who-card h4 { font-size: 0.85rem; font-weight: 600; color: var(--text); }

/* === STEPS / HOW IT WORKS === */
.how-section { padding: 80px 0; background: var(--bg); }
.steps-grid { display: flex; align-items: center; justify-content: center; gap: 16px; }
.step {
  text-align: center; padding: 32px 24px; flex: 1; max-width: 280px;
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); transition: all 0.3s;
}
.step:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.step-number {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #9333ea);
  color: #fff; font-size: 1.2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.step h3 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: 0.85rem; color: var(--text-muted); }
.step-arrow { color: var(--border); font-size: 1rem; flex-shrink: 0; }

/* === FAQ === */
.faq-section { padding: 80px 0; background: var(--bg-section); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1100px; margin: 0 auto; }
@media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; gap: 10px; } }
.faq-list { display: flex; flex-direction: column; gap: 10px; }

/* FAQ Standalone Page */
.faq-page { padding: 0 0 80px; }
.faq-hero { text-align: center; padding: 48px 0 36px; max-width: 600px; margin: 0 auto; }
.faq-hero h1 { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 10px; }
.faq-hero p { color: var(--text-secondary); font-size: 1rem; margin-bottom: 24px; }
.faq-search-box {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-full); max-width: 460px; margin: 0 auto;
  transition: all 0.2s;
}
.faq-search-box:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(124,58,237,0.08); }
.faq-search-box i { color: var(--text-muted); font-size: 0.9rem; }
.faq-search-box input {
  border: none; background: none; flex: 1; font-size: 0.92rem;
  color: var(--text); outline: none; font-family: inherit;
}
.faq-search-box input::placeholder { color: var(--text-muted); }

/* Tabs */
.faq-tabs {
  display: flex; gap: 6px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 32px; padding: 0 16px;
}
.faq-tab {
  padding: 8px 18px; border-radius: var(--radius-full);
  border: 1.5px solid var(--border-light); background: #fff;
  color: var(--text-secondary); font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s; font-family: inherit;
  display: inline-flex; align-items: center; gap: 6px;
}
.faq-tab i { font-size: 0.75rem; }
.faq-tab:hover { border-color: var(--primary-light); color: var(--primary); }
.faq-tab.active {
  background: var(--primary); color: #fff; border-color: var(--primary);
}

/* FAQ Page Grid */
.faq-page-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.faq-page-grid .faq-item { transition: all 0.2s; }

/* CTA */
.faq-cta { margin-top: 48px; }
.faq-cta-card {
  display: flex; align-items: center; gap: 20px;
  padding: 28px 32px; background: linear-gradient(135deg, #1e1b3a, #2d1f5e);
  border-radius: var(--radius-lg); color: #fff;
}
.faq-cta-icon {
  width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0;
  background: rgba(255,255,255,0.1); display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem;
}
.faq-cta-content { flex: 1; }
.faq-cta-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.faq-cta-content p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.faq-cta-actions { display: flex; gap: 8px; flex-shrink: 0; }
.faq-cta-actions .btn { color: #fff; border-color: rgba(255,255,255,0.4); }
.faq-cta-actions .btn:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

@media (max-width: 768px) {
  .faq-page-grid { grid-template-columns: 1fr; }
  .faq-hero h1 { font-size: 1.6rem; }
  .faq-tabs { gap: 4px; }
  .faq-tab { padding: 6px 12px; font-size: 0.75rem; }
  .faq-cta-card { flex-direction: column; text-align: center; padding: 24px 20px; }
  .faq-cta-actions { justify-content: center; }
}
.faq-item {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.2s;
}
.faq-item:hover { border-color: var(--primary-light); }
.faq-item.open { border-color: var(--primary); box-shadow: 0 2px 12px rgba(124,58,237,0.08); }
.faq-question {
  width: 100%; padding: 18px 24px; background: none; border: none;
  color: var(--text); font-size: 0.95rem; font-weight: 600;
  text-align: left; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; font-family: inherit; transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-question i { transition: transform 0.3s; color: var(--text-muted); font-size: 0.8rem; }
.faq-item.open .faq-question { color: var(--primary); }
.faq-item.open .faq-question i { transform: rotate(180deg); color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 24px 18px; color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* === CTA === */
.cta-section { padding: 80px 0; }
.cta-box {
  background: linear-gradient(135deg, var(--primary), #9333ea, var(--accent));
  border-radius: var(--radius-lg); padding: 60px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-box h2 { font-size: 2rem; color: #fff; margin-bottom: 12px; position: relative; }
.cta-box p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 28px; position: relative; }

/* === PAGE HEADER === */
.page-header {
  padding: 60px 0; text-align: center;
  background: linear-gradient(180deg, var(--bg-section), var(--bg));
}
.page-header-icon { font-size: 2.5rem; color: var(--accent, var(--primary)); margin-bottom: 12px; }
.page-header h1 { font-size: 2rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.5px; }
.page-header p { color: var(--text-secondary); }

/* === ORDER PAGE === */
.order-page { padding: 40px 0 80px; }
.order-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.breadcrumb {
  font-size: 0.82rem; color: var(--text-muted);
  margin: 16px 0; display: flex; align-items: center; gap: 8px;
  height: 42px; padding: 0 18px; background: #fff;
  border: 1px solid var(--border-light); border-radius: 10px;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb i { font-size: 0.55rem; flex-shrink: 0; color: var(--border); }
.breadcrumb-truncate { flex-wrap: nowrap; overflow: hidden; }
.breadcrumb-current {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  max-width: 280px; display: inline-block; vertical-align: middle;
}
@media (max-width: 600px) { .breadcrumb-current { max-width: 140px; } }
.order-page h1 { font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.5px; }
.order-desc { color: var(--text-secondary); margin-bottom: 24px; }
.order-form { display: flex; flex-direction: column; gap: 20px; }

/* === FORM === */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.form-group label i { margin-right: 4px; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; background: var(--bg-soft); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); font-size: 0.95rem;
  font-family: inherit; transition: all 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); background: #fff;
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}
.form-group small { font-size: 0.78rem; color: #fff; }
.quantity-range { display: flex; justify-content: space-between; font-size: 0.78rem; color: #fff; }

/* === ORDER SUMMARY === */
.order-summary-card {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 28px; position: sticky; top: 86px;
  box-shadow: var(--shadow-card);
}
.order-summary-card h3 { margin-bottom: 20px; font-size: 1.1rem; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 0.9rem; }
.summary-row span:first-child { color: var(--text-muted); }
.summary-divider { border-top: 1px solid var(--border-light); margin: 8px 0; }
.summary-total { font-size: 1.15rem; font-weight: 700; }
.summary-total span:last-child { color: var(--primary); }
.summary-features { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; font-size: 0.85rem; color: var(--text-secondary); }
.summary-features i { color: var(--success); margin-right: 8px; }
.payment-info-card {
  background: var(--primary-bg); border: 1px solid rgba(124,58,237,0.1);
  border-radius: var(--radius); padding: 20px; margin-top: 16px;
}
.payment-info-card h4 { margin-bottom: 8px; color: var(--primary); font-size: 0.95rem; }
.payment-info-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* === TRACK === */
.track-form { margin-bottom: 32px; }
.track-input-group { display: flex; gap: 8px; }
.track-input-group input {
  flex: 1; padding: 14px 16px; background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); font-size: 1rem;
}
.track-input-group input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(124,58,237,0.1); }
.track-card { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-card); }
.track-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.track-header h3 { font-size: 1.2rem; font-weight: 700; }
.track-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border-light); font-size: 0.9rem; }
.track-row span:first-child { color: var(--text-muted); }
.track-progress { margin-top: 16px; }
.track-progress label { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 8px; display: block; }
.progress-bar { background: var(--border-light); border-radius: var(--radius-full); height: 28px; overflow: hidden; }
.progress-fill {
  background: linear-gradient(90deg, var(--primary), #9333ea);
  height: 100%; border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: #fff; min-width: 44px;
  transition: width 0.5s;
}
.track-not-found { text-align: center; padding: 40px; color: var(--text-muted); }
.track-not-found i { font-size: 2rem; margin-bottom: 12px; display: block; }

/* === STATUS BADGES === */
.status-badge { padding: 4px 12px; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; }
.status-pending { background: rgba(245,158,11,0.1); color: #d97706; }
.status-processing, .status-in_progress { background: rgba(59,130,246,0.1); color: #2563eb; }
.status-completed, .status-paid { background: rgba(16,185,129,0.1); color: #059669; }
.status-cancelled, .status-failed { background: rgba(239,68,68,0.1); color: #dc2626; }
.status-refunded { background: rgba(107,114,128,0.1); color: #6b7280; }

/* === AUTH === */
.auth-section { display: flex; align-items: center; justify-content: center; min-height: calc(100vh - 200px); padding: 40px 20px; }
.auth-card {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 40px; width: 100%; max-width: 440px;
  box-shadow: var(--shadow-lg);
}
.auth-card h1 { font-size: 1.6rem; font-weight: 800; margin-bottom: 4px; }
.auth-card > p { color: var(--text-secondary); margin-bottom: 24px; }
.auth-card form { display: flex; flex-direction: column; gap: 16px; }
.auth-footer { text-align: center; margin-top: 20px; font-size: 0.9rem; color: var(--text-muted); }

/* === ALERTS === */
.alert { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 0.9rem; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.alert-error { background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.15); color: var(--danger); }

/* === MODAL === */
.modal { display: none; position: fixed; inset: 0; z-index: 1000; align-items: center; justify-content: center; }
.modal.active { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(30,27,58,0.4); backdrop-filter: blur(6px); }
.modal-content {
  position: relative; background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 36px; max-width: 480px; width: 90%;
  max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg);
}
.modal-content h2 { margin-bottom: 20px; font-weight: 800; }
.modal-icon { font-size: 3rem; margin-bottom: 16px; }
.modal-icon.success { color: var(--success); }
.modal-note { font-size: 0.85rem; color: var(--text-muted); margin: 12px 0; }
.modal-actions { display: flex; gap: 8px; justify-content: flex-end; margin-top: 20px; }

/* === PAGE SECTION === */
.page-section { padding: 60px 0; }
.content-block {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-card);
}
.content-block h3 { margin: 24px 0 12px; font-weight: 700; }
.content-block p { color: var(--text-secondary); line-height: 1.8; }
.content-block ul { padding-left: 20px; color: var(--text-secondary); }
.content-block li { margin: 8px 0; line-height: 1.6; }
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.contact-card {
  background: var(--bg-section); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 28px; text-align: center;
  transition: all 0.3s;
}
.contact-card:hover { box-shadow: var(--shadow); border-color: var(--primary-light); }
.contact-card i { font-size: 2rem; color: var(--primary); margin-bottom: 12px; }
.contact-card h3 { margin-bottom: 4px; font-size: 1rem; }
.contact-card p { color: var(--text-secondary); font-size: 0.9rem; }

/* === CONTACT PAGE === */
.contact-page { padding: 0 0 80px; }
.contact-hero {
  text-align: center; padding: 48px 0 40px; max-width: 560px; margin: 0 auto;
}
.contact-hero h1 { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 10px; }
.contact-hero p { color: var(--text-secondary); font-size: 1rem; }

.contact-section-title {
  font-size: 1.1rem; font-weight: 700; color: var(--text);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--border-light);
}
.contact-section-title i { color: var(--primary); font-size: 1rem; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch;
}

/* Left cards */
.contact-left { display: flex; flex-direction: column; gap: 16px; }
.contact-left .contact-card-big { flex: 1; align-items: flex-start; }

.contact-card-big {
  display: flex; gap: 20px; padding: 28px;
  background: #fff; border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
}
.contact-card-icon {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), #9333ea);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem;
}
.contact-card-big h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.contact-company { font-size: 1.1rem; font-weight: 800; color: var(--primary); margin-bottom: 6px !important; }
.contact-card-big p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }

.contact-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-card-sm {
  padding: 24px; background: #fff; border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
  transition: all 0.25s;
}
.contact-card-sm:hover { border-color: var(--primary-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.contact-sm-icon {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 14px;
  background: var(--primary-bg); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-card-sm h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.contact-card-sm a { font-size: 0.85rem; color: var(--text-secondary); }
.contact-card-sm:hover a { color: var(--primary); }

/* Full-width contact channels */
.contact-channels-row { margin-top: 24px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 32px;
}
.contact-channel-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 28px 20px; background: #fff; border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
  text-decoration: none; color: inherit; transition: all 0.25s;
}
.contact-channel-card:hover {
  border-color: var(--primary-light); transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.contact-ch-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(124,58,237,0.1); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 14px;
}
.contact-channel-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.contact-channel-card span { font-size: 0.85rem; color: var(--text-secondary); }
.contact-channel-card:hover span { color: var(--primary); }

.contact-legal {
  padding: 24px; background: var(--bg-section); border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
}
.contact-legal-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; background: rgba(16,185,129,0.1); color: var(--success);
  border-radius: var(--radius-full); font-size: 0.78rem; font-weight: 600;
  margin-bottom: 10px;
}
.contact-legal p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 8px; }
.contact-legal-id { font-size: 0.78rem; color: #fff; font-family: monospace; }

/* Right map */
.contact-right { display: flex; }
.contact-map-card {
  background: #fff; border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); display: flex; flex-direction: column;
  width: 100%;
}
.contact-map-placeholder {
  flex: 1; min-height: 280px; background: var(--bg-section);
}
.contact-map-placeholder iframe { width: 100%; height: 100%; display: block; }
.contact-map-info {
  padding: 14px 20px; display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--text-secondary);
  border-top: 1px solid var(--border-light);
}
.contact-map-info i { color: var(--accent); }

@media (max-width: 768px) {
  .contact-page { padding: 0 0 40px; }
  .contact-hero { padding: 32px 0 28px; }
  .contact-hero h1 { font-size: 1.5rem; }
  .contact-hero p { font-size: 0.88rem; }
  .contact-section-title { font-size: 0.95rem; margin-bottom: 16px; padding-bottom: 10px; }
  .contact-section-title[style] { margin-top: 32px !important; }
  .contact-grid { grid-template-columns: 1fr; gap: 16px; }

  .contact-card-big { flex-direction: column; align-items: center; text-align: center; padding: 24px 20px; gap: 14px; }
  .contact-card-big > div { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; }
  .contact-card-icon { width: 48px; height: 48px; font-size: 1.1rem; }
  .contact-company { font-size: 1rem; }
  .contact-card-big p { font-size: 0.84rem; }

  .contact-cards-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .contact-card-sm { padding: 18px 14px; text-align: center; }
  .contact-sm-icon { width: 40px; height: 40px; margin: 0 auto 10px; font-size: 1rem; }
  .contact-channels-row { margin-top: 24px; grid-template-columns: 1fr; gap: 10px; }
  .contact-channel-card { padding: 20px 16px; }
  .contact-ch-icon { width: 44px; height: 44px; font-size: 1.1rem; margin-bottom: 10px; }
  .contact-card-sm h4 { font-size: 0.84rem; }
  .contact-card-sm a { font-size: 0.78rem; }

  .contact-legal { padding: 18px 16px; text-align: center; }
  .contact-legal p { font-size: 0.82rem; }

  .contact-right { display: flex; }
  .contact-map-card { min-height: auto; width: 100%; }
  .contact-map-placeholder { min-height: 220px; }
  .contact-map-info { padding: 10px 14px; font-size: 0.78rem; justify-content: center; }
}

/* === SUPPORT MODAL === */
.support-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 140;
  background: rgba(30,27,58,0.4); backdrop-filter: blur(6px);
  align-items: flex-end; justify-content: center; padding: 0;
}
.support-modal-overlay.active { display: flex; }
.support-modal {
  background: #fff; border-radius: 20px 20px 0 0;
  max-width: 100%; width: 100%; position: relative;
  box-shadow: 0 -12px 48px rgba(30,27,58,0.2);
  animation: supportUp 0.35s cubic-bezier(0.16,1,0.3,1);
  padding: 24px 20px;
  padding-bottom: calc(76px + env(safe-area-inset-bottom, 0));
}
@keyframes supportUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.support-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-section); border: none; cursor: pointer;
  color: var(--text-muted); font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
}
.support-modal-close:hover { background: var(--danger); color: #fff; }
.support-handle {
  width: 40px; height: 4px; border-radius: 4px; background: var(--border);
  margin: 0 auto 16px;
}
.support-modal-header { text-align: center; margin-bottom: 20px; }
.support-modal-header h2 { font-size: 1.15rem; font-weight: 800; margin-bottom: 2px; }
.support-modal-header p { font-size: 0.82rem; color: var(--text-muted); }

.support-options { display: flex; flex-direction: column; gap: 8px; }
.support-option {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border: 1.5px solid var(--border-light);
  border-radius: 14px; text-decoration: none; color: var(--text);
  transition: all 0.2s;
}
.support-option:hover { border-color: var(--primary-light); background: var(--primary-bg); }
.support-opt-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.support-whatsapp .support-opt-icon { background: rgba(37,211,102,0.1); color: #25d366; }
.support-email .support-opt-icon { background: var(--primary-bg); color: var(--primary); }
.support-track .support-opt-icon { background: rgba(245,158,11,0.1); color: #f59e0b; }
.support-opt-info { flex: 1; }
.support-opt-info strong { display: block; font-size: 0.92rem; font-weight: 700; }
.support-opt-info span { font-size: 0.78rem; color: var(--text-muted); }
.support-opt-arrow { color: var(--text-muted); font-size: 0.8rem; opacity: 0.4; transition: all 0.2s; }
.support-option:hover .support-opt-arrow { opacity: 1; color: var(--primary); transform: translateX(3px); }

/* === MOBILE BOTTOM NAV === */
.mobile-bottom-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9999; height: calc(68px + env(safe-area-inset-bottom, 0px));
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
  align-items: center; justify-content: space-around;
  padding: 0 8px; padding-bottom: env(safe-area-inset-bottom, 0px);
  -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0);
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
  overflow: visible;
}
.mbn-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  text-decoration: none; color: var(--text-muted); font-size: 0.65rem;
  font-weight: 500; padding: 8px 12px; border-radius: 12px;
  transition: all 0.2s; position: relative;
}
.mbn-item i { font-size: 1.15rem; transition: transform 0.2s; }
.mbn-item:hover, .mbn-item.active { color: var(--primary); }
.mbn-item.active i { transform: scale(1.1); }
.mbn-item.active::after {
  content: ''; position: absolute; top: 2px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--primary);
}

/* Center cart button */
.mbn-cart {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #e11d48);
  color: #fff; border: 3px solid #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; position: relative;
  margin-top: -24px;
  box-shadow: 0 4px 16px rgba(244,63,94,0.35);
  transition: all 0.25s;
  z-index: 2;
}
.mbn-cart:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(244,63,94,0.45); }
.mbn-cart:active { transform: scale(0.95); }
.mbn-cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--primary); color: #fff;
  font-size: 0.6rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}

@media (max-width: 768px) {

}


/* Auth Modal Responsive */
@media (max-width: 860px) {
  .auth-modal-overlay { padding: 0 !important; align-items: flex-end !important; }
  .auth-modal {
    max-width: 100% !important; width: 100% !important;
    max-height: 92vh !important; max-height: 92dvh !important;
    border-radius: 16px 16px 0 0 !important;
    overflow-y: scroll !important; -webkit-overflow-scrolling: touch;
    animation: authSlideUp 0.3s ease;
  }
  @keyframes authSlideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
  .auth-modal-grid { grid-template-columns: 1fr !important; }
  .auth-modal-visual { display: none !important; }
  .auth-modal-form {
    padding: 20px 20px 90px !important;
    max-height: none !important; overflow: visible !important;
  }
  .auth-modal-form h2 { font-size: 1.2rem !important; }
  .auth-subtitle { font-size: 0.82rem !important; margin-bottom: 16px !important; }
  .auth-modal-form .form-group { margin-bottom: 10px !important; }
  .auth-modal-form .form-group label { font-size: 0.78rem !important; }
  .auth-modal-form .form-group input { padding: 11px 13px !important; font-size: 0.86rem !important; }
  .auth-modal-form .btn { margin-top: 10px !important; padding: 12px !important; font-size: 0.88rem !important; }
  .auth-modal-close {
    top: 8px !important; right: 8px !important;
    background: var(--bg-section) !important; color: var(--text) !important;
    border: 1px solid var(--border-light) !important;
  }
  .auth-consent { font-size: 0.7rem !important; }
  .auth-consent input[type="checkbox"] { flex-shrink: 0; width: 15px; height: 15px; margin-top: 2px; }
  .auth-switch { margin-top: 12px !important; font-size: 0.8rem !important; }
}

@media (max-width: 900px) {
  .mobile-bottom-nav { display: flex; }
  /* Add bottom padding to body so content isn't hidden behind nav */
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
  /* Hide footer bottom padding overlap */
  .footer { margin-bottom: 0; }
}

/* === ABOUT PAGE === */
.about-hero {
  text-align: center; padding: 60px 0 48px;
  background: linear-gradient(180deg, var(--bg-section), var(--bg));
}
.about-hero h1 { font-size: 2.6rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 12px; line-height: 1.1; }
.about-hero p { font-size: 1.1rem; color: var(--text-secondary); }

/* Story Timeline */
.about-story { padding: 0 0 60px; }
.about-story-block {
  display: flex; gap: 32px; padding: 40px 0;
  border-bottom: 1px solid var(--border-light);
}
.about-story-block:last-child { border-bottom: none; }
.about-year {
  flex-shrink: 0; width: 80px; height: 80px; border-radius: 20px;
  background: linear-gradient(135deg, var(--primary), #9333ea);
  color: #fff; font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(124,58,237,0.2);
}
.about-story-content h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.3px; }
.about-story-content p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 12px; }
.about-story-content em { color: var(--text); font-style: italic; }
.about-story-content blockquote {
  margin: 20px 0 0; padding: 20px 24px; background: var(--primary-bg);
  border-left: 4px solid var(--primary); border-radius: 0 12px 12px 0;
  font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7;
}
.about-story-content blockquote strong { color: var(--primary); display: block; margin-top: 8px; font-size: 0.85rem; }

/* Values */
.about-values { padding: 80px 0; background: var(--bg-section); }
.about-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.about-value-card {
  background: #fff; border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 28px 24px;
  text-align: center; transition: all 0.3s;
}
.about-value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.about-value-icon {
  width: 52px; height: 52px; border-radius: 14px; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary-bg), rgba(124,58,237,0.1));
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.2rem;
}
.about-value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.about-value-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* Numbers */
.about-numbers { padding: 60px 0; }
.about-numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.about-num strong {
  display: block; font-size: 2.2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 4px;
}
.about-num span { font-size: 0.85rem; color: var(--text-muted); }

/* About CTA */
.about-cta { padding: 0 0 80px; }

/* About Responsive */
@media (max-width: 768px) {
  .about-hero { padding: 36px 0 32px; }
  .about-hero h1 { font-size: 1.6rem; letter-spacing: -0.3px; }
  .about-hero p { font-size: 0.88rem; }
  .about-story { padding: 0 0 32px; }
  .about-story-block { flex-direction: column; gap: 14px; padding: 24px 0; }
  .about-year { width: 56px; height: 56px; font-size: 0.9rem; border-radius: 12px; }
  .about-story-content h2 { font-size: 1.15rem; }
  .about-story-content p { font-size: 0.88rem; line-height: 1.7; }
  .about-story-content blockquote { padding: 16px 18px; font-size: 0.85rem; margin: 14px 0 0; }
  .about-values { padding: 48px 0; }
  .about-values-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-value-card { padding: 22px 18px; }
  .about-value-icon { width: 44px; height: 44px; font-size: 1rem; margin-bottom: 12px; }
  .about-value-card h3 { font-size: 0.9rem; }
  .about-value-card p { font-size: 0.8rem; }
  .about-numbers { padding: 40px 0; }
  .about-numbers-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .about-num strong { font-size: 1.6rem; }
  .about-num span { font-size: 0.78rem; }
  .about-cta { padding: 0 0 48px; }
  .about-cta .cta-box { padding: 36px 24px; }
  .about-cta .cta-box h2 { font-size: 1.3rem; }
  .about-cta .cta-box p { font-size: 0.88rem; }
}
@media (max-width: 480px) {
  .about-hero h1 { font-size: 1.4rem; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-numbers-grid { grid-template-columns: 1fr 1fr; }
  .about-year { width: 48px; height: 48px; font-size: 0.82rem; }
}

/* === CART & CHECKOUT PAGES === */
.cart-page, .checkout-page { padding: 0 0 80px; background: var(--bg-section); overflow-x: hidden; max-width: 100vw; }
@media (max-width: 768px) { .cart-page, .checkout-page { padding-bottom: calc(80px + 76px + env(safe-area-inset-bottom, 0px)); } }
.cart-page-header, .checkout-header {
  background: linear-gradient(135deg, var(--primary), #9333ea);
  padding: 32px 0; text-align: center; margin-bottom: 32px;
}
.cart-page-header h1, .checkout-header h1 {
  color: #fff; font-size: 1.5rem; font-weight: 800; letter-spacing: 1px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}

/* Cart Items */
.cart-page-items {
  background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border-light);
  overflow: hidden; margin-bottom: 16px;
}
.cart-page-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 24px; border-bottom: 1px solid var(--border-light);
}
.cart-page-item:last-child { border-bottom: none; }
.cpi-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
}
.cpi-info { flex: 1; min-width: 0; }
.cpi-target { display: block; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 2px; }
.cpi-info strong { font-size: 0.92rem; }
.cpi-price { font-size: 1rem; font-weight: 700; color: var(--text); flex-shrink: 0; min-width: 90px; text-align: right; }
.cpi-remove {
  width: 40px; height: 40px; border-radius: 10px; border: none;
  background: rgba(239,68,68,0.1); color: var(--danger); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: all 0.2s; flex-shrink: 0;
}
.cpi-remove:hover { background: var(--danger); color: #fff; }

/* Cart Footer */
.cart-page-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 28px; background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}
.cpf-total span { display: block; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 4px; }
.cpf-total strong { font-size: 1.8rem; font-weight: 800; color: var(--text); }
.cpf-pay-btn {
  padding: 16px 40px !important; font-size: 1rem !important;
  border-radius: 12px !important; font-weight: 700 !important;
  display: flex; align-items: center; gap: 10px;
}

/* Cart Empty */
.cart-page-empty {
  text-align: center; padding: 80px 20px; background: #fff;
  border-radius: var(--radius-lg); border: 1px solid var(--border-light);
}
.cart-page-empty i { font-size: 3rem; color: var(--text-muted); opacity: 0.3; margin-bottom: 16px; }
.cart-page-empty h2 { margin-bottom: 8px; }
.cart-page-empty p { color: var(--text-muted); margin-bottom: 20px; }

/* Smart Upsell */
.cart-upsell { margin-top: 40px; }
.cart-upsell-header { text-align: center; margin-bottom: 20px; }
.cart-upsell-header h3 {
  font-size: 1.1rem; font-weight: 700; display: flex; align-items: center;
  justify-content: center; gap: 8px; margin-bottom: 4px;
}
.cart-upsell-header h3 i { color: var(--accent); }
.cart-upsell-header p { font-size: 0.85rem; color: var(--text-muted); }
.cart-upsell-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.upsell-card {
  background: #fff; border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden; transition: all 0.25s;
}
.upsell-card:hover { border-color: var(--primary-light); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.upsell-proof {
  padding: 8px 14px; background: rgba(244,63,94,0.06);
  font-size: 0.72rem; color: var(--accent);
  display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid rgba(244,63,94,0.08);
}
.upsell-proof i { font-size: 0.68rem; }
.upsell-proof strong { color: var(--text); }
.upsell-body {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 16px 10px;
}
.upsell-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem;
}
.upsell-info strong { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 2px; }
.upsell-info span { font-size: 0.72rem; color: var(--text-muted); }
.upsell-pricing {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px 10px; gap: 8px;
}
.upsell-prices { display: flex; align-items: baseline; gap: 6px; }
.upsell-old { font-size: 0.8rem; color: var(--text-muted); text-decoration: line-through; }
.upsell-new { font-size: 1.05rem; font-weight: 800; color: var(--primary); }
.upsell-discount-badge {
  font-size: 0.62rem; font-weight: 700; padding: 3px 8px;
  background: var(--accent); color: #fff; border-radius: var(--radius-full);
  white-space: nowrap;
}
.upsell-add-btn { margin: 0 12px 14px; width: calc(100% - 24px) !important; }

@media (max-width: 768px) {
  .cart-upsell-grid { grid-template-columns: 1fr; }
}

/* CHECKOUT */
.checkout-grid { display: grid; grid-template-columns: 1fr 400px; gap: 24px; align-items: start; }
.checkout-box {
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  padding: 24px; margin-bottom: 16px;
}
.checkout-box h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.checkout-box h3 i { color: var(--primary); }
.checkout-form-row { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
.checkout-phone {
  display: flex; border: 1.5px solid var(--border); border-radius: 10px; overflow: hidden;
}
.checkout-phone-prefix {
  display: flex; align-items: center; gap: 6px; padding: 12px 14px;
  background: var(--bg-section); font-size: 0.85rem; font-weight: 600;
  border-right: 1px solid var(--border); flex-shrink: 0;
}
.checkout-phone input { border: none; flex: 1; padding: 12px 14px; font-size: 0.92rem; outline: none; font-family: inherit; }

/* Payment Methods */
.checkout-methods { display: flex; flex-direction: column; gap: 10px; }
.checkout-method {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px;
  border: 1.5px solid var(--border-light); border-radius: 14px;
  cursor: pointer; transition: all 0.2s;
}
.checkout-method:hover { border-color: var(--primary-light); }
.checkout-method.active { border-color: var(--primary); background: var(--primary-bg); }
.checkout-method input { display: none; }
.cm-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--primary-bg); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.cm-info { flex: 1; }
.cm-info strong { display: block; font-size: 0.88rem; font-weight: 600; }
.cm-info span { font-size: 0.75rem; color: var(--text-muted); }
.cm-check { color: var(--border); font-size: 1.1rem; transition: color 0.2s; }
.checkout-method.active .cm-check { color: var(--primary); }

/* Coupon */
.checkout-coupon-row { display: flex; gap: 8px; }
.checkout-coupon-input {
  flex: 1; display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 10px;
}
.checkout-coupon-input i { color: var(--text-muted); }
.checkout-coupon-input input { border: none; flex: 1; outline: none; font-size: 0.88rem; font-family: inherit; }

/* Bank Details */
.ck-bank-details { margin-top: 16px; }
.ck-bank-card {
  background: var(--bg-section); border: 1.5px solid var(--border-light);
  border-radius: 14px; padding: 20px; display: flex; align-items: center; gap: 20px;
}
.ck-bank-logo { height: 36px; flex-shrink: 0; }
.ck-bank-info { flex: 1; }
.ck-bank-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.85rem; border-bottom: 1px solid var(--border-light); }
.ck-bank-row:last-child { border-bottom: none; }
.ck-bank-row span { color: var(--text-muted); }
.ck-bank-row strong { color: var(--text); }
.ck-iban { cursor: pointer; letter-spacing: 0.5px; font-family: monospace; }
.ck-bank-note { margin-top: 12px; font-size: 0.78rem; color: #fff; display: flex; align-items: center; gap: 6px; }
.ck-bank-note i { color: var(--primary); }

.ck-payment-notify {
  margin-top: 16px; padding: 20px; background: var(--bg-section);
  border: 1.5px solid var(--border-light); border-radius: 14px;
}
.ck-payment-notify h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.ck-payment-notify h4 i { color: var(--warning); }
.ck-payment-notify .btn { margin-top: 18px; }

@media (max-width: 600px) {
  .ck-bank-card { flex-direction: column; align-items: flex-start; }
}

.checkout-consent {
  margin-bottom: 16px; padding: 16px 18px;
  background: var(--bg-section); border: 1.5px solid var(--border-light);
  border-radius: 12px;
}
.checkout-consent label {
  font-size: 0.82rem; color: var(--text-secondary);
  display: flex; align-items: center; gap: 10px; cursor: pointer; line-height: 1.5;
}
.checkout-consent input {
  width: 18px; height: 18px; flex-shrink: 0;
  accent-color: var(--primary); cursor: pointer;
}
.checkout-consent a { color: var(--primary); font-weight: 600; }

/* Checkout Summary */
.checkout-summary-section { position: sticky; top: 80px; }
.ck-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border-light);
}
.ck-item:last-child { border-bottom: none; }
.ck-item-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.85rem;
}
.ck-item-info { flex: 1; min-width: 0; }
.ck-item-info span { display: block; font-size: 0.7rem; color: var(--text-muted); }
.ck-item-info strong { font-size: 0.82rem; }
.ck-item-price { font-size: 0.88rem; font-weight: 700; flex-shrink: 0; }
.ck-summary-rows { padding-top: 12px; border-top: 1px solid var(--border-light); margin-top: 12px; }
.ck-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.85rem; color: var(--text-secondary); }

.checkout-total-bar {
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  padding: 20px 24px; margin-top: 16px;
}
.checkout-total-bar > div { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.checkout-total-bar span { font-size: 0.85rem; color: var(--text-muted); }
.checkout-total-bar strong { font-size: 1.6rem; font-weight: 800; color: var(--text); }
.checkout-pay-btn {
  width: 100%; padding: 16px !important; font-size: 1rem !important;
  border-radius: 12px !important; font-weight: 700 !important;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.3s;
}
.checkout-pay-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }
.ck-pay-hint {
  font-size: 0.78rem; color: #fff; text-align: center;
  margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 6px;
}
.ck-success-summary { text-align: left; margin-bottom: 8px; }

@media (max-width: 768px) {
  .checkout-page .container { padding-left: 12px; padding-right: 12px; }
  .checkout-grid { grid-template-columns: 1fr; gap: 16px; }
  .checkout-summary-section { position: static; }
  .checkout-box { padding: 16px; }
  .checkout-method { padding: 12px 14px; gap: 10px; }
  .cm-icon { width: 36px; height: 36px; font-size: 0.95rem; border-radius: 10px; }
  .cm-info strong { font-size: 0.82rem; }
  .cm-info span { font-size: 0.7rem; }
  .ck-bank-card { flex-direction: column; align-items: flex-start; gap: 12px; padding: 14px; }
  .ck-bank-row { flex-direction: column; gap: 2px; }
  .ck-bank-row strong { font-size: 0.8rem; word-break: break-all; }
  .ck-iban { font-size: 0.75rem; letter-spacing: 0; }
  .ck-payment-notify { padding: 14px; }
  .checkout-total-bar { padding: 16px; }
  .checkout-total-bar strong { font-size: 1.3rem; }
  .checkout-pay-btn { padding: 14px !important; font-size: 0.92rem !important; }
  .checkout-consent { padding: 12px 14px; }
  .cart-page-footer { flex-direction: column; text-align: center; gap: 16px; }
  .cart-related-grid { grid-template-columns: 1fr; }
  .cart-page-item { flex-wrap: wrap; }
}

/* === ACCOUNT PAGES === */
.account-page { padding: 32px 0 80px; }
.acc-grid { display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: start; }

/* Sidebar */
.acc-sidebar {
  background: #fff; border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 28px 20px;
  box-shadow: var(--shadow-card); position: sticky; top: 80px;
}
.acc-sidebar-profile { text-align: center; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border-light); }
.acc-avatar {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--accent), #e11d48);
  color: #fff; font-size: 1.5rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
/* Avatar */
.acc-avatar-wrap { position: relative; display: inline-block; margin-bottom: 12px; }
.acc-avatar-img {
  width: 64px; height: 64px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--border-light);
}
.acc-avatar-edit {
  position: absolute; bottom: -2px; right: -2px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--primary); color: #fff; border: 2px solid #fff;
  font-size: 0.6rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.acc-avatar-edit:hover { background: var(--primary-dark); transform: scale(1.1); }
.avatar-preview-wrap { text-align: center; margin-bottom: 16px; }
.avatar-preview {
  width: 120px; height: 120px; border-radius: 50%; margin: 0 auto;
  background: var(--bg-section); border: 3px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; font-size: 2.5rem; color: var(--text-muted);
}
.avatar-preview img { width: 100%; height: 100%; object-fit: cover; }
.avatar-camera-video {
  width: 200px; height: 200px; object-fit: cover;
  border-radius: 50%; margin: 0 auto; display: block;
  border: 3px solid var(--primary); transform: scaleX(-1);
}
.avatar-actions { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }

/* Nav profile avatar img */
.nav-profile-avatar-img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.npm-avatar-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }

.acc-sidebar-profile h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.acc-balance-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; background: rgba(16,185,129,0.1); color: #059669;
  border-radius: var(--radius-full); font-size: 0.82rem; font-weight: 700;
}
.acc-nav { display: flex; flex-direction: column; gap: 2px; }
.acc-nav-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 10px; font-size: 0.88rem;
  color: var(--text-secondary); font-weight: 500; text-decoration: none;
  transition: all 0.15s;
}
.acc-nav-link:hover { background: var(--primary-bg); color: var(--primary); }
.acc-nav-link.active { background: var(--primary-bg); color: var(--primary); font-weight: 600; }
.acc-nav-link i { width: 18px; text-align: center; font-size: 0.85rem; }
.acc-nav-logout { color: var(--danger); margin-top: 8px; }
.acc-nav-logout:hover { background: rgba(239,68,68,0.06); color: var(--danger); }

/* Main content */
.acc-card {
  background: #fff; border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-card); margin-bottom: 20px;
}
.acc-card-header { margin-bottom: 24px; }
.acc-card-header h2 { font-size: 1.15rem; font-weight: 700; display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.acc-card-header h2 i { color: var(--primary); }
.acc-card-header p { font-size: 0.85rem; color: var(--text-muted); }

.acc-form .form-group { margin-bottom: 16px; }
.acc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.acc-divider { text-align: center; margin: 24px 0 16px; position: relative; }
.acc-divider::before { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--border-light); }
.acc-divider span { position: relative; background: #fff; padding: 0 16px; font-size: 0.78rem; color: #fff; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }

.acc-empty { text-align: center; padding: 40px 16px; color: var(--text-muted); }
.acc-empty i { font-size: 2rem; margin-bottom: 12px; display: block; opacity: 0.3; }

/* Orders */
.acc-orders { display: flex; flex-direction: column; gap: 12px; }
.acc-order-item {
  border: 1px solid var(--border-light); border-radius: 12px;
  overflow: hidden; transition: all 0.2s;
}
.acc-order-item:hover { border-color: var(--primary-light); }
.acc-order-top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px; background: var(--bg-section);
}
.acc-order-body { padding: 12px 18px; }
.acc-order-body > div { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.85rem; }
.acc-order-body > div span:first-child { color: var(--text-muted); }
.acc-order-body > div span:last-child { font-weight: 600; }
.acc-order-progress { padding: 8px 18px 14px; }

/* Balance */
.acc-balance-hero {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 32px; background: linear-gradient(135deg, #1e1b3a, #3b2580);
  border-radius: var(--radius-lg); color: #fff; margin-bottom: 20px;
}
.acc-balance-amount span { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.acc-balance-amount strong { font-size: 2rem; font-weight: 800; }
.acc-deposit-amounts { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }

/* Transactions */
.acc-tx-list { display: flex; flex-direction: column; }
.acc-tx-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border-light);
}
.acc-tx-item:last-child { border-bottom: none; }
.acc-tx-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
}
.acc-tx-plus { background: rgba(16,185,129,0.1); color: #059669; }
.acc-tx-minus { background: rgba(239,68,68,0.1); color: #dc2626; }
.acc-tx-info { flex: 1; min-width: 0; }
.acc-tx-info strong { display: block; font-size: 0.88rem; font-weight: 600; }
.acc-tx-info span { font-size: 0.78rem; color: #fff; }
.acc-tx-right { text-align: right; flex-shrink: 0; }
.acc-tx-amount { font-size: 0.92rem; font-weight: 700; margin-bottom: 4px; }
.acc-tx-green { color: #059669; }
.acc-tx-red { color: #dc2626; }

/* Referral */
.acc-ref-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px;
}
.acc-ref-code-box, .acc-ref-link-box {
  background: #fff; border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 20px;
  box-shadow: var(--shadow-card);
}
.acc-ref-code-box { display: flex; justify-content: space-between; align-items: center; }
.acc-ref-code-box span { font-size: 0.8rem; color: var(--text-muted); display: block; margin-bottom: 4px; }
.acc-ref-code-box strong { font-size: 1.3rem; font-weight: 800; color: var(--primary); letter-spacing: 2px; }
.acc-ref-link-box span { font-size: 0.8rem; color: var(--text-muted); display: block; margin-bottom: 8px; }
.acc-ref-link { display: flex; gap: 8px; }
.acc-ref-link input { flex: 1; padding: 10px 14px; background: var(--bg-section); border: 1px solid var(--border-light); border-radius: 8px; font-size: 0.82rem; color: var(--text); font-family: monospace; }

.acc-ref-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; }
.acc-ref-stat {
  text-align: center; padding: 20px; background: #fff; border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
}
.acc-ref-stat strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.acc-ref-stat span { font-size: 0.8rem; color: var(--text-muted); }

.acc-ref-how { display: flex; flex-direction: column; gap: 16px; }
.acc-ref-step { display: flex; align-items: center; gap: 14px; }
.acc-ref-step-num {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), #9333ea);
  color: #fff; font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}
.acc-ref-step strong { display: block; font-size: 0.9rem; }
.acc-ref-step span { font-size: 0.8rem; color: var(--text-muted); }

/* Account Responsive */
@media (max-width: 768px) {
  .acc-grid { grid-template-columns: 1fr; }
  .acc-sidebar { position: static; }
  .acc-form-row { grid-template-columns: 1fr; }
  .acc-balance-hero { flex-direction: column; text-align: center; gap: 16px; padding: 24px 20px; }
  .acc-ref-hero { grid-template-columns: 1fr; }
  .acc-ref-stats { grid-template-columns: 1fr; }
}

/* === LEGAL PAGES === */
.legal-page { padding: 0 0 80px; }
.legal-hero { text-align: center; padding: 48px 0 36px; max-width: 640px; margin: 0 auto; }
.legal-hero h1 { font-size: 2rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 8px; line-height: 1.2; }
.legal-hero p { color: var(--text-muted); font-size: 0.9rem; }

.legal-grid { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }

/* Sidebar */
.legal-sidebar { position: sticky; top: 80px; }
.legal-nav { display: flex; flex-direction: column; gap: 2px; }
.legal-nav-link {
  padding: 10px 14px; border-radius: 8px; font-size: 0.82rem;
  color: var(--text-muted); font-weight: 500; text-decoration: none;
  transition: all 0.15s; border-left: 3px solid transparent;
}
.legal-nav-link:hover, .legal-nav-link.active {
  color: var(--primary); background: var(--primary-bg);
  border-left-color: var(--primary);
}

/* Content */
.legal-content { min-width: 0; }
.legal-company-badge {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; background: var(--bg-section);
  border: 1px solid var(--border-light); border-radius: 14px;
  margin-bottom: 32px;
}
.legal-logo { height: 44px; width: auto; flex-shrink: 0; }
.legal-company-badge strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.legal-company-badge span { display: block; font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }

.legal-content section { margin-bottom: 32px; padding-bottom: 28px; border-bottom: 1px solid var(--border-light); }
.legal-content section:last-child { border-bottom: none; }
.legal-content h2 { font-size: 1.15rem; font-weight: 700; margin-bottom: 14px; color: var(--text); }
.legal-content p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; margin-bottom: 12px; }
.legal-content li { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 6px; }
.legal-content a { color: var(--primary); font-weight: 600; }

/* Highlight Box */
.legal-highlight {
  display: flex; gap: 14px; padding: 18px 20px;
  background: linear-gradient(135deg, var(--primary-bg), rgba(124,58,237,0.06));
  border: 1px solid rgba(124,58,237,0.12); border-radius: 12px;
  margin: 16px 0;
}
.legal-highlight i { color: var(--primary); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.legal-highlight strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.legal-highlight p { font-size: 0.85rem; margin: 0; }

/* Legal Table */
.legal-table {
  border: 1px solid var(--border-light); border-radius: 10px;
  overflow: hidden; margin: 14px 0;
}
.legal-table-row {
  display: grid; grid-template-columns: 1fr 1fr; padding: 12px 16px;
  font-size: 0.85rem; gap: 12px;
}
.legal-table-row:nth-child(even) { background: var(--bg-section); }
.legal-table-header { background: var(--bg-section) !important; font-weight: 700; color: var(--text); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.legal-table-row span { color: var(--text-secondary); }
.legal-table-row span:first-child { font-weight: 600; color: var(--text); }

/* 3 column table */
.legal-table-row.legal-table-header:has(span:nth-child(3)),
.legal-table-row:has(span:nth-child(3)) { grid-template-columns: 1fr 1.5fr 1fr; }

/* Legal Contact */
.legal-contact {
  background: var(--bg-section); border: 1px solid var(--border-light);
  border-radius: 10px; padding: 18px 20px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 0.88rem; color: var(--text-secondary);
}
.legal-contact strong { color: var(--text); }

/* Legal Responsive */
@media (max-width: 768px) {
  .legal-grid { grid-template-columns: 1fr; gap: 0; }
  .legal-sidebar { position: static; margin-bottom: 24px; }
  .legal-nav { flex-direction: row; flex-wrap: wrap; gap: 4px; }
  .legal-nav-link { padding: 6px 12px; font-size: 0.75rem; border-left: none; border-radius: var(--radius-full); border: 1px solid var(--border-light); }
  .legal-nav-link:hover, .legal-nav-link.active { border-color: var(--primary); }
  .legal-hero h1 { font-size: 1.5rem; }
  .legal-company-badge { flex-direction: column; text-align: center; padding: 18px; }
  .legal-table-row { grid-template-columns: 1fr !important; gap: 4px; padding: 10px 14px; }
  .legal-table-header { display: none; }
}

/* === BLOG PAGE === */
.blog-page { padding: 32px 0 80px; background: var(--bg-section); }
.blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }

.blog-section-title {
  font-size: 1.15rem; font-weight: 700; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
  height: 22px;
}
.blog-section-title span {
  width: 4px; height: 20px; background: var(--accent);
  border-radius: 2px; display: inline-block;
}

/* Post Card */
.blog-post {
  display: flex; gap: 0; background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--border-light); overflow: hidden;
  margin-bottom: 16px; transition: all 0.25s;
}
.blog-post:hover { box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-post-img {
  width: 280px; min-height: 200px; flex-shrink: 0;
  background-size: cover; background-position: center;
  position: relative; display: block; text-decoration: none;
}
.blog-post-cat {
  position: absolute; bottom: 12px; left: 12px;
  background: var(--accent); color: #fff; padding: 4px 12px;
  border-radius: var(--radius-full); font-size: 0.72rem; font-weight: 700;
}
.blog-post-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.blog-post-meta { display: flex; gap: 14px; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 8px; }
.blog-post-meta span { display: flex; align-items: center; gap: 4px; }
.blog-post-meta i { font-size: 0.65rem; }
.blog-post-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-post-body h3 a { color: var(--text); text-decoration: none; }
.blog-post-body h3 a:hover { color: var(--accent); }
.blog-post-body > p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 700; color: var(--accent);
  text-decoration: none; transition: gap 0.2s;
}
.blog-read-more:hover { gap: 10px; color: var(--accent); }

/* Sidebar */
.blog-sidebar { position: sticky; top: 80px; padding-top: 38px; }
.blog-widget {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 22px;
  margin-bottom: 16px;
}
.blog-widget-title {
  font-size: 0.95rem; font-weight: 700; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.blog-widget-title span {
  width: 4px; height: 18px; background: var(--accent);
  border-radius: 2px; display: inline-block;
}

/* About widget */
.blog-widget-about { text-align: center; }
.blog-widget-logo { height: 50px; margin-bottom: 12px; }
.blog-widget-about p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.blog-widget-social { display: flex; justify-content: center; gap: 8px; }
.blog-widget-social a {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-section); display: flex; align-items: center;
  justify-content: center; color: var(--text-muted); font-size: 0.82rem;
  transition: all 0.2s; text-decoration: none;
}
.blog-widget-social a:hover { background: var(--primary); color: #fff; }

/* Categories widget */
.blog-cat-list { list-style: none; }
.blog-cat-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border-light);
}
.blog-cat-list li:last-child { border-bottom: none; }
.blog-cat-list a {
  font-size: 0.85rem; color: var(--text-secondary); text-decoration: none;
  display: flex; align-items: center; gap: 8px; transition: color 0.2s;
}
.blog-cat-list a i { font-size: 0.6rem; color: var(--text-muted); }
.blog-cat-list a:hover { color: var(--accent); }
.blog-cat-count {
  background: var(--accent); color: #fff; font-size: 0.68rem;
  font-weight: 700; padding: 2px 8px; border-radius: var(--radius-full);
  min-width: 28px; text-align: center;
}

/* Popular widget */
.blog-popular-list { display: flex; flex-direction: column; gap: 12px; }
.blog-popular-item {
  display: flex; gap: 12px; text-decoration: none; color: var(--text);
  align-items: center; transition: all 0.15s;
}
.blog-popular-item:hover strong { color: var(--accent); }
.blog-popular-img {
  width: 72px; height: 52px; border-radius: 8px; flex-shrink: 0;
  background-size: cover; background-position: center;
}
.blog-popular-item strong { display: block; font-size: 0.82rem; font-weight: 600; line-height: 1.3; margin-bottom: 4px; }
.blog-popular-item span { font-size: 0.7rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }

/* Blog Category Hero */
.blog-cat-hero { padding: 28px 0 20px; }
.blog-cat-hero h1 { font-size: 1.8rem; font-weight: 800; margin-bottom: 6px; }
.blog-cat-hero p { color: var(--text-muted); font-size: 0.9rem; }

/* Blog Pagination */
.blog-pagination { display: flex; gap: 6px; justify-content: center; margin-top: 24px; }

/* Blog Post Detail */
.bp-header { margin-bottom: 24px; }
.bp-cat {
  display: inline-block; padding: 4px 14px; border-radius: var(--radius-full);
  color: #fff; font-size: 0.72rem; font-weight: 700; margin-bottom: 12px; text-decoration: none;
}
.bp-title { font-size: 1.8rem; font-weight: 800; line-height: 1.25; margin-bottom: 16px; letter-spacing: -0.5px; }
.bp-meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--text-muted);
  padding: 12px 16px; background: var(--bg-section);
  border: 1px solid var(--border-light); border-radius: 10px;
  margin-top: 14px;
}
.bp-meta > span, .bp-meta > a {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; background: rgba(255,255,255,0.7);
  border-radius: 6px; font-size: 0.78rem;
}
.bp-meta a { color: var(--text-secondary); text-decoration: none; }
.bp-meta a:hover { color: var(--primary); }
.bp-meta i { margin-right: 4px; font-size: 0.72rem; }
.bp-author { display: flex; align-items: center; gap: 8px; }
.bp-author img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.bp-author-letter {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #9333ea);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem;
}

.bp-featured { margin-bottom: 24px; border-radius: var(--radius-lg); overflow: hidden; }
.bp-featured img { width: 100%; display: block; }

/* Table of Contents */
.bp-toc {
  margin-bottom: 28px; border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden;
  background: #fff;
}
.bp-toc-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; background: var(--bg-section); border: none;
  cursor: pointer; font-family: inherit; transition: background 0.2s;
}
.bp-toc-toggle:hover { background: var(--primary-bg); }
.bp-toc-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; font-weight: 700; color: var(--text);
}
.bp-toc-title i { color: var(--primary); font-size: 0.85rem; }
.bp-toc-arrow { color: var(--text-muted); font-size: 0.72rem; transition: transform 0.3s; }
.bp-toc.open .bp-toc-arrow { transform: rotate(180deg); }

.bp-toc-list {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.bp-toc.open .bp-toc-list { max-height: 2000px; }

.bp-toc-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; font-size: 0.85rem; color: var(--text-secondary);
  text-decoration: none; border-top: 1px solid var(--border-light);
  transition: all 0.15s;
}
.bp-toc-item:hover { background: var(--primary-bg); color: var(--primary); }
.bp-toc-sub { padding-left: 40px; font-size: 0.82rem; color: var(--text-muted); }
.bp-toc-num {
  width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0;
  background: var(--primary-bg); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700;
}
.bp-toc-sub .bp-toc-num { background: var(--bg-section); color: var(--text-muted); }

.bp-content {
  font-size: 0.95rem; line-height: 1.9; color: var(--text-secondary);
}

/* H2 — accent bar style */
.bp-content h2 {
  font-size: 1.3rem; font-weight: 800; color: var(--text);
  margin: 36px 0 16px; padding: 16px 20px;
  background: linear-gradient(135deg, var(--primary-bg), rgba(124,58,237,0.04));
  border-left: 4px solid var(--primary); border-radius: 0 12px 12px 0;
  letter-spacing: -0.3px;
}

/* H3 — numbered/icon feel */
.bp-content h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--text);
  margin: 28px 0 12px; padding: 12px 16px;
  background: var(--bg-section); border: 1px solid var(--border-light);
  border-radius: 10px; display: flex; align-items: center; gap: 8px;
}
.bp-content h3::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

.bp-content p { margin-bottom: 16px; }

/* Lists — styled */
.bp-content ul, .bp-content ol { padding-left: 0; margin-bottom: 20px; list-style: none; }
.bp-content ul li, .bp-content ol li {
  position: relative; padding: 8px 12px 8px 28px; margin-bottom: 6px;
  background: var(--bg-soft); border-radius: 8px;
  font-size: 0.9rem; line-height: 1.7;
}
.bp-content ul li::before {
  content: ''; position: absolute; left: 12px; top: 16px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--primary);
}
.bp-content ol { counter-reset: bp-counter; }
.bp-content ol li { counter-increment: bp-counter; }
.bp-content ol li::before {
  content: counter(bp-counter); position: absolute; left: 8px; top: 7px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--primary); color: #fff; font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.bp-content ol li { padding-left: 38px; }

/* Strong highlight */
.bp-content strong { color: var(--text); }

/* Links */
.bp-content a { color: var(--primary); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.bp-content a:hover { color: var(--accent); }

/* Images */
.bp-content img { max-width: 100%; border-radius: 12px; margin: 20px 0; box-shadow: var(--shadow-card); }

/* Blockquote — callout style */
.bp-content blockquote {
  margin: 24px 0; padding: 20px 24px 20px 56px; position: relative;
  background: linear-gradient(135deg, rgba(124,58,237,0.06), rgba(124,58,237,0.02));
  border: 1px solid rgba(124,58,237,0.1); border-radius: 14px;
  font-style: normal; color: var(--text); font-size: 0.92rem; line-height: 1.7;
}
.bp-content blockquote::before {
  content: '\201C'; position: absolute; left: 18px; top: 12px;
  font-size: 2.5rem; font-weight: 800; color: var(--primary); line-height: 1; opacity: 0.5;
}

/* Tip/Solution callout when text starts with Çözüm: */
.bp-content p strong:first-child { color: var(--primary); }

.bp-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0; }
.bp-tag {
  padding: 5px 14px;
  background: var(--primary-bg);
  border: 1px solid var(--primary-light);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Author Box */
.bp-author-box {
  display: flex; gap: 20px; padding: 28px;
  background: linear-gradient(135deg, var(--primary-bg) 0%, #fff 100%);
  border: 2px solid var(--primary-light);
  border-radius: var(--radius-lg);
  margin: 32px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.bp-author-box-img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.bp-author-box-letter {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), #e11d48);
  color: #fff; font-size: 1.5rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.bp-author-box strong { display: block; font-size: 1.05rem; margin-bottom: 6px; color: var(--text-primary); }
.bp-author-box p { font-size: 0.875rem; color: var(--text-secondary); margin: 0 0 10px; line-height: 1.65; }
.bp-author-social { display: flex; gap: 10px; }
.bp-author-social a { color: var(--text-secondary); font-size: 1rem; transition: color 0.2s; }
.bp-author-social a:hover { color: var(--primary); }

/* Related Posts */
.bp-related { margin-top: 32px; }
.bp-related h3 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.bp-related h3 i { color: var(--primary); }
.bp-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.bp-related-card {
  background: #fff; border: 1px solid var(--border-light); border-radius: 12px;
  overflow: hidden; text-decoration: none; color: var(--text); transition: all 0.2s;
}
.bp-related-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.bp-related-img { height: 120px; background-size: cover; background-position: center; background-color: var(--bg-section); }
.bp-related-card strong { display: block; padding: 12px 14px 4px; font-size: 0.82rem; line-height: 1.3; }
.bp-related-card span { display: block; padding: 0 14px 12px; font-size: 0.72rem; color: var(--text-muted); }

/* Blog Comments */
.bp-comments { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border-light); }
.bp-comments > h3 {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.bp-comments > h3 i { color: var(--primary); }

.bp-comment-form-box {
  background: var(--bg-section); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px;
}
.bp-comment-form-box h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; }
.bp-cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bp-comment-form-box small { font-size: 0.72rem; color: var(--text-muted); }
#cmtCharCount { float: right; font-size: 0.72rem; color: var(--text-muted); }

.bp-comment-list { display: flex; flex-direction: column; gap: 16px; }
.bp-comment {
  display: flex; gap: 14px; padding: 18px;
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius); transition: all 0.2s;
}
.bp-comment:hover { border-color: var(--primary-light); }
.bp-comment-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), #9333ea);
  color: #fff; font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.bp-comment-body { flex: 1; }
.bp-comment-header { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.bp-comment-header strong { font-size: 0.88rem; }
.bp-comment-header span { font-size: 0.72rem; color: var(--text-muted); }
.bp-comment-body p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }
.bp-no-comments { text-align: center; padding: 24px; color: var(--text-muted); font-size: 0.88rem; }

@media (max-width: 600px) { .bp-cf-row { grid-template-columns: 1fr; } }

/* Blog popular number */
.blog-popular-num {
  background: var(--primary) !important; color: #fff !important;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
}

/* Blog Responsive */
@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}
@media (max-width: 600px) {
  .blog-post { flex-direction: column; }
  .blog-post-img { width: 100%; min-height: 180px; }
  .blog-post-body { padding: 18px; }
}

/* === EMPTY STATE === */
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.empty-state i { font-size: 3rem; margin-bottom: 16px; }

/* === MEGA FOOTER === */
.mega-footer {
  background: #13112a; padding: 0 0 0; position: relative;
  border-top: 4px solid var(--primary);
}

/* Contact Bar */
.mf-contact-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 20px; flex-wrap: wrap;
}
.mf-contact-item {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.mf-contact-item:hover { color: #fff; }
.mf-contact-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.mf-contact-item span { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.mf-contact-item strong { font-size: 0.88rem; }
.mf-contact-logo { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.mf-logo-img { height: 40px; filter: brightness(0) invert(1); }
.mf-contact-social { display: flex; gap: 6px; }
.mf-contact-social a {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.82rem;
  text-decoration: none; transition: all 0.2s;
}
.mf-contact-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Tabs */
.mf-tabs {
  display: flex; gap: 4px; padding: 24px 0 0;
}
.mf-tab {
  padding: 10px 24px; border-radius: 10px 10px 0 0;
  background: rgba(255,255,255,0.04); border: none;
  color: rgba(255,255,255,0.5); font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.08em;
  cursor: pointer; transition: all 0.2s; font-family: inherit;
  display: flex; align-items: center; gap: 8px;
}
.mf-tab i { font-size: 0.72rem; }
.mf-tab:hover { background: rgba(255,255,255,0.06); color: #fff; }
.mf-tab.active {
  background: var(--primary); color: #fff;
}

/* Panels */
.mf-panel { display: none; padding: 20px 0 28px; }
.mf-panel.active { display: block; }

.mf-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.mf-service-item {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; color: #fff;
  font-size: 0.85rem; font-weight: 500;
  text-decoration: none; transition: all 0.2s;
}
.mf-service-item:hover {
  background: rgba(124,58,237,0.1); border-color: rgba(124,58,237,0.2);
  color: #fff; transform: translateX(4px);
}
.mf-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

@media (max-width: 900px) {
  .mf-contact-bar { flex-direction: column; align-items: flex-start; }
  .mf-contact-logo { margin-left: 0; width: 100%; justify-content: space-between; margin-top: 8px; }
  .mf-grid { grid-template-columns: 1fr 1fr; }
  .mf-tabs { overflow-x: auto; }
}
@media (max-width: 480px) {
  .mf-grid { grid-template-columns: 1fr; }
  .mf-tab { padding: 8px 16px; font-size: 0.72rem; }
}

/* === FOOTER === */
.footer {
  background: linear-gradient(180deg, #1a1735, #13112a);
  color: #fff; padding: 0; margin-top: 0;
  position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.footer a { color: rgba(255,255,255,0.55); transition: all 0.2s; text-decoration: none; }
.footer a:hover { color: #fff; }
.footer-top {
  display: grid; grid-template-columns: 1.3fr 2fr; gap: 60px;
  padding: 64px 0 40px; position: relative;
}
.footer-logo { display: inline-block; margin-bottom: 16px; }
.footer-logo-img {
  height: 100px; width: auto; display: block;
  filter: brightness(0) invert(1);
  margin: -16px 0;
}
.footer-brand p {
  color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; max-width: 320px; font-weight: 500;
}
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: rgba(255,255,255,0.45); transition: all 0.25s;
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-col h4 {
  font-size: 0.78rem; font-weight: 700; margin-bottom: 18px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #fff;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.88rem; display: inline-flex; align-items: center; gap: 6px; }
.footer-col a i { font-size: 0.82rem; width: 16px; opacity: 0.6; }
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}
.footer-bottom {
  padding: 20px 0; display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem; color: rgba(255,255,255,0.85);
}
.footer-payments { display: flex; gap: 10px; }
.footer-payments i { font-size: 1.6rem; color: rgba(255,255,255,0.8); transition: color 0.2s; }
.footer-payments i:hover { color: #fff; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-desc { max-width: 100%; }
  .hero-visual { display: none !important; }
  .hero-stats { justify-content: center; }
  .platform-grid { grid-template-columns: repeat(3, 1fr); }
  .promo-grid { grid-template-columns: 1fr; text-align: center; }
  .promo-visual { display: flex !important; justify-content: center; margin-top: 24px; }
  .who-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .hero h1:not(.hero-badge) { font-size: 1.5rem; }
  .hero-stats { gap: 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 16px 24px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr; }
  .order-layout { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .testimonial-card { flex: 0 0 260px; }
  .contact-cards { grid-template-columns: 1fr; }
  /* mobile nav handled by mobile-menu overlay */
  .who-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero h1:not(.hero-badge) { font-size: 1.5rem; }
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .track-input-group { flex-direction: column; }
  .who-grid { grid-template-columns: 1fr 1fr; }
}

/* === CATEGORY PAGE (SERVICE LIST) === */
.category-page { padding: 0 0 80px; background: linear-gradient(180deg, var(--bg) 0%, #fef7fb 10%, #fdf2f8 40%, #fef7fb 80%, var(--bg) 100%); }

/* Category Cards */
.cat-card {
  background: #fff; border: none; border-radius: 18px; padding: 24px;
  text-decoration: none; color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.3s; display: flex; flex-direction: column;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); color: var(--text); }
.cat-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.cat-card-icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
}
.cat-card-header h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; }
.cat-card-header p { font-size: 0.8rem; color: var(--text-muted); margin: 0; line-height: 1.4; }
.cat-card-price { margin-bottom: 16px; flex: 1; }
.cat-card-price strong { font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.cat-card-price span { font-size: 0.75rem; color: var(--text-muted); margin-left: 4px; }
.cat-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px solid var(--border-light);
}
.cat-card-delivery { font-size: 0.78rem; color: #fff; display: flex; align-items: center; gap: 5px; }
.cat-card-delivery i { font-size: 0.7rem; }
.cat-card-arrow { color: var(--primary); font-size: 0.85rem; transition: transform 0.2s; }
.cat-card:hover .cat-card-arrow { transform: translateX(4px); }
.category-page .breadcrumb { margin-bottom: 0; }
.category-hero {
  text-align: center; padding: 48px 0 40px;
  max-width: 680px; margin: 0 auto;
}
.category-hero h1 {
  font-size: 2.4rem; font-weight: 800; margin-bottom: 16px;
  letter-spacing: -0.5px; color: var(--text);
}
.category-hero p {
  font-size: 1rem; color: var(--text-secondary); line-height: 1.8;
}

.cat-services-grid {
  background: #fdf2f8; border-radius: 24px; padding: 24px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  max-width: 1100px; margin: 0 auto;
}

.cat-service-card {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: none; border-radius: var(--radius); padding: 20px 18px;
  text-decoration: none; color: var(--text);
  transition: all 0.3s; cursor: pointer;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  min-height: 80px;
}
.cat-service-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.cat-service-card:hover .cat-service-arrow { color: var(--primary); opacity: 1; }

.cat-service-icon {
  width: 48px; height: 48px; min-width: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; transition: transform 0.25s;
  flex-shrink: 0;
}
.cat-service-card:hover .cat-service-icon { transform: scale(1.1); }

.cat-service-info { flex: 1; min-width: 0; overflow: hidden; }
.cat-service-info h3 {
  font-size: 0.95rem; font-weight: 700; margin-bottom: 3px;
  color: var(--text); white-space: normal; word-wrap: break-word;
  line-height: 1.3;
}
.cat-service-info p {
  font-size: 0.78rem; color: var(--text-muted); line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.cat-service-arrow {
  color: var(--text-muted); opacity: 0.4; font-size: 0.8rem;
  transition: all 0.25s; flex-shrink: 0; margin-left: auto;
}

@media (max-width: 1024px) {
  .cat-services-grid { grid-template-columns: repeat(2, 1fr); padding: 20px; gap: 12px; }
}
@media (max-width: 600px) {
  .cat-services-grid { grid-template-columns: 1fr; padding: 16px; gap: 10px; }
  .cat-service-card { padding: 16px 14px; gap: 12px; }
  .cat-service-icon { width: 42px; height: 42px; min-width: 42px; font-size: 1rem; }
  .cat-service-info h3 { font-size: 0.9rem; }
  .cat-service-info p { font-size: 0.75rem; }
  .category-hero h1 { font-size: 1.8rem; }
}

/* === SERVICE DETAIL PAGE (CARD LAYOUT) === */
.sd-page { padding: 0 0 80px; background: linear-gradient(180deg, var(--bg) 0%, #fef7fb 10%, #fdf2f8 40%, #fef7fb 80%, var(--bg) 100%); }

/* Page Hero */
.sd-page-hero {
  text-align: center; padding: 36px 0 28px;
}
.sd-page-hero h1 { font-size: 2rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.5px; }
.sd-page-hero > p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 16px; }
.sd-hero-meta { display: inline-flex; align-items: center; justify-content: center; gap: 12px; background: rgba(124,58,237,0.08); padding: 10px 24px; border-radius: 50px; border: 1px solid rgba(124,58,237,0.12); }
.sd-hero-rating { display: flex; align-items: center; gap: 6px; font-size: 0.9rem; font-weight: 700; color: var(--text); }
.sd-hero-rating strong { font-size: 1.1rem; font-weight: 800; }
.sd-stars { color: #f59e0b; font-size: 0.75rem; }
.sd-hero-reviews { font-size: 0.85rem; color: var(--text); font-weight: 700; }

/* Cards Grid */
.sd-cards-wrap { background: #fdf2f8; border-radius: 24px; padding: 24px; }
.sd-cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}

/* Single Card */
.sd-card {
  background: #fff; border: none; border-radius: 16px; padding: 24px; position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.3s; display: flex; flex-direction: column;
}
.sd-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
.sd-card-popular { box-shadow: 0 4px 20px rgba(34,197,94,0.1); }

/* Badge */
.sd-card-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--accent); color: #fff; font-size: 0.65rem;
  font-weight: 700; padding: 4px 10px; border-radius: 50px;
}
.sd-card-badge.popular { background: #22c55e; }
.sd-card-badge.hot { background: var(--accent); }

/* Card Header */
.sd-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; margin-top: 18px; }
.sd-card-platform {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem;
}
.sd-card-header h3 { font-size: 1.2rem; font-weight: 800; }

/* Features */
.sd-card-features { list-style: none; margin-bottom: 18px; flex: 1; }
.sd-card-features li {
  font-size: 0.88rem; color: var(--text-secondary); padding: 5px 0;
  display: flex; align-items: center; gap: 8px;
}
.sd-card-features i { color: var(--success); font-size: 0.75rem; flex-shrink: 0; }

/* Pricing */
.sd-card-pricing { margin-bottom: 16px; display: flex; align-items: baseline; gap: 10px; }
.sd-card-price { font-size: 1.65rem; font-weight: 800; color: var(--text); }
.sd-card-price span { font-size: 0.85rem; font-weight: 600; }
.sd-card-old { font-size: 0.82rem; color: var(--text-muted); text-decoration: line-through; }

/* Actions */
.sd-card-actions { display: flex; gap: 8px; }
.sd-card-cart {
  flex: 1; padding: 11px 14px; border-radius: 12px; border: none;
  background: linear-gradient(135deg, #7c3aed, #9333ea); color: #fff; font-size: 0.8rem;
  font-weight: 600; cursor: pointer; transition: all 0.25s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-family: inherit; box-shadow: 0 4px 14px rgba(124,58,237,0.25);
}
.sd-card-cart:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(124,58,237,0.35); }
.sd-card-buy {
  padding: 11px 14px; border-radius: 12px; border: none;
  background: linear-gradient(135deg, #22c55e, #16a34a); color: #fff; font-size: 0.8rem;
  font-weight: 600; cursor: pointer; transition: all 0.25s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-family: inherit; box-shadow: 0 4px 14px rgba(34,197,94,0.25);
}
.sd-card-buy:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(34,197,94,0.35); }

/* Trust Bar */
.sd-trust-bar {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
  padding: 28px 0; margin-top: 28px; border-top: 1px solid var(--border-light);
}
.sd-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-secondary); }
.sd-trust-item i { color: var(--primary); }

/* Link Modal */
.sd-link-modal { display: none; position: fixed; inset: 0; z-index: 2000; align-items: center; justify-content: center; padding: 16px; }
.sd-link-modal.active { display: flex; }

/* Responsive */
@media (max-width: 1024px) {
  .sd-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .sd-cards-wrap { padding: 20px; }
  .sd-page-hero h1 { font-size: 1.5rem; }
}
@media (max-width: 600px) {
  .sd-cards-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; gap: 12px; }
  .sd-cards-wrap { padding: 14px; border-radius: 16px; }
  .sd-card { padding: 20px; border-radius: 14px; }
  .sd-page-hero h1 { font-size: 1.3rem; }
}

/* Header Bar */
.sd-header-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 28px; background: #fff; border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg); margin-bottom: 20px; gap: 16px; flex-wrap: wrap;
}
.sd-header-left { display: flex; align-items: center; gap: 16px; }
.sd-platform-icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem;
}
.sd-header-bar h1 { font-size: 1.2rem; font-weight: 700; margin-bottom: 2px; }
.sd-header-bar p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }
.sd-header-right-info { text-align: right; flex-shrink: 0; }
.sd-header-price { font-size: 1.3rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.sd-header-price span { font-size: 0.75rem; font-weight: 500; color: var(--text-muted); }
.sd-header-rating { display: flex; align-items: center; gap: 6px; justify-content: flex-end; }
.sd-stars { color: #f59e0b; font-size: 0.72rem; }
.sd-header-rating > span:last-child { font-size: 0.75rem; color: var(--text-muted); }

/* Main Grid */
.sd-main-grid {
  display: grid; grid-template-columns: 1fr 380px; gap: 20px; align-items: start;
}

/* Boxes */
.sd-box {
  background: #fff; border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 22px; margin-bottom: 16px;
}
.sd-box-title {
  font-size: 0.92rem; font-weight: 700; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.sd-box-title i { color: var(--primary); font-size: 0.85rem; }

/* Packages Grid */
.sd-packages {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  margin-bottom: 16px;
}
.sd-pkg {
  position: relative; padding: 14px 8px 12px; text-align: center;
  border: 1.5px solid var(--border-light); border-radius: 12px;
  background: #fff; cursor: pointer; transition: all 0.2s;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.sd-pkg:hover { border-color: var(--primary-light); background: var(--primary-bg); }
.sd-pkg.active { border-color: var(--primary); background: var(--primary-bg); box-shadow: 0 0 0 3px rgba(124,58,237,0.1); }
.sd-pkg-discount {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 0.58rem; font-weight: 700;
  padding: 2px 8px; border-radius: var(--radius-full); white-space: nowrap;
}
.sd-pkg-qty { font-size: 1.1rem; font-weight: 800; color: var(--text); }
.sd-pkg-price { font-size: 0.72rem; color: var(--text-muted); }
.sd-pkg.active .sd-pkg-qty { color: var(--primary); }
.sd-pkg-old { font-size: 0.6rem; color: var(--text-muted); text-decoration: line-through; }
.sd-pkg-popular { border-color: #22c55e !important; }
.sd-pkg-popular.active { box-shadow: 0 0 0 3px rgba(34,197,94,0.15); }

/* Badges inside package box */
.sd-pkg-badges {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  padding-top: 16px; margin-top: 16px;
  border-top: 1px dashed var(--border);
}
.sd-pkg-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--text-secondary);
  padding: 8px 10px; background: var(--bg-section);
  border-radius: 8px;
}
.sd-pkg-badge i { color: var(--primary); font-size: 0.8rem; flex-shrink: 0; }

@media (max-width: 600px) {
  .sd-pkg-badges { grid-template-columns: 1fr; }
}

/* Custom Qty */
.sd-custom-qty {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 18px; margin-top: 16px;
  background: linear-gradient(135deg, var(--primary-bg), rgba(124,58,237,0.04));
  border: 1.5px solid rgba(124,58,237,0.12); border-radius: 12px;
}
.sd-custom-qty-left { display: flex; flex-direction: column; gap: 2px; }
.sd-custom-qty-left label { font-size: 0.88rem; font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: 6px; }
.sd-custom-qty-left label i { font-size: 0.75rem; }
.sd-custom-qty-left small { font-size: 0.72rem; color: var(--text-muted); }
.sd-custom-qty-input {
  display: flex; align-items: center; border: 2px solid var(--primary-light);
  border-radius: 12px; overflow: hidden; background: #fff;
}
.sd-custom-qty-input button {
  width: 44px; height: 44px; background: var(--primary-bg); border: none;
  color: var(--primary); cursor: pointer; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.sd-custom-qty-input button:hover { background: var(--primary); color: #fff; }
.sd-custom-qty-input input {
  width: 80px; text-align: center; border: none; font-size: 1.05rem;
  font-weight: 800; font-family: inherit; outline: none; padding: 10px 4px;
  color: var(--primary); -moz-appearance: textfield;
}
.sd-custom-qty-input input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* URL Input */
.sd-url-input {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 0.92rem; font-family: inherit;
  color: var(--text); transition: all 0.2s; background: var(--bg-soft);
}
.sd-url-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(124,58,237,0.08); background: #fff; }

/* Total Box */
.sd-total-box { background: var(--bg-section); }
.sd-total-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.sd-total-row span { font-size: 0.92rem; color: var(--text-secondary); }
.sd-total-row strong { font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.sd-action-buttons { display: flex; gap: 8px; }
.sd-cart-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 0.95rem !important; padding: 14px !important;
  border-radius: 12px !important;
}
.sd-buy-now-btn {
  width: 52px; flex-shrink: 0; padding: 14px !important;
  border-radius: 12px !important; font-size: 1.1rem !important;
  display: flex; align-items: center; justify-content: center;
}

/* (trust badges moved inside package box) */

/* RIGHT: Info Card */
.sd-info-section { position: sticky; top: 80px; }
.sd-info-card {
  background: #fff; border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 28px; margin-bottom: 16px;
  position: relative; overflow: hidden;
}
.sd-info-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.04) 0%, transparent 70%);
}
.sd-info-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; position: relative; }
.sd-info-logo { height: 36px; }
.sd-info-card-header h3 { font-size: 1.05rem; font-weight: 700; }
.sd-info-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; position: relative; }
.sd-info-features { display: flex; flex-direction: column; gap: 10px; position: relative; }
.sd-info-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--text-secondary);
}
.sd-info-feat i { color: var(--success); font-size: 0.85rem; }

/* Delivery Card */
.sd-delivery-card {
  background: #fff; border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden;
}
.sd-delivery-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px; border-bottom: 1px solid var(--border-light);
}
.sd-delivery-row:last-child { border-bottom: none; }
.sd-delivery-row i { color: var(--primary); font-size: 1rem; width: 20px; text-align: center; }
.sd-delivery-row strong { display: block; font-size: 0.85rem; font-weight: 600; }
.sd-delivery-row span { font-size: 0.78rem; color: #fff; }

/* OLD SD styles override */
/* (duplicate removed) */

/* Main Layout: Left order, Right info */
.sd-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start; padding: 24px 0;
}

/* LEFT: Product + Order */
.sd-left {
  background: #fff; border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-card);
}
.sd-product-header { margin-bottom: 24px; }
.sd-platform-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px; border-radius: var(--radius-full);
  font-size: 0.78rem; font-weight: 600; margin-bottom: 12px;
  background: var(--primary-bg); color: var(--pc);
}
.sd-platform-tag i { font-size: 0.9rem; }
.sd-product-header h1 { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.3px; margin-bottom: 6px; }
.sd-subtitle { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; }

.sd-price-display { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border-light); }
.sd-price-main { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.sd-price-main span { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
.sd-price-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.sd-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; background: var(--bg-section);
  border-radius: var(--radius-full); font-size: 0.78rem;
  color: var(--text-secondary);
}
.sd-tag i { color: var(--primary); font-size: 0.72rem; }

/* Quantity Section */
.sd-quantity-section { margin-bottom: 20px; }
.sd-quantity-section > label {
  display: block; font-size: 0.88rem; font-weight: 600;
  margin-bottom: 10px; color: var(--text);
}
.sd-qty-input-wrap {
  display: flex; align-items: center; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color 0.2s;
}
.sd-qty-input-wrap:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(124,58,237,0.08); }
.sd-qty-btn {
  width: 48px; height: 48px; background: var(--bg-section); border: none;
  color: var(--text-secondary); font-size: 0.85rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.sd-qty-btn:hover { background: var(--primary-bg); color: var(--primary); }
.sd-qty-input-wrap input {
  flex: 1; text-align: center; border: none; background: #fff;
  font-size: 1.1rem; font-weight: 700; color: var(--text);
  padding: 12px 8px; font-family: inherit; outline: none;
  -moz-appearance: textfield;
}
.sd-qty-input-wrap input::-webkit-inner-spin-button { -webkit-appearance: none; }
.sd-qty-range {
  display: flex; justify-content: space-between;
  font-size: 0.75rem; color: var(--text-muted); margin-top: 6px;
}

/* Total Bar */
.sd-total-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; background: var(--primary-bg);
  border: 1px solid rgba(124,58,237,0.1);
  border-radius: var(--radius-sm); margin-bottom: 16px;
}
.sd-total-label { font-size: 0.9rem; font-weight: 600; color: var(--text-secondary); }
.sd-total-price { font-size: 1.5rem; font-weight: 800; color: var(--primary); }

/* Buy Button */
.sd-buy-btn {
  font-size: 1.05rem !important; padding: 16px 24px !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: 0 6px 24px rgba(244,63,94,0.25);
}
.sd-buy-btn:hover { box-shadow: 0 8px 32px rgba(244,63,94,0.35); transform: translateY(-2px); }

.sd-direct-btn {
  margin-top: 8px;
  border-radius: var(--radius-sm) !important;
  font-size: 1.05rem !important; padding: 16px 24px !important;
  background: linear-gradient(135deg, var(--primary), #9333ea) !important;
  box-shadow: 0 6px 24px rgba(124,58,237,0.25);
}
.sd-direct-btn:hover { box-shadow: 0 8px 32px rgba(124,58,237,0.35); transform: translateY(-2px); }

/* Trust mini badges */
.sd-trust-mini {
  display: flex; justify-content: center; gap: 20px;
  padding-top: 16px; margin-top: 16px; border-top: 1px solid var(--border-light);
}
.sd-trust-mini span {
  font-size: 0.78rem; color: #fff;
  display: flex; align-items: center; gap: 5px;
}
.sd-trust-mini i { color: var(--success); font-size: 0.72rem; }

/* RIGHT: Info */
.sd-right { display: flex; flex-direction: column; gap: 28px; }
.sd-info-section {
  background: #fff; border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-card);
}
.sd-info-section h3 {
  font-size: 1rem; font-weight: 700; margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
  color: var(--text);
}
.sd-info-section h3 i { color: var(--primary); font-size: 0.9rem; }

/* Features List */
.sd-features { display: flex; flex-direction: column; gap: 12px; }
.sd-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text-secondary);
  padding: 10px 14px; background: var(--bg-section);
  border-radius: var(--radius-sm); transition: all 0.15s;
}
.sd-feat:hover { background: var(--primary-bg); }
.sd-feat i { color: var(--success); font-size: 0.82rem; flex-shrink: 0; }

/* How Steps */
.sd-how-steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.sd-how-steps::before {
  content: ''; position: absolute; left: 17px; top: 18px; bottom: 18px;
  width: 2px; background: linear-gradient(180deg, var(--primary-light), var(--border-light));
}
.sd-how-step {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0; position: relative;
}
.sd-how-num {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), #9333ea);
  color: #fff; font-size: 0.85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  z-index: 1; box-shadow: 0 3px 10px rgba(124,58,237,0.2);
}
.sd-how-step strong { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 1px; }
.sd-how-step span { font-size: 0.8rem; color: var(--text-muted); }

/* CHECKOUT MODAL */
/* Direct Buy Modal */
.sd-checkout-overlay {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(30,27,58,0.5); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 16px;
}
.sd-checkout-overlay.active { display: flex; }
.sd-checkout-modal {
  background: #fff; border-radius: var(--radius-lg);
  max-width: 480px; width: 100%; position: relative;
  box-shadow: 0 24px 80px rgba(30,27,58,0.2);
  animation: modalSlideIn 0.3s ease;
  display: flex; flex-direction: column;
  max-height: 88vh; margin: auto;
}
.sd-checkout-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-section); border: 1px solid var(--border-light);
  color: var(--text-muted); font-size: 0.9rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.sd-checkout-close:hover { background: var(--danger); color: #fff; border-color: var(--danger); }
.sd-checkout-header {
  padding: 28px 28px 20px; border-bottom: 1px solid var(--border-light); flex-shrink: 0;
}
.sd-checkout-header h2 {
  font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
}
.sd-checkout-header h2 i { color: var(--primary); }
.sd-checkout-summary-mini { font-size: 0.85rem; color: var(--text-muted); }
.sd-checkout-scroll {
  flex: 1; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.sd-checkout-form { padding: 24px 28px 16px; display: flex; flex-direction: column; gap: 16px; }
.sd-checkout-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sd-checkout-bottom {
  flex-shrink: 0; padding: 16px 28px 20px;
  border-top: 1px solid var(--border-light); background: #fff;
}
.sd-checkout-total-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px; background: var(--primary-bg);
  border: 1px solid rgba(124,58,237,0.1); border-radius: var(--radius-sm);
  font-size: 0.95rem; margin-bottom: 16px;
}
.sd-checkout-total-bar span { color: var(--text-secondary); font-weight: 600; }
.sd-checkout-total-bar strong { font-size: 1.2rem; color: var(--primary); font-weight: 800; }
.sd-submit-btn {
  font-size: 1rem !important; padding: 15px !important;
  box-shadow: 0 6px 24px rgba(244,63,94,0.25);
}
.sd-submit-btn:hover { box-shadow: 0 8px 32px rgba(244,63,94,0.35); transform: translateY(-2px); }
@media (max-width: 500px) {
  .sd-checkout-overlay { padding: 0; align-items: stretch; }
  .sd-checkout-modal {
    max-height: none; height: 100vh; height: 100dvh;
    border-radius: 0; max-width: 100%; margin: 0;
    animation: sdSlideUp .25s ease;
  }
  .sd-checkout-header { padding: 14px 16px 10px; }
  .sd-checkout-header h2 { font-size: 1rem; margin-bottom: 2px; gap: 8px; }
  .sd-checkout-form { padding: 12px 16px 60vh; gap: 10px; }
  .sd-checkout-form .form-group { margin-bottom: 0; }
  .sd-checkout-form .form-group label { font-size: 0.76rem; margin-bottom: 2px; }
  .sd-checkout-form .form-group input,
  .sd-checkout-form .form-group select,
  .sd-checkout-form .form-group textarea { padding: 8px 10px; font-size: 0.84rem; }
  .sd-checkout-row { grid-template-columns: 1fr; gap: 6px; }
  .sd-checkout-close { top: 10px; right: 10px; width: 30px; height: 30px; font-size: 0.75rem; }
  .sd-direct-methods { gap: 6px; margin-bottom: 0; }
  .sd-dm { padding: 8px 4px; gap: 3px; font-size: 0.7rem; border-radius: 8px; border-width: 1.5px; }
  .sd-dm i { font-size: 0.9rem; }
  #directBankDetails > div { padding: 10px !important; margin-bottom: 6px !important; }
  #directBankDetails .form-group { margin-bottom: 0; }
  .sd-checkout-bottom {
    padding: 12px 16px; padding-bottom: calc(12px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  }
  .sd-checkout-total-bar { padding: 10px 14px; font-size: 0.84rem; margin-bottom: 14px; }
  .sd-checkout-total-bar strong { font-size: 1rem; }
  .sd-submit-btn { padding: 12px !important; font-size: 0.9rem !important; box-shadow: none; }
}
@keyframes sdSlideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

/* === NAV CART BUTTON === */
.nav-cart-btn {
  position: relative; background: none; border: 1.5px solid var(--border);
  width: 40px; height: 40px; border-radius: 10px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); font-size: 0.95rem;
  transition: all 0.2s;
}
.nav-cart-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-bg); }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--accent); color: #fff;
  font-size: 0.65rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}

/* === CART DRAWER === */
.cart-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(30,27,58,0.4); backdrop-filter: blur(6px);
}
.cart-overlay.active { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 100vw; background: #fff;
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(30,27,58,0.15);
  animation: slideInRight 0.3s ease;
}
@keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }
.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border-light);
}
.cart-drawer-header h3 {
  font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
}
.cart-count {
  font-size: 0.75rem; font-weight: 600; color: var(--text-muted);
  background: var(--bg-section); padding: 2px 10px; border-radius: var(--radius-full);
}
.cart-drawer-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-section); border: none;
  color: var(--text-muted); cursor: pointer; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.cart-drawer-close:hover { background: var(--danger); color: #fff; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 16px 24px; }

/* Cart Empty */
.cart-empty { text-align: center; padding: 48px 0; color: var(--text-muted); }
.cart-empty i { font-size: 2.5rem; margin-bottom: 12px; display: block; opacity: 0.3; }
.cart-empty p { margin-bottom: 16px; }

/* Cart Items */
.cart-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--border-light);
}
.cart-item-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.9rem;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 0.88rem; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-meta { font-size: 0.75rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-right { text-align: right; flex-shrink: 0; }
.cart-item-price { font-size: 0.9rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.cart-item-remove {
  background: none; border: none; color: var(--text-muted); cursor: pointer;
  font-size: 0.75rem; padding: 4px; transition: color 0.2s;
}
.cart-item-remove:hover { color: var(--danger); }

/* Cart Footer */
.cart-drawer-footer {
  padding: 20px 24px; border-top: 1px solid var(--border-light);
  background: var(--bg-section);
}
.cart-footer-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px; font-size: 0.95rem;
}
.cart-footer-total span { color: var(--text-secondary); font-weight: 600; }
.cart-footer-total strong { font-size: 1.3rem; color: var(--primary); font-weight: 800; }

/* Cart Toast */
.cart-toast {
  position: fixed; bottom: calc(24px + 76px + env(safe-area-inset-bottom, 0px)); left: 50%; transform: translateX(-50%) translateY(100px);
  background: #1e1b3a; color: #fff; padding: 14px 24px;
  border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2); z-index: 3000;
  display: flex; align-items: center; gap: 10px;
  transition: transform 0.3s ease; white-space: nowrap;
}
.cart-toast.show { transform: translateX(-50%) translateY(0); }
.cart-toast i { color: var(--success); }
.cart-toast a { color: var(--primary-light); font-weight: 600; margin-left: 8px; }

/* Link Modal (mini - for add to cart) */
.sd-mini-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(30,27,58,0.5); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 20px;
}
.sd-mini-overlay.active { display: flex; }
.sd-mini-modal {
  background: #fff; border-radius: var(--radius-lg);
  max-width: 440px; width: 100%; padding: 28px;
  box-shadow: 0 24px 80px rgba(30,27,58,0.2);
  animation: modalSlideIn 0.3s ease; position: relative;
}
.sd-mini-close {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-section); border: none;
  color: var(--text-muted); cursor: pointer; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
}
.sd-mini-close:hover { background: var(--danger); color: #fff; }
.sd-mini-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.sd-mini-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; flex-shrink: 0;
}
.sd-mini-header h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; }
.sd-mini-header p { font-size: 0.82rem; color: var(--text-muted); }

@media (max-width: 480px) {
  .cart-drawer { width: 100vw; }
  .cart-drawer-footer { padding-bottom: calc(20px + 76px + env(safe-area-inset-bottom, 0px)); }
}

/* === TRACK MODAL === */
.track-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(15,15,25,0.6); backdrop-filter: blur(10px);
  align-items: center; justify-content: center;
  padding: 16px;
}
@media (max-width: 900px) {
  .track-modal-overlay {
    padding: 0; align-items: stretch; justify-content: stretch;
  }
  .track-modal {
    max-width: 100% !important; width: 100% !important;
    border-radius: 0 !important; max-height: 100vh !important;
    height: 100%; padding-bottom: 76px;
    display: flex; flex-direction: column;
  }
  .track-modal-grid { flex: 1; display: flex; flex-direction: column; }
  .track-modal-form-side { flex: 1; display: flex; flex-direction: column; justify-content: center; }
  .track-modal-close {
    top: 12px; right: 12px;
    background: var(--bg-section); color: var(--text-muted);
    border: 1px solid var(--border-light);
  }
}
.track-modal-overlay.active { display: flex; }
.track-modal {
  background: #fff; border-radius: 20px;
  max-width: 900px; width: 100%; position: relative;
  box-shadow: 0 32px 100px rgba(30,27,58,0.25), 0 0 0 1px rgba(0,0,0,0.04);
  overflow: hidden; animation: authIn 0.35s cubic-bezier(0.16,1,0.3,1);
  max-height: 90vh;
}
.track-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
  color: #fff; border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.track-modal-close:hover { background: rgba(255,255,255,0.3); transform: rotate(90deg); }

.track-modal-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  min-height: 420px;
}

/* Form side */
.track-modal-form-side {
  padding: 44px 40px; display: flex; flex-direction: column; justify-content: center;
}
.track-modal-form-side h2 {
  font-size: 1.7rem; font-weight: 800; margin-bottom: 6px;
  letter-spacing: -0.5px; color: var(--text);
}
.track-subtitle { color: var(--text-muted); margin-bottom: 28px; font-size: 0.92rem; }
.track-modal-form-side .form-group input {
  width: 100%; padding: 14px 16px; background: var(--bg-soft);
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 1rem; color: var(--text); font-family: inherit;
  letter-spacing: 1px; font-weight: 600; transition: all 0.2s;
}
.track-modal-form-side .form-group input:focus {
  outline: none; border-color: var(--primary);
  background: #fff; box-shadow: 0 0 0 4px rgba(124,58,237,0.08);
}
.track-modal-form-side .form-group input::placeholder { letter-spacing: 0; font-weight: 400; color: #b8b5cc; }
.track-modal-form-side .btn { margin-top: 10px; border-radius: 10px !important; padding: 14px 24px !important; }

/* Visual side */
.track-modal-visual {
  background: linear-gradient(155deg, #1e1b3a 0%, #3b2580 40%, #7c3aed 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 48px 36px; position: relative; overflow: hidden;
}
.track-modal-visual::before {
  content: ''; position: absolute; top: -40%; right: -40%;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(147,51,234,0.3); filter: blur(60px);
}
.track-modal-visual::after {
  content: ''; position: absolute; bottom: -30%; left: -20%;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(59,130,246,0.2); filter: blur(60px);
}
.track-visual-content {
  position: relative; z-index: 1; text-align: center; color: #fff; max-width: 280px;
}
.track-visual-logo { margin: 0 auto 28px; }
.track-visual-logo img { height: 80px; width: auto; filter: brightness(0) invert(1); opacity: 0.95; }
.track-visual-content h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.3px; }
.track-visual-content > p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 32px; line-height: 1.6; }
.track-visual-features { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.track-visual-features div {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem; color: rgba(255,255,255,0.8);
  padding: 10px 14px; background: rgba(255,255,255,0.08);
  border-radius: 10px; border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
}
.track-visual-features i { color: #a78bfa; font-size: 0.85rem; width: 16px; text-align: center; }

/* Track Results */
.track-result-card {
  margin-top: 24px; background: var(--bg-section);
  border: 1px solid var(--border-light); border-radius: 12px;
  overflow: hidden;
}
.track-result-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; border-bottom: 1px solid var(--border-light);
}
.track-result-header strong { font-size: 1rem; }
.track-result-rows { padding: 4px 0; }
.track-r {
  display: flex; justify-content: space-between; padding: 10px 20px;
  font-size: 0.88rem;
}
.track-r span:first-child { color: var(--text-muted); }
.track-r span:last-child { font-weight: 600; max-width: 60%; text-align: right; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.track-result-progress { padding: 12px 20px 16px; }
.track-result-progress label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 6px; display: block; }
.track-result-empty {
  text-align: center; padding: 32px 16px; margin-top: 20px; color: var(--text-muted);
}
.track-result-empty i { font-size: 2rem; margin-bottom: 10px; display: block; opacity: 0.4; }

/* Track Responsive */
@media (max-width: 860px) {
  .track-modal { max-width: 420px; border-radius: 16px; overflow-y: auto; max-height: 88vh; }
  .track-modal-grid { grid-template-columns: 1fr; min-height: auto; }
  .track-modal-visual { display: none; }
  .track-modal-form-side { padding: 28px 24px; }
  .track-modal-form-side h2 { font-size: 1.4rem; }
  .track-modal-close {
    background: var(--bg-section); color: var(--text-muted);
    border: 1px solid var(--border-light);
  }
  .track-modal-close:hover { background: var(--danger); color: #fff; }
}

/* === AUTH MODAL (POPUP) === */
.auth-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(15,15,25,0.6); backdrop-filter: blur(10px);
  align-items: center; justify-content: center;
  padding: 16px;
}
.auth-modal-overlay.active { display: flex; }

.auth-modal {
  background: #fff; border-radius: 20px;
  max-width: 900px; width: 100%; position: relative;
  box-shadow: 0 32px 100px rgba(30,27,58,0.25), 0 0 0 1px rgba(0,0,0,0.04);
  overflow: hidden; animation: authIn 0.35s cubic-bezier(0.16,1,0.3,1);
  max-height: 90vh; overflow-y: auto;
}
.auth-modal-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
}
@keyframes authIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.auth-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
  color: #fff; border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: all 0.2s;
}
.auth-modal-close:hover { background: rgba(255,255,255,0.3); transform: rotate(90deg); }

/* Form Side */
.auth-modal-form {
  padding: 36px 36px; display: flex; flex-direction: column; justify-content: center;
  overflow-y: auto; max-height: 92vh;
}
.auth-modal-form h2 {
  font-size: 1.7rem; font-weight: 800; margin-bottom: 6px;
  letter-spacing: -0.5px; color: var(--text);
}
.auth-subtitle { color: var(--text-muted); margin-bottom: 28px; font-size: 0.92rem; }

.auth-modal-form .form-group { margin-bottom: 16px; }
.auth-modal-form .form-group label {
  font-size: 0.82rem; font-weight: 600; color: var(--text-secondary);
  margin-bottom: 7px; display: flex; align-items: center; gap: 6px;
}
.auth-modal-form .form-group label i { font-size: 0.78rem; color: var(--primary); }
.auth-modal-form .form-group input {
  width: 100%; padding: 14px 16px; background: var(--bg-soft);
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 0.92rem; color: var(--text); transition: all 0.2s; font-family: inherit;
}
.auth-modal-form .form-group input:focus {
  outline: none; border-color: var(--primary);
  background: #fff; box-shadow: 0 0 0 4px rgba(124,58,237,0.08);
}
.auth-modal-form .form-group input::placeholder { color: #b8b5cc; }
.auth-modal-form .btn {
  margin-top: 18px; border-radius: 10px !important;
  padding: 14px 24px !important; font-size: 0.95rem !important;
}
.auth-switch {
  text-align: center; margin-top: 24px;
  font-size: 0.88rem; color: var(--text-muted);
  padding-top: 16px; border-top: 1px solid var(--border-light);
}
.auth-switch a { color: var(--primary); font-weight: 700; }
.auth-switch a:hover { text-decoration: underline; }

/* Reset progress bar */
.reset-progress {
  height: 4px; background: var(--border-light); border-radius: 4px;
  margin-bottom: 16px; overflow: hidden;
}
.reset-progress-fill {
  height: 100%; background: linear-gradient(90deg, var(--primary), #10b981);
  border-radius: 4px; width: 0%; transition: width 1s ease;
}

/* Auth consent checkboxes */
.auth-consent { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.consent-check {
  display: flex; align-items: flex-start; gap: 8px; cursor: pointer;
  font-size: 0.75rem; color: var(--text-muted); line-height: 1.5;
}
.consent-check input[type="checkbox"] {
  width: 16px; height: 16px; margin-top: 1px; flex-shrink: 0;
  accent-color: var(--primary); cursor: pointer;
}
.consent-check a { color: var(--primary); font-weight: 600; }

/* Visual Side */
.auth-modal-visual {
  background: linear-gradient(155deg, #1e1b3a 0%, #3b2580 40%, #7c3aed 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 48px 36px; position: relative; overflow: hidden;
}
.auth-modal-visual::before {
  content: ''; position: absolute; top: -40%; right: -40%;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(147,51,234,0.3); filter: blur(60px);
}
.auth-modal-visual::after {
  content: ''; position: absolute; bottom: -30%; left: -20%;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(244,63,94,0.2); filter: blur(60px);
}
.auth-visual-content {
  position: relative; z-index: 1; text-align: center; color: #fff;
  max-width: 280px;
}
.auth-visual-logo { margin: 0 auto 28px; text-align: center; }
.auth-visual-logo img {
  height: 140px; width: auto; filter: brightness(0) invert(1); opacity: 0.95;
}
.auth-visual-content h3 {
  font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.3px;
}
.auth-visual-content > p {
  color: var(--text-muted); font-size: 0.92rem; margin-bottom: 32px; line-height: 1.6;
}
.auth-visual-features {
  display: flex; flex-direction: column; gap: 14px; text-align: left;
}
.auth-visual-features div {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem; color: rgba(255,255,255,0.8);
  padding: 10px 14px; background: rgba(255,255,255,0.08);
  border-radius: 10px; border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
}
.auth-visual-features i {
  color: #a78bfa; font-size: 0.85rem; width: 16px; text-align: center;
}



/* === SEO CONTENT SECTION === */
.seo-content-section {
  padding: 60px 0 20px;
  background: var(--bg-soft);
}
.seo-content-wrapper {
  position: relative;
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.seo-content-wrapper.expanded {
  max-height: none;
  overflow: visible;
}
.seo-content-wrapper:not(.expanded)::after {
  content: '';
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  height: 100px;
  margin-top: -100px;
  background: linear-gradient(to bottom, transparent, var(--bg-soft));
  pointer-events: none;
}
.seo-content-inner {
  padding: 0 0 20px;
}
.seo-content-inner h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 36px 0 16px;
  line-height: 1.3;
}
.seo-content-inner h2:first-child {
  margin-top: 0;
}
.seo-content-inner h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin: 28px 0 12px;
  line-height: 1.4;
}
.seo-content-inner p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.seo-content-inner strong {
  color: var(--text);
  font-weight: 600;
}
.seo-content-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.seo-content-toggle:hover {
  background: var(--primary-bg);
  border-color: var(--primary-light);
}
.seo-content-toggle i {
  font-size: 0.75rem;
  transition: transform 0.3s;
}
