/* ============================================================
   IDGEN PRODUCTS — Custom Stylesheet
   ============================================================ */

/* ---------- Google Fonts ----------
   Loaded via <link rel="stylesheet"> in each page's <head>
   (with display=swap) instead of @import for better performance —
   @import blocks parallel downloads and delays first paint. */

/* ---------- CSS Variables ---------- */
:root {
  --primary:       #0A4293;
  --primary-dark:  #072F5F;
  --secondary:     #0B3868;
  --accent:        #D9091E;
  --gradient:      linear-gradient(135deg, #072F5F 0%, #0A4293 100%);
  --gradient-soft: linear-gradient(135deg, #EAF1FB 0%, #DCE7F7 100%);
  --dark:          #1A1A1A;
  --dark-2:        #2D2D2D;
  --text:          #232A33;
  --text-muted:    #5B6472;
  --border:        #DDE3EC;
  --white:         #FFFFFF;
  --light:         #F5F7FA;
  --success:       #4CAF50;
  --warning:       #F59E0B;
  --font-heading:  'Plus Jakarta Sans', sans-serif;
  --font-body:     'Inter', sans-serif;
  --radius-sm:     8px;
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:        0 4px 16px rgba(0,0,0,.08);
  --shadow-md:     0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:     0 20px 60px rgba(0,0,0,.12);
  --transition:    all .3s cubic-bezier(.4,0,.2,1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.25;
  font-weight: 700;
}

p { color: var(--text); }

a { text-decoration: none; transition: var(--transition); }

img { max-width: 100%; height: auto; }

/* ---------- Utility ---------- */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-brand { background: var(--gradient); }

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.badge-primary-soft {
    background: rgba(10, 66, 147, 0.5);
    color: white;
}

.section-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
}


/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius);
  padding: 12px 28px;
  font-size: .95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gradient);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(10,66,147,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10,66,147,.45);
  color: var(--white);
  filter: brightness(1.08);
  border-color: var(--primary) !important;
}

.btn-outline-primary {
  border-color: var(--primary) !important;
  color: var(--secondary);
  background: transparent;
}
.btn-outline-primary:hover {
  background: var(--gradient);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  border-color: var(--border);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover {
  background: var(--gradient);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 15px 36px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

/* ---------- Navbar Logo ---------- */
.navbar-logo {
    height: 50px;
    width: auto;
    display: block;
    transition: var(--transition);
    object-fit: contain;
}

/* On dark/transparent hero navbar — add white pill backdrop so logo is readable */
#mainNav:not(.scrolled):not(.nav-inner) .navbar-brand {
  background: rgba(255, 255, 255);
  border-radius: var(--radius);
  padding: 5px 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}

/* On scrolled/inner navbar — no backdrop needed, white bg already */
#mainNav.scrolled .navbar-brand,
#mainNav.nav-inner .navbar-brand,
#mainNav[style*="position:static"] .navbar-brand {
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.navbar-logo:hover { opacity: .85; }

/* Footer logo */
.footer-logo {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 4px 10px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,.1);
    transition: var(--transition);
}

.footer-logo:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255,255,255,.2);
}

/* ---------- Navbar ---------- */
#mainNav {
  background: transparent;
  padding: 18px 0;
  transition: var(--transition);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
}

#mainNav.scrolled {
  background: rgba(255,255,255);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

#mainNav .navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  transition: var(--transition);
}

#mainNav.scrolled .navbar-brand { color: var(--dark); }

#mainNav .nav-link {
  font-weight: 500;
  font-size: .9rem;
  color: var(--text);
  padding: 6px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

#mainNav .nav-link:hover { color: var(--primary); background: rgba(10,66,147,.1); }
#mainNav .nav-link.active { color: var(--primary); background: rgba(10,66,147,.14); font-weight: 700; }
#mainNav.scrolled .nav-link { color: var(--text); }
#mainNav.scrolled .nav-link:hover { color: var(--primary); background: rgba(10,66,147,.1); }
#mainNav.scrolled .nav-link.active { color: var(--primary); background: rgba(10,66,147,.14); font-weight: 700; }

#mainNav .nav-cta {
  background: var(--gradient);
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 8px 22px !important;
  box-shadow: var(--shadow-sm);
}

#mainNav .nav-cta:hover {
  background: var(--primary-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
}

#mainNav.scrolled .nav-cta {
  background: var(--gradient);
  color: var(--white) !important;
}

.navbar-toggler {
  border: none;
  padding: 6px;
}

.navbar-toggler:focus { box-shadow: none; }

