/* ================================================================
   PREMIUM THEME — Modern White & Green Edition
   ================================================================ */

/* ---- Design Tokens ---- */
:root {
  --p:          #10b981;
  --p-dk:       #059669;
  --p-lt:       #34d399;
  --p-bg:       #ecfdf5;
  --p-glow:     rgba(16,185,129,.22);
  --p-glow-lt:  rgba(16,185,129,.10);

  --dark:       #0a1628;
  --dark-2:     #112240;
  --text:       #1e293b;
  --muted:      #64748b;
  --light-text: #94a3b8;
  --white:      #ffffff;
  --bg:         #f8fffc;
  --surface:    #ffffff;
  --border:     rgba(16,185,129,.15);
  --border-lt:  rgba(16,185,129,.08);

  --sh-xs:   0 1px 4px rgba(0,0,0,.05);
  --sh-sm:   0 4px 20px rgba(0,0,0,.07);
  --sh-md:   0 10px 40px rgba(0,0,0,.09);
  --sh-lg:   0 24px 64px rgba(0,0,0,.11);
  --sh-grn:  0 8px 32px rgba(16,185,129,.35);
  --sh-grn-lg:0 20px 60px rgba(16,185,129,.25);

  --r-sm:   8px;
  --r:      14px;
  --r-lg:   22px;
  --r-xl:   32px;
  --r-full: 9999px;

  --ease:        cubic-bezier(.25,.46,.45,.94);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --t:           .28s var(--ease);
  --t-fast:      .16s var(--ease);
  --t-slow:      .5s  var(--ease);

  --font-h: 'Poppins', system-ui, sans-serif;
  --font-b: 'Rubik',   system-ui, sans-serif;

  /* override old primary */
  --color-primary:       var(--p);
  --color-primary-shade: var(--p-dk);
  --bg-light:            var(--p-bg);
}

/* ---- Reset / Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-b);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0fdf4; }
::-webkit-scrollbar-thumb { background: var(--p); border-radius: 99px; }

/* ================================================================
   KEYFRAME ANIMATIONS
   ================================================================ */
@keyframes float-y {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}
@keyframes float-x {
  0%,100% { transform: translateX(0); }
  50%      { transform: translateX(14px); }
}
@keyframes rotate-slow {
  to { transform: rotate(360deg); }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 var(--p-glow); }
  70%  { box-shadow: 0 0 0 18px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
@keyframes blob-move {
  0%,100% { border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%; }
  25%      { border-radius: 46% 54% 62% 38% / 44% 60% 40% 56%; }
  50%      { border-radius: 38% 62% 54% 46% / 56% 40% 60% 44%; }
  75%      { border-radius: 54% 46% 38% 62% / 40% 56% 44% 60%; }
}
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes shimmer {
  to { background-position: 200% center; }
}
@keyframes fade-up-in {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scale-in {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes line-grow {
  from { width: 0; }
  to   { width: 60px; }
}
@keyframes counter-spin {
  from { transform: rotateX(90deg) translateY(-100%); opacity: 0; }
  to   { transform: rotateX(0deg) translateY(0); opacity: 1; }
}
@keyframes particle-float {
  0%   { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(-800px) rotate(720deg); opacity: 0; }
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-h);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.gradient-text {
  background: linear-gradient(135deg, var(--p) 0%, var(--p-lt) 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}
.text-white-force { color: #fff !important; -webkit-text-fill-color: #fff !important; }

/* ================================================================
   UTILITIES
   ================================================================ */
.section-pad { padding: 110px 0; }
.section-pad-sm { padding: 70px 0; }
.pt-110 { padding-top: 110px; }
.pb-110 { padding-bottom: 110px; }

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--p-bg);
  color: var(--p-dk);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-full);
  border: 1px solid var(--border);
}
.tag-pill .dot {
  width: 6px; height: 6px;
  background: var(--p);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-ring 1.8s infinite;
}

/* Section Header */
.sec-head { margin-bottom: 56px; }
.sec-head .tag-pill { margin-bottom: 16px; }
.sec-head h2 { margin-bottom: 16px; }
.sec-head p {
  color: var(--muted);
  max-width: 560px;
  font-size: 1.05rem;
}
.sec-head.center { text-align: center; }
.sec-head.center p { margin-inline: auto; }

/* Decorative Line */
.deco-line {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--p), var(--p-lt));
  border-radius: var(--r-full);
  margin: 16px 0 20px;
}
.center .deco-line { margin-inline: auto; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  border-radius: var(--r-full);
  transition: var(--t);
  cursor: pointer;
  border: none;
  outline: none;
  white-space: nowrap;
}

