/* ============================================================
   CAMPUSLINK — MAIN STYLESHEET
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #0b3d91;
  --primary-dark: #082d6a;
  --primary-light: #1e5bb8;
  --accent: #1ea952;
  --accent-dark: #167a3d;
  --amber: #f59e0b;
  --whatsapp: #25d366;
  --danger: #ef4444;
  --bg: #f8f9fa;
  --card: #ffffff;
  --text: #1f2937;
  --text-muted: #6b7280;
  --text-secondary: #555;
  --divider: #e9ecef;
  --border: #d1d5db;
  --shadow-soft: 0 4px 15px rgba(0,0,0,0.05);
  --shadow-hover: 0 8px 20px rgba(11,61,145,0.15);
  --shadow-card: 0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --hero-gradient: linear-gradient(135deg, #0b3d91 0%, #1e5bb8 60%, #1a4fa8 100%);
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.4s cubic-bezier(0.4,0,0.2,1);
  --container: 1200px;
  --header-h: 68px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: var(--font-body); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: 1.15rem; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; font-family: var(--font-head); font-size: 0.875rem; font-weight: 600; border-radius: var(--radius-pill); border: 2px solid transparent; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.btn i, .btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 4px 14px rgba(11,61,145,0.35); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-accent { background: var(--accent); color: white; box-shadow: 0 4px 14px rgba(30,169,82,0.35); }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-white { background: white; color: var(--primary); box-shadow: 0 4px 14px rgba(0,0,0,0.15); }
.btn-white:hover { background: #f0f4ff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: white; border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; transform: translateY(-2px); }
.btn-whatsapp { background: var(--whatsapp); color: white; box-shadow: 0 4px 14px rgba(37,211,102,0.35); }
.btn-whatsapp:hover { background: #1da951; transform: translateY(-2px); }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }
.btn-lg { padding: 15px 32px; font-size: 1rem; }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--header-h); background: transparent; transition: background var(--transition), box-shadow var(--transition); }
.site-header.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(16px); box-shadow: 0 1px 0 var(--divider), var(--shadow-soft); }
.header-inner { display: flex; align-items: center; gap: 16px; height: 100%; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-text { font-family: var(--font-head); font-size: 1.2rem; font-weight: 400; color: white; transition: color var(--transition); }
.logo-text strong { font-weight: 800; }
.site-header.scrolled .logo-text { color: var(--primary); }
.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link { padding: 8px 12px; font-family: var(--font-head); font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.88); border-radius: 8px; transition: var(--transition); display: flex; align-items: center; gap: 4px; }
.nav-link:hover, .nav-link.active { color: white; background: rgba(255,255,255,0.1); }
.site-header.scrolled .nav-link { color: var(--text-secondary); }
.site-header.scrolled .nav-link:hover, .site-header.scrolled .nav-link.active { color: var(--primary); background: rgba(11,61,145,0.06); }
.nav-icon { width: 14px; height: 14px; }
.nav-cta-outline { border: 1.5px solid rgba(255,255,255,0.45); border-radius: var(--radius-pill); }
.site-header.scrolled .nav-cta-outline { border-color: var(--primary); color: var(--primary); }
.nav-cta { background: var(--accent); color: white !important; border-radius: var(--radius-pill); padding: 8px 18px; }
.nav-cta:hover { background: var(--accent-dark) !important; }

.nav-dropdown { position: relative; }
.dropdown-menu { position: absolute; top: calc(100% + 8px); left: 0; min-width: 200px; background: white; border-radius: var(--radius); box-shadow: 0 8px 32px rgba(0,0,0,0.12); border: 1px solid var(--divider); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: var(--transition); z-index: 100; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 9px 14px; font-size: 0.875rem; color: var(--text); border-radius: 8px; transition: var(--transition); }
.dropdown-menu a:hover { background: rgba(11,61,145,0.06); color: var(--primary); }

.header-school-logo { margin-left: 12px; flex-shrink: 0; }
.header-school-logo img { width: 38px; height: 38px; object-fit: contain; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: white; padding: 6px; margin-left: auto; }
.site-header.scrolled .nav-toggle { color: var(--text); }
.nav-toggle svg { width: 22px; height: 22px; }

.hero { min-height: 100svh; background: var(--hero-gradient); display: flex; align-items: center; position: relative; overflow: hidden; padding-top: var(--header-h); }
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.04); }
.shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.shape-2 { width: 400px; height: 400px; bottom: -150px; left: -100px; }
.shape-3 { width: 200px; height: 200px; top: 50%; left: 40%; background: rgba(30,169,82,0.12); }
.hero-content { position: relative; z-index: 2; padding: 80px 20px 100px; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); color: white; font-size: 0.8rem; font-weight: 600; padding: 8px 16px; border-radius: var(--radius-pill); margin-bottom: 28px; font-family: var(--font-head); }
.hero-badge svg { width: 14px; height: 14px; color: #4ade80; }
.hero-headline { color: white; font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 800; line-height: 1.15; margin-bottom: 24px; letter-spacing: -0.02em; }
.hero-headline em { font-style: normal; color: #86efac; }
.hero-sub { color: rgba(255,255,255,0.8); font-size: clamp(1rem, 2vw, 1.15rem); max-width: 600px; margin: 0 auto 40px; line-height: 1.7; }

.hero-search { margin-bottom: 32px; }
.search-wrap { display: flex; align-items: center; background: white; border-radius: var(--radius-pill); box-shadow: 0 8px 32px rgba(0,0,0,0.2); max-width: 680px; margin: 0 auto; overflow: hidden; height: 60px; }
.search-category { display: flex; align-items: center; gap: 8px; padding: 0 16px; flex-shrink: 0; }
.search-category svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.search-category select { border: none; outline: none; background: none; font-size: 0.875rem; font-weight: 500; color: var(--text); cursor: pointer; max-width: 160px; font-family: var(--font-body); }
.search-divider { width: 1px; height: 28px; background: var(--divider); flex-shrink: 0; }
.search-input-wrap { display: flex; align-items: center; gap: 10px; flex: 1; padding: 0 16px; }
.search-input-wrap svg { width: 16px; height: 16px; color: var(--text-muted); flex-shrink: 0; }
.search-input-wrap input { border: none; outline: none; flex: 1; font-size: 0.9rem; color: var(--text); background: none; }
.search-input-wrap input::placeholder { color: var(--text-muted); }
.search-btn { display: flex; align-items: center; gap: 8px; background: var(--primary); color: white; border: none; cursor: pointer; padding: 0 24px; height: 100%; font-family: var(--font-head); font-size: 0.875rem; font-weight: 600; transition: background var(--transition); flex-shrink: 0; }
.search-btn:hover { background: var(--primary-dark); }
.search-btn svg { width: 16px; height: 16px; }

@media (max-width: 768px) {
  .search-wrap { max-width: 100%; height: auto; flex-direction: column; gap: 12px; padding: 20px; }
  .search-category { padding: 0; max-width: none; }
  .search-divider { display: none; }
  .search-input-wrap { padding: 0; }
  .search-btn { width: 100%; justify-content: center; }
  .categories-grid { grid-template-columns: 1fr; }
  .vendors-grid { grid-template-columns: 1fr; }
}

.hero-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.trust-pill { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.75); font-size: 0.8rem; font-weight: 500; }
.trust-pill svg { width: 14px; height: 14px; color: #86efac; }

.hero-scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; animation: bounce 2s ease-in-out infinite; }
.scroll-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.4); box-shadow: 0 12px 0 rgba(255,255,255,0.3), 0 24px 0 rgba(255,255,255,0.15); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-8px)} }

.stats-strip { background: white; border-bottom: 1px solid var(--divider); padding: 28px 0; box-shadow: var(--shadow-soft); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.stat-item > svg { width: 22px; height: 22px; color: var(--primary); margin-bottom: 4px; }
.stat-val { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

.section { padding: 88px 0; }

.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 40px; }
.cat-card { background: white; border: 1px solid var(--divider); border-radius: var(--radius-lg); padding: 24px; text-align: center; transition: all var(--transition); cursor: pointer; text-decoration: none; color: inherit; }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(11,61,145,0.2); }
.cat-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(11,61,145,0.08); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; transition: background var(--transition); }
.cat-card:hover .cat-icon { background: var(--primary); }
.cat-icon svg { width: 24px; height: 24px; color: var(--primary); transition: color var(--transition); }
.cat-card:hover .cat-icon svg { color: white; }
.cat-name { font-family: var(--font-head); font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.cat-count { font-size: 0.8rem; color: var(--text-muted); }

.vendors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-top: 40px; }
.vendor-card { background: white; border: 1px solid var(--divider); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); text-decoration: none; color: inherit; }
.vendor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(11,61,145,0.2); }
.vendor-card-img { position: relative; height: 180px; overflow: hidden; }
.vendor-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.vendor-card:hover .vendor-card-img img { transform: scale(1.05); }
.vendor-badge { position: absolute; top: 12px; left: 12px; background: var(--accent); color: white; font-size: 0.7rem; font-weight: 600; padding: 4px 8px; border-radius: 6px; }
.plan-badge-featured { position: absolute; top: 12px; right: 12px; background: var(--amber); color: white; font-size: 0.7rem; font-weight: 600; padding: 4px 8px; border-radius: 6px; }
.vendor-logo { position: absolute; bottom: 12px; right: 12px; width: 40px; height: 40px; border-radius: 8px; overflow: hidden; border: 2px solid white; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.vendor-logo img { width: 100%; height: 100%; object-fit: cover; }
.vendor-card-body { padding: 20px; }
.vendor-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.vendor-name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.vendor-cat { font-size: 0.8rem; color: var(--text-muted); }
.vendor-rating { text-align: right; }
.stars { color: var(--amber); font-size: 1rem; }
.rating-val { font-size: 0.9rem; color: var(--text); font-weight: 500; margin-left: 4px; }
.vendor-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.vendor-meta { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.vendor-meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--text-muted); }
.vendor-meta-item svg { width: 14px; height: 14px; }
.vendor-actions { display: flex; gap: 8px; }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; border-radius: 6px; font-weight: 500; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: all var(--transition); }
.btn-call { background: var(--success); color: white; }
.btn-call:hover { background: var(--success-dark); }
.btn-whatsapp { background: #25d366; color: white; }
.btn-whatsapp:hover { background: #1da851; }
.btn-outline { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow { display: inline-block; font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-title { margin-bottom: 16px; color: var(--text); }
.section-desc { color: var(--text-muted); max-width: 540px; margin: 0 auto; font-size: 1.05rem; }
.section-cta { text-align: center; margin-top: 48px; }

.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
.cat-card { background: white; border-radius: var(--radius-lg); padding: 28px 16px 22px; text-align: center; box-shadow: var(--shadow-card); cursor: pointer; transition: var(--transition); border: 1px solid var(--divider); position: relative; overflow: hidden; }
.cat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--primary); transform: scaleX(0); transition: transform var(--transition); transform-origin: left; }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(11,61,145,0.15); }
.cat-card:hover::before { transform: scaleX(1); }
.cat-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(11,61,145,0.08); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; transition: var(--transition); }
.cat-card:hover .cat-icon { background: var(--primary); }
.cat-icon svg { width: 24px; height: 24px; color: var(--primary); transition: var(--transition); }
.cat-card:hover .cat-icon svg { color: white; }
.cat-name { font-family: var(--font-head); font-size: 0.875rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.cat-count { font-size: 0.75rem; color: var(--text-muted); }

.vendors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.vendor-card { background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); border: 1px solid var(--divider); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
.vendor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.vendor-card-img { height: 160px; overflow: hidden; position: relative; background: linear-gradient(135deg,#e8f0ff,#dbeafe); }
.vendor-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.vendor-card:hover .vendor-card-img img { transform: scale(1.05); }
.vendor-badge { position: absolute; top: 12px; left: 12px; background: var(--accent); color: white; font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-pill); display: flex; align-items: center; gap: 4px; font-family: var(--font-head); }
.vendor-badge svg { width: 11px; height: 11px; }
.plan-badge-featured { position: absolute; top: 12px; right: 12px; background: var(--amber); color: white; font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-pill); font-family: var(--font-head); }
.vendor-logo { position: absolute; bottom: -20px; left: 16px; width: 48px; height: 48px; border-radius: 12px; background: white; border: 2px solid white; box-shadow: var(--shadow-soft); overflow: hidden; }
.vendor-logo img { width: 100%; height: 100%; object-fit: cover; }
.vendor-card-body { padding: 28px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.vendor-card-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 8px; }
.vendor-name { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--text); }
.vendor-cat { font-size: 0.75rem; color: var(--primary); font-weight: 600; background: rgba(11,61,145,0.08); padding: 2px 8px; border-radius: var(--radius-pill); margin-top: 4px; display: inline-block; }
.vendor-rating { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.stars { color: var(--amber); font-size: 0.8rem; }
.rating-val { font-size: 0.8rem; font-weight: 700; color: var(--text); }
.vendor-desc { font-size: 0.86rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 12px; flex: 1; }
.vendor-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.vendor-meta-item { display: flex; align-items: center; gap: 4px; font-size: 0.76rem; color: var(--text-muted); }
.vendor-meta-item svg { width: 13px; height: 13px; }
.vendor-actions { display: flex; gap: 8px; }
.vendor-actions .btn { flex: 1; justify-content: center; }
.btn-call { background: var(--primary); color: white; }
.btn-call:hover { background: var(--primary-dark); transform: translateY(-2px); }

.how-section { background: white; }
.steps-row { display: flex; align-items: flex-start; gap: 0; overflow-x: auto; padding-bottom: 8px; }
.step-card { flex: 1; min-width: 180px; background: var(--bg); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; border: 1px solid var(--divider); position: relative; transition: var(--transition); }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.step-number { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: rgba(11,61,145,0.08); position: absolute; top: 16px; right: 16px; line-height: 1; }
.step-icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(11,61,145,0.08); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; transition: var(--transition); }
.step-card:hover .step-icon { background: var(--primary); }
.step-icon svg { width: 26px; height: 26px; color: var(--primary); transition: color var(--transition); }
.step-card:hover .step-icon svg { color: white; }
.step-card h3 { font-size: 0.95rem; margin-bottom: 10px; }
.step-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; }
.step-connector { display: flex; align-items: center; justify-content: center; padding: 0 12px; color: var(--divider); flex-shrink: 0; margin-top: 40px; }
.step-connector svg { width: 18px; height: 18px; }

.disclaimer-box { display: flex; align-items: flex-start; gap: 14px; background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.25); border-radius: var(--radius); padding: 18px 20px; margin-top: 48px; }
.disclaimer-box svg { width: 18px; height: 18px; color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.disclaimer-box p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

.trust-section { background: var(--bg); }
.trust-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.trust-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.trust-feat { display: flex; align-items: flex-start; gap: 16px; }
.feat-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(11,61,145,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feat-icon svg { width: 20px; height: 20px; color: var(--primary); }
.trust-feat h4 { font-family: var(--font-head); font-size: 0.95rem; margin-bottom: 4px; }
.trust-feat p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.55; }

.trust-visual { position: relative; height: 360px; }
.trust-card-stack { position: relative; width: 100%; height: 100%; }
.tcard { position: absolute; background: white; border-radius: var(--radius-lg); box-shadow: 0 8px 32px rgba(0,0,0,0.1); border: 1px solid var(--divider); transition: transform var(--transition-slow); }
.tcard-main { width: 280px; padding: 20px; top: 0; left: 0; display: flex; align-items: center; gap: 14px; z-index: 3; }
.tcard-main:hover { transform: rotate(-2deg) translateY(-4px); }
.tcard-main .tcard-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(30,169,82,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tcard-main .tcard-icon svg { width: 22px; height: 22px; color: var(--accent); }
.tcard-main strong { display: block; font-family: var(--font-head); font-size: 0.95rem; margin-bottom: 4px; }
.tcard-main span { font-size: 0.78rem; color: var(--text-muted); }
.tcard-review { width: 260px; padding: 20px; top: 100px; right: 0; z-index: 2; }
.tcard-review:hover { transform: rotate(2deg) translateY(-4px); }
.tcard-stars { color: var(--amber); font-size: 1rem; margin-bottom: 8px; }
.tcard-review p { font-size: 0.84rem; color: var(--text); font-style: italic; line-height: 1.5; margin-bottom: 10px; }
.tcard-user { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }
.tcard-badge { width: 120px; padding: 16px; bottom: 20px; left: 60px; z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; background: linear-gradient(135deg, #0b3d91, #1e5bb8); }
.tcard-badge:hover { transform: translateY(-4px); }
.tcard-badge svg { width: 20px; height: 20px; color: var(--amber); }
.tcard-badge strong { font-family: var(--font-head); font-size: 0.9rem; color: white; }
.tcard-badge span { font-size: 0.72rem; color: rgba(255,255,255,0.7); }

.vendor-cta-section { background: white; }
.vendor-cta-card { background: var(--hero-gradient); border-radius: var(--radius-xl); padding: 64px; color: white; position:/ *   G l a s s m o r p h i s m   2 . 0   * / 
 . g l a s s   {   b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 1 ) ;   b a c k d r o p - f i l t e r :   b l u r ( 1 6 p x ) ;   b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 2 ) ;   } 
 . g l a s s - d a r k   {   b a c k g r o u n d :   r g b a ( 0 , 0 , 0 , 0 . 1 ) ;   b a c k d r o p - f i l t e r :   b l u r ( 1 6 p x ) ;   b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 1 ) ;   } 
 . g l a s s - c a r d   {   b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 9 5 ) ;   b a c k d r o p - f i l t e r :   b l u r ( 2 0 p x ) ;   b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 3 ) ;   b o x - s h a d o w :   0   8 p x   3 2 p x   r g b a ( 0 , 0 , 0 , 0 . 1 ) ;   } 
 
 / *   A n i m a t i o n   K e y f r a m e s   * / 
 @ k e y f r a m e s   f a d e I n U p   {   f r o m   {   o p a c i t y :   0 ;   t r a n s f o r m :   t r a n s l a t e Y ( 3 0 p x ) ;   }   t o   {   o p a c i t y :   1 ;   t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;   }   } 
 @ k e y f r a m e s   f a d e I n L e f t   {   f r o m   {   o p a c i t y :   0 ;   t r a n s f o r m :   t r a n s l a t e X ( - 3 0 p x ) ;   }   t o   {   o p a c i t y :   1 ;   t r a n s f o r m :   t r a n s l a t e X ( 0 ) ;   }   } 
 @ k e y f r a m e s   f a d e I n R i g h t   {   f r o m   {   o p a c i t y :   0 ;   t r a n s f o r m :   t r a n s l a t e X ( 3 0 p x ) ;   }   t o   {   o p a c i t y :   1 ;   t r a n s f o r m :   t r a n s l a t e X ( 0 ) ;   }   } 
 @ k e y f r a m e s   s c a l e I n   {   f r o m   {   o p a c i t y :   0 ;   t r a n s f o r m :   s c a l e ( 0 . 9 ) ;   }   t o   {   o p a c i t y :   1 ;   t r a n s f o r m :   s c a l e ( 1 ) ;   }   } 
 @ k e y f r a m e s   p a r a l l a x   {   t r a n s f o r m :   t r a n s l a t e Y ( v a r ( - - p a r a l l a x - y ) ) ;   } 
 
 / *   R e v e a l   A n i m a t i o n s   * / 
 . r e v e a l   {   o p a c i t y :   0 ;   t r a n s f o r m :   t r a n s l a t e Y ( 3 0 p x ) ;   t r a n s i t i o n :   o p a c i t y   0 . 6 s   e a s e ,   t r a n s f o r m   0 . 6 s   e a s e ;   } 
 . r e v e a l . v i s i b l e   {   o p a c i t y :   1 ;   t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;   } 
 . r e v e a l - l e f t   {   t r a n s f o r m :   t r a n s l a t e X ( - 3 0 p x ) ;   } 
 . r e v e a l - l e f t . v i s i b l e   {   t r a n s f o r m :   t r a n s l a t e X ( 0 ) ;   } 
 . r e v e a l - r i g h t   {   t r a n s f o r m :   t r a n s l a t e X ( 3 0 p x ) ;   } 
 . r e v e a l - r i g h t . v i s i b l e   {   t r a n s f o r m :   t r a n s l a t e X ( 0 ) ;   } 
 . r e v e a l - s c a l e   {   t r a n s f o r m :   s c a l e ( 0 . 9 ) ;   } 
 . r e v e a l - s c a l e . v i s i b l e   {   t r a n s f o r m :   s c a l e ( 1 ) ;   } 
 
 / *   S t a g g e r e d   a n i m a t i o n s   * / 
 . s t a g g e r - 1   {   a n i m a t i o n - d e l a y :   0 . 1 s ;   } 
 . s t a g g e r - 2   {   a n i m a t i o n - d e l a y :   0 . 2 s ;   } 
 . s t a g g e r - 3   {   a n i m a t i o n - d e l a y :   0 . 3 s ;   } 
 . s t a g g e r - 4   {   a n i m a t i o n - d e l a y :   0 . 4 s ;   } 
 . s t a g g e r - 5   {   a n i m a t i o n - d e l a y :   0 . 5 s ;   } 
 
 / *   P a r a l l a x   e l e m e n t s   * / 
 . p a r a l l a x   {   w i l l - c h a n g e :   t r a n s f o r m ;   } 
 . p a r a l l a x - b g   {   p o s i t i o n :   r e l a t i v e ;   o v e r f l o w :   h i d d e n ;   } 
 . p a r a l l a x - b g : : b e f o r e   {   c o n t e n t :   ' ' ;   p o s i t i o n :   a b s o l u t e ;   t o p :   0 ;   l e f t :   0 ;   r i g h t :   0 ;   b o t t o m :   0 ;   b a c k g r o u n d - s i z e :   c o v e r ;   b a c k g r o u n d - p o s i t i o n :   c e n t e r ;   b a c k g r o u n d - a t t a c h m e n t :   f i x e d ;   t r a n s f o r m :   t r a n s l a t e Z ( 0 ) ;   } 
 
 / *   I n t e r a c t i v e   i m a g e s   * / 
 . i m g - i n t e r a c t i v e   {   t r a n s i t i o n :   t r a n s f o r m   0 . 5 s   e a s e ;   } 
 . i m g - i n t e r a c t i v e : h o v e r   {   t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ;   } 
 
 / *   M i c r o - i n t e r a c t i o n s   * / 
 . b t n : h o v e r   {   t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ;   } 
 . c a r d - h o v e r   {   t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ,   b o x - s h a d o w   0 . 3 s   e a s e ;   } 
 . c a r d - h o v e r : h o v e r   {   t r a n s f o r m :   t r a n s l a t e Y ( - 8 p x ) ;   b o x - s h a d o w :   0   2 0 p x   4 0 p x   r g b a ( 0 , 0 , 0 , 0 . 1 5 ) ;   } 
 
 / *   T y p o g r a p h y   e n h a n c e m e n t s   * / 
 . t e x t - g r a d i e n t   {   b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   v a r ( - - p r i m a r y ) ,   v a r ( - - a c c e n t ) ) ;   - w e b k i t - b a c k g r o u n d - c l i p :   t e x t ;   - w e b k i t - t e x t - f i l l - c o l o r :   t r a n s p a r e n t ;   b a c k g r o u n d - c l i p :   t e x t ;   } 
 . t e x t - s h a d o w   {   t e x t - s h a d o w :   0   2 p x   4 p x   r g b a ( 0 , 0 , 0 , 0 . 1 ) ;   } 
 
 / *   O r g a n i c   l a y o u t s   * / 
 . o r g a n i c - g r i d   {   d i s p l a y :   g r i d ;   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 3 0 0 p x ,   1 f r ) ) ;   g a p :   2 r e m ;   } 
 . o r g a n i c - c a r d   {   b o r d e r - r a d i u s :   2 0 p x   4 0 p x   2 0 p x   4 0 p x ;   o v e r f l o w :   h i d d e n ;   } 
 
 / *   D e p t h   a n d   l a y e r i n g   * / 
 . l a y e r e d   {   p o s i t i o n :   r e l a t i v e ;   z - i n d e x :   1 ;   } 
 . l a y e r e d : : b e f o r e   {   c o n t e n t :   ' ' ;   p o s i t i o n :   a b s o l u t e ;   t o p :   - 1 0 p x ;   l e f t :   - 1 0 p x ;   r i g h t :   - 1 0 p x ;   b o t t o m :   - 1 0 p x ;   b a c k g r o u n d :   r g b a ( 0 , 0 , 0 , 0 . 0 5 ) ;   b o r d e r - r a d i u s :   i n h e r i t ;   z - i n d e x :   - 1 ;   } 
 
 / *   A s y m m e t r i c a l   e l e m e n t s   * / 
 . a s y m - l e f t   {   m a r g i n - l e f t :   - 2 0 p x ;   p a d d i n g - l e f t :   4 0 p x ;   } 
 . a s y m - r i g h t   {   m a r g i n - r i g h t :   - 2 0 p x ;   p a d d i n g - r i g h t :   4 0 p x ;   } 
 
 / *   B r e a t h i n g   s p a c e   * / 
 . b r e a t h   {   m a r g i n :   4 r e m   0 ;   } 
 
 / *   E d i t o r i a l   i m a g e s   * / 
 . e d i t o r i a l - i m g   {   p o s i t i o n :   r e l a t i v e ;   o v e r f l o w :   h i d d e n ;   b o r d e r - r a d i u s :   1 6 p x ;   } 
 . e d i t o r i a l - i m g   i m g   {   t r a n s i t i o n :   t r a n s f o r m   0 . 6 s   e a s e ;   } 
 . e d i t o r i a l - i m g : h o v e r   i m g   {   t r a n s f o r m :   s c a l e ( 1 . 1 ) ;   } 
 . e d i t o r i a l - i m g : : a f t e r   {   c o n t e n t :   ' ' ;   p o s i t i o n :   a b s o l u t e ;   t o p :   0 ;   l e f t :   0 ;   r i g h t :   0 ;   b o t t o m :   0 ;   b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 4 5 d e g ,   r g b a ( 0 , 0 , 0 , 0 )   0 % ,   r g b a ( 0 , 0 , 0 , 0 . 1 )   1 0 0 % ) ;   o p a c i t y :   0 ;   t r a n s i t i o n :   o p a c i t y   0 . 3 s   e a s e ;   } 
 . e d i t o r i a l - i m g : h o v e r : : a f t e r   {   o p a c i t y :   1 ;   } 
 
 / *   F o o t e r   s t y l e s   * / 
 . s i t e - f o o t e r   {   b a c k g r o u n d :   v a r ( - - t e x t ) ;   c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 8 ) ;   p a d d i n g :   4 8 p x   0   2 4 p x ;   } 
 . f o o t e r - l a y o u t   {   d i s p l a y :   g r i d ;   g r i d - t e m p l a t e - c o l u m n s :   2 f r   1 f r   1 f r   1 f r ;   g a p :   4 8 p x ;   m a r g i n - b o t t o m :   3 2 p x ;   } 
 . f o o t e r - b r a n d   {   } 
 . f o o t e r - l o g o   {   f o n t - f a m i l y :   v a r ( - - f o n t - h e a d ) ;   f o n t - s i z e :   1 . 5 r e m ;   f o n t - w e i g h t :   8 0 0 ;   c o l o r :   w h i t e ;   m a r g i n - b o t t o m :   1 6 p x ;   } 
 . f o o t e r - d e s c   {   f o n t - s i z e :   0 . 9 r e m ;   l i n e - h e i g h t :   1 . 6 ;   o p a c i t y :   0 . 8 ;   m a r g i n - b o t t o m :   2 0 p x ;   } 
 . f o o t e r - s o c i a l   {   d i s p l a y :   f l e x ;   g a p :   1 2 p x ;   } 
 . f o o t e r - s o c i a l   a   {   w i d t h :   4 0 p x ;   h e i g h t :   4 0 p x ;   b o r d e r - r a d i u s :   5 0 % ;   b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 1 ) ;   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   j u s t i f y - c o n t e n t :   c e n t e r ;   t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ;   } 
 . f o o t e r - s o c i a l   a : h o v e r   {   b a c k g r o u n d :   v a r ( - - p r i m a r y ) ;   t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ;   } 
 . f o o t e r - s o c i a l   s v g   {   w i d t h :   1 8 p x ;   h e i g h t :   1 8 p x ;   c o l o r :   w h i t e ;   } 
 . f o o t e r - l i n k s   h 4   {   f o n t - f a m i l y :   v a r ( - - f o n t - h e a d ) ;   f o n t - s i z e :   1 r e m ;   f o n t - w e i g h t :   6 0 0 ;   c o l o r :   w h i t e ;   m a r g i n - b o t t o m :   1 6 p x ;   } 
 . f o o t e r - l i n k s   a   {   d i s p l a y :   b l o c k ;   f o n t - s i z e :   0 . 8 7 5 r e m ;   c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 7 ) ;   m a r g i n - b o t t o m :   8 p x ;   t r a n s i t i o n :   c o l o r   v a r ( - - t r a n s i t i o n ) ;   } 
 . f o o t e r - l i n k s   a : h o v e r   {   c o l o r :   w h i t e ;   } 
 . f o o t e r - b o t t o m   {   b o r d e r - t o p :   1 p x   s o l i d   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 1 ) ;   p a d d i n g - t o p :   2 4 p x ;   t e x t - a l i g n :   c e n t e r ;   f o n t - s i z e :   0 . 8 r e m ;   o p a c i t y :   0 . 6 ;   } 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
     . f o o t e r - l a y o u t   {   g r i d - t e m p l a t e - c o l u m n s :   1 f r ;   g a p :   3 2 p x ;   } 
     . v e n d o r - c t a - c a r d   {   p a d d i n g :   4 0 p x   2 4 p x ;   t e x t - a l i g n :   c e n t e r ;   } 
     . v e n d o r - c t a - c a r d   h 2   {   f o n t - s i z e :   2 r e m ;   } 
     . o r g a n i c - g r i d   {   g r i d - t e m p l a t e - c o l u m n s :   1 f r ;   } 
     . a s y m - l e f t ,   . a s y m - r i g h t   {   m a r g i n :   0 ;   p a d d i n g :   0 ;   } 
 }  
 