.navbar-toggler-icon-custom {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.navbar-toggler-icon-custom span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

#mainNav.scrolled .navbar-toggler-icon-custom span { background: var(--dark); }

/* ---------- Hero ---------- */
#hero {
    min-height: 70vh;
    background: linear-gradient(135deg, #F5F8FC 0%, #E9F0FA 55%, #F5F8FC 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 135px 0 50px;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 600px at 20% 50%, rgba(10,66,147,.09) 0%, transparent 70%),
    radial-gradient(ellipse 700px 500px at 80% 20%, rgba(217,9,30,.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,66,147,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,66,147,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,66,147,.08);
  border: 1px solid rgba(10,66,147,.18);
  border-radius: 100px;
  padding: 6px 18px 6px 8px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

.hero-badge span {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .04em;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,.5); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

.hero-title {
    font-size: clamp(1.6rem, 5vw, 1.6rem);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.7;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 36px;
}

@media (max-width: 575.98px) {
  /* A plain flex-wrap ragged-wraps these onto uneven line lengths on narrow screens (two short
     items share a row, longer ones sit alone) - a fixed 2-column grid keeps them aligned. */
  .hero-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 14px; }
}

.hero-checks .check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
}

.hero-checks .check-icon {
  width: 20px;
  height: 20px;
  background: rgba(16,185,129,.2);
  border: 1px solid rgba(16,185,129,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--success);
  font-size: .65rem;
}

/* Hero Visual Card */
.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: 0 25px 80px rgba(10,66,147,.14);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-card-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-card-dots span:nth-child(1) { background: #EF4444; }
.hero-card-dots span:nth-child(2) { background: var(--warning); }
.hero-card-dots span:nth-child(3) { background: var(--primary); }

.hero-card-title {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0;
  letter-spacing: .06em;
}

.hero-preview-area {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  min-height: 220px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.id-card-mock {
  width: 100px;
  height: 62px;
  border-radius: 6px;
  background: linear-gradient(135deg, #072F5F, #0A4293);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  flex-shrink: 0;
}

.id-card-mock::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px;
}

.id-card-mock.selected {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  animation: card-pulse 2s ease infinite;
}

@keyframes card-pulse {
  0%, 100% { outline-color: var(--accent); }
  50% { outline-color: rgba(6,182,212,.4); }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.hero-stat {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  text-align: center;
}

.hero-stat .stat-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  font-family: var(--font-heading);
  display: block;
}

.hero-stat .stat-label {
  font-size: .72rem;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--dark);
  animation: float 3s ease-in-out infinite;
}

.floating-badge.top-right {
  top: -40px;
  right: -16px;
}

.floating-badge.bottom-left {
  bottom: -40px;
  left: -16px;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-badge .badge-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* ---------- Trusted By ---------- */
#trusted {
  padding: 60px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.trusted-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  text-align: center;
  margin-bottom: 28px;
}

.logos-track {
  display: flex;
  gap: 40px;
  overflow: hidden;
  position: relative;
}

.logos-inner {
  display: flex;
  gap: 40px;
  animation: marquee 22s linear infinite;
  flex-shrink: 0;
}

.logos-inner:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Hero Package Spotlight (single slide at a time, auto-cycling) ---------- */
.hero-spotlight {
    max-width: 360px;
    margin: 0 auto;
}

.hero-spotlight-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Diagonal corner ribbon for the recommended plan (see HeroCarouselItem.IsRecommended) - the
   card needs overflow:hidden (set above) so the rotated ends tuck neatly behind the rounded
   corner instead of poking out past it. */
.hero-spotlight-ribbon {
    position: absolute;
    top: 32px;
    right: -36px;
    transform: rotate(45deg);
    background: var(--gradient);
    color: var(--white);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: 5px 42px;
    box-shadow: var(--shadow);
}

.hero-spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient-soft);
  color: var(--primary);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-spotlight-media {
    display: block;
    width: 150px;
    height: 150px;
    margin: 0 auto 22px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gradient-soft);
    box-shadow: 0 0 0 8px rgba(10,66,147,.08);
    flex-shrink: 0;
}

.hero-spotlight-media img { width: 100%; height: 100%; object-fit: cover; }

.hero-spotlight-noimg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--primary);
}

.hero-spotlight-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.hero-spotlight-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.hero-spotlight-price-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1;
}

.hero-spotlight-duration {
  font-size: .85rem;
  color: var(--text-muted);
  margin: 6px 0 0;
}

.hero-spotlight-card .d-grid { width: 100%; margin-top: auto; }

.hero-spotlight-indicators {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 0;
  border: none;
}

/* The visible dot is 10px, but padding + background-clip:content-box pads the actual clickable
   button box out to ~22px so it's easy to hit without making the dot itself look oversized. */
.hero-spotlight-indicators button {
  width: 10px;
  height: 10px;
  padding: 6px;
  border: none;
  border-radius: 50%;
  background-color: var(--border);
  background-clip: content-box;
  opacity: 1;
  cursor: pointer;
  transition: var(--transition);
}

.hero-spotlight-indicators button:hover { background-color: var(--primary); opacity: .6; }

.hero-spotlight-indicators button.active {
  width: 24px;
  border-radius: 100px;
  background-color: var(--primary);
  opacity: 1;
}

@media (max-width: 991.98px) {
  .hero-spotlight-card { padding: 28px 24px; min-height: 420px; }
  .hero-spotlight-media { width: 140px; height: 140px; }
}

/* ---------- Supported ID Cards (full-bleed dark bar, auto-scrolling) ---------- */
#supported-cards { background: var(--gradient); }

.supported-cards-track {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
  mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
}

.supported-cards-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: supported-cards-scroll 32s linear infinite;
}

.supported-cards-inner:hover { animation-play-state: paused; }

@keyframes supported-cards-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.supported-card {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 22px 28px;
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  white-space: nowrap;
}

.supported-card i {
  color: #6EE7B7;
  font-size: .85rem;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 52px;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}