.btn-primary-new {
  background: linear-gradient(135deg, var(--p-dk) 0%, var(--p) 60%, var(--p-lt) 100%);
  background-size: 200% auto;
  color: #fff;
  padding: 14px 32px;
  box-shadow: var(--sh-grn);
  animation: gradient-shift 3s ease infinite;
  position: relative;
  overflow: hidden;
}
.btn-primary-new::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--t);
}
.btn-primary-new:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--sh-grn-lg);
  color: #fff;
}
.btn-primary-new:active { transform: translateY(0) scale(.98); }

.btn-outline-new {
  background: transparent;
  color: var(--p-dk);
  padding: 13px 30px;
  border: 2px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-outline-new:hover {
  background: var(--p-bg);
  border-color: var(--p);
  transform: translateY(-2px);
  color: var(--p-dk);
}

.btn-glass {
  background: rgba(255,255,255,.12);
  color: #fff;
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(12px);
}
.btn-glass:hover {
  background: rgba(255,255,255,.22);
  transform: translateY(-2px);
  color: #fff;
}

/* Old btn overrides */
.btn.primary-btn, a.primary-btn {
  background: linear-gradient(135deg, var(--p-dk), var(--p));
  color: #fff !important;
  padding: 12px 28px;
  border-radius: var(--r-full);
  font-weight: 600;
  box-shadow: var(--sh-grn);
  transition: var(--t);
  border: none;
}
.btn.primary-btn:hover, a.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-grn-lg);
  color: #fff !important;
}
.btn.secondary-btn, a.secondary-btn {
  background: var(--p-bg);
  color: var(--p-dk) !important;
  padding: 12px 28px;
  border-radius: var(--r-full);
  font-weight: 600;
  border: 1px solid var(--border);
  transition: var(--t);
}
.btn.secondary-btn:hover, a.secondary-btn:hover {
  background: var(--p-bg);
  border-color: var(--p);
  transform: translateY(-2px);
}

/* ================================================================
   PRELOADER
   ================================================================ */
#preLoader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease;
}
#preLoader .loader {
  width: 72px; height: 72px;
  border: 3px solid var(--p-bg);
  border-top-color: var(--p);
  border-radius: 50%;
  animation: rotate-slow .8s linear infinite;
}
#preLoader img { display: none; }

/* ================================================================
   CURSOR
   ================================================================ */
.cursor {
  position: fixed;
  width: 20px; height: 20px;
  background: var(--p);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, opacity .2s;
  mix-blend-mode: multiply;
  opacity: .6;
}

/* ================================================================
   HEADER / NAVBAR
   ================================================================ */
.header-area {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-lt);
  transition: box-shadow var(--t), background var(--t);
}
.header-area.scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: 0 2px 24px rgba(16,185,129,.12);
}

.main-navbar { padding: 0; }
.main-navbar .container { max-width: 1240px; }
.main-navbar .navbar { padding: 16px 0; gap: 32px; }
.navbar-brand img { height: 38px; width: auto; }
.main-responsive-nav { display: none; }

/* Nav links */
.navbar-nav .nav-item .nav-link {
  font-family: var(--font-h);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text) !important;
  padding: 8px 14px !important;
  border-radius: var(--r-sm);
  transition: var(--t);
  position: relative;
}
.navbar-nav .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--p-dk), var(--p-lt));
  border-radius: var(--r-full);
  transition: width var(--t), left var(--t);
}
.navbar-nav .nav-item .nav-link:hover::after,
.navbar-nav .nav-item .nav-link.active::after {
  width: calc(100% - 28px);
  left: 14px;
}
.navbar-nav .nav-item .nav-link:hover { color: var(--p-dk) !important; }

/* Dropdown */
.menu-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--t);
}
.nav-item:hover .menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.menu-dropdown .nav-link {
  border-radius: var(--r-sm) !important;
  padding: 9px 14px !important;
  display: block;
}
.menu-dropdown .nav-link:hover { background: var(--p-bg) !important; color: var(--p-dk) !important; }

/* Nav CTA */
.more-option { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.more-option .language select {
  background: var(--p-bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: .84rem;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: var(--r-full);
  cursor: pointer;
  outline: none;
}

/* ================================================================
   GO TOP
   ================================================================ */
.go-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--p-dk), var(--p));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: var(--sh-grn);
  transition: var(--t);
  opacity: 0;
  pointer-events: none;
  z-index: 900;
}
.go-top.active { opacity: 1; pointer-events: all; }
.go-top:hover { transform: translateY(-4px); box-shadow: var(--sh-grn-lg); color: #fff; }

/* ================================================================
   BREADCRUMB
   ================================================================ */
.page-title-area {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.page-title-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, var(--p-glow), transparent);
}
.page-title-area .content h1 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 12px; }
.page-title-area .content ul { color: var(--light-text); font-size: .9rem; }
.page-title-area .content ul a { color: var(--p-lt); }
.page-title-area .content ul .active { color: var(--light-text); }

