/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--white); color: var(--near-black); font-size: 15px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --blue:        #5B6CF5;
  --blue-light:  #e8eafd;
  --blue-mid:    #8f9af8;
  --blue-dim:    rgba(91,108,245,0.08);
  --near-black:  #1A1B1E;
  --white:       #FFFFFF;
  --off-white:   #F5F3EE;
  --gray-border: #E2E0DB;
  --gray-text:   #6B6860;
  --gray-subtle: #9B9890;
  --green:       #2E8B57;
  --green-light: #EAF5EE;
  --amber:       #D97706;
  --amber-light: #FEF3C7;
  --red:         #E8534A;
  --red-light:   #FEF0EF;
  --font:        'Montserrat', sans-serif;
  --mono:        'JetBrains Mono', monospace;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --shadow-card: 0 1px 3px rgba(26,27,30,0.06), 0 4px 16px rgba(26,27,30,0.04);
  --shadow-hover:0 4px 24px rgba(91,108,245,0.14), 0 1px 4px rgba(26,27,30,0.08);
  --transition:  0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ── LAYOUT ────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* ── ANNOUNCEMENT ──────────────────────────────────────────── */
.announcement { background: var(--blue); color: var(--white); text-align: center; padding: 10px 32px; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.announcement a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

/* ── NAV ───────────────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--gray-border); }
.nav-inner { max-width: 1160px; margin: 0 auto; padding: 0 32px; height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-wordmark { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; color: var(--near-black); }
.nav-wordmark span { color: var(--blue); font-weight: 300; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-text); transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-account { font-family: var(--font); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 10px 20px; border-radius: var(--radius-sm); border: 1.5px solid var(--blue); background: transparent; color: var(--blue); cursor: pointer; transition: background var(--transition), color var(--transition); }
.nav-account:hover { background: var(--blue); color: var(--white); }
.nav-cart { position: relative; display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--gray-border); border-radius: var(--radius-sm); cursor: pointer; transition: border-color var(--transition), background var(--transition); color: var(--near-black); }
.nav-cart:hover { border-color: var(--blue); background: var(--blue-light); color: var(--blue); }
.cart-badge { position: absolute; top: -6px; right: -6px; width: 18px; height: 18px; background: var(--blue); color: var(--white); border-radius: 50%; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }

/* ── BREADCRUMB ────────────────────────────────────────────── */
.breadcrumb { padding: 16px 0; border-bottom: 1px solid var(--gray-border); background: var(--off-white); }
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gray-subtle); }
.breadcrumb-inner a { color: var(--gray-subtle); transition: color var(--transition); }
.breadcrumb-inner a:hover { color: var(--blue); }
.breadcrumb-sep { font-size: 10px; color: var(--gray-border); }
.breadcrumb-current { color: var(--near-black); font-weight: 600; }

/* ── ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
.animate-in { animation: fadeUp 0.5s ease both; }
.d1{animation-delay:0.04s;} .d2{animation-delay:0.1s;} .d3{animation-delay:0.16s;} .d4{animation-delay:0.22s;}
.fade-in { opacity:0; transform:translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--blue); color: var(--white); font-family: var(--font); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 14px 28px; border-radius: var(--radius-sm); border: none; cursor: pointer; transition: background var(--transition), transform var(--transition), box-shadow var(--transition); }
.btn-primary:hover { background: #4a5ae0; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(91,108,245,0.28); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--blue); font-family: var(--font); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 13px 28px; border-radius: var(--radius-sm); border: 1.5px solid var(--blue); cursor: pointer; transition: background var(--transition), color var(--transition), transform var(--transition); }
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-1px); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: rgba(255,255,255,0.75); font-family: var(--font); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 13px 28px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.2); cursor: pointer; transition: border-color var(--transition), color var(--transition), transform var(--transition); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: var(--white); transform: translateY(-1px); }
.btn-white { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--near-black); font-family: var(--font); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 14px 28px; border-radius: var(--radius-sm); border: none; cursor: pointer; transition: background var(--transition), transform var(--transition); }
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); }

/* ── SHARED ────────────────────────────────────────────────── */
.label-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); background: var(--blue-light); padding: 4px 12px; border-radius: 2px; margin-bottom: 14px; }
.divider { width: 40px; height: 2px; background: var(--blue); margin: 14px 0 22px; }
.section-heading { font-size: 32px; font-weight: 700; letter-spacing: -0.02em; color: var(--near-black); line-height: 1.2; margin-bottom: 10px; }
.section-sub { font-size: 15px; font-weight: 300; color: var(--gray-text); max-width: 540px; line-height: 1.7; }