.logo-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.logo-item img {
  height: 32px;
  object-fit: contain;
  filter: grayscale(1) opacity(.6);
  transition: var(--transition);
}

.logo-item:hover img { filter: grayscale(0) opacity(1); }

/* ---------- Why Choose Us ---------- */
#why-choose {
  background: var(--light);
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--primary);
  background: var(--gradient-soft);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gradient);
  color: var(--white);
}

.feature-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.feature-card p {
  font-size: .9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ---------- Product Overview ---------- */
#product-overview {
  background: var(--white);
}

.product-tab-nav {
  display: flex;
  gap: 8px;
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 6px;
  margin-bottom: 40px;
  border: 1px solid var(--border);
}

.product-tab-btn {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background: transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.product-tab-btn.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.product-tab-btn:hover:not(.active) { color: var(--text); }

.product-tab-content { display: none; }
.product-tab-content.active { display: block; animation: fadeUp .4s ease; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.product-content-card {
  background: var(--gradient);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.product-content-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 500px 400px at 90% -20%, rgba(255,255,255,.12) 0%, transparent 60%);
  pointer-events: none;
}

.product-content-card h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.product-content-card p {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  margin-bottom: 28px;
}

.product-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.9);
  font-weight: 500;
}

.product-feature-list li i { color: rgba(16,185,129,1); }

/* ---------- How It Works ---------- */
#how-it-works {
  background: var(--light);
}

.step-item {
  display: flex;
  gap: 24px;
  position: relative;
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 28px;
  top: 70px;
  bottom: -40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), transparent);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--font-heading);
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(10,66,147,.35);
  position: relative;
  z-index: 1;
}

.step-body { padding-top: 10px; }
.step-body h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.step-body p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* ---------- Feature Grid ---------- */
#software-features, #admin-features {
  background: var(--white);
}

#admin-features { background: var(--light); }

.feature-grid-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
  height: 100%;
}

.feature-grid-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(10,66,147,.15);
  transform: translateY(-2px);
}

.feature-grid-card .fg-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.feature-grid-card:hover .fg-icon {
  background: var(--gradient);
  color: var(--white);
}

.feature-grid-card span {
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
}

/* ---------- Industries ---------- */
#industries {
  background: var(--white);
}

.industry-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  cursor: pointer;
}

.industry-card:hover {
  background: var(--gradient);
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10,66,147,.25);
}

.industry-card .ind-emoji {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 12px;
  transition: var(--transition);
}

.industry-card:hover .ind-emoji { transform: scale(1.15); }

.industry-card h5 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  transition: var(--transition);
}

.industry-card:hover h5 { color: var(--white); }

/* ---------- Pricing ---------- */
#pricing {
  background: var(--light);
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(10,66,147,.2);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 20px;
  border-radius: 0 0 12px 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.pricing-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  transition: var(--transition);
}

.pricing-card.featured .pricing-icon { background: var(--gradient); }
.pricing-card:hover .pricing-icon { background: var(--gradient); }

/* Icon glyphs are often given an inline color (e.g. var(--primary)) for the default
   light icon background; once hovered/featured the icon box turns into a solid dark
   gradient, so the glyph must flip to white too or it disappears against its own background. */
.pricing-card.featured .pricing-icon i,
.pricing-card:hover .pricing-icon i { color: var(--white) !important; }

.pricing-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-card p {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ---------- Testimonials ---------- */
#testimonials {
  background: var(--white);
}

.testimonial-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 28px;
  font-size: 5rem;
  line-height: 1;
  color: var(--primary);
  opacity: .15;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: 0 16px 48px rgba(10,66,147,.15);
  transform: translateY(-4px);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.stars i { color: var(--warning); font-size: .9rem; }

.testimonial-card blockquote {
  font-size: .97rem;
  color: var(--text);
  line-height: 1.7;
  margin: 0 0 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.author-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
  display: block;
}

.author-role {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ---------- FAQ ---------- */
#faq {
  background: var(--light);
}

.faq-accordion .accordion-item {
  background: var(--white);
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-family: var(--font-heading);
  font-size: .98rem;
  font-weight: 700;
  color: var(--dark);
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius) !important;
  box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(10,66,147,.06);
}

.faq-accordion .accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236DBE00'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
  font-size: .92rem;
  color: var(--text-muted);
  padding: 0 24px 20px;
  line-height: 1.7;
}

/* ---------- CTA ---------- */
#cta {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 500px at 20% 50%, rgba(10,66,147,.25) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 80% 50%, rgba(217,9,30,.35) 0%, transparent 70%);
  pointer-events: none;
}

.cta-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ---------- Footer ---------- */
footer {
  background: #0C1526;
  color: rgba(255,255,255,.65);
  padding: 70px 0 32px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}