/* ================================================================
   HERO SECTION
   ================================================================ */
.home-banner {
  background: var(--white);
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Animated mesh background */
.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-mesh::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(16,185,129,.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-y 8s ease-in-out infinite;
}
.hero-mesh::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -50px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(52,211,153,.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-y 10s ease-in-out infinite reverse;
}

/* Hero blobs */
.hero-blob-1 {
  position: absolute;
  top: 60px; right: 80px;
  width: 420px; height: 420px;
  background: linear-gradient(135deg, rgba(16,185,129,.14), rgba(52,211,153,.08));
  animation: blob-move 12s ease-in-out infinite, float-y 9s ease-in-out infinite;
  filter: blur(1px);
}
.hero-blob-2 {
  position: absolute;
  bottom: 80px; left: 60px;
  width: 280px; height: 280px;
  background: linear-gradient(135deg, rgba(6,182,212,.10), rgba(16,185,129,.06));
  animation: blob-move 14s ease-in-out infinite reverse, float-x 11s ease-in-out infinite;
  filter: blur(2px);
}

/* Particle dots grid */
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(16,185,129,.15) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: .6;
}

.home-banner .container { position: relative; z-index: 1; }
.home-banner .row { min-height: 600px; }

/* Hero left content */
.hero-content { max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--p-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 8px 18px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--p-dk);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 24px;
}
.hero-badge i { font-size: .9rem; }

.hero-content h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}
.hero-content h1 .accent { color: var(--p); position: relative; display: inline-block; }
.hero-content h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--p-dk), var(--p-lt));
  border-radius: 2px;
  opacity: .5;
}

.hero-content p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-btns { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat .num {
  font-family: var(--font-h);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.hero-stat .num span { color: var(--p); }
.hero-stat .lbl {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}

/* Hero image side */
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  animation: float-y 6s ease-in-out infinite;
}
.hero-img-frame img { width: 100%; border-radius: var(--r-xl); }
.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--p-lt), var(--p-dk), #06b6d4);
  border-radius: calc(var(--r-xl) + 2px);
  z-index: -1;
  opacity: .6;
}

/* Floating cards on hero image */
.hero-float-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--sh-md);
  font-family: var(--font-h);
  font-size: .8rem;
  font-weight: 600;
  color: var(--dark);
  backdrop-filter: blur(8px);
}
.hero-float-card i { color: var(--p); font-size: 1.1rem; }
.hero-float-card-1 {
  top: 20%; left: -30px;
  animation: float-y 4.5s ease-in-out infinite;
}
.hero-float-card-2 {
  bottom: 18%; right: -30px;
  animation: float-y 5.5s ease-in-out infinite reverse;
}

/* Old hero shape - hide */
.home-banner .shape { display: none; }
.banner-img.image-right { position: relative; }
.banner-img img { border-radius: var(--r-xl); box-shadow: var(--sh-lg); }

/* ================================================================
   PARTNERS / SPONSORS
   ================================================================ */
.sponsor {
  padding: 70px 0;
  background: var(--white);
  position: relative;
}
.sponsor::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.sponsor::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.sponsor .section-title { margin-bottom: 36px; }
.sponsor .section-title .subtitle { color: var(--muted); font-size: .9rem; display: block; margin-bottom: 6px; }
.sponsor .section-title .title { font-size: 1.4rem; color: var(--dark); }
.sponsor-label {
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--light-text);
  margin-bottom: 32px;
}
.sponsor-slider .swiper-slide { display: flex; align-items: center; justify-content: center; }
.sponsor-img img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(.5);
  transition: filter var(--t), transform var(--t);
}
.sponsor-img:hover img { filter: grayscale(0) opacity(1); transform: scale(1.08); }

/* ================================================================
   PROCESS / HOW IT WORKS
   ================================================================ */
.store-area {
  padding: 110px 0;
  background: linear-gradient(160deg, var(--white) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.store-area .shape { display: none; }

.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; margin-top: 56px; }

.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  text-align: center;
}
.process-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--p-bg), transparent);
  opacity: 0;
  transition: opacity var(--t);
}
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-md);
  border-color: var(--p);
}
.process-card:hover::before { opacity: 1; }