/* ── PAGE HERO ─────────────────────────────────────────────── */
.page-hero { background: var(--near-black); padding: 68px 0 56px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 78% 45%, rgba(91,108,245,0.13) 0%, transparent 52%), radial-gradient(circle at 12% 80%, rgba(91,108,245,0.07) 0%, transparent 44%); pointer-events: none; }
.page-hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-mid); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.hero-eyebrow::before { content: ''; width: 24px; height: 1.5px; background: var(--blue-mid); display: block; }
.hero-title { font-size: clamp(30px, 4vw, 44px); font-weight: 700; letter-spacing: -0.03em; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.hero-title span { color: var(--blue-mid); }
.hero-desc { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 500px; margin-bottom: 28px; }
.hero-search-wrap { display: flex; gap: 0; max-width: 480px; }
.hero-search { flex: 1; font-family: var(--font); font-size: 14px; padding: 14px 18px; border: none; border-radius: var(--radius-sm) 0 0 var(--radius-sm); outline: none; color: var(--near-black); background: var(--white); }
.hero-search::placeholder { color: var(--gray-subtle); }
.hero-search-btn { font-family: var(--font); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 14px 22px; background: var(--blue); color: var(--white); border: none; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; cursor: pointer; white-space: nowrap; transition: background var(--transition); display: flex; align-items: center; gap: 8px; }
.hero-search-btn:hover { background: #4a5ae0; }
.hero-stat-cards { display: flex; flex-direction: column; gap: 14px; flex-shrink: 0; }
.hero-stat-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-md); padding: 15px 22px; text-align: right; min-width: 152px; }
.hero-stat-num { font-size: 24px; font-weight: 700; color: var(--white); letter-spacing: -0.02em; line-height: 1; }
.hero-stat-num em { color: var(--blue-mid); font-style: normal; }
.hero-stat-label { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-top: 5px; }

/* ── CATALOG LAYOUT ────────────────────────────────────────── */
.catalog-layout { display: grid; grid-template-columns: 260px 1fr; gap: 36px; align-items: start; padding: 40px 0 96px; }

/* ── SIDEBAR ───────────────────────────────────────────────── */
.sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 14px; }
.sidebar-block { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius-lg); overflow: hidden; }
.sidebar-block-title { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--near-black); padding: 15px 18px 11px; border-bottom: 1px solid var(--gray-border); display: flex; align-items: center; gap: 8px; }
.sidebar-block-title svg { color: var(--blue); flex-shrink: 0; }

/* Search */
.sidebar-search-wrap { padding: 14px; }
.search-field-wrap { position: relative; }
.search-icon-inner { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--gray-subtle); pointer-events: none; }
.sidebar-search { width: 100%; font-family: var(--font); font-size: 13px; padding: 10px 14px 10px 36px; border: 1.5px solid var(--gray-border); border-radius: var(--radius-sm); outline: none; background: var(--off-white); color: var(--near-black); transition: border-color var(--transition), background var(--transition); }
.sidebar-search:focus { border-color: var(--blue); background: var(--white); }
.sidebar-search::placeholder { color: var(--gray-subtle); }