.footer-desc {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-divider {
  border-color: rgba(255,255,255,.08);
  margin: 40px 0 24px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-copy {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

.footer-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-tag {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 100px;
  padding: 3px 12px;
}

/* ---------- Navbar Dropdown ---------- */
#mainNav .dropdown-menu {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow-md);
  background: var(--white);
  min-width: 200px;
  margin-top: 8px;
}

#mainNav .dropdown-item {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

#mainNav .dropdown-item:hover {
  background: rgba(10,66,147,.1);
  color: var(--secondary);
}

#mainNav .dropdown-item i { width: 16px; text-align: center; }


/* Inner page nav — always white */
#mainNav.nav-inner {
  background: rgba(255,255,255,.97) !important;
  backdrop-filter: blur(16px) !important;
  padding: 12px 0 !important;
  box-shadow: 0 2px 20px rgba(0,0,0,.08) !important;
}
#mainNav.nav-inner .navbar-brand { color: var(--dark) !important; }
#mainNav.nav-inner .nav-link { color: var(--text) !important; }
#mainNav.nav-inner .nav-link:hover { color: var(--secondary) !important; background: rgba(10,66,147,.1) !important; }
#mainNav.nav-inner .nav-link.active,
#mainNav.nav-inner .dropdown-toggle.active { color: var(--primary) !important; background: rgba(10,66,147,.14) !important; font-weight: 700 !important; }
#mainNav.nav-inner .nav-cta { background: var(--gradient) !important; color: var(--white) !important; }
#mainNav.nav-inner .navbar-toggler-icon-custom span { background: var(--dark) !important; }
#mainNav.nav-inner .dropdown-menu { background: var(--white); border-color: var(--border); }
#mainNav.nav-inner .dropdown-item { color: var(--text); }
#mainNav.nav-inner .dropdown-item:hover { background: rgba(10,66,147,.1); color: var(--secondary); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
    background: linear-gradient(135deg, #F5F8FC 0%, #E9F0FA 55%, #F5F8FC 100%);
    padding: 100px 0 0px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 20% 60%, rgba(10,66,147,.09) 0%, transparent 70%),
    radial-gradient(ellipse 500px 300px at 80% 20%, rgba(217,9,30,.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,66,147,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,66,147,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
}

.page-hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
}

.breadcrumb-nav .breadcrumb-item { font-size: .85rem; color: var(--text-muted); }
.breadcrumb-nav .breadcrumb-item a { color: var(--text-muted); }
.breadcrumb-nav .breadcrumb-item a:hover { color: var(--primary); }
.breadcrumb-nav .breadcrumb-item.active { color: var(--dark); }
.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before { color: var(--border); }

/* ---------- Content Section ---------- */
.content-section { padding: 80px 0; }
.content-section-alt { padding: 80px 0; background: var(--light); }

/* ---------- Card Variants ---------- */
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  /* height: 100%; */
  transition: var(--transition);
}

.info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(10,66,147,.25);
  transform: translateY(-4px);
}

.info-card .info-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: var(--gradient-soft);
  margin-bottom: 20px;
  transition: var(--transition);
}

/* !important needed: .info-icon usually carries an inline color:var(--primary) for its
   default light background, which otherwise wins over this non-inline hover color. */
.info-card:hover .info-icon { background: var(--gradient); color: var(--white) !important; }
.info-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.info-card p { font-size: .9rem; color: var(--text-muted); margin: 0; line-height: 1.65; }

/* ---------- Payment Page ---------- */
.payment-wrap {
  min-height: 100vh;
  background: var(--light);
  padding: 120px 0 60px;
}

.payment-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.payment-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.form-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-control, .form-select {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: .92rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,66,147,.15);
  outline: none;
}

.order-summary-card {
  background: var(--gradient);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.order-summary-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 20px; }

.order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}

.order-row:last-child { border-bottom: none; }
.order-row.total { font-weight: 700; font-size: 1rem; color: var(--white); }

.card-input-wrap {
  position: relative;
}

.card-input-wrap .card-icons {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 6px;
}

.card-input-wrap .card-icons i { font-size: 1.4rem; }

.security-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.security-badge i { color: var(--success); }

/* ---------- Confirmation Page ---------- */
.confirm-wrap {
  min-height: 100vh;
  background: var(--light);
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
}

.confirm-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.confirm-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #10B981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2.5rem;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(16,185,129,.35);
  animation: pop-in .5s cubic-bezier(.175,.885,.32,1.275) both;
}

@keyframes pop-in {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.license-box {
  background: var(--gradient-soft);
  border: 1.5px dashed var(--primary);
  border-radius: var(--radius);
  padding: 16px 24px;
  font-family: 'Courier New', monospace;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .12em;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.license-box:hover { background: rgba(10,66,147,.12); }

.order-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.order-detail-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
}

.order-detail-list li:last-child { border-bottom: none; }
.order-detail-list li span:first-child { color: var(--text-muted); }
.order-detail-list li span:last-child { font-weight: 600; color: var(--dark); }

.confetti-strip {
  height: 6px;
  background: linear-gradient(90deg, var(--primary), #7C3AED, var(--success), #F59E0B, #EF4444, var(--primary));
  background-size: 200% 100%;
  animation: shimmer-strip 3s linear infinite;
}
@keyframes shimmer-strip { from { background-position: 0% 0; } to { background-position: 200% 0; } }

.step-done {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.step-done:last-child { border-bottom: none; }
.step-done-icon {
  width: 36px;
  height: 36px;
  background: rgba(76,175,80,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  font-size: .9rem;
  flex-shrink: 0;
}
.step-done-text strong { display: block; font-size: .9rem; font-weight: 700; color: var(--dark); }
.step-done-text span { font-size: .8rem; color: var(--text-muted); }

.copy-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: .75rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.copy-btn:hover { background: var(--primary-dark); }

.next-step-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}
.next-step-card:hover { border-color: var(--primary); box-shadow: 0 4px 16px rgba(10,66,147,.1); }
.next-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 800;
  flex-shrink: 0;
}
.next-step-card h6 { font-size: .88rem; font-weight: 700; margin-bottom: 3px; }
.next-step-card p { font-size: .8rem; color: var(--text-muted); margin: 0; }

/* ---------- Contact Page ---------- */
.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 46px;
  height: 46px;
  background: var(--gradient-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-item h6 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-item p { font-size: .95rem; color: var(--dark); font-weight: 500; margin: 0; }

/* ---------- Legal Pages ---------- */
.legal-content {
  padding: 80px 0;
}

.legal-content h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  margin: 40px 0 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.legal-content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }

.legal-content p, .legal-content li {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.8;
}

.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content ul li { margin-bottom: 6px; }

.legal-toc {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 40px;
  position: sticky;
  top: 90px;
}

.legal-toc h6 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: 14px; }

.legal-toc a {
  display: block;
  font-size: .88rem;
  color: var(--text);
  padding: 5px 0;
  transition: var(--transition);
}

.legal-toc a:hover { color: var(--primary); padding-left: 4px; }

/* ---------- Scroll To Top ---------- */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--gradient);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(10,66,147,.45);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

