/*
Theme Name: Affiliate BD
Theme URI: https://affiliate.bd
Author: affiliate.bd
Author URI: https://affiliate.bd
Description: Premium multi-vendor affiliate marketplace for software and IT services in Bangladesh.
Version: 1.9.2
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: affiliate-bd
Tags: affiliate, marketplace, business, custom-menu, featured-images
*/

/* Styles merged from assets/css/main.css so upload works without subfolders. */

/* â”€â”€â”€ RESET & BASE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #F5F6FA;
  color: #0B1437;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* â”€â”€â”€ TOKENS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --navy:       #0B1437;
  --navy-mid:   #152057;
  --navy-light: #1E2F6E;
  --orange:     #FF6B2B;
  --orange-d:   #E55A1C;
  --orange-l:   #FFF0E9;
  --white:      #FFFFFF;
  --surface:    #F5F6FA;
  --border:     #E4E7F0;
  --muted:      #6B7A99;
  --gold:       #F5A623;
  --green:      #00C27A;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;
  --shadow-sm:  0 2px 10px rgba(11,20,55,.07);
  --shadow-md:  0 8px 32px rgba(11,20,55,.10);
  --shadow-lg:  0 20px 60px rgba(11,20,55,.14);
}

/* â”€â”€â”€ TICKER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ticker {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  font-weight: 500;
  padding: 9px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: slide 30s linear infinite;
}
@keyframes slide { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.t-item { display: inline-flex; align-items: center; gap: 8px; }
.t-pill {
  background: var(--orange);
  color: #fff;
  border-radius: 4px;
  padding: 1px 7px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.t-amt { color: #fff; font-weight: 700; }

/* â”€â”€â”€ NAVBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 32px;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.4rem; font-weight: 800; color: var(--navy);
}
.logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.logo span { color: var(--orange); }
.nav-menu {
  display: flex; align-items: center; gap: 6px;
  list-style: none;
}
.nav-menu a {
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 600;
  color: var(--muted);
  transition: all .18s;
}
.nav-menu a:hover { color: var(--navy); background: var(--surface); }
.nav-menu .active a { color: var(--navy); }
.nav-end { display: flex; align-items: center; gap: 10px; }
.btn-ghost-nav {
  padding: 9px 20px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: transparent; color: var(--navy);
  font-size: .875rem; font-weight: 700;
  transition: all .18s;
}
.btn-ghost-nav:hover { border-color: var(--orange); color: var(--orange); }
.btn-orange {
  padding: 9px 22px; border-radius: var(--radius-sm);
  background: var(--orange); color: #fff;
  border: none; font-size: .875rem; font-weight: 700;
  box-shadow: 0 4px 16px rgba(255,107,43,.35);
  transition: all .18s;
}
.btn-orange:hover {
  background: var(--orange-d);
  box-shadow: 0 6px 22px rgba(255,107,43,.45);
  transform: translateY(-1px);
}

/* â”€â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-wrap {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
/* decorative grid */
.hero-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
/* orange glow orb */
.hero-wrap::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,43,.22) 0%, transparent 68%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto;
  padding: 90px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,107,43,.4);
  background: rgba(255,107,43,.12);
  color: #FFA07A;
  border-radius: 100px;
  padding: 7px 16px;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.13;
  margin-bottom: 22px;
  letter-spacing: -.02em;
}
.hero h1 .accent {
  color: var(--orange);
  font-style: italic;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.62);
  max-width: 500px;
  margin-bottom: 38px;
  line-height: 1.8;
}