/* Price range */
.price-range-wrap { padding: 14px 18px; }
.price-row { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.price-input { flex: 1; font-family: var(--mono); font-size: 13px; padding: 9px 12px; border: 1.5px solid var(--gray-border); border-radius: var(--radius-sm); outline: none; color: var(--near-black); background: var(--off-white); text-align: center; transition: border-color var(--transition); width: 0; }
.price-input:focus { border-color: var(--blue); background: var(--white); }
.price-sep { font-size: 12px; color: var(--gray-subtle); font-weight: 600; flex-shrink: 0; }
.range-track { position: relative; height: 4px; background: var(--gray-border); border-radius: 99px; margin-top: 6px; }
.range-fill { position: absolute; left: 0; right: 0; height: 100%; background: var(--blue); border-radius: 99px; }

/* Filter groups */
.filter-group { padding: 4px 0; }
.filter-label { display: flex; align-items: center; justify-content: space-between; padding: 9px 18px; font-size: 13px; font-weight: 400; color: var(--gray-text); cursor: pointer; transition: background var(--transition), color var(--transition); user-select: none; }
.filter-label:hover { background: var(--off-white); color: var(--near-black); }
.filter-label.checked { color: var(--blue); font-weight: 600; background: var(--blue-light); }
.filter-count { font-size: 11px; font-weight: 600; color: var(--gray-subtle); background: var(--off-white); padding: 2px 7px; border-radius: 10px; }
.filter-label.checked .filter-count { background: rgba(91,108,245,0.12); color: var(--blue); }

/* Purity filter slider visual */
.purity-options { padding: 4px 0 8px; }

/* Apply button */
.sidebar-apply-wrap { padding: 14px; }
.sidebar-apply { width: 100%; font-family: var(--font); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 11px; background: var(--blue); color: var(--white); border: none; border-radius: var(--radius-sm); cursor: pointer; transition: background var(--transition); }
.sidebar-apply:hover { background: #4a5ae0; }

/* Clear all link */
.sidebar-clear { display: block; text-align: center; font-size: 12px; font-weight: 600; color: var(--gray-subtle); padding: 10px; cursor: pointer; transition: color var(--transition); text-decoration: underline; text-underline-offset: 3px; }
.sidebar-clear:hover { color: var(--near-black); }

/* COA badge in sidebar */
.coa-badge-sidebar { margin: 14px; padding: 12px 14px; background: var(--green-light); border: 1px solid rgba(46,139,87,0.2); border-radius: var(--radius-md); display: flex; align-items: center; gap: 10px; }
.coa-badge-icon { width: 32px; height: 32px; background: var(--green); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: white; }
.coa-badge-text { font-size: 12px; font-weight: 700; color: var(--green); line-height: 1.3; }
.coa-badge-sub { font-size: 11px; color: var(--gray-text); font-weight: 300; }

/* ── MAIN CONTENT ──────────────────────────────────────────── */
.main-content {}

/* ── TOOLBAR ───────────────────────────────────────────────── */
.toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; gap: 16px; flex-wrap: wrap; padding-bottom: 18px; border-bottom: 1px solid var(--gray-border); }
.toolbar-left { display: flex; align-items: center; gap: 14px; }
.result-count { font-size: 13px; color: var(--gray-text); font-weight: 300; }
.result-count strong { font-weight: 700; color: var(--near-black); }
.toolbar-right { display: flex; align-items: center; gap: 10px; }
.sort-select { font-family: var(--font); font-size: 13px; font-weight: 600; padding: 9px 32px 9px 14px; border: 1px solid var(--gray-border); border-radius: var(--radius-sm); outline: none; background: var(--white); color: var(--near-black); cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239B9890' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; transition: border-color var(--transition); }
.sort-select:focus { border-color: var(--blue); }
.view-toggle { display: flex; border: 1px solid var(--gray-border); border-radius: var(--radius-sm); overflow: hidden; }
.view-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: var(--white); border: none; cursor: pointer; color: var(--gray-text); transition: background var(--transition), color var(--transition); }
.view-btn.active { background: var(--blue); color: var(--white); }
.view-btn:not(.active):hover { background: var(--off-white); }

/* Active filter chips */
.active-filters { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; min-height: 28px; }
.filter-chip { display: inline-flex; align-items: center; gap: 6px; background: var(--blue-light); color: var(--blue); font-size: 11px; font-weight: 700; letter-spacing: 0.04em; padding: 5px 10px; border-radius: 2px; cursor: pointer; transition: background var(--transition); }
.filter-chip:hover { background: #d0d4fc; }
.filter-chip-x { font-size: 14px; font-weight: 300; line-height: 1; }
.clear-all { font-family: var(--font); font-size: 11px; font-weight: 600; color: var(--gray-subtle); background: none; border: none; cursor: pointer; text-decoration: underline; text-underline-offset: 2px; transition: color var(--transition); }
.clear-all:hover { color: var(--near-black); }

/* ── PRODUCT GRID ──────────────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-grid.list-view { grid-template-columns: 1fr; }

/* ── PRODUCT CARD ──────────────────────────────────────────── */
.product-card {
  background: var(--white); border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg); overflow: hidden; cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  display: flex; flex-direction: column;
  animation: fadeUp 0.4s ease both;
}
.product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); border-color: rgba(91,108,245,0.25); }