#scrollTop.visible {
  opacity: 1;
  visibility: visible;
}

#scrollTop:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(10,66,147,.55); }

/* ---------- AOS Overrides ---------- */
[data-aos] { pointer-events: auto !important; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .section-pad { padding: 72px 0; }
  #hero { padding: 120px 0 70px; }
  .hero-visual { margin-top: 48px; }
  .floating-badge { display: none; }
  .product-content-card { padding: 32px 24px; }
  .product-feature-list { grid-template-columns: 1fr; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 56px 0; }
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.65rem; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .product-tab-nav { flex-direction: column; }
  .step-item:not(:last-child)::after { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 575.98px) {
  .hero-checks { gap: 10px 20px; }
  .pricing-card { padding: 32px 22px; }
}

/* ============================================================
   NEW SECTIONS — Reference Design Match
   ============================================================ */

/* ---------- Green Hero Download Button ---------- */
.btn-hero-download {
  background: linear-gradient(135deg, #059669 0%, #10B981 100%);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(16,185,129,.4);
}
.btn-hero-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16,185,129,.55);
  color: var(--white);
  filter: brightness(1.08);
}

/* ---------- Free Trial CTA: pulsing glow + shine sweep + 3D hover lift ---------- */
.btn-trial-glow {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  animation: trial-glow-pulse 2.4s ease-in-out infinite;
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn-trial-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.65) 50%, transparent 60%);
  background-size: 220% 100%;
  background-position: 150% 0;
  animation: trial-glow-shine 3s ease-in-out infinite;
  pointer-events: none;
}

.btn-trial-glow:hover {
  transform: translateY(-3px) scale(1.04);
  animation-play-state: paused;
}

@keyframes trial-glow-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(76,175,80,.35), 0 0 0 0 rgba(76,175,80,.45); }
  50%      { box-shadow: 0 4px 16px rgba(76,175,80,.35), 0 0 0 9px rgba(76,175,80,0); }
}

@keyframes trial-glow-shine {
  0%   { background-position: 150% 0; }
  55%  { background-position: -50% 0; }
  100% { background-position: -50% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .btn-trial-glow, .btn-trial-glow::after { animation: none; }
}

/* ---------- Pay Now Button (Green) ---------- */
.btn-pay-now {
  background: #fff;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(16,185,129,.35);
  transition: var(--transition);
}
.btn-pay-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(16,185,129,.5);
  border: 2px solid rgba(255,255,255,.8);
  filter: brightness(1.08);
}

/* ---------- Pricing Amount ---------- */
.pricing-amount {
  margin: 14px 0 18px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-heading);
}
.price-value {
  font-size: 3rem;
  font-weight: 900;
  color: var(--dark);
  font-family: var(--font-heading);
  line-height: 1;
}
.pricing-card.featured .price-currency,
.pricing-card.featured .price-value {
  color: var(--white);
}
.pricing-card.featured .price-period { color: rgba(255,255,255,.75); }
.price-period {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Featured pricing card — invert text */
.pricing-card.featured {
  background: var(--gradient);
  border-color: transparent;
}
.pricing-card.featured h3,
.pricing-card.featured p,
.pricing-card.featured li {
  color: rgba(255,255,255,.9);
}
.pricing-card.featured li i { color: #86efac !important; }
.pricing-card.featured .border-bottom { border-color: rgba(255,255,255,.2) !important; }

/* ---------- Renewal Plans ---------- */
#renewal-plans { background: var(--light); }

.renewal-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
}
.renewal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.renewal-card-pro {
  border-color: #10B981;
  box-shadow: 0 12px 40px rgba(16,185,129,.15);
}
.renewal-badge-pro {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #059669, #10B981);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 20px;
  border-radius: 0 0 12px 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.renewal-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}
.renewal-icon-basic {
  background: var(--gradient-soft);
  color: var(--primary);
}
.renewal-icon-pro {
  background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
  color: #059669;
}

/* ---------- License Policy ---------- */
#license-policy { background: var(--white); }

.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 767.98px) {
  .policy-grid { grid-template-columns: 1fr; }
}
.policy-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: var(--transition);
}
.policy-item:hover {
  box-shadow: var(--shadow);
  border-color: rgba(10,66,147,.3);
}
.policy-item-warning {
  background: #FFFBEB;
  border-color: #FDE68A;
}
.policy-item-warning:hover { border-color: #F59E0B; }
.policy-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.policy-icon-green {
  background: #D1FAE5;
  color: #059669;
}
.policy-icon-orange {
  background: #FEF3C7;
  color: #D97706;
}
.policy-item p {
  font-size: .9rem;
  margin: 0;
  line-height: 1.65;
  color: var(--text);
}

/* ---------- Tutorials ---------- */
#tutorials { background: var(--light); }

.tutorial-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.tutorial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #FF0000;
  color: inherit;
}
.tutorial-thumb {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tutorial-play {
  width: 56px;
  height: 56px;
  background: #FF0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255,0,0,.4);
}
.tutorial-card:hover .tutorial-play {
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(255,0,0,.6);
}
.tutorial-version-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,.15);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.2);
}
.tutorial-info {
  padding: 16px;
}
.tutorial-title {
  font-size: .88rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  line-height: 1.5;
}