/* Coke-style hero hook */
.hero-hook {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 580px;
  margin: 0 0 34px;
  padding: 0;
  border: none;
}
.hero-hook-line {
  display: block;
  overflow: hidden;
  padding: 2px 0;
}
.hero-hook-inner {
  display: inline-block;
  transform: translate3d(0, 115%, 0);
  opacity: 0;
  filter: blur(10px);
  transition:
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.7s ease,
    filter 0.8s ease;
  transition-delay: calc(var(--line, 0) * 0.14s + 0.35s);
}
.hero-hook-line:nth-child(1) { --line: 0; }
.hero-hook-line:nth-child(2) { --line: 1; }
.hero-hook-line:nth-child(3) { --line: 2; }
.hero-hook-line:nth-child(4) { --line: 3; }
.hero-hook-line .hero-hook-inner {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.45;
  color: rgba(255,255,255,.9);
}
.hero-hook-em .hero-hook-inner {
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #fff;
}
.hero-hook-mid .hero-hook-inner {
  margin-top: 4px;
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  font-weight: 600;
  line-height: 1.65;
  color: rgba(255,255,255,.72);
}
.hero-hook-sub .hero-hook-inner {
  margin-top: 6px;
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  font-weight: 700;
  line-height: 1.6;
  color: rgba(255,255,255,.82);
  letter-spacing: 0;
}
.hook-mark {
  background: none;
  color: #fff;
  position: relative;
  padding: 0 3px;
  font-weight: 800;
}
.hook-mark::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.38em;
  background: linear-gradient(90deg, rgba(255,107,43,.6), rgba(255,107,43,.12));
  border-radius: 3px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) calc(0.9s + var(--line, 0) * 0.1s);
}
.hook-mark-alt::after {
  background: linear-gradient(90deg, rgba(255,255,255,.22), rgba(255,107,43,.35));
}
.hook-num {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 1.15em;
  font-weight: 800;
  color: var(--orange);
  text-shadow: 0 0 32px rgba(255,107,43,.45);
  margin-right: 0.12em;
  transform: scale(0.85);
  opacity: 0;
  transition:
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.75s,
    opacity 0.5s ease 0.7s;
}
.hook-script {
  font-style: normal;
  font-weight: 800;
  color: #fff;
  position: relative;
}
.hook-script::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.02em;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 0.6s ease 1.15s, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 1.05s;
}
.hook-chip {
  display: inline-block;
  font-size: 0.72em;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 6px;
  padding: 0.2em 0.5em;
  margin: 0 0.28em 0.28em 0;
  vertical-align: middle;
  transform: translateY(8px);
  opacity: 0;
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.45s ease,
    border-color 0.3s ease,
    background 0.3s ease;
  transition-delay: calc(1.1s + var(--chip, 0) * 0.07s);
}
.hero-hook-mid .hook-chip:nth-child(1) { --chip: 0; }
.hero-hook-mid .hook-chip:nth-child(2) { --chip: 1; }
.hero-hook-mid .hook-chip:nth-child(3) { --chip: 2; }
.hero-hook-mid .hook-chip:nth-child(4) { --chip: 3; }
.hook-tag {
  display: inline-block;
  font-weight: 900;
  background: linear-gradient(135deg, #e2136e 0%, #ff6b2b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
  filter: drop-shadow(0 0 12px rgba(255,107,43,.35));
}
.hook-bank {
  color: #fff;
  font-weight: 800;
  border-bottom: 2px solid rgba(255,107,43,.55);
  padding-bottom: 1px;
}

/* Hero load motion */
.hero-load-item {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  filter: blur(8px);
  transition:
    opacity 0.75s ease,
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.75s ease;
  transition-delay: calc(var(--d, 0) * 0.1s + 0.08s);
}
.hero-load-ready .hero-load-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}
.hero-load-ready .hero-hook-inner {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  filter: blur(0);
}
.hero-load-ready .hook-mark::after {
  transform: scaleX(1);
}
.hero-load-ready .hook-script::after {
  opacity: 1;
  transform: scaleX(1);
}
.hero-load-ready .hook-num {
  transform: scale(1);
  opacity: 1;
  animation: hookNumPulse 2.4s ease-in-out 1.4s infinite;
}
.hero-load-ready .hook-chip {
  transform: translateY(0);
  opacity: 1;
}
.hero-load-ready .hook-tag {
  animation: hookTagGlow 2.8s ease-in-out 1.6s infinite;
}
@keyframes hookNumPulse {
  0%, 100% { text-shadow: 0 0 32px rgba(255,107,43,.45); }
  50% { text-shadow: 0 0 48px rgba(255,107,43,.75), 0 0 12px rgba(255,107,43,.5); }
}
@keyframes hookTagGlow {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(255,107,43,.35)); }
  50% { filter: drop-shadow(0 0 20px rgba(226,19,110,.45)); }
}
.hero-load-ready .hero-card {
  animation: heroFloat 5s ease-in-out 1.2s infinite;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.btn-hero-primary {
  padding: 15px 32px;
  background: var(--orange); color: #fff;
  border: none; border-radius: var(--radius-md);
  font-size: 1rem; font-weight: 800;
  box-shadow: 0 6px 28px rgba(255,107,43,.45);
  transition: all .2s;
}
.btn-hero-primary:hover {
  background: var(--orange-d);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(255,107,43,.55);
}
.btn-hero-ghost {
  padding: 15px 32px;
  background: rgba(255,255,255,.08); color: #fff;
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: var(--radius-md);
  font-size: 1rem; font-weight: 700;
  transition: all .2s;
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.35);
}
.hero-stats {
  display: flex; gap: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hstat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 800; color: #fff;
}
.hstat-num .hstat-suffix { color: var(--orange); }
.hstat-num .hstat-prefix { color: #fff; font-size: 0.72em; }
.hstat-label { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 2px; }

/* â”€â”€ Hero Card â”€â”€ */
.hero-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.card-header {
  background: var(--navy-mid);
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.card-dots { display: flex; gap: 6px; }
.card-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.dot-r{background:#FF5F57}
.dot-y{background:#FEBC2E}
.dot-g{background:#28C840}
.card-title-bar { font-size: .78rem; color: rgba(255,255,255,.5); font-weight: 600; }
.card-body { padding: 24px; }
/* earning strip */
.earning-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-bottom: 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.es-left {}
.es-label { font-size: .7rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.es-amount { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 800; color: #fff; }
.es-amount sup { font-size: 1rem; vertical-align: super; color: var(--orange); }
.es-delta {
  background: rgba(0,194,122,.2); color: #00C27A;
  border-radius: 20px; padding: 5px 12px;
  font-size: .75rem; font-weight: 800;
}
/* mini bars */
.bars { display: flex; align-items: flex-end; gap: 5px; height: 52px; margin-bottom: 20px; }
.bar-col { flex:1; display:flex; flex-direction:column; align-items:center; gap:3px; }
.bar-fill {
  width: 100%; border-radius: 4px 4px 0 0;
  background: var(--border);
  transition: background .2s;
}
.bar-fill.on { background: var(--orange); }
.bar-lbl { font-size: .6rem; color: var(--muted); }
/* txn rows */
.txn-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  border: 1px solid var(--border);
}
.txn-row:last-child { margin-bottom: 0; }
.txn-left { display: flex; align-items: center; gap: 11px; }
.txn-ico {
  width: 34px; height: 34px; border-radius: 9px;
  background: #fff; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.txn-name { font-size: .83rem; font-weight: 700; color: var(--navy); }
.txn-time { font-size: .7rem; color: var(--muted); }
.txn-amt { font-size: .85rem; font-weight: 800; color: var(--green); }
/* floating notif */
.float-notif {
  position: absolute; top: -16px; right: 22px;
  background: var(--orange);
  color: #fff; border-radius: var(--radius-md);
  padding: 8px 16px; font-size: .75rem; font-weight: 800;
  box-shadow: 0 6px 20px rgba(255,107,43,.5);
  white-space: nowrap;
}

/* â”€â”€â”€ PARTNER STRIP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.partner-strip {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 32px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  overflow: hidden;
}
.partner-label {
  font-size: .72rem; font-weight: 800; color: var(--muted);
  text-transform: uppercase; letter-spacing: .1em;
  white-space: nowrap; margin-right: 8px;
}
.partner-logos { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; justify-content: center; }
.p-logo {
  font-size: .82rem; font-weight: 800; color: #BCC3D6;
  text-transform: uppercase; letter-spacing: .05em;
  transition: color .2s;
}
.p-logo:hover { color: var(--navy); }

/* â”€â”€â”€ SECTION PRIMITIVES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sec { max-width: 1240px; margin: 0 auto; padding: 88px 32px; }
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: var(--orange); margin-bottom: 12px;
}
.sec-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--orange); border-radius: 1px;
}
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 800; color: var(--navy);
  line-height: 1.2; letter-spacing: -.02em;
  margin-bottom: 14px;
}
.sec-sub { font-size: 1rem; color: var(--muted); max-width: 520px; line-height: 1.75; }

/* â”€â”€â”€ CATEGORY SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cat-section { background: #fff; }
.cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  margin-top: 48px;
}
.cat-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: all .24s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cat-card::after {
  content: '';
  position: absolute; left: 0; bottom: 0; right: 0; height: 3px;
  background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .24s;
}
.cat-card:hover {
  border-color: var(--orange);
  box-shadow: 0 12px 40px rgba(255,107,43,.12);
  transform: translateY(-4px);
}
.cat-card:hover::after { transform: scaleX(1); }
.cat-card:hover .cat-arrow { transform: translateX(4px); }
.cat-ico-box {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 20px;
}
.ico-navy { background: var(--navy); }
.ico-orange { background: var(--orange-l); }
.ico-blue { background: #EEF2FF; }
.ico-slate { background: #F0F4FF; }
.cat-title { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.cat-desc { font-size: .82rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.cat-foot { display: flex; align-items: center; justify-content: space-between; }
.cat-count {
  font-size: .73rem; font-weight: 800; color: var(--orange);
  background: var(--orange-l); padding: 4px 12px; border-radius: 20px;
}
.cat-arrow { font-size: .9rem; color: var(--muted); transition: transform .2s; }

/* â”€â”€â”€ HOW IT WORKS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hiw-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.hiw-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 88px 32px;
}
.hiw-inner .sec-eyebrow { color: var(--orange); }
.hiw-inner .sec-title { color: var(--navy); }
.hiw-inner .sec-sub { color: var(--muted); max-width: 640px; }
.hiw-timeline {
  position: relative;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hiw-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 40px;
  bottom: 40px;
  width: 0;
  border-left: 2px dashed rgba(255,107,43,.35);
  transform: translateX(-50%);
}
.hiw-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 36px 0;
  position: relative;
}
.hiw-step-reverse { direction: rtl; }
.hiw-step-reverse > * { direction: ltr; }
.hiw-step-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.hiw-step-watermark {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 12vw, 7rem);
  font-weight: 800;
  color: rgba(11,20,55,.06);
  line-height: 1;
  user-select: none;
}
.hiw-step-icon {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  box-shadow: var(--shadow-sm);
}
.hiw-step-body {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  transition: border-color .24s, box-shadow .24s, transform .24s;
}
.hiw-step.is-visible:hover .hiw-step-body {
  border-color: rgba(255,107,43,.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.hiw-step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.hiw-step-desc {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0;
}
.hiw-step-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: .88rem;
  font-weight: 800;
  color: var(--orange);
  text-decoration: none;
  transition: gap .2s;
}
.hiw-step-link:hover { gap: 10px; }

/* â”€â”€â”€ PRODUCTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.products-section { background: var(--surface); }
.products-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 44px;
}
.view-all-link {
  font-size: .875rem; font-weight: 800; color: var(--orange);
  display: flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.view-all-link:hover { gap: 10px; }
.prod-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 22px;
}
.prod-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all .24s;
  position: relative;
}
.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,107,43,.3);
}
.prod-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; margin-bottom: 16px;
}
.prod-ico {
  width: 50px; height: 50px; border-radius: var(--radius-md);
  background: var(--surface); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.comm-tag {
  background: var(--orange-l); color: var(--orange);
  border-radius: var(--radius-sm); padding: 5px 11px;
  font-size: .75rem; font-weight: 900;
}
.prod-name { font-size: .95rem; font-weight: 800; color: var(--navy); margin-bottom: 3px; }
.prod-cat { font-size: .73rem; color: var(--muted); margin-bottom: 14px; }
.prod-meta { display: flex; gap: 18px; margin-bottom: 14px; }
.pm { }
.pm-key { font-size: .65rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 2px; }
.pm-val { font-size: .82rem; font-weight: 800; color: var(--navy); }
.prod-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 18px; }
.stars { color: var(--gold); font-size: .82rem; }
.rnum { font-size: .75rem; color: var(--muted); }
.hot-tag {
  position: absolute; top: -10px; left: 20px;
  background: var(--navy); color: #fff;
  border-radius: 6px; padding: 3px 10px;
  font-size: .68rem; font-weight: 800;
  letter-spacing: .04em;
}
.btn-promote {
  width: 100%; padding: 11px;
  background: var(--navy); color: #fff;
  border: 2px solid var(--navy);
  border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 800;
  transition: all .2s;
}
.btn-promote:hover {
  background: transparent; color: var(--navy);
}
.btn-promote.orange-btn {
  background: var(--orange); border-color: var(--orange);
}
.btn-promote.orange-btn:hover {
  background: transparent; color: var(--orange);
}

/* â”€â”€â”€ COMMISSION TIERS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tiers-section { background: #fff; }
.tiers-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.tier-features { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.tf {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px; background: var(--surface);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  transition: border-color .2s;
}
.tf:hover { border-color: var(--orange); }
.tf-ico {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: var(--radius-sm);
  background: var(--orange-l);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.tf-title { font-size: .9rem; font-weight: 800; margin-bottom: 4px; }
.tf-desc { font-size: .8rem; color: var(--muted); line-height: 1.65; }
/* tier table */
.tier-table-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.tier-table { width: 100%; border-collapse: collapse; }
.tier-table thead tr { background: var(--navy); }
.tier-table th {
  padding: 15px 20px; text-align: left;
  font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.6);
}
.tier-table th:first-child { color: #fff; }
.tier-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: .875rem;
}
.tier-table tr:last-child td { border-bottom: none; }
.tier-table tr:hover td { background: var(--surface); }
.tier-name { font-weight: 800; font-size: .875rem; }
.tier-pill {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  font-size: .7rem; font-weight: 800; margin-top: 3px;
}
.tp-b { background: #FEF0E0; color: #B06000; }
.tp-s { background: #EEF2FF; color: #3B5BD6; }
.tp-g { background: #FFFBE0; color: #A07800; }
.tp-p { background: var(--orange-l); color: var(--orange-d); }
.tier-pct { font-size: .95rem; font-weight: 900; color: var(--orange); }
.tier-range { font-size: .78rem; color: var(--muted); }

/* â”€â”€â”€ WHY SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.why-section { background: var(--surface); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 48px; }
.why-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: all .24s;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,107,43,.25);
}
.why-ico {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 22px;
}
.why-title { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.why-desc { font-size: .85rem; color: var(--muted); line-height: 1.8; }

/* â”€â”€â”€ TESTIMONIALS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testi-section { background: #fff; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 48px; }
.testi-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all .24s;
  position: relative;
}
.testi-card:hover { box-shadow: var(--shadow-md); border-color: rgba(255,107,43,.25); }
.testi-quote {
  font-size: 2.5rem; line-height: 1;
  color: var(--orange); margin-bottom: 16px;
  font-family: Georgia, serif;
}
.testi-text {
  font-size: .875rem; color: var(--muted);
  line-height: 1.8; margin-bottom: 24px;
  font-style: italic;
}
.testi-foot {
  display: flex; align-items: center; gap: 14px;
}
.testi-av {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; color: #fff;
}
.testi-name { font-size: .875rem; font-weight: 800; color: var(--navy); }
.testi-role { font-size: .73rem; color: var(--muted); }
.testi-earn {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
  align-items: center;
}
.te-label { font-size: .72rem; color: var(--muted); }
.te-val { font-size: .9rem; font-weight: 900; color: var(--green); }

/* â”€â”€â”€ CTA BANNER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-wrap { padding: 0 32px 88px; max-width: 1240px; margin: 0 auto; }
.cta-block {
  background: linear-gradient(130deg, var(--navy) 0%, var(--navy-light) 60%, #2A1A5E 100%);
  border-radius: var(--radius-xl);
  padding: 64px 72px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px;
  position: relative; overflow: hidden;
}
.cta-block::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,43,.25) 0%, transparent 68%);
  bottom: -200px; right: -80px; pointer-events: none;
}
/* diagonal stripe */
.cta-block::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
}
.cta-left { position: relative; z-index: 1; }
.cta-eyebrow {
  font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: var(--orange); margin-bottom: 14px;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 800; color: #fff;
  line-height: 1.2; margin-bottom: 14px;
  letter-spacing: -.02em;
}
.cta-sub { font-size: .95rem; color: rgba(255,255,255,.55); max-width: 420px; line-height: 1.75; }
.cta-right { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; flex-shrink: 0; }
.cta-note { font-size: .73rem; color: rgba(255,255,255,.4); text-align: center; }
/* trust avatars row */
.cta-trust { display: flex; align-items: center; gap: 12px; margin-top: 28px; }
.cta-avatars { display: flex; }
.cta-avatars .av {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 900; color: #fff;
  margin-left: -10px;
}
.cta-avatars .av:first-child { margin-left: 0; }
.cta-trust-text { font-size: .78rem; color: rgba(255,255,255,.5); }
.cta-trust-text strong { color: #fff; }

/* â”€â”€â”€ BLOG â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blog-section { background: var(--surface); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 48px; }
.blog-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all .24s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-thumb {
  height: 150px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.8rem;
  border-bottom: 1px solid var(--border);
}
.blog-body { padding: 22px; }
.blog-tag {
  display: inline-block; background: var(--orange-l); color: var(--orange);
  border-radius: 20px; padding: 3px 11px;
  font-size: .7rem; font-weight: 800;
  margin-bottom: 10px;
}
.blog-title {
  font-size: .92rem; font-weight: 800; color: var(--navy);
  line-height: 1.45; margin-bottom: 10px;
}
.blog-meta { font-size: .73rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.blog-meta span { display: flex; align-items: center; gap: 4px; }

/* â”€â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
footer { background: var(--navy); color: rgba(255,255,255,.55); }
.footer-top {
  max-width: 1240px; margin: 0 auto;
  padding: 72px 32px 48px;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 52px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.f-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 16px;
}
.f-logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.f-logo span { color: var(--orange); }
.f-desc { font-size: .85rem; line-height: 1.8; margin-bottom: 24px; }
.f-socials { display: flex; gap: 8px; margin-bottom: 20px; }
.f-soc {
  width: 36px; height: 36px; border-radius: 9px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: .82rem; font-weight: 800;
  transition: all .18s;
}
.f-soc:hover { border-color: var(--orange); color: var(--orange); }
.f-payments { display: flex; gap: 6px; flex-wrap: wrap; }
.f-pay {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px; padding: 4px 12px;
  font-size: .7rem; font-weight: 800; color: rgba(255,255,255,.6);
}
.f-col-title {
  font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: #fff; margin-bottom: 22px;
}
.f-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.f-links a {
  font-size: .85rem; color: rgba(255,255,255,.5);
  transition: color .18s;
}
.f-links a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1240px; margin: 0 auto;
  padding: 22px 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem;
}
.f-bottom-links { display: flex; gap: 22px; }
.f-bottom-links a { color: rgba(255,255,255,.4); transition: color .18s; }
.f-bottom-links a:hover { color: var(--orange); }
.made-bd { display: flex; align-items: center; gap: 6px; }

/* ─── RESPONSIVE & PROFESSIONAL POLISH (v1.1) ─────────── */

/* Button links */
a.btn-orange,
a.btn-ghost-nav,
a.btn-hero-primary,
a.btn-hero-ghost,
a.view-all-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Focus & selection */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
::selection {
  background: rgba(255,107,43,.18);
  color: var(--navy);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11,20,55,.45);
  z-index: 250;
  backdrop-filter: blur(4px);
}
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100dvh;
  background: #fff;
  z-index: 300;
  padding: 20px;
  box-shadow: -12px 0 40px rgba(11,20,55,.15);
  overflow-y: auto;
}
.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.nav-drawer-title {
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}
.nav-close {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--surface);
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--navy);
}
.nav-menu-mobile {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nav-menu-mobile a {
  display: block;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--surface);
  border: 1px solid var(--border);
}
.nav-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.nav-drawer-actions .btn-orange,
.nav-drawer-actions .btn-ghost-nav {
  width: 100%;
  padding: 14px 20px;
}
body.nav-open { overflow: hidden; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Sticky mobile CTA */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 180;
  padding: 14px 20px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  text-align: center;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgba(255,107,43,.45);
}

/* Partner strip scroll */
.partner-logos {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 100%;
  padding-bottom: 4px;
}
.partner-logos::-webkit-scrollbar { display: none; }

/* Tier table mobile scroll */
.tier-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tier-table { min-width: 520px; }

/* Card polish */
.cat-card,
.prod-card,
.why-card,
.testi-card,
.blog-card,
.hiw-step {
  -webkit-tap-highlight-color: transparent;
}
.navbar {
  box-shadow: 0 1px 0 rgba(11,20,55,.04);
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 72px 24px 64px;
  }
  .hero-card {
    display: block;
    max-width: 480px;
    margin: 0 auto;
  }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .tiers-layout { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hiw-timeline::before { display: none; }
  .hiw-step,
  .hiw-step-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 20px;
    padding: 24px 0;
  }
  .hiw-step-visual { min-height: 120px; }
  .sec { padding: 72px 24px; }
  .hiw-inner { padding: 72px 24px; }
  .cta-wrap { padding: 0 24px 72px; }
}

@media (max-width: 768px) {
  .nav-menu-desktop,
  .nav-end-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 80px; }

  .nav-inner { padding: 0 16px; height: 64px; }
  .ticker { font-size: .72rem; }

  .hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .hero-desc { font-size: .95rem; max-width: none; }
  .hero-hook { max-width: none; }
  .hero-hook-em .hero-hook-inner { font-size: clamp(1.25rem, 5.5vw, 1.65rem); }
  .hero-hook-line .hero-hook-inner { font-size: clamp(1rem, 4.2vw, 1.15rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }
  .hstat-num { font-size: 1.6rem; }
  .hero-card { max-width: 100%; }
  .float-notif { font-size: .68rem; padding: 6px 12px; right: 12px; }

  .products-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .prod-meta { flex-wrap: wrap; gap: 12px; }
  .cat-grid,
  .prod-grid,
  .why-grid,
  .testi-grid,
  .blog-grid { grid-template-columns: 1fr; }

  .cta-block {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 24px;
    gap: 28px;
  }
  .cta-title { font-size: clamp(1.6rem, 6vw, 2rem); }
  .cta-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .cta-right a { width: 100%; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
    padding: 20px 16px;
  }
  .f-bottom-links { justify-content: center; flex-wrap: wrap; }
  .partner-strip {
    flex-direction: column;
    gap: 12px;
    padding: 18px 16px;
  }
  .partner-label { margin-right: 0; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
  .sec-title { font-size: 1.75rem; }
  .hero-inner { padding: 56px 16px 48px; }
  .sec { padding: 56px 16px; }
  .hiw-inner { padding: 56px 16px; }
  .hiw-step-body { padding: 24px 20px; }
  .prod-card { padding: 20px; }
  .testi-grid .testi-card:last-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-inner { animation: none; }
  .hero-badge .dot { animation: none; }
  .hero-load-item,
  .hero-hook-inner {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .hook-mark::after,
  .hook-script::after {
    transform: scaleX(1) !important;
    opacity: 1 !important;
  }
  .hook-num,
  .hook-chip {
    transform: none !important;
    opacity: 1 !important;
    animation: none !important;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Elementor / WP global color overrides on dark sections */
.hero-wrap .hero h1,
.hero-wrap h1 {
  color: #ffffff !important;
}
.hero-wrap .hero h1 .accent,
.hero-wrap h1 .accent {
  color: var(--orange) !important;
}
.hero-wrap .hero-hook-sub .hero-hook-inner {
  color: rgba(255, 255, 255, 0.82) !important;
}
.hero-wrap .hero-hook-mid .hero-hook-inner {
  color: rgba(255, 255, 255, 0.72) !important;
}
.hero-wrap .hero-hook-line .hero-hook-inner {
  color: rgba(255, 255, 255, 0.9) !important;
}
.hero-wrap .hero-hook-em .hero-hook-inner {
  color: #ffffff !important;
}
.hero-wrap .hook-num {
  color: var(--orange) !important;
  -webkit-text-fill-color: initial !important;
}
.hero-wrap .hook-script {
  color: #ffffff !important;
}
.hero-wrap .hook-tag {
  -webkit-text-fill-color: transparent !important;
}
.hero-wrap .hook-bank {
  color: #ffffff !important;
}
.hero-wrap .hero-badge {
  color: #ffa07a !important;
}
.hero-wrap .hstat-num,
.hero-wrap .hstat-num .hstat-counter,
.hero-wrap .hstat-num .hstat-prefix {
  color: #ffffff !important;
}
.hero-wrap .hstat-num .hstat-suffix {
  color: var(--orange) !important;
}
.hero-wrap .hstat-label {
  color: rgba(255, 255, 255, 0.55) !important;
}
.hiw-section .sec-title,
.hiw-section .hiw-step-title {
  color: var(--navy) !important;
}
.hiw-section .sec-sub,
.hiw-section .hiw-step-desc {
  color: var(--muted) !important;
}
.cta-block .cta-title {
  color: #ffffff !important;
}
.cta-block .cta-sub,
.cta-block .cta-note,
.cta-block .cta-trust-text {
  color: rgba(255, 255, 255, 0.6) !important;
}
.cta-block .cta-trust-text strong {
  color: #ffffff !important;
}
footer,
footer .f-logo,
footer .f-col-title {
  color: #ffffff !important;
}

/* ─── MOTION & 3D CARD EFFECTS (v1.2) ───────────────── */
.motion-target {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  opacity: 0;
  transform: perspective(1100px) translateY(36px) rotateX(12deg) scale(0.97);
  transform-style: preserve-3d;
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.25s ease;
  will-change: transform, opacity;
}
.motion-target.is-visible {
  opacity: 1;
  transform: perspective(1100px) translateY(0) rotateX(0) rotateY(0) scale(1);
}
.motion-target.is-visible:hover,
.motion-target.is-visible.is-tilting {
  transform: perspective(1100px)
    translateY(-12px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y))
    scale(1.02);
  box-shadow: 0 24px 50px rgba(11, 20, 55, 0.16);
}
.cat-card.is-visible:hover,
.prod-card.is-visible:hover,
.why-card.is-visible:hover {
  border-color: rgba(255, 107, 43, 0.35);
}
.hiw-step.is-visible:hover .hiw-step-body {
  border-color: rgba(255, 107, 43, 0.35);
}
.hero-card.is-visible {
  animation: heroFloat 5s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: perspective(1100px) translateY(0) rotateX(0); }
  50% { transform: perspective(1100px) translateY(-8px) rotateX(2deg); }
}
.hero-card.is-visible:hover {
  animation: none;
}
.prod-card.is-visible:hover .prod-ico,
.cat-card.is-visible:hover .cat-ico-box {
  transform: rotateY(180deg) scale(1.05);
}
.prod-ico,
.cat-ico-box {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.hot-tag,
.float-notif {
  animation: pulseTag 2.4s ease-in-out infinite;
}
@keyframes pulseTag {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
.btn-promote,
.btn-orange,
.btn-hero-primary {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-promote:hover,
.btn-orange:hover,
.btn-hero-primary:hover {
  transform: translateY(-2px);
}
.sec-title,
.sec-eyebrow {
  animation: fadeDown 0.8s ease both;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .motion-target {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-card.is-visible,
  .hero-load-ready .hero-card {
    animation: none !important;
  }
  .hot-tag,
  .float-notif {
    animation: none;
  }
}

/* ─── CATALOG PAGES (v1.3) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 55%, #2a1a5e 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-inner {
  position: relative; z-index: 1;
  max-width: 1240px; margin: 0 auto;
  padding: 72px 32px 64px;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff !important;
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65) !important;
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 28px;
}
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.page-hero .sec-eyebrow { color: var(--orange) !important; }

.catalog-section { background: var(--surface); }
.catalog-stats {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 24px 28px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.catalog-stat { display: flex; flex-direction: column; gap: 4px; min-width: 120px; }
.catalog-stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--navy);
}
.catalog-stat span { font-size: .78rem; color: var(--muted); font-weight: 600; }
.catalog-desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.catalog-grid { margin-top: 0; }
.prod-featured { border-color: rgba(255,107,43,.35); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .24s;
}
.service-card-head {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 14px;
}
.service-ico {
  width: 56px; height: 56px; min-width: 56px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.service-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy) !important;
  margin-bottom: 8px;
}
.service-tags {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 18px;
}
.service-tags li {
  font-size: .72rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 20px;
}
.service-tags li a {
  color: inherit;
  text-decoration: none;
}
.service-tags li a:hover { color: var(--orange); }
.service-card-link,
.prod-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.prod-card-link:hover .prod-name { color: var(--orange); }
.service-card-link:hover .service-name { color: var(--orange) !important; }

/* ── Catalog Detail Pages ── */
.detail-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1628 100%);
  padding: 32px 0 56px;
}
.detail-breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600;
  margin-bottom: 28px;
}
.detail-breadcrumb a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
}
.detail-breadcrumb a:hover { color: var(--orange); }
.detail-breadcrumb .bc-sep { color: rgba(255,255,255,.25); }
.detail-breadcrumb .bc-current { color: rgba(255,255,255,.85); }
.detail-hero-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
.detail-icon {
  width: 72px; height: 72px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin-bottom: 16px;
}
.detail-badge {
  display: inline-block;
  font-size: .72rem; font-weight: 800;
  color: var(--orange);
  background: rgba(255,107,43,.12);
  border: 1px solid rgba(255,107,43,.25);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.detail-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff !important;
  line-height: 1.15;
  margin-bottom: 16px;
}
.detail-lead {
  font-size: 1.02rem;
  color: rgba(255,255,255,.68) !important;
  line-height: 1.75;
  max-width: 680px;
}
.detail-cta-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.detail-cta-comm {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 8px;
}
.detail-cta-earn {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.detail-cta-cookie {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.detail-cta-btn,
.detail-cta-btn-ghost {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}
.detail-body { background: var(--surface); padding: 56px 0; }
.detail-body-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.detail-section-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy) !important;
  margin-bottom: 18px;
}
.detail-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}
.detail-features li {
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px 14px 40px;
  position: relative;
}
.detail-features li::before {
  content: '✓';
  position: absolute;
  left: 14px;
  color: var(--orange);
  font-weight: 900;
}
.detail-features-inline { margin-bottom: 0; }
.detail-text {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.detail-side-note {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.detail-side-note h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy) !important;
  margin-bottom: 12px;
}
.detail-side-note p,
.detail-side-note li {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
}
.detail-side-note ul {
  list-style: none;
  margin: 16px 0 20px;
}
.detail-side-note li {
  padding: 6px 0 6px 20px;
  position: relative;
}
.detail-side-note li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--orange);
}
.detail-side-note .btn-promote { margin-top: 8px; }
.subservice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.subservice-card {
  display: block;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: all .24s;
}
.subservice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,107,43,.3);
}
.subservice-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.subservice-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  font-size: .78rem;
  font-weight: 800;
  color: var(--orange);
}
.subservice-arrow { font-size: 1rem; }
.related-section {
  background: #fff;
  padding: 56px 0;
}
.related-section-muted { background: var(--surface); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.related-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  text-decoration: none;
  color: inherit;
  transition: all .2s;
}
.related-card:hover {
  border-color: rgba(255,107,43,.35);
  transform: translateX(4px);
}
.related-ico {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.related-name {
  font-size: .92rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.related-meta { font-size: .75rem; color: var(--muted); font-weight: 600; }
.related-arrow { margin-left: auto; color: var(--orange); font-weight: 900; }

.web-packages { background: #fff; }
.cat-card-link { text-decoration: none; color: inherit; display: block; }

@media (max-width: 768px) {
  .page-hero-inner { padding: 56px 16px 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .catalog-stats { flex-direction: column; gap: 16px; }
  .detail-hero-grid,
  .detail-body-grid { grid-template-columns: 1fr; }
  .subservice-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .detail-features { grid-template-columns: 1fr; }
}
