/* ==========================================================================
   SEORANKLINK DESIGN SYSTEM & ADVANCED SAAS INTERACTIONS
   ========================================================================== */

:root {
  --bg-cream: #FAF8F5;
  --bg-white: #FFFFFF;
  --text-dark: #151821;
  --text-muted: #64748B;
  --text-dimmed: #94A3B8;
  
  --primary: #3730A3;
  --primary-hover: #312E81;
  --primary-light: #EEF2FF;
  
  --accent-orange: #C25E2E;
  --accent-orange-hover: #A84E24;
  --accent-green: #10B981;
  --accent-green-bg: #ECFDF5;
  
  --border-light: #E7E5E0;
  --border-card: #ECEAE4;
  --border-subtle: #F1EFEA;
  
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 4px 20px -2px rgba(21, 24, 33, 0.05);
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  background-image: radial-gradient(#D5D2CA 1px, transparent 1px);
  background-size: 28px 28px;
  color: var(--text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select { font-family: inherit; }

/* ================= TYPOGRAPHY ================= */
.italic-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.highlight-blue {
  color: #3730A3;
}

.hero-title {
  font-size: 54px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111827;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #4B5563;
  margin-bottom: 32px;
}

.section-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #4338CA;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.section-heading {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

.section-subtext {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.6;
  max-width: 680px;
}

/* ================= BUTTONS ================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #3730A3;
  color: #FFF;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary:hover { background-color: var(--primary-hover); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background-color: #FFF;
  color: #111827;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-secondary:hover { border-color: #9CA3AF; }

.btn-orange { background-color: var(--accent-orange) !important; }
.btn-orange:hover { background-color: var(--accent-orange-hover) !important; }

.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
  background: #FFF;
  cursor: pointer;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFF;
  border: 1px solid var(--border-light);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 24px;
}

.dot-live, .dot-green {
  width: 7px;
  height: 7px;
  background-color: var(--accent-green);
  border-radius: 50%;
  display: inline-block;
}

/* ================= 3D TILT EFFECT ================= */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.25s ease;
  will-change: transform;
}
.tilt-card:hover {
  box-shadow: 0 16px 36px -6px rgba(21, 24, 33, 0.12);
}

/* ================= HEADER & LANGUAGE SELECTOR ================= */
.site-header {
  background: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(231, 229, 224, 0.7);
  padding: 16px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111827;
}
.logo-accent { color: #4338CA; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #4B5563;
  transition: color 0.15s ease;
}
.nav-link:hover { color: var(--primary); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-text {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
}

/* Cart Trigger Button in Header */
.cart-trigger-btn {
  background: #FFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #111827;
  transition: all 0.2s;
}
.cart-trigger-btn:hover { border-color: #3730A3; }
.nav-cart-badge {
  background: #3730A3;
  color: #FFF;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: var(--radius-pill);
}

/* Language Dropdown */
.lang-selector-wrap {
  position: relative;
  display: inline-block;
}

.btn-lang {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  user-select: none;
}
.btn-lang:hover {
  border-color: #CBD5E1;
  background-color: #F8FAFC;
}
.btn-lang.active-open {
  border-color: #94A3B8;
  box-shadow: 0 0 0 3px rgba(67, 56, 202, 0.1);
}
.btn-lang.active-open .arrow-icon {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 200px;
  background: #FFFFFF;
  border: 1px solid #ECEAE4;
  border-radius: 18px;
  box-shadow: 0 12px 36px -4px rgba(21, 24, 33, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
  padding: 8px 6px;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.lang-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-item {
  width: 100%;
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  transition: background 0.12s ease;
}
.lang-item:hover { background-color: #F8FAFC; }
.lang-item.active { background-color: #F1F5F9; }

.lang-country-code {
  width: 26px;
  font-size: 11px;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 0.03em;
}
.lang-name {
  font-size: 13px;
  font-weight: 600;
  color: #1E293B;
  flex-grow: 1;
}
.lang-checkmark {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}

/* ================= HERO SECTION ================= */
.hero-section {
  padding: 64px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 48px;
  align-items: start;
}
.hero-cta-group {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}
.hero-metrics-ticker {
  display: flex;
  gap: 32px;
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
}
.ticker-item strong {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-right: 6px;
}
.ticker-item span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Donor Card */
.donor-card-preview {
  background: #FFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  margin-bottom: 16px;
}
.donor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.featured-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #4F46E5;
}
.verified-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #059669;
  background: #ECFDF5;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}
.donor-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.donor-avatar {
  width: 44px;
  height: 44px;
  background: #EEF2FF;
  color: #4338CA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}
.donor-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
}
.badge-country {
  font-size: 11px;
  color: #6B7280;
  font-weight: 500;
  margin-left: 4px;
}
.donor-info p {
  font-size: 13px;
  color: var(--text-muted);
}
.donor-price {
  margin-left: auto;
  text-align: right;
}
.price-from {
  display: block;
  font-size: 11px;
  color: var(--text-dimmed);
}
.price-val {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
}
.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.metric-box {
  background: #F9FAFB;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}
.metric-box.green-tint {
  background: #F0FDF4;
  border-color: #DCFCE7;
}
.m-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.m-val { font-size: 17px; font-weight: 700; }
.dr-color { color: #059669; }

.donor-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid #F3F4F6;
  padding-top: 14px;
}
.rating-stars { color: #D97706; }

/* Subcards */
.hero-subcards-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}
.subcard {
  background: #FFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
}
.subcard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.subcard-label {
  font-size: 10px;
  font-weight: 700;
  color: #4F46E5;
  letter-spacing: 0.08em;
}
.growth-label {
  font-size: 11px;
  color: #059669;
  font-weight: 600;
  background: #ECFDF5;
  padding: 2px 6px;
  border-radius: var(--radius-pill);
}
.volume-sum {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
}
.volume-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.mini-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 36px;
  margin-bottom: 12px;
}
.mini-bar-chart span {
  flex: 1;
  background: #C7D2FE;
  border-radius: 3px 3px 0 0;
}
.mini-bar-chart span:last-child { background: #4338CA; }

.floating-deal-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.floating-deal-pill .check-icon {
  width: 18px;
  height: 18px;
  background: #ECFDF5;
  color: #059669;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
}
.floating-deal-pill strong {
  font-size: 11px;
  color: #111827;
  display: block;
}
.floating-deal-pill p {
  font-size: 9px;
  color: var(--text-muted);
}

.donut-chart-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
}
.donut-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: conic-gradient(#4338CA 0% 85%, #E2E8F0 85% 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.donut-circle::after {
  content: "";
  width: 48px;
  height: 48px;
  background: #FFF;
  border-radius: 50%;
  position: absolute;
}
.donut-center-pct {
  position: relative;
  z-index: 2;
  font-size: 14px;
  font-weight: 800;
  color: #111827;
}
.donut-legend { font-size: 11px; color: #4B5563; }
.donut-legend > div {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.leg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.leg-dot.blue { background: #4338CA; }
.leg-dot.gray { background: #CBD5E1; }

/* ================= TRUSTED LOGOS ================= */
.trusted-logos-section {
  padding: 40px 0 32px;
  text-align: center;
}
.section-micro-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #6B7280;
  margin-bottom: 24px;
}
.logos-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: -0.02em;
}

/* ================= 4 STATS COUNTER BOX ================= */
.stats-counter-section {
  padding: 24px 0 54px;
}
.stats-four-box {
  background: #FFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: var(--shadow-card);
}
.stat-col {
  padding: 32px 24px;
  border-right: 1px solid var(--border-light);
}
.stat-col:last-child { border-right: none; }
.stat-big {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111827;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-title {
  font-size: 14px;
  font-weight: 700;
  color: #1F2937;
}
.stat-desc {
  font-size: 12px;
  color: var(--text-muted);
}

/* ================= CATALOG SECTION ================= */
.catalog-section { padding: 50px 0; }
.catalog-top-heading { margin-bottom: 32px; }
.heading-with-tabs {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
.type-switch-pills {
  display: inline-flex;
  background: #EAE8E2;
  border-radius: var(--radius-pill);
  padding: 4px;
}
.pill-tab {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  background: transparent;
  border-radius: var(--radius-pill);
  color: #4B5563;
  cursor: pointer;
}
.pill-tab.active {
  background: #3730A3;
  color: #FFF;
}

.catalog-browser-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
}
.catalog-sidebar {
  background: #FFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.filter-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}
.btn-reset-filters {
  background: none;
  border: none;
  font-size: 11px;
  color: #4338CA;
  font-weight: 600;
  cursor: pointer;
}
.filter-search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  margin-bottom: 20px;
  background: #FAF9F6;
}
.filter-search-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 13px;
  width: 100%;
}
.filter-group { margin-bottom: 22px; }
.group-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #6B7280;
  margin-bottom: 10px;
}
.check-item {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #374151;
  margin-bottom: 8px;
  cursor: pointer;
}
.check-item input { margin-right: 8px; }
.check-item .count {
  margin-left: auto;
  font-size: 11px;
  color: var(--text-dimmed);
}
.f-flag {
  font-size: 10px;
  margin-right: 4px;
  color: #64748B;
}

.catalog-table-container {
  background: #FFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.catalog-table-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
}
.sort-val { font-weight: 600; color: #111827; }

.table-responsive {
  width: 100%;
  overflow-x: auto;
}
.catalog-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.catalog-table th {
  padding: 12px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
  background: #FAFAFA;
}
.catalog-table td {
  padding: 14px 18px;
  font-size: 13px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}

.cell-flex { display: flex; align-items: center; gap: 12px; }
.country-tag {
  background: #F3F4F6;
  color: #4B5563;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
}
.domain-name {
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 4px;
}
.check-green { color: #10B981; font-size: 11px; }
.niche-sub { font-size: 11px; color: var(--text-muted); }

.authority-pills { display: flex; align-items: center; gap: 8px; }
.pill-dr {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
  border-radius: 6px;
  padding: 2px 7px;
  font-size: 12px;
}
.text-da { font-size: 12px; color: #4B5563; }

.traffic-cell strong { display: block; color: #111827; }
.traffic-bar {
  width: 90px;
  height: 4px;
  background: #E5E7EB;
  border-radius: 2px;
  margin: 4px 0;
}
.bar-fill {
  height: 100%;
  background: #4338CA;
  border-radius: 2px;
}
.sub-split { font-size: 10px; color: var(--text-muted); }
.badge-placement {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #F3F4F6;
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  font-size: 11px;
  color: #374151;
}

.rating-badge { color: #D97706; font-size: 13px; }
.rating-badge small { display: block; font-size: 10px; color: var(--text-muted); }

.price-cell strong {
  font-size: 15px;
  color: #111827;
  margin-right: 4px;
}
.disc-pill {
  background: #FEF3C7;
  color: #92400E;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
}
.price-cell del { display: block; font-size: 11px; color: var(--text-dimmed); }

.btn-add-cart {
  background: #FFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}
.btn-add-cart:hover {
  border-color: #3730A3;
  color: #3730A3;
}

.catalog-table-footer {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FAF9F6;
}
.footer-stats {
  display: flex;
  gap: 18px;
  font-size: 12px;
  color: var(--text-muted);
}
.btn-load-more {
  background: #FFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

/* ================= SERVICES ================= */
.services-section { padding: 60px 0; }
.services-four-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.service-card {
  background: #FFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.service-icon-wrap {
  width: 44px;
  height: 44px;
  background: #EEF2FF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.service-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.card-link-btn {
  background: none;
  border: none;
  color: #4338CA;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

/* ================= ROI CALCULATOR ================= */
.calculator-section { padding: 60px 0; }
.calc-box-grid {
  background: #FFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-card);
  margin-top: 36px;
}
.calc-inputs-col { padding: 36px; border-right: 1px solid var(--border-light); }
.calc-outcomes-col { padding: 36px; }

.calc-group-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 28px;
}

.budget-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.slider-display-val {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
}
.range-slider-wrap { margin-bottom: 28px; }
.modern-slider {
  width: 100%;
  height: 6px;
  background: #E5E7EB;
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
}
.modern-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: #3730A3;
  border: 2px solid #FFF;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  border-radius: 50%;
  cursor: pointer;
}
.slider-bounds {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-dimmed);
  margin-top: 6px;
}

.segmented-control-group { margin-bottom: 22px; }
.segmented-control-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #4B5563;
  margin-bottom: 8px;
}
.pill-segmented {
  display: inline-flex;
  background: #F3F4F6;
  border-radius: var(--radius-pill);
  padding: 4px;
  width: 100%;
}
.pill-segmented button {
  flex: 1;
  padding: 8px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  background: transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  color: #4B5563;
}
.pill-segmented button.active {
  background: #3730A3;
  color: #FFF;
}

.calc-meta-note { font-size: 11px; color: var(--text-muted); margin-bottom: 24px; }
.total-spend-pill {
  background: #F9FAFB;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.total-spend-pill strong { font-size: 20px; font-weight: 800; color: #111827; }

.outcome-quad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.outcome-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
}
.outcome-number {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
  margin: 6px 0 2px;
}
.outcome-label { font-size: 12px; color: var(--text-muted); }

.graph-card-wrap {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 24px;
}
.graph-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.chart-svg { width: 100%; height: 90px; }
.chart-x-axis {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-dimmed);
  padding-top: 4px;
}
.btn-block {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
}
.calc-disclaimer {
  font-size: 11px;
  color: var(--text-dimmed);
  text-align: center;
  margin-top: 10px;
}

/* ================= EXTENSION ================= */
.extension-section { padding: 60px 0; }
.ext-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.blue-badge { color: #4338CA; background: #EEF2FF; border-color: #C7D2FE; }
.ext-tag-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.ext-tag-pills span {
  background: #FFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-size: 12px;
  color: #4B5563;
}
.ext-actions-row { display: flex; gap: 12px; margin-bottom: 24px; }
.ext-trust-row { display: flex; gap: 20px; font-size: 12px; color: var(--text-muted); }

.audit-window-mockup {
  background: #FFF;
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.mockup-top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  margin-bottom: 14px;
}
.mock-brand { font-weight: 800; font-size: 13px; }
.mock-top-pills { display: flex; gap: 6px; align-items: center; }
.mock-pill-pro {
  background: #4338CA;
  color: #FFF;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}
.mock-avatar { width: 20px; height: 20px; background: #FBBF24; border-radius: 50%; }
.mock-url-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F9FAFB;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-size: 11px;
  margin-bottom: 14px;
}
.mock-url {
  flex: 1;
  color: #4B5563;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mock-rescan-btn {
  background: none;
  border: none;
  color: #4338CA;
  font-weight: 600;
  font-size: 11px;
  cursor: pointer;
}
.mock-nav-tabs {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
  margin-bottom: 16px;
}
.mock-nav-tabs span.active {
  background: #3730A3;
  color: #FFF;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.mock-score-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #F9FAFB;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
}
.circle-gauge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 5px solid #10B981;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gauge-val { font-size: 18px; font-weight: 800; line-height: 1; }
.gauge-grade { font-size: 8px; color: var(--text-muted); }
.gauge-kicker { font-size: 9px; font-weight: 700; color: #4338CA; }
.gauge-text h4 { font-size: 15px; font-weight: 700; }
.gauge-text p { font-size: 11px; color: var(--text-muted); }

.mock-stats-trio {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px;
  margin-bottom: 16px;
}
.mock-stats-trio strong { display: block; font-size: 15px; }
.mock-stats-trio span { font-size: 9px; color: var(--text-dimmed); }
.text-green { color: #10B981; }
.text-orange { color: #F59E0B; }
.text-red { color: #EF4444; }
.btn-purple-gradient { background: #5B45E0 !important; margin-bottom: 16px; }

.cwv-box {
  background: #F9FAFB;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 14px;
}
.cwv-title {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
}
.badge-passing {
  background: #ECFDF5;
  color: #059669;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 4px;
}
.cwv-trio { display: grid; grid-template-columns: repeat(3, 1fr); font-size: 10px; }
.cwv-trio strong { display: block; font-size: 13px; color: #10B981; }

.broken-links-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.btn-link-fix {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: #4338CA;
  background: none;
  border: none;
  cursor: pointer;
}

/* ================= AUCTIONS ================= */
.auctions-section { padding: 60px 0; }
.auctions-top-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}
.auction-metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.auc-metric-pill {
  background: #FFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
}
.auc-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.auc-val { font-size: 26px; font-weight: 800; color: #111827; }

.auctions-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}
.featured-auc-card {
  background: #FFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.auc-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.badge-premium {
  background: #FEF3C7;
  color: #92400E;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
}
.heart-fav { font-size: 12px; color: var(--text-muted); cursor: pointer; }
.auc-domain-title { font-size: 28px; font-weight: 800; color: #111827; margin-bottom: 2px; }
.auc-domain-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.auc-specs-quad {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.auc-specs-quad > div {
  background: #F9FAFB;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: center;
}
.auc-specs-quad .label { display: block; font-size: 9px; font-weight: 700; color: var(--text-muted); }
.auc-specs-quad strong { font-size: 16px; color: #111827; }

.auc-bid-box {
  background: #FAF9F6;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
}
.timer-row { font-size: 12px; color: #374151; font-weight: 600; margin-bottom: 12px; }
.curr-bid-label { font-size: 10px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.08em; }
.curr-bid-amount { font-size: 32px; font-weight: 800; color: #111827; margin: 4px 0 10px; }
.buy-now-progress { margin-bottom: 16px; }
.prog-bar { height: 6px; background: #C25E2E; border-radius: 3px; }
.prog-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}
.quick-bid-increments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 10px 0;
}
.quick-bid-increments button {
  padding: 8px;
  background: #FFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.bid-terms-note { font-size: 10px; color: var(--text-dimmed); text-align: center; margin-top: 10px; }
.auc-card-footer { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-muted); }

.secondary-auc-column { display: flex; flex-direction: column; gap: 16px; }
.mini-auc-card {
  background: #FFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.mini-auc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.domain-ident { display: flex; align-items: center; gap: 8px; }
.domain-ident h4 { font-size: 16px; font-weight: 700; }
.badge-tag-aged, .badge-tag-drop { font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 4px; }
.badge-tag-aged { background: #FEF3C7; color: #92400E; }
.badge-tag-drop { background: #FEE2E2; color: #991B1B; }
.auc-timer { font-size: 11px; color: var(--text-muted); }
.mini-auc-stats {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.right-fav { margin-left: auto; cursor: pointer; }
.mini-auc-bar {
  height: 4px;
  background: #E5E7EB;
  border-radius: 2px;
  margin-bottom: 14px;
}
.mini-auc-bar > div { height: 100%; background: #C25E2E; border-radius: 2px; }
.mini-auc-bottom { display: flex; justify-content: space-between; align-items: center; }
.small-label { display: block; font-size: 9px; font-weight: 700; color: var(--text-dimmed); }
.bid-sum { font-size: 18px; font-weight: 800; }
.btn-bid-orange {
  background: #C25E2E;
  color: #FFF;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.mini-auc-footer-link {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  background: #FFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
}
.btn-link-action { background: none; border: none; color: #C25E2E; font-weight: 600; cursor: pointer; }

/* ================= HOW IT WORKS & DEAL FLOW ================= */
.how-it-works-section { padding: 60px 0; }
.hiw-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; }
.six-steps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}
.step-card {
  background: #FFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 180px;
}
.step-bg-num {
  position: absolute;
  right: 12px;
  bottom: -15px;
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 400;
  color: #ECEAE4;
  line-height: 1;
  pointer-events: none;
}
.step-icon { width: 36px; height: 36px; color: #4B5563; margin-bottom: auto; }
.step-card-name { font-size: 12px; font-weight: 600; color: #111827; position: relative; z-index: 1; }

.deal-flow-block { margin-top: 48px; }
.deal-flow-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  gap: 20px;
}

/* Exact Role Switcher Pill */
.role-toggle-hiw {
  display: inline-flex;
  background: #F1EFEA;
  border-radius: var(--radius-pill);
  padding: 4px;
  border: 1px solid var(--border-light);
  width: auto;
}
.role-toggle-hiw button {
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  background: transparent;
  color: #4B5563;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  white-space: nowrap;
}
.role-toggle-hiw button:hover { color: #111827; }
.role-toggle-hiw button.active {
  background: #3730A3;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(55, 48, 163, 0.25);
}

.deal-steps-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.deal-box {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s ease;
}
.deal-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px -4px rgba(21, 24, 33, 0.08);
}
.deal-box-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.deal-box-top .circle-icon {
  width: 38px;
  height: 38px;
  background: #EEF2FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.deal-box-top .flow-num {
  font-size: 12px;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: 0.04em;
}
.deal-box h4 { font-size: 16px; font-weight: 700; color: #111827; margin-bottom: 8px; }
.deal-box p { font-size: 13px; color: #64748B; line-height: 1.55; }

.deal-steps-four.fade-out .deal-box {
  opacity: 0;
  transform: translateY(8px) scale(0.98);
}
.deal-steps-four.fade-in .deal-box {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ================= GUARANTEES & TESTIMONIALS ================= */
.guarantees-section { padding: 60px 0; }
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.guarantee-card {
  background: #FFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.g-icon {
  width: 40px;
  height: 40px;
  background: #EEF2FF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.guarantee-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.guarantee-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.testimonials-section { padding: 60px 0; }
.testimonials-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; }
.stars-aggregate { font-size: 14px; color: #D97706; }
.stars-aggregate .dimmed { color: var(--text-muted); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: #FFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 48px;
  color: #C7D2FE;
  line-height: 1;
  margin-bottom: 8px;
}
.quote-text {
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 28px;
  flex-grow: 1;
}
.author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-light);
  padding-top: 18px;
}
.avatar-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.author-row strong { display: block; font-size: 13px; color: #111827; }
.author-row span { font-size: 11px; color: var(--text-muted); }

/* ================= ROLES SPLIT ================= */
.market-roles-section { padding: 60px 0; }
.market-roles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.role-column-card {
  background: #FFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.role-img-wrap {
  height: 220px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.role-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
}
.role-content { padding: 32px; position: relative; }
.role-icon-bubble {
  width: 36px;
  height: 36px;
  background: #EEF2FF;
  color: #4338CA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.role-content h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.role-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; }
.role-checklist { margin-bottom: 28px; }
.role-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #374151;
  margin-bottom: 10px;
}
.blue-check { color: #4338CA; font-size: 12px; }

/* ================= GLOBAL REACH ================= */
.global-reach-section { padding: 60px 0 80px; }
.regions-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 24px;
}
.region-pill {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #4B5563;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.region-pill:hover { border-color: #94A3B8; color: #111827; }
.region-pill.active {
  background: #3730A3;
  color: #FFFFFF;
  border-color: #3730A3;
  box-shadow: 0 2px 8px rgba(55, 48, 163, 0.25);
}

.country-pills-matrix {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  min-height: 200px;
}
.c-badge {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.25s ease;
  user-select: none;
}
.c-badge:hover {
  transform: translateY(-2px);
  border-color: #C7D2FE;
  box-shadow: 0 6px 16px rgba(67, 56, 202, 0.08);
  color: #111827;
}
.c-badge span {
  font-size: 11px;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: 0.05em;
  min-width: 20px;
}
.c-badge.is-hidden { display: none !important; }

/* ================= PRICING ================= */
.pricing-section { padding: 60px 0; }
.pricing-three-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.price-card {
  background: #FFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.price-card.highlighted-card { background: #3730A3; color: #FFF; }
.p-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.pricing-big-num { margin-bottom: 12px; }
.pricing-big-num strong { font-size: 38px; font-weight: 800; }
.pricing-big-num span { font-size: 13px; opacity: 0.8; }
.p-desc {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 32px;
  flex-grow: 1;
  opacity: 0.85;
}
.btn-card-white {
  background: #FFF;
  color: #3730A3;
  padding: 12px;
  text-align: center;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 13px;
  border: none;
  cursor: pointer;
}
.btn-card-light {
  background: #F3F4F6;
  color: #111827;
  padding: 12px;
  text-align: center;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 13px;
  border: none;
  cursor: pointer;
}

/* ================= BOTTOM BANNER ================= */
.bottom-cta-banner { padding: 90px 0 60px; text-align: center; }
.banner-inner-text { max-width: 720px; }
.centered { justify-content: center; }

/* ================= BLOG PLAYBOOKS ================= */
.blog-playbooks-section { padding: 60px 0 80px; }
.blog-top-flex { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; }
.articles-quad-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.article-card {
  background: #FFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.article-thumb { height: 160px; position: relative; }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(4px);
  color: #FFF;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}
.read-time-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(4px);
  color: #FFF;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}
.article-body { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.article-body h3 { font-size: 15px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
.article-body p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
  flex-grow: 1;
}
.article-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-dimmed);
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
}

/* ================= FOOTER ================= */
.site-footer {
  background: #FAF8F5;
  border-top: 1px solid var(--border-light);
  padding: 60px 0 32px;
}
.footer-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
  margin-top: 12px;
}
.footer-links-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #111827;
  margin-bottom: 16px;
}
.footer-links-col ul li { margin-bottom: 10px; }
.footer-links-col ul a { font-size: 13px; color: var(--text-muted); transition: color 0.15s; }
.footer-links-col ul a:hover { color: var(--primary); }

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding: 24px 24px 16px;
}
.payment-methods-row { display: flex; gap: 8px; }
.pay-tag {
  background: #FFF;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  color: #4B5563;
  font-weight: 600;
}
.security-badges-row { display: flex; gap: 16px; font-size: 11px; color: var(--text-muted); font-weight: 600; }
.copyright-row { font-size: 12px; color: var(--text-dimmed); padding-top: 16px; }

/* ================= CART DRAWER ================= */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-backdrop.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: -440px;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: #FFF;
  box-shadow: -10px 0 35px rgba(0,0,0,0.15);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-drawer.open { right: 0; }
.cart-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
}
.badge-count {
  font-size: 11px;
  background: #EEF2FF;
  color: #4338CA;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}
.btn-icon-close {
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-muted);
}
.cart-items-list { flex-grow: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty-state { text-align: center; padding: 60px 20px; }
.cart-empty-state svg { margin-bottom: 12px; }
.cart-empty-state p { font-weight: 700; color: #111827; margin-bottom: 4px; }
.cart-empty-state span { font-size: 12px; color: var(--text-muted); }

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.cart-item-info strong { display: block; font-size: 14px; }
.cart-item-info span { font-size: 11px; color: var(--text-muted); }
.cart-item-right { display: flex; align-items: center; gap: 12px; }
.cart-item-remove {
  color: #EF4444;
  cursor: pointer;
  font-size: 18px;
  border: none;
  background: none;
}
.cart-footer { padding: 20px 24px; background: #FAF9F6; border-top: 1px solid var(--border-light); }
.cart-summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
  color: #4B5563;
}
.total-line {
  font-size: 16px;
  color: #111827;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--border-light);
}
.cart-trust-note { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* ================= MODALS & TOASTS ================= */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 20px;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal-box {
  background: #FFF;
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  padding: 32px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.modal-backdrop.open .modal-box { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 18px; right: 18px; }
.modal-form-group { margin-bottom: 16px; }
.modal-form-group label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 6px; }
.modal-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}
.modal-input:focus { border-color: #4338CA; }

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast-item {
  background: #111827;
  color: #FFF;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  animation: slideToast 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes slideToast {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .country-pills-matrix { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
  .hero-grid, .ext-grid, .auctions-grid, .calc-box-grid { grid-template-columns: 1fr; }
  .catalog-browser-layout { grid-template-columns: 1fr; }
  .services-four-grid, .articles-quad-grid { grid-template-columns: repeat(2, 1fr); }
  .six-steps-grid { grid-template-columns: repeat(3, 1fr); }
  .deal-steps-four { grid-template-columns: repeat(2, 1fr); }
  .stats-four-box, .pricing-three-cards, .guarantees-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .footer-main-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav, .header-actions .btn-text { display: none; }
  .hero-title { font-size: 36px; }
  .services-four-grid, .articles-quad-grid, .market-roles-grid { grid-template-columns: 1fr; }
  .six-steps-grid, .country-pills-matrix, .deal-steps-four { grid-template-columns: 1fr; }
  .footer-bottom-bar { flex-direction: column; gap: 16px; }
}