/* ---------- YouTube Button ---------- */
.btn-youtube {
  background: #FF0000;
  border-color: transparent;
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(255,0,0,.3);
}
.btn-youtube:hover {
  background: #CC0000;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,0,0,.45);
}

/* ---------- Connect With Us ---------- */
.connect-section {
  background: linear-gradient(135deg, #F6FBF0 0%, #EEF8DC 100%);
  border-top: 1px solid #C8E89A;
}

/* ---------- WhatsApp Buttons ---------- */
.btn-whatsapp {
  background: #25D366;
  border-color: transparent;
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.btn-whatsapp:hover {
  background: #1da951;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}
.btn-whatsapp-group {
  background: transparent;
  border: 2px solid #25D366;
  color: #25D366;
  font-weight: 700;
}
.btn-whatsapp-group:hover {
  background: #25D366;
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- Facebook Button ---------- */
.btn-facebook {
  background: #1877F2;
  border-color: transparent;
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(24,119,242,.3);
}
.btn-facebook:hover {
  background: #0d65d8;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(24,119,242,.45);
}

/* ============================================================
   PRODUCTS — Listing & Dynamic Product View
   ============================================================ */

/* ---------- Category Filter ---------- */
.product-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.product-filter-btn {
  padding: 9px 20px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.product-filter-btn:hover { border-color: var(--primary); color: var(--primary); }

.product-filter-btn.active {
  background: var(--gradient);
  border-color: transparent;
  color: var(--white);
}

/* ---------- Product Card Category Tag ---------- */
.product-card-category {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--gradient-soft);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

/* ---------- Product Detail Hero ---------- */
.product-detail-icon {
  width: 84px;
  height: 84px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 24px;
}

/* ---------- Not Found State ---------- */
.product-not-found {
  text-align: center;
  padding: 60px 20px;
}

.product-not-found i {
  font-size: 3.5rem;
  color: var(--border);
  margin-bottom: 20px;
}

/* ---------- Buy Box: Plan Selector ---------- */
.plan-pill-group {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border-radius: 100px;
  padding: 5px;
}

.plan-pill {
    flex: 1;
    border: none;
    background: transparent;
    border-radius: 100px;
    padding: 9px 10px;
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 700;
    color: rgba(255,255,255,.75);
    cursor: pointer;
    transition: var(--transition);
    width: 120px;
}

.plan-pill.active { background: var(--white); color: var(--primary); }
.plan-pill:hover:not(.active) { color: var(--white); }

/* ---------- Buy Box: Quantity Stepper ---------- */
.qty-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.qty-btn:hover { background: rgba(255,255,255,.2); }

.qty-input {
  width: 42px;
  border: none;
  background: transparent;
  color: var(--white);
  text-align: center;
  font-size: .9rem;
  font-weight: 700;
  -moz-appearance: textfield;
  appearance: none;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-input:focus { outline: none; }

/* ---------- Rating Summary ---------- */
.rating-summary { text-align: center; }

.rating-big {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--dark);
  display: block;
  line-height: 1;
}

.rating-summary .stars { justify-content: center; margin: 12px 0 8px; }

.rating-summary p {
  font-size: .9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- Product Media Gallery ---------- */
.product-gallery {
  display: flex;
  gap: 14px;
}

.product-gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 68px;
  flex-shrink: 0;
}

.gallery-thumb {
  width: 68px;
  height: 68px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  padding: 0;
}

.gallery-thumb:hover { border-color: var(--primary); color: var(--primary); }

.gallery-thumb.active {
  border-color: var(--primary);
  background: var(--gradient-soft);
  color: var(--primary);
  box-shadow: 0 0 0 2px rgba(10,66,147,.15);
}

.product-gallery-main {
  flex: 1;
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 320px;
  max-height: 520px;
  background: var(--gradient-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.gallery-slide.active { display: flex; animation: fadeUp .4s ease; }

.gallery-slide i {
  font-size: 4.5rem;
  color: var(--primary);
  margin-bottom: 22px;
}

.gallery-slide span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--dark);
  max-width: 380px;
  line-height: 1.4;
}

.gallery-slide .gallery-slide-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(10,66,147,.12);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

@media (max-width: 767.98px) {
  .product-gallery { flex-direction: column-reverse; }
  .product-gallery-thumbs {
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .product-gallery-main { aspect-ratio: 4 / 3; min-height: 240px; max-height: 380px; }
  .gallery-slide i { font-size: 3.5rem; }
}

/* ---------- Product Detail: Breadcrumb Strip & Title Block ---------- */
.pdp-breadcrumb-strip {
  background: var(--white);
  padding: 130px 0 18px;
  border-bottom: 1px solid var(--border);
}

.pdp-breadcrumb-strip .breadcrumb { font-size: .85rem; }
.pdp-breadcrumb-strip .breadcrumb-item a { color: var(--text-muted); }
.pdp-breadcrumb-strip .breadcrumb-item a:hover { color: var(--primary); }
.pdp-breadcrumb-strip .breadcrumb-item.active { color: var(--dark); font-weight: 600; }

.pdp-category { display: inline-block; margin-bottom: 14px; }

.pdp-title {
  font-size: clamp(1.7rem, 3vw, 1.8rem);
  font-weight: 900;
  margin-bottom: 14px;
}

.pdp-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 18px 0;
}

/* ---------- PDP: Rating Badge Row ---------- */
.pdp-rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pdp-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gradient);
  color: var(--white);
  font-size: .85rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.pdp-rating-badge i { font-size: .75rem; }

.pdp-review-link {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.pdp-review-link:hover { color: var(--primary); }

.pdp-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}

/* ---------- PDP: Light Plan Selector ---------- */
.plan-pill-group.light {
  background: var(--light);
  border: 1px solid var(--border);
  display: inline-flex;
}

.plan-pill-group.light .plan-pill { color: var(--text-muted); }
.plan-pill-group.light .plan-pill.active { background: var(--gradient); color: var(--white); }
.plan-pill-group.light .plan-pill:hover:not(.active) { color: var(--primary); }

/* ---------- PDP: Price Row ---------- */
.pdp-price-row { margin: 18px 0; }

.pdp-price {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1;
}

.pdp-price small {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pdp-price-note {
  display: block;
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.price-was {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 600;
  font-size: .85em;
  margin-right: 8px;
}

/* ---------- PDP: Quantity Row (light) ---------- */
.pdp-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 18px;
}

.pdp-qty-label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--dark);
}

.pdp-total-label {
  font-size: .88rem;
  color: var(--text-muted);
}

.pdp-total-label strong { color: var(--dark); font-size: 1.05rem; }

.qty-stepper.light { background: var(--white); border: 1px solid var(--border); }
.qty-stepper.light .qty-btn { color: var(--dark); }
.qty-stepper.light .qty-btn:hover { background: rgba(10,66,147,.12); color: var(--primary); }
.qty-stepper.light .qty-input { color: var(--dark); }

.pdp-share-btn {
  width: 46px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- PDP: Trust Banner ---------- */
.pdp-trust-banner {
  background: var(--gradient-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.pdp-trust-title {
  font-size: .85rem;
  font-weight: 800;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 12px;
}

.pdp-trust-title i { margin-right: 6px; color: var(--primary); }

.pdp-trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}

@media (max-width: 575.98px) {
  /* A plain flex-wrap ragged-wraps these onto uneven line lengths on narrow screens (e.g. one
     item alone, then two together, then one alone) - a fixed 2-column grid keeps them aligned. */
  .pdp-trust-items { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 14px; }
}

.pdp-trust-items span {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pdp-trust-items i { color: var(--primary); }

/* ---------- PDP: Spec List & Meta ---------- */
.pdp-spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pdp-spec-list li {
  font-size: .88rem;
  color: var(--text);
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pdp-spec-list li i { color: var(--primary); font-size: .7rem; }
.pdp-spec-list li strong { color: var(--dark); font-weight: 700; }

.pdp-meta {
  font-size: .8rem;
  color: var(--text-muted);
  margin: 16px 0 0;
}

.pdp-meta strong { color: var(--dark); }

/* ---------- PDP: Gallery Badge Ribbon ---------- */
.pdp-gallery-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .62rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.pdp-gallery-badge i { font-size: 1rem; margin-bottom: 2px; }

/* ---------- PDP: Specifications Table ---------- */
.pdp-specs-table td {
  padding: 12px 16px;
  font-size: .88rem;
  color: var(--text);
  border-color: var(--border);
}

.pdp-specs-table tr:nth-child(odd) td { background: var(--light); }
.pdp-specs-table td:first-child { font-weight: 700; color: var(--dark); width: 220px; }

/* ---------- Compact Product Card (Products grid + PDP related products) ---------- */
.pricing-card.compact {
  padding: 20px 16px;
}

    .pricing-card.compact h3 {
        font-size: .9rem;
        margin-bottom: 8px;
        min-height: 3.5em;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

@media (max-width: 767.98px) {
  .pdp-qty-row { flex-direction: column; align-items: flex-start; }
}

/* ---------- PDP: Gallery Zoom Hint Button ---------- */
.gallery-slide { cursor: zoom-in; }

/* Real-image gallery slides - a soft neutral backdrop (not black) so portrait/landscape images
   both look like they're sitting on a product card rather than letterboxed on a dark screen. */
.gallery-slide.gallery-slide-img {
  padding: 0;
  background: var(--gradient-soft);
}

.gallery-slide.gallery-slide-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  box-sizing: border-box;
  border-radius: var(--radius-xl);
  display: block;
}

/* Real-image thumbnails */
.gallery-thumb.gallery-thumb-img {
  padding: 0;
  overflow: hidden;
}

.gallery-thumb.gallery-thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: calc(var(--radius) - 2px);
}

.gallery-zoom-hint {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  z-index: 3;
}

.gallery-zoom-hint:hover { background: var(--gradient); color: var(--white); transform: scale(1.08); }

/* ---------- PDP: Image Zoom Lightbox ---------- */
.pdp-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,15,5,.94);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
  touch-action: none;
}

.pdp-lightbox.active { display: flex; }

.pdp-lightbox-close,
.pdp-lightbox-nav {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 5;
}

.pdp-lightbox-close:hover,
.pdp-lightbox-nav:hover { background: var(--primary); border-color: var(--primary); }

.pdp-lightbox-close {
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 1.15rem;
}

.pdp-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  font-size: 1.1rem;
}

.pdp-lightbox-prev { left: 20px; }
.pdp-lightbox-next { right: 20px; }

.pdp-lightbox-stage {
  width: min(1100px, 90vw);
  height: min(760px, 74vh);
  background: var(--gradient-soft);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
  touch-action: none;
  user-select: none;
}

.pdp-lightbox-stage.zoomed { cursor: grab; }
.pdp-lightbox-stage.dragging { cursor: grabbing; }

.pdp-lightbox-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  transition: transform .12s ease-out;
  will-change: transform;
}

.pdp-lightbox-visual i { font-size: 6rem; color: var(--primary); margin-bottom: 22px; }

.pdp-lightbox-visual span.pdp-lightbox-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--dark);
  max-width: 440px;
  line-height: 1.4;
}