/* Badge tags on card */
.card-badge { position: absolute; top: 12px; left: 12px; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; z-index: 2; }
.badge-bestseller { background: var(--near-black); color: var(--white); }
.badge-new       { background: var(--blue); color: var(--white); }
.badge-sale      { background: var(--red); color: var(--white); }
.badge-lowstock  { background: var(--amber-light); color: var(--amber); }

/* Card image area */
.card-img {
  background: var(--off-white); height: 180px; position: relative;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  flex-shrink: 0;
}
.card-img-hex { position: absolute; opacity: 0.08; }
.card-img-vial { position: relative; z-index: 1; transition: transform var(--transition); }
.product-card:hover .card-img-vial { transform: translateY(-4px); }

/* Card body */
.card-body { padding: 16px 18px; flex: 1; display: flex; flex-direction: column; }
.card-cat { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 5px; }
.card-name { font-size: 15px; font-weight: 700; color: var(--near-black); letter-spacing: -0.01em; margin-bottom: 5px; line-height: 1.3; }
.card-cas { font-family: var(--mono); font-size: 10px; color: var(--gray-subtle); margin-bottom: 10px; }
.card-purity { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; color: var(--green); background: var(--green-light); padding: 3px 9px; border-radius: 2px; margin-bottom: 10px; }
.card-desc { font-size: 12px; font-weight: 300; color: var(--gray-text); line-height: 1.6; margin-bottom: 14px; flex: 1; }

/* Card footer */
.card-footer { padding: 12px 18px 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border-top: 1px solid var(--gray-border); }
.card-price { font-size: 20px; font-weight: 700; color: var(--near-black); letter-spacing: -0.01em; }
.card-price .was { font-size: 13px; font-weight: 400; color: var(--gray-subtle); text-decoration: line-through; margin-right: 5px; }
.card-price .per { font-size: 11px; font-weight: 300; color: var(--gray-subtle); }
.card-actions { display: flex; gap: 8px; align-items: center; }
.card-add { width: 38px; height: 38px; background: var(--blue); color: var(--white); border: none; border-radius: var(--radius-sm); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 300; transition: background var(--transition), transform var(--transition); flex-shrink: 0; line-height: 1; }
.card-add:hover { background: #4a5ae0; transform: scale(1.08); }
.card-wishlist { width: 38px; height: 38px; background: var(--off-white); border: 1px solid var(--gray-border); border-radius: var(--radius-sm); cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--gray-text); transition: all var(--transition); flex-shrink: 0; }
.card-wishlist:hover { border-color: var(--red); color: var(--red); background: var(--red-light); }
.card-wishlist.active { border-color: var(--red); color: var(--red); background: var(--red-light); }

/* ── LIST VIEW OVERRIDES ────────────────────────────────────── */
.product-grid.list-view .product-card { flex-direction: row; border-radius: var(--radius-md); }
.product-grid.list-view .card-img { width: 160px; height: auto; min-height: 140px; flex-shrink: 0; border-radius: 0; }
.product-grid.list-view .card-body { padding: 16px 20px; flex-direction: row; align-items: center; gap: 24px; }
.product-grid.list-view .card-desc { display: none; }
.product-grid.list-view .card-footer { border-top: none; border-left: 1px solid var(--gray-border); padding: 16px; flex-direction: column; justify-content: center; align-items: flex-end; width: auto; flex-shrink: 0; }
.product-grid.list-view .card-cas { margin-bottom: 0; }
.product-grid.list-view .card-name { font-size: 16px; }
.product-grid.list-view .card-price { font-size: 22px; }