.process-num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-h);
  font-size: 4rem;
  font-weight: 800;
  color: var(--p);
  opacity: .07;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.process-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--p-bg), rgba(16,185,129,.08));
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--p);
  margin: 0 auto 20px;
  transition: transform var(--t), background var(--t);
  position: relative;
}
.process-card:hover .process-icon {
  background: linear-gradient(135deg, var(--p), var(--p-lt));
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}
.process-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--dark);
  position: relative;
}
.process-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
  position: relative;
}

/* Old card.primary override */
.card.primary {
  all: unset;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  display: block;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  text-align: center;
  cursor: default;
}
.card.primary:hover { transform: translateY(-8px); box-shadow: var(--sh-md); border-color: var(--p); }
.card-icon.green {
  width: 64px; height: 64px;
  background: var(--p-bg);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--p);
  margin: 0 auto 20px;
  transition: transform var(--t), background var(--t);
}
.card.primary:hover .card-icon.green {
  background: linear-gradient(135deg, var(--p), var(--p-lt));
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}
.card-content .card-title { font-size: 1.1rem; margin-bottom: 10px; color: var(--dark); }
.card-content .card-text { font-size: .9rem; color: var(--muted); line-height: 1.65; }

/* ================================================================
   TEMPLATE PREVIEWS
   ================================================================ */
.template-area {
  padding: 110px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.template-area .shape, .template-area .bg-overlay { display: none; }

.template-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  transition: transform var(--t), box-shadow var(--t);
  margin-bottom: 30px;
}
.template-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--sh-lg); }
.template-card .card-image { position: relative; overflow: hidden; }
.template-card .card-image img { width: 100%; height: 240px; object-fit: cover; transition: transform .5s var(--ease); }
.template-card:hover .card-image img { transform: scale(1.06); }
.template-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--t);
}
.template-card:hover .card-overlay { opacity: 1; }
.template-card .card-overlay a {
  background: var(--white);
  color: var(--dark);
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--r-full);
  transition: var(--t);
}
.template-card .card-overlay a:hover { background: var(--p); color: #fff; }

/* Old template card overrides */
.template-area .card.text-center {
  all: unset;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  transition: transform var(--t), box-shadow var(--t);
  display: block;
  margin-bottom: 30px;
}
.template-area .card.text-center:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--sh-lg); }
.template-area .card-image { position: relative; overflow: hidden; }
.template-area .card-image img, .template-area .card-image .lazyload {
  width: 100%; height: 240px; object-fit: cover;
  transition: transform .5s var(--ease);
}
.template-area .card.text-center:hover .card-image img,
.template-area .card.text-center:hover .card-image .lazyload { transform: scale(1.06); }

/* ================================================================
   INTRO / FEATURES
   ================================================================ */
.choose-area {
  padding: 110px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.choose-area .shape { display: none; }

.choose-content .subtitle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--p-bg);
  color: var(--p-dk);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-full);
  border: 1px solid var(--border);
  margin-bottom: 18px;
}
.choose-content h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; line-height: 1.2; }
.choose-content .text { color: var(--muted); font-size: 1rem; line-height: 1.75; margin-bottom: 28px; }
.choose-content .d-flex { gap: 14px; }

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: linear-gradient(180deg, var(--p), var(--p-lt));
  border-radius: 0 0 4px 4px;
  transition: height .4s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--p); }
.feature-card:hover::after { height: 100%; }
.feature-card .card-icon.green { margin: 0 0 16px; }
.feature-card .card-icon.green img { width: 36px; height: 36px; object-fit: contain; }
.feature-card .card-title { font-size: 1rem; margin-bottom: 8px; }
.feature-card .card-text { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* Override old feature card class */
.choose-area .card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
.choose-area .card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--p); }

/* ================================================================
   PRICING
   ================================================================ */
.pricing-area {
  padding: 110px 0;
  background: linear-gradient(160deg, var(--bg) 0%, var(--white) 60%);
  position: relative;
  overflow: hidden;
}
.pricing-area .shape, .pricing-area .bg-overlay { display: none; }

/* Pricing tabs */
.nav-tabs-navigation { margin-bottom: 44px; }
.nav-tabs-navigation .nav-tabs {
  display: inline-flex;
  background: var(--p-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 6px;
  gap: 4px;
  border-bottom: none;
}
.nav-tabs-navigation .nav-tabs .nav-link {
  font-family: var(--font-h);
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
  padding: 9px 24px;
  border-radius: var(--r-full);
  border: none;
  background: transparent;
  transition: var(--t);
}
.nav-tabs-navigation .nav-tabs .nav-link.active {
  background: var(--p);
  color: #fff;
  box-shadow: var(--sh-grn);
}
.nav-tabs-navigation .nav-tabs .nav-link:hover:not(.active) { color: var(--p-dk); }

/* Pricing card */
.pricing-area .card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  margin-bottom: 28px;
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
}
.pricing-area .card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }

/* Recommended/active pricing card */
.pricing-area .card.active {
  background: linear-gradient(145deg, var(--dark) 0%, var(--dark-2) 100%);
  border-color: transparent;
  box-shadow: var(--sh-lg);
}
.pricing-area .card.active::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--p-lt), var(--p), #06b6d4);
  border-radius: calc(var(--r-xl) + 1px);
  z-index: -1;
}
.pricing-area .card.active h3,
.pricing-area .card.active .price,
.pricing-area .card.active h5,
.pricing-area .card.active .item-list li { color: #fff; }
.pricing-area .card.active .period,
.pricing-area .card.active .item-list li.disabled { color: rgba(255,255,255,.5); }
.pricing-area .card.active .item-list li.disabled i { color: rgba(255,255,255,.3); }

.pricing-area .card .icon { /* package icon */
  width: 52px; height: 52px;
  background: var(--p-bg);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--p);
  flex-shrink: 0;
  transition: var(--t);
}
.pricing-area .card.active .icon { background: rgba(255,255,255,.12); color: var(--p-lt); }
.pricing-area .card:not(.active):hover .icon { background: var(--p); color: #fff; }

.pricing-area .card .label h3 { font-size: 1.15rem; margin-bottom: 2px; }
.pricing-area .card .label span { font-size: .78rem; color: var(--p); font-weight: 600; background: var(--p-bg); padding: 3px 10px; border-radius: var(--r-full); }
.pricing-area .card.active .label span { background: rgba(16,185,129,.2); color: var(--p-lt); }

.pricing-area .card .price {
  font-family: var(--font-h);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin: 20px 0 4px;
}
.pricing-area .card .period { font-size: .85rem; color: var(--muted); font-weight: 500; margin-left: 6px; }
.pricing-area .card h5 { font-size: .88rem; color: var(--dark); font-weight: 600; margin-bottom: 14px; margin-top: 20px; }

.pricing-area .item-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-area .item-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--text);
}
.pricing-area .item-list li i { color: var(--p); width: 18px; text-align: center; }
.pricing-area .item-list li.disabled { color: var(--light-text); }
.pricing-area .item-list li.disabled i { color: var(--light-text); }

.pricing-area .d-flex.align-items-center { gap: 12px; flex-wrap: wrap; }

/* ================================================================
   FEATURED USERS
   ================================================================ */
.user-profile-area {
  padding: 110px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.user-profile-area .shape, .user-profile-area .bg-overlay { display: none; }

.user-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
  text-align: center;
  padding-bottom: 28px;
}
.user-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.user-card .user-avatar-wrap {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, var(--p-bg), rgba(16,185,129,.05));
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 0;
}
.user-card .user-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--sh-sm);
  transform: translateY(45px);
}
.user-card .card-content { padding: 52px 24px 0; }
.user-card .card-title { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.user-card .social-link { display: flex; justify-content: center; gap: 10px; margin-bottom: 16px; }
.user-card .social-link a {
  width: 32px; height: 32px;
  background: var(--p-bg);
  color: var(--p-dk);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem;
  transition: var(--t);
}
.user-card .social-link a:hover { background: var(--p); color: #fff; transform: translateY(-2px); }
.user-card .cta-btns { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }

/* Old user slider overrides */
.user-slider .card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
  padding-bottom: 28px;
  text-align: center;
}
.user-slider .card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.user-slider .card .icon {
  height: 160px;
  background: linear-gradient(135deg, var(--p-bg), rgba(16,185,129,.04));
  display: flex; align-items: center; justify-content: center;
  padding: 0;
}
.user-slider .card .icon img {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--sh-sm);
}
.user-slider .card .card-content.blue { padding: 20px 20px 0; }
.user-slider .card .card-title { font-size: 1.05rem; margin-bottom: 10px; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonial-area {
  padding: 110px 0;
  background: linear-gradient(160deg, var(--bg) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.testimonial-area .shape, .testimonial-area .bg-overlay { display: none; }

.testimonial-area .section-title.ms-0 { margin-left: 0 !important; }

.testimonial-area .image.image-left img {
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  width: 100%;
}

.testimonial-area .slider-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 20px;
  transition: transform var(--t), box-shadow var(--t);
}
.testimonial-area .slider-item:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

.testimonial-area .quote .icon {
  width: 40px; height: 40px;
  background: var(--p-bg);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--p);
  font-size: 1rem;
  margin-bottom: 14px;
}
.testimonial-area .quote .text {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-area .client { display: flex; align-items: center; gap: 12px; }
.testimonial-area .client .image .lazy-container {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--p);
}
.testimonial-area .client .image img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-area .client .name { font-size: .9rem; font-weight: 700; color: var(--dark); }
.testimonial-area .client .designation { font-size: .8rem; color: var(--muted); }

/* ================================================================
   BLOG
   ================================================================ */
.blog-area {
  padding: 110px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.blog-area .shape, .blog-area .bg-overlay { display: none; }

.blog-area .card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
  margin-bottom: 28px;
  display: block;
}
.blog-area .card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }

.blog-area .card-image { position: relative; overflow: hidden; }
.blog-area .card-image .lazy-container { display: block; }
.blog-area .card-image img, .blog-area .card-image .lazyload {
  width: 100%; height: 220px; object-fit: cover;
  transition: transform .5s var(--ease);
}
.blog-area .card:hover .card-image img,
.blog-area .card:hover .card-image .lazyload { transform: scale(1.06); }

.blog-area .card-image .info-list {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,22,40,.75), transparent);
  display: flex;
  gap: 16px;
  padding: 16px 18px 12px;
  margin: 0;
}
.blog-area .card-image .info-list li {
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  font-weight: 500;
  display: flex; align-items: center; gap: 5px;
}
.blog-area .card-image .info-list li i { color: var(--p-lt); }

.blog-area .content { padding: 22px; }
.blog-area .content .card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.45;
}
.blog-area .content .card-title a { color: var(--dark); transition: color var(--t); }
.blog-area .content .card-title a:hover { color: var(--p); }
.blog-area .content .card-text { font-size: .88rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.blog-area .content .card-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .84rem; font-weight: 600; color: var(--p);
  transition: gap var(--t);
}
.blog-area .content .card-btn::after { content: '→'; transition: transform var(--t); }
.blog-area .content .card-btn:hover { gap: 10px; }

/* ================================================================
   SECTION TITLE (global override)
   ================================================================ */
.section-title .subtitle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--p-bg);
  color: var(--p-dk);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-full);
  border: 1px solid var(--border);
  margin-bottom: 14px;
}
.section-title .title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.25;
}
.section-title .shape-1,
.section-title .shape-2 { display: none; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer-area {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.footer-area::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(16,185,129,.08) 0%, transparent 70%);
  border-radius: 50%;
}

.footer-top { padding: 90px 0 60px; }

.footer-widget .navbar-brand img { height: 36px; width: auto; filter: brightness(1.2); margin-bottom: 16px; }
.footer-widget p { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.75; margin-bottom: 20px; }
.footer-widget h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 3px;
  background: linear-gradient(90deg, var(--p), var(--p-lt));
  border-radius: var(--r-full);
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-links li a {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  transition: color var(--t), padding-left var(--t);
}
.footer-links a:hover, .footer-links li a:hover { color: var(--p-lt); padding-left: 4px; }

.info-list { display: flex; flex-direction: column; gap: 12px; }
.info-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,.55);
  font-size: .9rem;
}
.info-list li i { color: var(--p); margin-top: 3px; flex-shrink: 0; }
.info-list li a { color: rgba(255,255,255,.55); transition: color var(--t); }
.info-list li a:hover { color: var(--p-lt); }

/* Newsletter */
.footer-widget .subscribeForm .input-group {
  display: flex;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-full);
  overflow: hidden;
  padding: 4px;
}
.footer-widget .subscribeForm .form-control {
  background: transparent;
  border: none;
  color: #fff;
  font-size: .88rem;
  padding: 10px 16px;
  outline: none;
  box-shadow: none;
  flex: 1;
}
.footer-widget .subscribeForm .form-control::placeholder { color: rgba(255,255,255,.35); }
.footer-widget .subscribeForm .btn {
  background: linear-gradient(135deg, var(--p-dk), var(--p));
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
}
.footer-widget .subscribeForm .btn:hover { transform: none; background: var(--p-lt); }

.copy-right-area {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.copy-right-content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.copy-right-content span, .copy-right-content a {
  color: rgba(255,255,255,.4);
  font-size: .82rem;
}
.copy-right-content a:hover { color: var(--p-lt); }

/* ================================================================
   SWIPER PAGINATION
   ================================================================ */
.swiper-pagination-bullet {
  background: var(--p-lt) !important;
  opacity: .4 !important;
  width: 8px !important;
  height: 8px !important;
  transition: var(--t) !important;
}
.swiper-pagination-bullet-active {
  background: var(--p) !important;
  opacity: 1 !important;
  width: 24px !important;
  border-radius: var(--r-full) !important;
}

/* ================================================================
   SECTION SEPARATORS / BLOBS
   ================================================================ */
.sec-blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  opacity: .5;
}
.sec-blob-tl {
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,.12), transparent);
  animation: float-y 10s ease-in-out infinite;
}
.sec-blob-br {
  bottom: -100px; right: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(6,182,212,.08), transparent);
  animation: float-y 12s ease-in-out infinite reverse;
}