.pdp-lightbox-visual .gallery-slide-tag { margin-bottom: 18px; }

.pdp-lightbox-toolbar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: 8px 10px;
}

.pdp-lightbox-zoom-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.pdp-lightbox-zoom-btn:hover:not(:disabled) { background: var(--primary); }
.pdp-lightbox-zoom-btn:disabled { opacity: .35; cursor: not-allowed; }

.pdp-lightbox-zoom-level {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  min-width: 48px;
  text-align: center;
}

.pdp-lightbox-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  max-width: 90vw;
  overflow-x: auto;
  padding-bottom: 4px;
}

.pdp-lightbox-thumb {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}

.pdp-lightbox-thumb:hover { color: var(--white); border-color: rgba(255,255,255,.35); }
.pdp-lightbox-thumb.active { border-color: var(--primary); background: rgba(10,66,147,.2); color: var(--primary); }

/* Real-image lightbox visual */
.pdp-lightbox-visual.pdp-lightbox-visual-img {
  padding: 0;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.pdp-lightbox-visual.pdp-lightbox-visual-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* Real-image lightbox thumbnails */
.pdp-lightbox-thumb.pdp-lightbox-thumb-img {
  padding: 0;
  overflow: hidden;
}

.pdp-lightbox-thumb.pdp-lightbox-thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767.98px) {
  .pdp-lightbox-stage { width: 92vw; height: 58vh; }
  .pdp-lightbox-visual i { font-size: 4rem; }
  .pdp-lightbox-nav { width: 40px; height: 40px; font-size: .95rem; }
  .pdp-lightbox-prev { left: 8px; }
  .pdp-lightbox-next { right: 8px; }
}