/* ── NO RESULTS ─────────────────────────────────────────────── */
.no-results { display: none; text-align: center; padding: 80px 24px; }
.no-results.visible { display: block; }
.no-results-icon { font-size: 44px; opacity: 0.25; margin-bottom: 18px; }
.no-results-title { font-size: 20px; font-weight: 700; color: var(--near-black); margin-bottom: 8px; }
.no-results-sub { font-size: 14px; color: var(--gray-text); font-weight: 300; }

/* ── PAGINATION ─────────────────────────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 40px; }
.page-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; font-family: var(--font); font-size: 13px; font-weight: 600; border: 1px solid var(--gray-border); border-radius: var(--radius-sm); background: var(--white); color: var(--near-black); cursor: pointer; transition: all var(--transition); }
.page-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.page-btn.active { background: var(--blue); color: var(--white); border-color: var(--blue); }
.page-btn.arrow { color: var(--gray-text); font-size: 16px; }
.page-ellipsis { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--gray-subtle); }

/* ── TRUST BAND ─────────────────────────────────────────────── */
.trust-band { background: var(--off-white); border-top: 1px solid var(--gray-border); border-bottom: 1px solid var(--gray-border); padding: 28px 0; }
.trust-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon-wrap { width: 36px; height: 36px; background: var(--blue-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-title { font-size: 13px; font-weight: 700; color: var(--near-black); }
.trust-sub { font-size: 11px; color: var(--gray-subtle); font-weight: 300; }

/* ── CTA SECTION ─────────────────────────────────────────────── */
.cta-section { padding: 80px 0; background: var(--near-black); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -100px; left: -50px; width: 360px; height: 360px; background: rgba(91,108,245,0.1); border-radius: 50%; pointer-events: none; }
.cta-section::after { content: ''; position: absolute; bottom: -70px; right: -30px; width: 260px; height: 260px; background: rgba(91,108,245,0.07); border-radius: 50%; pointer-events: none; }
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-label { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-mid); margin-bottom: 18px; }
.cta-title { font-size: clamp(26px, 3.5vw, 40px); font-weight: 700; letter-spacing: -0.025em; color: var(--white); line-height: 1.15; margin-bottom: 14px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-desc { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.5); margin-bottom: 34px; max-width: 380px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.cta-note { font-size: 12px; color: rgba(255,255,255,0.28); letter-spacing: 0.04em; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { background: var(--white); border-top: 1px solid var(--gray-border); padding: 64px 0 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-desc { font-size: 13px; font-weight: 300; color: var(--gray-text); line-height: 1.7; margin: 16px 0 22px; max-width: 280px; }
.footer-email-form { display: flex; }
.footer-email-input { flex: 1; font-family: var(--font); font-size: 13px; padding: 11px 14px; border: 1px solid var(--gray-border); border-right: none; border-radius: var(--radius-sm) 0 0 var(--radius-sm); outline: none; color: var(--near-black); background: var(--white); min-width: 0; }
.footer-email-input:focus { border-color: var(--blue); }
.footer-email-input::placeholder { color: var(--gray-subtle); }
.footer-email-btn { font-family: var(--font); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 11px 16px; background: var(--blue); color: var(--white); border: none; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; cursor: pointer; white-space: nowrap; transition: background var(--transition); }
.footer-email-btn:hover { background: #4a5ae0; }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--near-black); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; font-weight: 300; color: var(--gray-text); transition: color var(--transition); }
.footer-links a:hover { color: var(--blue); }
.footer-bottom { padding-top: 28px; border-top: 1px solid var(--gray-border); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 12px; color: var(--gray-subtle); font-weight: 300; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: var(--gray-subtle); font-weight: 300; transition: color var(--transition); }
.footer-legal a:hover { color: var(--blue); }
.footer-disclaimer { width: 100%; font-size: 11px; color: var(--gray-subtle); font-weight: 300; line-height: 1.6; padding-top: 18px; border-top: 1px solid var(--gray-border); margin-top: 18px; }