/* ================================================================
   AOS ENHANCEMENTS
   ================================================================ */
[data-aos] { will-change: transform, opacity; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1199px) {
  .hero-float-card-1 { left: -10px; }
  .hero-float-card-2 { right: -10px; }
}

@media (max-width: 991px) {
  .home-banner { min-height: auto; padding: 90px 0 60px; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-content p { margin-inline: auto; }
  .hero-btns, .hero-stats { justify-content: center; }
  .hero-image-wrap { margin-top: 48px; }
  .hero-float-card { display: none; }
  .hero-blob-1, .hero-blob-2 { width: 200px; height: 200px; }

  .main-navbar { display: none; }
  .main-responsive-nav { display: block; }
  .main-responsive-nav .container {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px;
  }
  .main-responsive-nav .logo img { height: 34px; }
  .main-responsive-nav .menu-toggler {
    background: var(--p-bg);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 10px 12px;
    display: flex; flex-direction: column; gap: 5px;
    cursor: pointer;
  }
  .main-responsive-nav .menu-toggler span {
    display: block; width: 22px; height: 2px;
    background: var(--p);
    border-radius: 2px;
    transition: var(--t);
  }

  .mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,22,40,.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    display: none;
  }
  .mobile-menu.open { display: block; }
  .mobile-menu-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 280px; height: 100vh;
    background: var(--white);
    padding: 80px 24px 32px;
    overflow-y: auto;
    box-shadow: var(--sh-lg);
    transform: translateX(-100%);
    transition: transform var(--t);
  }
  .mobile-menu.open .mobile-menu-wrapper { transform: translateX(0); }

  .choose-content { margin-bottom: 40px; }
  .testimonial-area .image { margin-bottom: 40px; }

  .footer-widget { margin-bottom: 40px; }
}

@media (max-width: 767px) {
  .section-pad, .pt-110, .pb-110 { padding: 70px 0; }
  .store-area, .template-area, .choose-area, .pricing-area,
  .user-profile-area, .testimonial-area, .blog-area { padding: 70px 0; }
  .footer-top { padding: 60px 0 40px; }

  .hero-stats { gap: 20px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-stats { justify-content: center; }
}

/* ================================================================
   PARTICLE CANVAS
   ================================================================ */
#hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .5;
}

/* ================================================================
   COUNTER SECTION (stats bar)
   ================================================================ */
.stats-bar {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--p-dk) 0%, var(--p) 50%, var(--p-lt) 100%);
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
}
.stats-bar .stat-item { text-align: center; position: relative; }
.stats-bar .stat-num {
  font-family: var(--font-h);
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stats-bar .stat-lbl {
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}
.stats-bar .stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  height: 50px; width: 1px;
  background: rgba(255,255,255,.2);
}

/* ================================================================
   VIDEO POPUP BUTTON
   ================================================================ */