/* ---------- Customer Reviews: Summary Panel ---------- */
.review-summary-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.review-summary-left {
  text-align: center;
  flex-shrink: 0;
  min-width: 110px;
}

.review-score {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1;
  display: block;
}

.review-summary-left .stars { justify-content: center; margin: 10px 0 6px; }

.review-summary-count {
  font-size: .85rem;
  color: var(--text-muted);
  margin: 0;
}

.review-summary-bars {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.review-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-bar-label {
  width: 54px;
  flex-shrink: 0;
  font-size: .8rem;
  font-weight: 700;
  color: var(--dark);
}

.review-bar-track {
  flex: 1;
  height: 8px;
  border-radius: 100px;
  background: var(--border);
  overflow: hidden;
}

.review-bar-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 100px;
}

.review-bar-count {
  width: 26px;
  flex-shrink: 0;
  text-align: right;
  font-size: .8rem;
  color: var(--text-muted);
}

.review-summary-cta { flex-shrink: 0; }

/* ---------- Customer Reviews: List ---------- */
.review-list { display: flex; flex-direction: column; }

.review-list-item {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.review-list-item:last-child { border-bottom: none; }

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-list-body .stars { margin-bottom: 8px; }

.review-list-name {
  display: block;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--dark);
}

.review-list-role {
  display: block;
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.review-list-comment {
  font-size: .92rem;
  color: var(--text);
  margin: 0;
}

@media (max-width: 767.98px) {
  .review-summary-panel { flex-direction: column; align-items: stretch; text-align: center; }
  .review-summary-left { min-width: 0; }
  .review-summary-cta { width: 100%; }
  .review-summary-cta .btn { width: 100%; }
}