.btn.video-btn {
  width: 52px; height: 52px;
  background: var(--white);
  color: var(--p) !important;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: var(--sh-md);
  padding: 0;
  border: none;
  position: relative;
  flex-shrink: 0;
  animation: pulse-ring 2s infinite;
}
.btn.video-btn:hover { background: var(--p); color: #fff !important; transform: scale(1.08); }

/* ================================================================
   FIX 1 — NAVBAR: FULLY TRANSPARENT ON TOP, BLUR ON SCROLL
   ================================================================ */
.header-area {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid transparent !important;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, backdrop-filter .35s ease !important;
}
.header-area.scrolled {
  background: rgba(255,255,255,.88) !important;
  backdrop-filter: blur(24px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(200%) !important;
  border-bottom: 1px solid rgba(16,185,129,.12) !important;
  box-shadow: 0 4px 28px rgba(16,185,129,.1) !important;
}

/* At top: make nav links white so visible on hero */
.header-area:not(.scrolled) .navbar-nav .nav-item .nav-link {
  color: rgba(255,255,255,.9) !important;
}
.header-area:not(.scrolled) .navbar-nav .nav-item .nav-link:hover {
  color: #fff !important;
  background: rgba(255,255,255,.12) !important;
}
.header-area:not(.scrolled) .btn-outline-new {
  color: #fff !important;
  border-color: rgba(255,255,255,.35) !important;
}
.header-area:not(.scrolled) .btn-outline-new:hover {
  background: rgba(255,255,255,.15) !important;
  border-color: rgba(255,255,255,.6) !important;
  color: #fff !important;
}
.header-area:not(.scrolled) .language select {
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.25) !important;
  color: #fff !important;
}

/* Push hero down so it starts under fixed header */
.home-banner {
  padding-top: 100px !important;
}

/* ================================================================
   FIX 2 — PRICING: COLLAPSE FEATURE LIST + VIEW MORE
   ================================================================ */
.pricing-area .item-list {
  position: relative;
}
.pricing-area .item-list .pricing-hidden-items {
  display: none;
}
.pricing-area .item-list.expanded .pricing-hidden-items {
  display: flex;
}
.pricing-view-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--p-dk);
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 4px;
  border: none;
  background: none;
  padding: 0;
  transition: gap .2s ease;
}
.pricing-view-more:hover { gap: 10px; }
.pricing-view-more i { transition: transform .25s ease; font-size: .75rem; }
.pricing-view-more.open i { transform: rotate(180deg); }
/* On dark card */
.pricing-area .card.active .pricing-view-more { color: rgba(255,255,255,.8); }
.pricing-area .card.active .pricing-view-more:hover { color: #fff; }

/* ================================================================
   FIX 3 — PRICING: BUTTON CONTRAST ON DARK RECOMMENDED CARD
   ================================================================ */
.pricing-area .card.active .btn.primary-btn,
.pricing-area .card.active a.primary-btn {
  background: #fff !important;
  color: var(--p-dk) !important;
  box-shadow: 0 4px 16px rgba(255,255,255,.2) !important;
}
.pricing-area .card.active .btn.primary-btn:hover,
.pricing-area .card.active a.primary-btn:hover {
  background: var(--p-bg) !important;
  color: var(--p-dk) !important;
  transform: translateY(-2px) !important;
}
.pricing-area .card.active .btn.secondary-btn,
.pricing-area .card.active a.secondary-btn {
  background: rgba(255,255,255,.12) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.3) !important;
}
.pricing-area .card.active .btn.secondary-btn:hover,
.pricing-area .card.active a.secondary-btn:hover {
  background: rgba(255,255,255,.2) !important;
  border-color: rgba(255,255,255,.5) !important;
  transform: translateY(-2px) !important;
}

/* ================================================================
   FIX 4 — FEATURED USERS: CLEAN CARD LAYOUT
   ================================================================ */
.user-slider .swiper-slide { height: auto !important; }

/* Override any old style.css rules with higher specificity */
.user-profile-area .user-slider .card {
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  text-align: center !important;
  padding: 0 0 24px 0 !important;
  box-shadow: var(--sh-sm) !important;
  transition: transform var(--t), box-shadow var(--t) !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}
.user-profile-area .user-slider .card:hover {
  transform: translateY(-8px) !important;
  box-shadow: var(--sh-lg) !important;
}

/* The top icon/avatar section */
.user-profile-area .user-slider .card .icon {
  width: 100% !important;
  height: 100px !important;
  background: linear-gradient(135deg, var(--p-bg) 0%, rgba(52,211,153,.08) 100%) !important;
  border-radius: 0 !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  padding-bottom: 0 !important;
  flex-shrink: 0 !important;
}
.user-profile-area .user-slider .card .icon img {
  width: 80px !important;
  height: 80px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 3px solid #fff !important;
  box-shadow: 0 4px 16px rgba(0,0,0,.12) !important;
  transform: translateY(40px) !important;
  flex-shrink: 0 !important;
  display: block !important;
}

/* Content below avatar */
.user-profile-area .user-slider .card .card-content.blue {
  padding: 52px 20px 0 !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}
.user-profile-area .user-slider .card .card-title {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
  margin-bottom: 10px !important;
}
.user-profile-area .user-slider .card .social-link {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-bottom: 16px !important;
}
.user-profile-area .user-slider .card .social-link a {
  width: 30px !important;
  height: 30px !important;
  background: var(--p-bg) !important;
  color: var(--p-dk) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: .78rem !important;
  transition: var(--t) !important;
}
.user-profile-area .user-slider .card .social-link a:hover {
  background: var(--p) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
}
.user-profile-area .user-slider .card .cta-btns {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
  margin-top: auto !important;
}

/* ================================================================
   ALSO FIX: hero needs padding for fixed navbar
   ================================================================ */
body > .header-area + section.home-banner,
.home-banner { margin-top: 0; }
