/*
============================================================
CSS VARIABLES
Replace with official client brand colors after confirmation.
============================================================
*/
:root {
  --color-primary-red: #d92b2b;
  --color-primary-red-dark: #b72020;
  --color-deep: #151a2d;
  --color-surface: #f8f7f4;
  --color-surface-2: #ffffff;
  --color-text: #1c1c1c;
  --color-text-muted: #6b6b6b;
  --color-divider: #e2e0db;
  --color-accent-warm: #ff6b35;
  --color-success-soft: #e8f6ed;
  --color-amazon: #ff9900;
  --color-flipkart: #2874f0;
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 18px 44px rgba(0, 0, 0, 0.10);
  --radius-card: 18px;
  --radius-btn: 999px;
  --section-space: clamp(56px, 6vw, 96px);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--color-text);
  background: var(--color-surface);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
.display-font {
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.02em;
}

section {
  padding: var(--section-space) 0;
  position: relative;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1rem;
  max-width: 760px;
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(217, 43, 43, 0.08);
  color: var(--color-primary-red);
  border: 1px solid rgba(217, 43, 43, 0.14);
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
}

.btn-brand {
  background: var(--color-primary-red);
  color: #fff;
  border: 0;
  border-radius: var(--radius-btn);
  padding: 0.95rem 1.5rem;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(217, 43, 43, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-brand:hover {
  background: var(--color-primary-red-dark);
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 36px rgba(217, 43, 43, 0.32);
}

.btn-amazon {
  background: var(--color-amazon);
  color: #111;
  border-radius: var(--radius-btn);
  font-weight: 700;
  padding: 0.95rem 1.5rem;
}

.btn-amazon:hover {
  transform: translateY(-2px);
}

.btn-flipkart {
  background: var(--color-flipkart);
  color: #fff;
  border-radius: var(--radius-btn);
  font-weight: 700;
  padding: 0.95rem 1.5rem;
}

.btn-flipkart:hover {
  color: #fff;
  transform: translateY(-2px);
}

.btn-light-pill {
  background: #fff;
  color: var(--color-text);
  border-radius: var(--radius-btn);
  font-weight: 700;
  padding: 0.95rem 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* ============================================================
   NAVBAR
   ============================================================ */

.site-navbar {
  position: sticky;
  top: 0;
  z-index: 1100;
  padding: 0;
  transition: all 0.3s ease;
  background: transparent;
}

.site-navbar .container {
  background: linear-gradient(180deg, rgba(255, 247, 244, 0.94) 0%, rgba(255, 250, 247, 0.90) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.08),
    0 2px 10px rgba(15, 23, 42, 0.04);
  border-radius: 0 0 22px 22px;
  padding: 10px 18px;
  transition: all 0.3s ease;
}

.site-navbar.scrolled {
  top: 0;
}

.site-navbar.scrolled .container {
  background: linear-gradient(180deg, rgba(255, 247, 244, 0.98) 0%, rgba(255, 250, 247, 0.94) 100%);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.12),
    0 4px 16px rgba(15, 23, 42, 0.06);
  border-color: rgba(255, 255, 255, 0.7);
}

.premium-brand {
  flex-shrink: 0;
}

.site-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
}

.navbar-panel {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.premium-nav-link {
  position: relative;
  color: var(--color-text) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1rem !important;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.premium-nav-link:hover {
  color: var(--color-primary-red) !important;
  background: rgba(217, 43, 43, 0.06);
}

.premium-nav-link::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary-red), var(--color-accent-warm));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.premium-nav-link:hover::after {
  transform: scaleX(1);
}

.btn-nav-desktop {
  padding: 0.9rem 1.45rem;
  font-size: 0.95rem;
  box-shadow:
    0 14px 28px rgba(217, 43, 43, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-nav-mobile {
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  box-shadow:
    0 12px 24px rgba(217, 43, 43, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.premium-toggler {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.toggler-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-deep);
  transition: all 0.25s ease;
}

.premium-toggler:hover .toggler-line {
  background: var(--color-primary-red);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--color-primary-red), var(--color-accent-warm));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(217, 43, 43, 0.18);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 96px 0 90px;
  margin-top: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff7f4 0%, #fff8f5 18%, #fffaf7 36%, #ffffff 56%, #f8f7f4 100%);
}

.hero-row {
  min-height: calc(100vh - 170px);
  margin-top: 0;
}

.hero-bg-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-bg-blur-1 {
  width: 320px;
  height: 320px;
  background: rgba(217, 43, 43, 0.14);
  top: 60px;
  left: -60px;
}

.hero-bg-blur-2 {
  width: 360px;
  height: 360px;
  background: rgba(255, 107, 53, 0.12);
  right: -70px;
  top: 100px;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 24, 40, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 24, 40, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent 85%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent 85%);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(217, 43, 43, 0.10);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  color: var(--color-deep);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-top-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-red), var(--color-accent-warm));
  box-shadow: 0 0 0 6px rgba(217, 43, 43, 0.10);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2.1rem, 3.6vw, 3.8rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--color-deep);
  margin-bottom: 1rem;
  margin-top: 0;
}

.hero-title span {
  background: linear-gradient(135deg, var(--color-primary-red), var(--color-accent-warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  line-height: 1.8;
  color: var(--color-text-muted);
  max-width: 620px;
}

.hero-trust-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  font-weight: 600;
  color: var(--color-text);
}

.hero-trust-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(217, 43, 43, 0.08);
  color: var(--color-primary-red);
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-main-btn {
  min-width: 180px;
  padding: 1rem 1.55rem;
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-secondary-btn {
  min-width: 180px;
  padding: 1rem 1.55rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-deep);
  font-weight: 700;
  transition: all 0.25s ease;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.hero-secondary-btn:hover {
  color: var(--color-primary-red);
  border-color: rgba(217, 43, 43, 0.16);
  background: #fff;
  transform: translateY(-2px);
}

.hero-mini-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
}

.hero-mini-proof-item {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.hero-mini-proof-item strong {
  display: block;
  color: var(--color-deep);
  font-size: 0.98rem;
  margin-bottom: 0.35rem;
}

.hero-mini-proof-item span {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ============================================================
   HERO VISUAL
   ============================================================ */

.hero-visual-wrap {
  position: relative;
  padding: 34px 0;
}

.hero-card,
.content-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 32px;
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.10),
    0 8px 24px rgba(15, 23, 42, 0.05);
}

.premium-hero-product {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78) 38%, rgba(255,255,255,0.36) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 247, 244, 0.98)),
    linear-gradient(135deg, rgba(217, 43, 43, 0.08), rgba(255, 107, 53, 0.10));
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow:
    0 32px 70px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.hero-product-inner {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px;
}

.hero-product-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(217, 43, 43, 0.10);
  pointer-events: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hero-product-ring-1 {
  width: 390px;
  height: 390px;
  background: radial-gradient(circle, rgba(217, 43, 43, 0.08), transparent 68%);
}

.hero-product-ring-2 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.06), transparent 70%);
}

.hero-product-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  filter: blur(50px);
}

.hero-product-glow-1 {
  width: 180px;
  height: 180px;
  background: rgba(217, 43, 43, 0.14);
  top: 18%;
  left: 18%;
}

.hero-product-glow-2 {
  width: 220px;
  height: 220px;
  background: rgba(255, 107, 53, 0.12);
  right: 14%;
  bottom: 16%;
}

/* ============================================================
   HERO STAGE + SLIDESHOW
   ============================================================ */

.hero-product-stage {
  position: relative;
  width: min(100%, 470px);
  max-width: 470px;
  height: 590px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-product-stage::before {
  content: "";
  position: absolute;
  inset: 28px 34px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0.18)),
    linear-gradient(135deg, rgba(255,255,255,0.24), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 24px 60px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-stage-shine {
  position: absolute;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  width: 68%;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.85), rgba(255,255,255,0.08) 70%, transparent 75%);
  filter: blur(8px);
  z-index: 1;
  pointer-events: none;
}

.hero-slideshow {
  position: relative;
  width: min(100%, 390px);
  max-width: 390px;
  height: 500px;
  margin: 0 auto;
  z-index: 3;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  animation: heroSlideShow 9s infinite ease-in-out;
  filter:
    drop-shadow(0 26px 36px rgba(0, 0, 0, 0.18))
    drop-shadow(0 8px 18px rgba(217, 43, 43, 0.08));
  transform-origin: center center;
}

.hero-slide-1 {
  animation-delay: 0s;
}

.hero-slide-2 {
  animation-delay: 3s;
}

.hero-slide-3 {
  animation-delay: 6s;
}

@keyframes heroSlideShow {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.94) rotate(-2deg);
  }
  8% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
  28% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
  33.33% {
    opacity: 0;
    transform: translateY(-10px) scale(1.03) rotate(2deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px) scale(1.03) rotate(2deg);
  }
}

.hero-stage-base {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 68%;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15,23,42,0.20), rgba(15,23,42,0.05) 60%, transparent 78%);
  filter: blur(10px);
  z-index: 1;
  pointer-events: none;
}

.hero-product-card {
  position: absolute;
  z-index: 5;
  width: 235px;
  padding: 1rem 1rem 0.95rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow:
    0 22px 40px rgba(15, 23, 42, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-product-card-label {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.34rem 0.6rem;
  border-radius: 999px;
  background: rgba(217, 43, 43, 0.08);
  color: var(--color-primary-red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-product-card h6 {
  margin-bottom: 0.4rem;
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-deep);
}

.hero-product-card p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.hero-product-card-left {
  left: 18px;
  top: 82px;
}

.hero-product-card-right {
  right: 18px;
  bottom: 82px;
}

.hero-visual-badge {
  position: absolute;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(21, 26, 45, 0.92);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
}

.hero-visual-badge-top {
  top: 0;
  right: 24px;
}

.hero-visual-badge-bottom {
  bottom: 0;
  left: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-red), var(--color-accent-warm));
}

/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 991.98px) {
  .site-navbar {
    top: 0;
    padding: 0;
  }

  .site-navbar .container {
    border-radius: 0 0 18px 18px;
    padding: 10px 14px;
  }

  .site-logo {
    height: 44px;
  }

  .navbar-collapse {
    margin-top: 10px;
  }

  .navbar-panel {
    width: 100%;
    display: block;
    background: linear-gradient(180deg, rgba(255, 247, 244, 0.96) 0%, rgba(255, 255, 255, 0.94) 100%);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
    padding: 14px;
    box-shadow:
      0 18px 35px rgba(15, 23, 42, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);
  }

  .navbar-nav {
    gap: 6px;
  }

  .premium-nav-link {
    padding: 0.95rem 1rem !important;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 23, 42, 0.05);
  }

  .premium-nav-link::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 60px;
  }

  .hero-row {
    min-height: auto;
    margin-top: 0;
  }

  .hero-content {
    text-align: center;
  }

  .hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-trust-wrap,
  .hero-cta-group {
    justify-content: center;
  }

  .hero-mini-proof {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-visual-wrap {
    padding-top: 0;
    max-width: 640px;
    margin: 0 auto;
  }

  .premium-hero-product {
    min-height: 600px;
  }

  .hero-product-inner {
    padding: 34px;
  }

  .hero-product-stage {
    width: min(100%, 420px);
    max-width: 420px;
    height: 520px;
  }

  .hero-product-stage::before {
    inset: 24px 24px;
    border-radius: 28px;
  }

  .hero-slideshow {
    width: min(100%, 330px);
    max-width: 330px;
    height: 430px;
  }

  .hero-product-card-left {
    left: 14px;
    top: 36px;
  }

  .hero-product-card-right {
    right: 14px;
    bottom: 36px;
  }

  .hero-visual-badge-top {
    top: 8px;
    right: 18px;
  }

  .hero-visual-badge-bottom {
    bottom: 8px;
    left: 18px;
  }
}

/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 767.98px) {
  .hero {
    padding: 28px 0 40px;
    min-height: auto;
  }

  .hero .container,
  .hero .row,
  .hero .col-lg-6,
  .hero-content,
  .hero-visual-wrap {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .hero-row {
    margin-top: 0;
    row-gap: 18px;
  }

  .hero-title {
    font-size: clamp(2.15rem, 8.2vw, 3rem);
    line-height: 1.02;
    margin-top: 0;
    margin-bottom: 0.75rem;
  }

  .hero-top-badge {
    font-size: 0.82rem;
    padding: 0.72rem 0.9rem;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0.85rem;
  }

  .hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-trust-wrap {
    display: none !important;
  }

  .hero-mini-proof {
    display: none !important;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 10px;
    justify-content: center;
  }

  .hero-main-btn,
  .hero-secondary-btn {
    width: 100%;
    min-width: 100%;
  }

  .hero-visual-wrap {
    padding: 0;
    margin-top: 0 !important;
    margin-bottom: 0;
  }

  .premium-hero-product {
    min-height: 500px;
    padding: 1.2rem !important;
    border-radius: 24px;
  }

  .hero-product-inner {
    padding: 22px 18px 26px;
  }

  .hero-product-stage {
    width: min(100%, 330px);
    max-width: 330px;
    height: 390px;
  }

  .hero-product-stage::before {
    inset: 18px 16px;
    border-radius: 22px;
  }

  .hero-stage-shine {
    height: 84px;
    width: 72%;
    top: 28px;
  }

  .hero-slideshow {
    width: min(100%, 250px);
    max-width: 250px;
    height: 310px;
  }

  .hero-product-ring-1 {
    width: 280px;
    height: 280px;
  }

  .hero-product-ring-2 {
    width: 360px;
    height: 360px;
  }

  .hero-product-card {
    width: 165px;
    padding: 0.75rem;
    border-radius: 16px;
  }

  .hero-product-card-label {
    font-size: 0.64rem;
    margin-bottom: 0.45rem;
  }

  .hero-product-card h6 {
    font-size: 0.84rem;
    margin-bottom: 0.25rem;
  }

  .hero-product-card p {
    font-size: 0.74rem;
    line-height: 1.45;
  }

  .hero-product-card-left {
    left: 8px;
    top: 18px;
  }

  .hero-product-card-right {
    right: 8px;
    bottom: 18px;
  }

  .hero-visual-badge {
    font-size: 0.78rem;
    padding: 0.65rem 0.8rem;
  }

  .hero-visual-badge-top {
    top: -8px;
    right: 10px;
  }

  .hero-visual-badge-bottom {
    bottom: -8px;
    left: 10px;
  }
}

/* ============================================================
   SMALL PHONES
   ============================================================ */

@media (max-width: 575.98px) {
  .site-logo {
    height: 38px;
    max-width: 150px;
  }

  .btn-nav-mobile {
    padding: 0.65rem 0.9rem;
    font-size: 0.82rem;
  }

  .premium-toggler {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-title {
    font-size: 1.95rem;
  }

  .hero-sub {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .premium-hero-product {
    min-height: 450px;
    padding: 0.95rem !important;
  }

  .hero-product-inner {
    padding: 16px 14px 20px;
  }

  .hero-product-stage {
    width: min(100%, 290px);
    max-width: 290px;
    height: 340px;
  }

  .hero-slideshow {
    width: min(100%, 215px);
    max-width: 215px;
    height: 270px;
  }

  .hero-product-card {
    width: 142px;
    padding: 0.65rem;
  }

  .hero-product-card h6 {
    font-size: 0.76rem;
  }

  .hero-product-card p {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .hero-visual-badge {
    font-size: 0.72rem;
    padding: 0.55rem 0.7rem;
  }

  .hero-mini-proof-item strong {
    font-size: 0.92rem;
  }

  .hero-mini-proof-item span {
    font-size: 0.86rem;
  }
}





/* ============================================================
   CLIENTS SECTION
   ============================================================ */
.clients-section {
  position: relative;
  padding: 20px 0 90px;
  overflow: hidden;
}

.clients-section::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 1240px);
  height: calc(100% - 30px);
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(217, 43, 43, 0.05), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 107, 53, 0.05), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.42));
  border: 1px solid rgba(15, 23, 42, 0.05);
  z-index: 0;
  pointer-events: none;
}

.clients-section .container {
  position: relative;
  z-index: 2;
}

.clients-header {
  max-width: 760px;
  margin: 0 auto 42px;
}

.clients-kicker {
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(217, 43, 43, 0.10);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  color: var(--color-primary-red);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.clients-title {
  font-size: clamp(2rem, 3vw, 3rem);
}

.clients-subtitle {
  max-width: 700px;
}

.clients-showcase {
  padding: 8px 0;
}

.ticker-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-ticker {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: marquee 30s linear infinite;
  will-change: transform;
}

.ticker-reverse {
  animation: marqueeReverse 34s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marqueeReverse {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.logo-item,
.gallery-item {
  flex: 0 0 auto;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
}

.premium-logo-item {
  width: 210px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(250,250,250,0.88));
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transition: all 0.3s ease;
}

.premium-logo-item img {
  max-width: 100%;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform 0.3s ease;
}

.premium-logo-item:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 43, 43, 0.12);
  box-shadow:
    0 22px 44px rgba(15, 23, 42, 0.10),
    0 6px 18px rgba(217, 43, 43, 0.06);
}

.premium-logo-item:hover img {
  transform: scale(1.04);
}

.ticker-wrap:hover .clients-ticker {
  animation-play-state: paused;
}

/* tablet */
@media (max-width: 991.98px) {
  .clients-section {
    padding: 10px 0 70px;
  }

  .clients-section::before {
    width: calc(100% - 24px);
    border-radius: 26px;
  }

  .clients-header {
    margin-bottom: 30px;
  }

  .clients-ticker {
    gap: 16px;
  }

  .premium-logo-item {
    width: 190px;
    height: 100px;
    border-radius: 20px;
    padding: 16px;
  }

  .premium-logo-item img {
    max-height: 46px;
  }
}

/* mobile */
@media (max-width: 575.98px) {
  .clients-section {
    padding: 0 0 58px;
  }

  .clients-kicker {
    font-size: 0.78rem;
    padding: 0.55rem 0.85rem;
  }

  .clients-header {
    margin-bottom: 24px;
  }

  .clients-ticker {
    gap: 12px;
  }

  .premium-logo-item {
    width: 170px;
    height: 96px;
    padding: 12px;
    border-radius: 18px;
  }

  .premium-logo-item img {
    max-width: 100%;
    max-height: 52px;
  }
}




/* ============================================================
   PREMIUM GALLERY SECTION
   ============================================================ */
.premium-gallery-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}

.premium-gallery-section::before {
  content: "";
  position: absolute;
  inset: 40px auto 0 50%;
  transform: translateX(-50%);
  width: min(92%, 1280px);
  height: calc(100% - 40px);
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(217, 43, 43, 0.06), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 107, 53, 0.06), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.5));
  border: 1px solid rgba(15, 23, 42, 0.05);
  z-index: 0;
  pointer-events: none;
}

.premium-gallery-section .container {
  position: relative;
  z-index: 2;
}

.premium-gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 38px;
}

.premium-gallery-head-left {
  max-width: 760px;
}

.gallery-kicker {
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(217, 43, 43, 0.10);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  color: var(--color-primary-red);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.premium-gallery-title {
  font-size: clamp(2rem, 3vw, 3rem);
}

.premium-gallery-subtitle {
  max-width: 680px;
}

.gallery-side-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(21, 26, 45, 0.95);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
  white-space: nowrap;
}

.premium-gallery-wrap {
  position: relative;
}

.ticker-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.ticker {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: marquee 42s linear infinite;
  will-change: transform;
}

.ticker-slow {
  animation-duration: 42s;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.premium-gallery-ticker-wrap {
  mask-image: linear-gradient(to right, transparent, black 9%, black 91%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 9%, black 91%, transparent);
}

.premium-gallery-ticker {
  gap: 22px;
}

.gallery-item {
  width: 380px;
  height: 260px;
  overflow: hidden;
  position: relative;
  flex: 0 0 auto;
  border-radius: 28px;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.premium-gallery-card {
  border: 1px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.4);
  box-shadow:
    0 18px 50px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.5);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.premium-gallery-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 28px 60px rgba(15, 23, 42, 0.14),
    0 10px 26px rgba(217, 43, 43, 0.08);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* remove all text / overlay / badges if old markup still exists */
.gallery-image-badge,
.gallery-overlay,
.gallery-overlay-inner,
.gallery-overlay-kicker,
.gallery-open-link {
  display: none !important;
}

/* optional pause on hover */
.premium-gallery-ticker-wrap:hover .ticker {
  animation-play-state: paused;
}

/* ============================================================
   GALLERY LIGHTBOX
   ============================================================ */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 10, 18, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.gallery-lightbox-content {
  position: relative;
  z-index: 2;
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: galleryPopupIn 0.28s ease;
}

.gallery-lightbox-content img {
  max-width: 100%;
  max-height: 88vh;
  display: block;
  border-radius: 22px;
  background: #fff;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.28),
    0 8px 24px rgba(0, 0, 0, 0.18);
}

.gallery-lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #111827;
  font-size: 2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, background 0.25s ease;
}

.gallery-lightbox-close:hover {
  transform: scale(1.08);
  background: #f8fafc;
}

@keyframes galleryPopupIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* tablet */
@media (max-width: 991.98px) {
  .premium-gallery-section {
    padding: 70px 0;
  }

  .premium-gallery-section::before {
    width: calc(100% - 24px);
    border-radius: 28px;
  }

  .premium-gallery-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 28px;
  }

  .premium-gallery-head-left {
    max-width: 100%;
  }

  .ticker,
  .premium-gallery-ticker {
    gap: 16px;
  }

  .gallery-item {
    width: 320px;
    height: 230px;
    border-radius: 24px;
  }
}

/* mobile */
@media (max-width: 575.98px) {
  .premium-gallery-section {
    padding: 58px 0;
  }

  .gallery-kicker {
    font-size: 0.78rem;
    padding: 0.55rem 0.85rem;
  }

  .gallery-side-note {
    font-size: 0.76rem;
    padding: 0.65rem 0.85rem;
  }

  .gallery-item {
    width: 270px;
    height: 200px;
    border-radius: 22px;
  }

  .gallery-lightbox {
    padding: 16px;
  }

  .gallery-lightbox-content img {
    border-radius: 16px;
    max-height: 82vh;
  }

  .gallery-lightbox-close {
    width: 42px;
    height: 42px;
    top: -14px;
    right: -8px;
    font-size: 1.7rem;
  }
}




/* ============================================================
   PREMIUM TESTIMONIAL VIDEO SECTION
   ============================================================ */
.premium-testimonial-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}

.premium-testimonial-section::before {
  content: "";
  position: absolute;
  inset: 36px auto 0 50%;
  transform: translateX(-50%);
  width: min(92%, 1280px);
  height: calc(100% - 36px);
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(217, 43, 43, 0.06), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 107, 53, 0.06), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.48));
  border: 1px solid rgba(15, 23, 42, 0.05);
  pointer-events: none;
  z-index: 0;
}

.premium-testimonial-section .container {
  position: relative;
  z-index: 2;
}

.premium-testimonial-wrap {
  position: relative;
}

.premium-testimonial-mobile-head {
  display: none;
}

.premium-video-card {
  position: relative;
  padding: 22px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.90), rgba(255,255,255,0.72));
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.08),
    0 8px 24px rgba(15, 23, 42, 0.04);
}

.premium-video-label {
  position: absolute;
  top: -14px;
  left: 24px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(21, 26, 45, 0.95);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
}

.premium-video-label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-red), var(--color-accent-warm));
}

.video-shell {
  position: relative;
  width: 100%;
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #1f2438, #3c4258);
  box-shadow: var(--shadow-md);
}

.premium-video-shell {
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.06), transparent 26%),
    linear-gradient(135deg, #1b2034, #2a3150 60%, #3c4258);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 30px 60px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.06);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-video-stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overflow: hidden;
}

.premium-testimonial-video-player {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 460px;
  display: block;
  object-fit: contain;
  background: #0f172a;
  border-radius: 20px;
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.24),
    0 8px 24px rgba(0, 0, 0, 0.14);
}

/* ============================================================
   CENTER VIDEO OVERLAY
   ============================================================ */
.premium-video-overlay-center {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(180deg, rgba(9, 14, 30, 0.08), rgba(9, 14, 30, 0.16));
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.premium-video-overlay-center.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.premium-video-play-trigger {
  width: 98px;
  height: 98px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.10);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.20);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.premium-video-play-trigger:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.24);
}

.premium-video-play-trigger-icon {
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid rgba(255,255,255,0.96);
  margin-left: 6px;
}

.premium-video-overlay-center-text {
  color: rgba(255,255,255,0.96);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 8px 18px rgba(0,0,0,0.22);
  text-align: center;
}

.premium-testimonial-copy {
  padding: 10px 0 10px 10px;
}

.premium-copy-kicker {
  display: inline-block;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(217, 43, 43, 0.10);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  color: var(--color-primary-red);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.premium-copy-title {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

.premium-copy-subtitle {
  max-width: 500px;
  line-height: 1.8;
}

.premium-copy-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 1.5rem;
}

.premium-copy-point {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  color: var(--color-text);
  font-weight: 600;
}

.premium-copy-point-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(217, 43, 43, 0.08);
  color: var(--color-primary-red);
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* tablet */
@media (max-width: 991.98px) {
  .premium-testimonial-section {
    padding: 70px 0;
  }

  .premium-testimonial-section::before {
    width: calc(100% - 24px);
    border-radius: 28px;
  }

  .premium-video-card {
    padding: 18px;
    border-radius: 24px;
  }

  .video-shell {
    min-height: 460px;
  }

  .premium-video-shell {
    padding: 20px;
  }

  .premium-video-stage {
    min-height: 410px;
  }

  .premium-testimonial-video-player {
    max-height: 400px;
  }

  .premium-testimonial-copy {
    padding: 0;
    text-align: center;
  }

  .premium-copy-subtitle {
    max-width: 100%;
  }

  .premium-copy-points {
    max-width: 680px;
    margin: 1.5rem auto 0;
  }

  .premium-video-play-trigger {
    width: 84px;
    height: 84px;
  }

  .premium-video-overlay-center-text {
    font-size: 0.86rem;
    letter-spacing: 0.1em;
  }
}

/* mobile */
@media (max-width: 767.98px) {
  .premium-testimonial-section {
    padding: 58px 0;
  }

  .premium-testimonial-mobile-head {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
  }

  .premium-video-label {
    left: 16px;
    top: -12px;
    font-size: 0.76rem;
    padding: 0.62rem 0.85rem;
  }

  .premium-video-card {
    padding: 16px;
    border-radius: 22px;
  }

  .video-shell {
    min-height: 380px;
  }

  .premium-video-shell {
    padding: 14px;
    border-radius: 20px;
  }

  .premium-video-stage {
    min-height: 340px;
    border-radius: 18px;
  }

  .premium-testimonial-video-player {
    max-height: 320px;
    border-radius: 16px;
  }

  .premium-video-play-trigger {
    width: 72px;
    height: 72px;
  }

  .premium-video-play-trigger-icon {
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 18px solid rgba(255,255,255,0.96);
    margin-left: 5px;
  }

  .premium-video-overlay-center-text {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    padding: 0 10px;
  }

  .premium-testimonial-copy {
    display: none !important;
  }
}

@media (max-width: 575.98px) {
  .video-shell {
    min-height: 330px;
  }

  .premium-video-shell {
    padding: 12px;
    border-radius: 18px;
  }

  .premium-video-stage {
    min-height: 295px;
    border-radius: 16px;
  }

  .premium-testimonial-video-player {
    max-height: 275px;
    border-radius: 14px;
  }

  .premium-copy-kicker {
    font-size: 0.76rem;
    padding: 0.55rem 0.85rem;
  }

  .premium-copy-title {
    font-size: 1.75rem;
  }

  .premium-testimonial-mobile-head {
    margin-bottom: 0.85rem;
  }

  .premium-video-play-trigger {
    width: 62px;
    height: 62px;
  }

  .premium-video-play-trigger-icon {
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 15px solid rgba(255,255,255,0.96);
    margin-left: 4px;
  }

  .premium-video-overlay-center-text {
    font-size: 0.66rem;
    letter-spacing: 0.06em;
  }
}




/* ============================================================
   PREMIUM FOUNDER SECTION
   ============================================================ */
.founder-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #141a2c 0%, #1d243a 55%, #222945 100%);
  color: #fff;
}

.founder-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.founder-bg-orb-1 {
  width: 280px;
  height: 280px;
  background: rgba(217, 43, 43, 0.16);
  top: 40px;
  left: -60px;
}

.founder-bg-orb-2 {
  width: 340px;
  height: 340px;
  background: rgba(255, 107, 53, 0.10);
  right: -80px;
  bottom: 30px;
}

.founder-section .container {
  position: relative;
  z-index: 2;
}

.founder-card {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.founder-image-wrap {
  position: relative;
}

.founder-image-frame {
  position: relative;
  padding: 10px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 20px 44px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.founder-portrait {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}

.founder-image-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(21, 26, 45, 0.92);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.founder-image-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-red), var(--color-accent-warm));
}

.founder-content {
  position: relative;
}

.founder-kicker {
  display: inline-block;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #ffcfbf;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.quote-mark {
  font-size: 5.8rem;
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.14);
  margin-bottom: 0.4rem;
}

.founder-quote {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.7;
  font-weight: 500;
  color: rgba(255,255,255,0.94);
  max-width: 720px;
  margin: 0;
}

.founder-name {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 0.2rem;
}

.founder-designation {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.founder-tags {
  align-items: center;
}

.founder-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.founder-tag-accent {
  background: linear-gradient(135deg, rgba(217,43,43,0.18), rgba(255,107,53,0.20));
  color: #fff1eb;
  border-color: rgba(255,255,255,0.08);
}

.founder-bottom-note {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 760px;
}

.founder-bottom-note strong {
  display: block;
  color: #fff;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.founder-bottom-note span {
  display: block;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  font-size: 0.96rem;
}

/* tablet */
@media (max-width: 991.98px) {
  .founder-card {
    border-radius: 28px;
  }

  .founder-content {
    text-align: center;
  }

  .founder-quote {
    max-width: 100%;
  }

  .founder-tags {
    justify-content: center;
  }

  .founder-bottom-note {
    margin: 0 auto;
  }

  .quote-mark {
    font-size: 4.8rem;
  }
}

/* mobile */
@media (max-width: 767.98px) {
  .founder-card {
    border-radius: 24px;
    padding: 1.25rem !important;
  }

  .founder-image-frame {
    padding: 8px;
    border-radius: 22px;
  }

  .founder-portrait {
    min-height: 320px;
    border-radius: 18px;
  }

  .founder-image-badge {
    left: 12px;
    bottom: 12px;
    font-size: 0.75rem;
    padding: 0.65rem 0.85rem;
  }

  .founder-kicker {
    font-size: 0.76rem;
    padding: 0.55rem 0.85rem;
  }

  .quote-mark {
    font-size: 4rem;
    margin-bottom: 0.2rem;
  }

  .founder-quote {
    font-size: 1.05rem;
    line-height: 1.75;
  }

  .founder-name {
    font-size: 1.65rem;
  }

  .founder-designation {
    font-size: 0.92rem;
  }

  .founder-tag {
    font-size: 0.82rem;
    padding: 0.62rem 0.85rem;
  }

  .founder-bottom-note {
    text-align: left;
    padding: 0.9rem;
    border-radius: 14px;
  }

  .founder-bottom-note strong {
    font-size: 0.92rem;
  }

  .founder-bottom-note span {
    font-size: 0.88rem;
  }
}

@media (max-width: 575.98px) {
  .founder-portrait {
    min-height: 280px;
  }

  .quote-mark {
    font-size: 2rem;
  }

  .founder-quote {
    font-size: 0.98rem;
  }
}

/* ============================================================
   FOUNDER TAGS - CLEAN MOBILE TRICOLOUR STRIP
   ============================================================ */

@media (max-width: 767.98px) {
  .founder-tags {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap !important;
    gap: 14px !important;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0.5rem 0;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: visible;
  }

  .founder-tags::before {
    content: "";
    position: absolute;
    left: -110px;
    right: -110px;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    z-index: 0;
    background: linear-gradient(
      to bottom,
      #ff9933 0%,
      #ff9933 33.33%,
      #ffffff 33.33%,
      #ffffff 66.66%,
      #138808 66.66%,
      #138808 100%
    );
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  }

  .founder-tag,
  .founder-tag-accent {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.78rem 1rem;
    border-radius: 16px;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(180deg, #5d6279 0%, #4b5066 100%);
    box-shadow:
      0 10px 22px rgba(0, 0, 0, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.10);
  }

  .founder-tag-accent {
    background: linear-gradient(180deg, #6c5963 0%, #594852 100%);
  }
}

@media (max-width: 575.98px) {
  .founder-tags {
    gap: 10px !important;
  }

  .founder-tags::before {
    left: -70px;
    right: -70px;
    height: 34px;
  }

  .founder-tag,
  .founder-tag-accent {
    min-height: 42px;
    padding: 0.68rem 0.85rem;
    font-size: 0.72rem;
    border-radius: 14px;
  }
}





/* ============================================================
   PREMIUM PROBLEM SECTION
   ============================================================ */
.problem-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff1f0 0%, #fff6f4 38%, #fff9f8 72%, #fff4f2 100%);
}

.problem-section::before {
  content: "";
  position: absolute;
  inset: 40px auto 0 50%;
  transform: translateX(-50%);
  width: min(92%, 1280px);
  height: calc(100% - 40px);
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(217, 43, 43, 0.10), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 107, 53, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255,245,244,0.92), rgba(255,250,249,0.72));
  border: 1px solid rgba(217, 43, 43, 0.08);
  z-index: 0;
  pointer-events: none;
}

.problem-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.problem-bg-orb-1 {
  width: 260px;
  height: 260px;
  background: rgba(217, 43, 43, 0.14);
  top: 60px;
  left: -80px;
}

.problem-bg-orb-2 {
  width: 320px;
  height: 320px;
  background: rgba(255, 107, 53, 0.10);
  right: -100px;
  bottom: 20px;
}

.problem-section .container {
  position: relative;
  z-index: 2;
}

.problem-head {
  max-width: 820px;
  margin: 0 auto 42px;
}

.problem-kicker {
  display: inline-block;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(217, 43, 43, 0.12);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  color: var(--color-primary-red);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.problem-title {
  font-size: clamp(2rem, 3vw, 3rem);
}

.problem-subtitle {
  max-width: 760px;
}

.problem-card,
.feature-card,
.class-card,
.variant-card,
.comparison-card,
.faq-wrap,
.partner-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.problem-card:hover,
.feature-card:hover,
.class-card:hover,
.variant-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.premium-problem-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,249,248,0.92));
  border: 1px solid rgba(217, 43, 43, 0.08);
  box-shadow:
    0 18px 44px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255,255,255,0.82);
}

.premium-problem-card:hover {
  border-color: rgba(217, 43, 43, 0.16);
  box-shadow:
    0 28px 58px rgba(15, 23, 42, 0.12),
    0 10px 22px rgba(217, 43, 43, 0.10);
}

.problem-card-top {
  position: relative;
  padding: 1rem 1rem 0;
}

.problem-number {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--color-primary-red), var(--color-accent-warm));
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(217, 43, 43, 0.24);
}

.problem-card-body {
  padding: 0 1rem 1.2rem;
}

.problem-card-body h5 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--color-deep);
  line-height: 1.45;
  margin-bottom: 0.75rem;
}

.problem-card-body p {
  color: var(--color-text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

.gif-box,
.feature-media,
.variant-top {
  border-radius: 18px;
  min-height: 160px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(217, 43, 43, 0.08), rgba(255, 107, 53, 0.14));
  border: 1px dashed rgba(217, 43, 43, 0.25);
  color: var(--color-primary-red);
  font-weight: 700;
  text-align: center;
  padding: 1rem;
}

.premium-gif-box {
  position: relative;
  min-height: 230px;
  border-radius: 22px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.45);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02)),
    linear-gradient(135deg, rgba(217, 43, 43, 0.12), rgba(255, 107, 53, 0.18));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 18px 30px rgba(15, 23, 42, 0.08);
}

.premium-gif-box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top, rgba(11, 16, 30, 0.28) 0%, rgba(11, 16, 30, 0.04) 46%, rgba(255,255,255,0.08) 100%);
  pointer-events: none;
}

.premium-gif-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  z-index: 3;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.24), transparent);
  transform: skewX(-18deg);
  transition: left 0.8s ease;
  pointer-events: none;
}

.premium-problem-card:hover .premium-gif-box::after {
  left: 145%;
}

.premium-gif-box img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
}

.premium-problem-card:hover .premium-gif-box img {
  transform: scale(1.08);
}

/* tablet */
@media (max-width: 991.98px) {
  .problem-section {
    padding: 70px 0;
  }

  .problem-section::before {
    width: calc(100% - 24px);
    border-radius: 28px;
  }

  .problem-head {
    margin-bottom: 32px;
  }

  .premium-gif-box {
    min-height: 215px;
  }

  .premium-gif-box img {
    min-height: 215px;
  }
}

/* mobile */
@media (max-width: 767.98px) {
  .problem-section {
    padding: 58px 0;
  }

  .problem-kicker {
    font-size: 0.76rem;
    padding: 0.55rem 0.85rem;
  }

  .problem-title {
    font-size: 1.7rem;
  }

  .problem-card-top {
    padding: 0.9rem 0.9rem 0;
  }

  .problem-card-body {
    padding: 0 0.9rem 1rem;
  }

  .problem-number {
    width: 38px;
    height: 38px;
    font-size: 0.82rem;
    border-radius: 12px;
    top: 14px;
    left: 14px;
  }

  .premium-gif-box {
    min-height: 190px;
    border-radius: 18px;
  }

  .premium-gif-box img {
    min-height: 190px;
  }

  .problem-card-body h5 {
    font-size: 1rem;
  }

  .problem-card-body p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}

@media (max-width: 575.98px) {
  .premium-gif-box {
    min-height: 175px;
    border-radius: 16px;
  }

  .premium-gif-box img {
    min-height: 175px;
  }
}




/* ============================================================
   PREMIUM PRODUCT SECTION
   ============================================================ */
.premium-product-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fff7f4 0%, #ffffff 40%, #f8f7f4 100%);
}

.premium-product-section::before {
  content: "";
  position: absolute;
  inset: 40px auto 0 50%;
  transform: translateX(-50%);
  width: min(92%, 1280px);
  height: calc(100% - 40px);
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(217, 43, 43, 0.05), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 107, 53, 0.05), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.54));
  border: 1px solid rgba(15, 23, 42, 0.05);
  z-index: 0;
  pointer-events: none;
}

.product-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.product-bg-orb-1 {
  width: 260px;
  height: 260px;
  background: rgba(217, 43, 43, 0.10);
  top: 60px;
  left: -70px;
}

.product-bg-orb-2 {
  width: 320px;
  height: 320px;
  background: rgba(255, 107, 53, 0.08);
  right: -90px;
  bottom: 20px;
}

.premium-product-section .container {
  position: relative;
  z-index: 2;
}

.premium-product-wrap {
  position: relative;
}

.premium-product-video-card {
  position: relative;
  padding: 22px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.90), rgba(255,255,255,0.74));
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.08),
    0 8px 24px rgba(15, 23, 42, 0.04);
}

.premium-product-video-label {
  position: absolute;
  top: -14px;
  left: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(21, 26, 45, 0.95);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
}

.premium-product-video-label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-red), var(--color-accent-warm));
}

/* important fix: reset shared .video-shell height behavior */
.video-shell.premium-product-video-shell,
.premium-product-video-shell {
  position: relative;
  overflow: hidden;
  min-height: 0 !important;
  height: auto !important;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.06), transparent 26%),
    linear-gradient(135deg, #1b2034, #2a3150 60%, #3c4258);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 30px 60px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.06);
  aspect-ratio: 16 / 10;
}

/* main fix here: use contain instead of cover so full video is visible */
.premium-product-video-player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  background: #0f172a;
  border-radius: 26px;
}

.premium-product-video-player::-webkit-media-controls-panel {
  border-radius: 0 0 26px 26px;
}

.premium-product-video-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.premium-product-video-footer-item {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.premium-product-video-footer-item strong {
  display: block;
  color: var(--color-deep);
  font-size: 0.96rem;
  margin-bottom: 0.35rem;
}

.premium-product-video-footer-item span {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.premium-product-copy {
  padding: 8px 0 8px 10px;
}

.premium-product-kicker {
  display: inline-block;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(217, 43, 43, 0.10);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  color: var(--color-primary-red);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.premium-product-title {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

.premium-product-subtitle {
  max-width: 560px;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.premium-product-points .content-card {
  box-shadow: none;
}

.premium-product-point {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
  font-weight: 700;
  color: var(--color-deep);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.premium-product-point:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 43, 43, 0.12);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.premium-product-point-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,247,244,0.9));
  border: 1px solid rgba(217, 43, 43, 0.10);
  box-shadow:
    0 8px 18px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.8);
  flex-shrink: 0;
  overflow: hidden;
}

.premium-product-point-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.premium-feature-card {
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.84));
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 18px 44px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255,255,255,0.75);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.premium-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 43, 43, 0.12);
  box-shadow:
    0 26px 54px rgba(15, 23, 42, 0.10),
    0 10px 22px rgba(217, 43, 43, 0.06);
}

.premium-feature-media {
  min-height: 180px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.42), transparent 30%),
    linear-gradient(135deg, rgba(217, 43, 43, 0.10), rgba(255, 107, 53, 0.16));
  border: 1px dashed rgba(217, 43, 43, 0.20);
  color: var(--color-primary-red);
  font-weight: 700;
  font-size: 0.98rem;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
}

.premium-feature-kicker {
  display: inline-block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--color-primary-red);
  margin-bottom: 0.5rem;
}

.premium-feature-body h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-deep);
  margin-bottom: 0.7rem;
}

.premium-feature-body p {
  line-height: 1.8;
}

.premium-feature-media-image {
  padding: 0;
  overflow: hidden;
}

.premium-feature-media-image img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 20px;
}

/* tablet */
@media (max-width: 991.98px) {
  .premium-product-section {
    padding: 70px 0;
  }

  .premium-product-section::before {
    width: calc(100% - 24px);
    border-radius: 28px;
  }

  .premium-product-video-card {
    padding: 18px;
    border-radius: 24px;
  }

  .video-shell.premium-product-video-shell,
  .premium-product-video-shell {
    border-radius: 22px;
    aspect-ratio: 16 / 10;
  }

  .premium-product-video-player {
    border-radius: 22px;
  }

  .premium-product-copy {
    padding: 0;
    text-align: center;
  }

  .premium-product-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .premium-product-points {
    justify-content: center;
  }
}

/* mobile */
@media (max-width: 767.98px) {
  .premium-product-section {
    padding: 58px 0;
  }

  .premium-product-wrap > .row:first-child {
    display: flex;
    flex-wrap: wrap;
  }

  .premium-product-wrap > .row:first-child > .col-lg-6 {
    display: contents;
  }

  .premium-product-wrap > .row:first-child > .col-lg-6:first-child .reveal {
    display: contents;
  }

  .premium-product-copy {
    display: contents;
  }

  .premium-product-kicker {
    order: 1;
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .premium-product-title {
    order: 2;
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }

  .premium-product-subtitle {
    order: 3;
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.25rem;
  }

  .premium-product-video-card {
    order: 4;
    width: 100%;
    padding: 16px;
    border-radius: 22px;
    margin-bottom: 1rem;
  }

  .premium-product-points {
    order: 5;
    width: 100%;
    justify-content: center;
    margin-top: 0;
  }

  .premium-product-video-label {
    left: 16px;
    top: -12px;
    font-size: 0.76rem;
    padding: 0.62rem 0.85rem;
  }

  .video-shell.premium-product-video-shell,
  .premium-product-video-shell {
    border-radius: 20px;
    aspect-ratio: 16 / 11;
  }

  .premium-product-video-player {
    border-radius: 20px;
  }

  .premium-product-video-footer {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .premium-product-video-footer-item {
    border-radius: 14px;
    padding: 0.9rem;
  }

  .premium-product-point {
    border-radius: 14px;
    font-size: 0.94rem;
  }

  .premium-feature-media {
    min-height: 150px;
    border-radius: 18px;
    font-size: 0.9rem;
  }

  .premium-feature-body h5 {
    font-size: 1.05rem;
  }

  .premium-feature-media-image img {
    min-height: 150px;
    border-radius: 18px;
  }
}

@media (max-width: 575.98px) {
  .premium-product-kicker {
    font-size: 0.76rem;
    padding: 0.55rem 0.85rem;
  }

  .premium-product-title {
    font-size: 1.75rem;
  }

  .video-shell.premium-product-video-shell,
  .premium-product-video-shell {
    aspect-ratio: 16 / 12;
  }

  .premium-product-video-player {
    border-radius: 18px;
  }
}



/* ============================================================
   PREMIUM FIRE CLASSES SECTION
   ============================================================ */
.premium-classes-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fffaf8 0%, #ffffff 42%, #f8f7f4 100%);
}

.premium-classes-section::before {
  content: "";
  position: absolute;
  inset: 40px auto 0 50%;
  transform: translateX(-50%);
  width: min(92%, 1280px);
  height: calc(100% - 40px);
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(217, 43, 43, 0.05), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 107, 53, 0.05), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.54));
  border: 1px solid rgba(15, 23, 42, 0.05);
  z-index: 0;
  pointer-events: none;
}

.classes-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.classes-bg-orb-1 {
  width: 260px;
  height: 260px;
  background: rgba(217, 43, 43, 0.08);
  top: 60px;
  left: -70px;
}

.classes-bg-orb-2 {
  width: 320px;
  height: 320px;
  background: rgba(255, 107, 53, 0.08);
  right: -90px;
  bottom: 20px;
}

.premium-classes-section .container {
  position: relative;
  z-index: 2;
}

.premium-classes-head {
  max-width: 860px;
  margin: 0 auto 42px;
}

.premium-classes-kicker {
  display: inline-block;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(217, 43, 43, 0.10);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  color: var(--color-primary-red);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.premium-classes-title {
  font-size: clamp(2rem, 3vw, 3rem);
}

.premium-classes-subtitle {
  max-width: 760px;
}

.class-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.class-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.premium-class-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.84));
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 18px 44px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255,255,255,0.75);
}

.premium-class-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(217, 43, 43, 0.06), transparent 22%),
    radial-gradient(circle at bottom left, rgba(255, 107, 53, 0.05), transparent 28%);
  pointer-events: none;
}

.premium-class-card:hover {
  border-color: rgba(217, 43, 43, 0.12);
  box-shadow:
    0 26px 54px rgba(15, 23, 42, 0.10),
    0 10px 22px rgba(217, 43, 43, 0.06);
}

.premium-class-card > * {
  position: relative;
  z-index: 2;
}

.premium-class-card h5 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-deep);
  margin-bottom: 0.75rem;
}

.premium-class-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.class-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(217, 43, 43, 0.08);
  color: var(--color-primary-red);
  font-size: 1.4rem;
}

.premium-class-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.45), transparent 32%),
    linear-gradient(135deg, rgba(217, 43, 43, 0.12), rgba(255, 107, 53, 0.18));
  border: 1px solid rgba(217, 43, 43, 0.14);
  box-shadow:
    0 14px 28px rgba(217, 43, 43, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.45);
  flex-shrink: 0;
  overflow: hidden;
  padding: 10px;
}

.premium-class-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.class-label {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  background: #fff4eb;
  color: #db7a22;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
}

.premium-class-label {
  padding: 0.5rem 0.9rem;
  background: rgba(255, 244, 235, 0.95);
  color: #c56d18;
  border: 1px solid rgba(219, 122, 34, 0.12);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.premium-class-top {
  margin-bottom: 1rem;
}

/* ============================================================
   FEATURED F + K CARD
   ============================================================ */
.premium-class-card-hot {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,250,248,0.92));
  border: 1px solid rgba(217, 43, 43, 0.18);
  box-shadow:
    0 24px 54px rgba(15, 23, 42, 0.10),
    0 12px 28px rgba(217, 43, 43, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.85);
}

.premium-class-card-hot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(217, 43, 43, 0.06), transparent 40%),
    radial-gradient(circle at top right, rgba(255, 107, 53, 0.10), transparent 28%);
  pointer-events: none;
  z-index: 1;
}

.premium-class-card-hot:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 43, 43, 0.28);
  box-shadow:
    0 34px 68px rgba(15, 23, 42, 0.12),
    0 12px 32px rgba(217, 43, 43, 0.12);
}

.premium-class-top-hot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.premium-class-top-main {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: wrap;
}

.premium-class-icon-stack {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.premium-class-label-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.premium-class-label-hot {
  background: linear-gradient(180deg, rgba(255,245,238,0.98), rgba(255,238,229,0.98));
  color: #b84e11;
  border: 1px solid rgba(217, 43, 43, 0.16);
  box-shadow:
    0 8px 18px rgba(217, 43, 43, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.85);
}

.premium-class-top-alert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  background: rgba(21, 26, 45, 0.96);
  color: #fff;
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.16),
    0 0 0 rgba(217, 43, 43, 0);
  border: 1px solid rgba(255,255,255,0.06);
  transform-origin: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.premium-fire-alert-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff3b30;
  box-shadow:
    0 0 0 0 rgba(255, 59, 48, 0.55),
    0 0 16px rgba(255, 59, 48, 0.65);
  animation: premiumPulseDot 1.2s infinite ease-in-out;
  flex-shrink: 0;
}

.premium-fire-alert-text {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  animation: premiumBlinkText 1.3s infinite ease-in-out;
}

/* JS state classes */
.js-fire-alert-badge.is-attention {
  animation: premiumShakeBadge 0.55s ease;
}

.js-fire-alert-card.is-glow {
  box-shadow:
    0 34px 68px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(217, 43, 43, 0.18),
    0 0 28px rgba(217, 43, 43, 0.20),
    0 12px 32px rgba(217, 43, 43, 0.10);
}

.js-fire-alert-badge.is-glow {
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(255, 59, 48, 0.14),
    0 0 22px rgba(255, 59, 48, 0.22);
}

.js-fire-alert-badge .premium-fire-alert-text.is-flash {
  animation: premiumFlashText 0.6s ease;
}

/* keyframes */
@keyframes premiumPulseDot {
  0% {
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(255, 59, 48, 0.55),
      0 0 16px rgba(255, 59, 48, 0.55);
  }
  50% {
    transform: scale(1.22);
    box-shadow:
      0 0 0 8px rgba(255, 59, 48, 0),
      0 0 24px rgba(255, 59, 48, 0.78);
  }
  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(255, 59, 48, 0),
      0 0 16px rgba(255, 59, 48, 0.55);
  }
}

@keyframes premiumBlinkText {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 0 rgba(255,255,255,0);
  }
  50% {
    opacity: 0.72;
    text-shadow: 0 0 10px rgba(255,255,255,0.22);
  }
}

@keyframes premiumShakeBadge {
  0% { transform: translateX(0) rotate(0deg); }
  20% { transform: translateX(-1px) rotate(-1deg); }
  40% { transform: translateX(2px) rotate(1deg); }
  60% { transform: translateX(-2px) rotate(-1deg); }
  80% { transform: translateX(1px) rotate(1deg); }
  100% { transform: translateX(0) rotate(0deg); }
}

@keyframes premiumFlashText {
  0% {
    opacity: 1;
    transform: scale(1);
    text-shadow: 0 0 0 rgba(255,255,255,0);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
    text-shadow: 0 0 16px rgba(255,255,255,0.38);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    text-shadow: 0 0 0 rgba(255,255,255,0);
  }
}

/* tablet */
@media (max-width: 991.98px) {
  .premium-classes-section {
    padding: 70px 0;
  }

  .premium-classes-section::before {
    width: calc(100% - 24px);
    border-radius: 28px;
  }

  .premium-classes-head {
    margin-bottom: 32px;
  }

  .premium-class-top-hot {
    flex-direction: column;
    align-items: flex-start;
  }

  .premium-class-top-alert {
    align-self: flex-start;
  }
}

/* mobile */
@media (max-width: 767.98px) {
  .premium-classes-section {
    padding: 58px 0;
  }

  .premium-classes-kicker {
    font-size: 0.76rem;
    padding: 0.55rem 0.85rem;
  }

  .premium-classes-title {
    font-size: 1.7rem;
  }

  .premium-class-card {
    border-radius: 20px;
  }

  .premium-class-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    padding: 9px;
  }

  .premium-class-label {
    font-size: 0.74rem;
    padding: 0.45rem 0.75rem;
  }

  .premium-class-card h5 {
    font-size: 1rem;
  }

  .premium-class-card p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .premium-class-top-main {
    gap: 12px;
  }

  .premium-class-icon-stack {
    gap: 8px;
  }

  .premium-class-label-group {
    gap: 8px;
  }

  .premium-class-top-alert {
    padding: 0.55rem 0.78rem;
    gap: 8px;
    white-space: normal;
  }

  .premium-fire-alert-text {
    font-size: 0.66rem;
    line-height: 1.2;
  }
}

@media (max-width: 575.98px) {
  .premium-class-top-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .premium-class-label-group {
    width: 100%;
  }

  .premium-class-top-alert {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}





/* ============================================================
   PREMIUM VARIANTS SECTION
   ============================================================ */
.premium-variants-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fff7f4 0%, #ffffff 40%, #f8f7f4 100%);
}

.premium-variants-section::before {
  content: "";
  position: absolute;
  inset: 40px auto 0 50%;
  transform: translateX(-50%);
  width: min(92%, 1280px);
  height: calc(100% - 40px);
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(217, 43, 43, 0.05), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 107, 53, 0.05), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.54));
  border: 1px solid rgba(15, 23, 42, 0.05);
  z-index: 0;
  pointer-events: none;
}

.variants-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.variants-bg-orb-1 {
  width: 260px;
  height: 260px;
  background: rgba(217, 43, 43, 0.09);
  top: 60px;
  left: -70px;
}

.variants-bg-orb-2 {
  width: 320px;
  height: 320px;
  background: rgba(255, 107, 53, 0.08);
  right: -90px;
  bottom: 20px;
}

.premium-variants-section .container {
  position: relative;
  z-index: 2;
}

.premium-variants-head {
  max-width: 860px;
  margin: 0 auto 42px;
}

.premium-variants-kicker {
  display: inline-block;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(217, 43, 43, 0.10);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  color: var(--color-primary-red);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.premium-variants-title {
  font-size: clamp(2rem, 3vw, 3rem);
}

.premium-variants-subtitle {
  max-width: 760px;
}

/* ============================================================
   PREMIUM MATERIAL COMPARISON
   ============================================================ */
.premium-material-compare {
  margin: 0 auto 44px;
}

.premium-material-compare-mobile {
  display: none;
}

.premium-material-compare-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.premium-material-panel {
  position: relative;
  border-radius: 30px;
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.85));
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 24px 54px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.80);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.premium-material-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.premium-material-panel-ms::before {
  background:
    radial-gradient(circle at top left, rgba(120, 130, 150, 0.10), transparent 28%),
    linear-gradient(135deg, rgba(140, 148, 165, 0.06), transparent 40%);
}

.premium-material-panel-ss::before {
  background:
    radial-gradient(circle at top right, rgba(217, 43, 43, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(255, 107, 53, 0.08), transparent 40%);
}

.premium-material-panel:hover {
  transform: translateY(-6px);
  box-shadow:
    0 32px 64px rgba(15, 23, 42, 0.10),
    0 14px 30px rgba(217, 43, 43, 0.06);
}

.premium-material-panel-featured {
  border-color: rgba(217, 43, 43, 0.14);
  box-shadow:
    0 28px 60px rgba(15, 23, 42, 0.10),
    0 12px 28px rgba(217, 43, 43, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.82);
}

.premium-material-panel-featured:hover {
  border-color: rgba(217, 43, 43, 0.22);
}

.premium-material-panel > * {
  position: relative;
  z-index: 2;
}

.premium-material-spotlight {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0.58rem 0.86rem;
  border-radius: 999px;
  background: rgba(21, 26, 45, 0.96);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.14);
}

.premium-material-spotlight-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff4d3d;
  box-shadow: 0 0 0 0 rgba(255, 77, 61, 0.45);
  animation: premiumMaterialPulse 1.5s infinite ease-in-out;
}

.premium-material-panel-head {
  margin-bottom: 1.35rem;
}

.premium-material-mini-kicker {
  display: inline-block;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--color-primary-red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.premium-material-panel-head h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 800;
  color: var(--color-deep);
  margin-bottom: 0.55rem;
}

.premium-material-panel-head p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.premium-material-visual {
  position: relative;
  min-height: 360px;
  border-radius: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 2rem 1.25rem 0;
  margin-bottom: 1.35rem;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.48), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.88), rgba(247,248,250,0.92));
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.70),
    0 16px 30px rgba(15, 23, 42, 0.05);
}

.premium-material-panel-ss .premium-material-visual {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.52), transparent 30%),
    linear-gradient(180deg, rgba(255,250,248,0.95), rgba(255,245,240,0.92));
}

.premium-material-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 0.95rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.premium-material-chip-ms {
  background: linear-gradient(135deg, #5c6472, #7d8594);
  box-shadow: 0 12px 24px rgba(92, 100, 114, 0.24);
}

.premium-material-chip-ss {
  background: linear-gradient(135deg, var(--color-primary-red), var(--color-accent-warm));
  box-shadow: 0 12px 24px rgba(217, 43, 43, 0.22);
}

.premium-material-cylinder {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.14));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.premium-material-panel:hover .premium-material-cylinder {
  transform: translateY(-6px) scale(1.03);
  filter: drop-shadow(0 30px 34px rgba(0, 0, 0, 0.18));
}

.premium-material-specs {
  display: grid;
  gap: 12px;
}

.premium-material-spec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.premium-material-spec-featured {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,247,244,0.90));
  border-color: rgba(217, 43, 43, 0.10);
}

.premium-material-spec-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  flex: 0 0 auto;
}

.premium-material-spec strong {
  text-align: right;
  color: var(--color-deep);
  font-size: 0.98rem;
  font-weight: 700;
}

.premium-material-center-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: relative;
}

.premium-material-vs-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 48px;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(21, 26, 45, 0.96);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.16);
}

.premium-material-arrow-line {
  position: relative;
  width: 100%;
  height: 18px;
}

.premium-material-arrow-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 14px;
  right: 14px;
  height: 2px;
  background: linear-gradient(90deg, rgba(125,133,148,0.55), rgba(217,43,43,0.55));
  transform: translateY(-50%);
}

.premium-material-arrow {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid rgba(217, 43, 43, 0.55);
  border-right: 2px solid rgba(217, 43, 43, 0.55);
  transform: translateY(-50%) rotate(45deg);
}

.premium-material-arrow-left {
  left: 20px;
  transform: translateY(-50%) rotate(-135deg);
}

.premium-material-arrow-right {
  right: 20px;
}

.premium-material-bridge-text {
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 150px;
}

/* ============================================================
   MOBILE COMPARISON IMAGE
   ============================================================ */
.premium-material-mobile-card {
  position: relative;
  border-radius: 24px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,250,248,0.90));
  border: 1px solid rgba(217, 43, 43, 0.10);
  box-shadow:
    0 24px 44px rgba(15, 23, 42, 0.09),
    0 10px 20px rgba(217, 43, 43, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.82);
  overflow: hidden;
}

.premium-material-mobile-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.45), transparent 28%),
    radial-gradient(circle at bottom right, rgba(217, 43, 43, 0.07), transparent 26%);
  pointer-events: none;
}

.premium-material-mobile-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdfc, #fff6f2);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 12px 28px rgba(15, 23, 42, 0.06);
}

.premium-material-mobile-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(21, 26, 45, 0.94);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(10px);
}

.premium-material-mobile-image {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  border-radius: 18px;
  transform: scale(1.01);
  animation: premiumMobileFloat 7s ease-in-out infinite;
  filter:
    drop-shadow(0 22px 26px rgba(15, 23, 42, 0.10))
    saturate(1.02)
    contrast(1.01);
}

.premium-material-mobile-frame::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -120%;
  width: 60%;
  height: 120%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.14) 45%,
    rgba(255,255,255,0.42) 50%,
    rgba(255,255,255,0.14) 55%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-18deg);
  animation: premiumImageShine 5.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

.premium-variant-grid {
  margin-top: 6px;
}

/* ============================================================
   CAPACITY CARDS
   ============================================================ */
.premium-variant-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.84));
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 18px 44px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255,255,255,0.75);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.premium-variant-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 43, 43, 0.12);
  box-shadow:
    0 28px 56px rgba(15, 23, 42, 0.10),
    0 10px 24px rgba(217, 43, 43, 0.06);
}

.premium-variant-top {
  position: relative;
  min-height: 260px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.48), transparent 32%),
    linear-gradient(135deg, rgba(217, 43, 43, 0.10), rgba(255, 107, 53, 0.16));
  border: 1px dashed rgba(217, 43, 43, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.2rem 1rem 1.5rem;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.45),
    0 14px 24px rgba(15, 23, 42, 0.04);
}

.premium-variant-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(11, 16, 30, 0.08), transparent 45%),
    linear-gradient(to bottom right, rgba(255,255,255,0.10), transparent 45%);
  pointer-events: none;
}

.premium-variant-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 36px;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary-red), var(--color-accent-warm));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 12px 24px rgba(217, 43, 43, 0.22);
}

.variant-card img {
  position: relative;
  z-index: 2;
  max-height: 225px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease, filter 0.4s ease;
  display: block;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.14));
}

.variant-card:hover img {
  transform: translateY(-6px) scale(1.08);
  filter: drop-shadow(0 30px 34px rgba(0, 0, 0, 0.18));
}

.premium-variant-body h5 {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--color-deep);
  margin-bottom: 0.7rem;
}

.premium-variant-body p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes premiumMaterialPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 77, 61, 0.45);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 77, 61, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 77, 61, 0);
  }
}

@keyframes premiumMobileFloat {
  0%, 100% {
    transform: translateY(0) scale(1.01);
  }
  50% {
    transform: translateY(-4px) scale(1.015);
  }
}

@keyframes premiumImageShine {
  0%,
  55%,
  100% {
    left: -120%;
  }
  72% {
    left: 135%;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199.98px) {
  .premium-material-compare-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .premium-material-center-bridge {
    order: 2;
    padding: 2px 0 0;
  }

  .premium-material-panel-ms {
    order: 1;
  }

  .premium-material-panel-ss {
    order: 3;
  }

  .premium-material-arrow-line {
    width: 140px;
    transform: rotate(90deg);
  }

  .premium-material-bridge-text {
    max-width: none;
  }
}

@media (max-width: 991.98px) {
  .premium-variants-section {
    padding: 70px 0;
  }

  .premium-variants-section::before {
    width: calc(100% - 24px);
    border-radius: 28px;
  }

  .premium-variants-head {
    margin-bottom: 32px;
  }

  .premium-material-panel {
    border-radius: 24px;
    padding: 22px;
  }

  .premium-material-visual {
    min-height: 320px;
    border-radius: 20px;
  }

  .premium-material-cylinder {
    max-height: 270px;
  }

  .premium-material-spec {
    padding: 0.9rem 0.95rem;
  }

  .premium-variant-top {
    min-height: 230px;
  }

  .variant-card img {
    max-height: 195px;
  }
}

/* MOBILE IMAGE MODE */
@media (max-width: 767.98px) {
  .premium-variants-section {
    padding: 56px 0;
  }

  .premium-variants-kicker {
    font-size: 0.74rem;
    padding: 0.5rem 0.8rem;
    margin-bottom: 0.85rem;
  }

  .premium-variants-title {
    display: none;
  }

  .premium-variants-subtitle {
    display: none;
  }

  .premium-variants-head {
    margin-bottom: 18px;
  }

  .premium-material-compare-desktop {
    display: none;
  }

  .premium-material-compare-mobile {
    display: block;
    margin: 0 auto 26px;
  }

  .premium-material-mobile-card {
    border-radius: 20px;
    padding: 10px;
  }

  .premium-material-mobile-frame {
    border-radius: 16px;
  }

  .premium-material-mobile-image {
    border-radius: 16px;
  }

  .premium-material-mobile-badge {
    top: 10px;
    left: 10px;
    min-height: 30px;
    padding: 0 0.78rem;
    font-size: 0.64rem;
  }

  .premium-variant-grid {
    margin-top: 0;
  }

  .premium-variant-card {
    border-radius: 18px;
    padding: 1rem !important;
  }

  .premium-variant-top {
    min-height: 185px;
    border-radius: 16px;
    padding: 1.45rem 0.85rem 1rem;
    margin-bottom: 0.85rem !important;
  }

  .premium-variant-badge {
    top: 10px;
    left: 10px;
    min-width: 44px;
    height: 30px;
    font-size: 0.7rem;
    padding: 0 0.7rem;
  }

  .variant-card img {
    max-height: 155px;
    filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.12));
  }

  .variant-card:hover img {
    transform: none;
    filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.12));
  }

  .premium-variant-body h5 {
    font-size: 0.98rem;
    margin-bottom: 0.45rem;
  }

  .premium-variant-body p {
    font-size: 0.88rem;
    line-height: 1.6;
  }
}

@media (max-width: 575.98px) {
  .premium-variants-section::before {
    width: calc(100% - 16px);
    inset: 24px auto 0 50%;
    height: calc(100% - 24px);
    border-radius: 22px;
  }

  .premium-variants-head {
    margin-bottom: 16px;
  }

  .premium-material-compare-mobile {
    margin-bottom: 22px;
  }

  .premium-material-mobile-card {
    padding: 8px;
    border-radius: 18px;
    box-shadow:
      0 18px 32px rgba(15, 23, 42, 0.08),
      0 8px 16px rgba(217, 43, 43, 0.05),
      inset 0 1px 0 rgba(255,255,255,0.82);
  }

  .premium-material-mobile-frame {
    border-radius: 14px;
  }

  .premium-material-mobile-image {
    border-radius: 14px;
  }

  .premium-material-mobile-badge {
    top: 8px;
    left: 8px;
    min-height: 28px;
    padding: 0 0.68rem;
    font-size: 0.6rem;
  }

  .premium-variant-card {
    padding: 0.9rem !important;
  }

  .premium-variant-top {
    min-height: 170px;
    border-radius: 14px;
  }

  .variant-card img {
    max-height: 142px;
  }

  .premium-variant-body h5 {
    font-size: 0.94rem;
  }

  .premium-variant-body p {
    font-size: 0.84rem;
  }
}




/* ============================================================
   PREMIUM COMPARISON SECTION
   ============================================================ */
.premium-comparison-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fffaf8 0%, #ffffff 42%, #f8f7f4 100%);
}

.premium-comparison-section::before {
  content: "";
  position: absolute;
  inset: 40px auto 0 50%;
  transform: translateX(-50%);
  width: min(92%, 1280px);
  height: calc(100% - 40px);
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(217, 43, 43, 0.05), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 107, 53, 0.05), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.54));
  border: 1px solid rgba(15, 23, 42, 0.05);
  z-index: 0;
  pointer-events: none;
}

.comparison-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.comparison-bg-orb-1 {
  width: 260px;
  height: 260px;
  background: rgba(217, 43, 43, 0.08);
  top: 60px;
  left: -70px;
}

.comparison-bg-orb-2 {
  width: 320px;
  height: 320px;
  background: rgba(255, 107, 53, 0.08);
  right: -90px;
  bottom: 20px;
}

.premium-comparison-section .container {
  position: relative;
  z-index: 2;
}

.premium-comparison-head {
  max-width: 100%;
}

.premium-comparison-kicker {
  display: inline-block;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(217, 43, 43, 0.10);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  color: var(--color-primary-red);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.premium-comparison-title {
  font-size: clamp(2rem, 3vw, 3rem);
}

.premium-comparison-subtitle {
  max-width: 760px;
}

.premium-comparison-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(21, 26, 45, 0.95);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
  white-space: nowrap;
}

.comparison-wrap {
  overflow-x: auto;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.premium-comparison-wrap {
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.92));
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 22px 54px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.75);
  overflow-x: auto;
}

.comparison-table {
  min-width: 900px;
  margin-bottom: 0;
}

.premium-comparison-table {
  min-width: 980px;
  margin-bottom: 0;
}

.comparison-table thead th {
  background: var(--color-deep);
  color: #fff;
  border: 0;
  padding: 1rem;
  font-weight: 700;
}

.premium-comparison-table thead th {
  background: linear-gradient(135deg, #151a2d, #222945);
  color: #fff;
  border: 0;
  padding: 1.15rem 1rem;
  font-weight: 700;
  vertical-align: middle;
}

.premium-comparison-table thead th.feature-col {
  width: 18%;
  min-width: 180px;
}

.comparison-head-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.comparison-head-badge-primary {
  background: linear-gradient(135deg, rgba(217,43,43,0.22), rgba(255,107,53,0.20));
  border-color: rgba(255,255,255,0.10);
}

.comparison-head-badge-full {
  white-space: normal;
  text-align: center;
  line-height: 1.45;
  padding: 0.75rem 1rem;
  max-width: 260px;
}

.comparison-table tbody td,
.comparison-table tbody th {
  padding: 1rem;
  vertical-align: top;
}

.premium-comparison-table tbody th,
.premium-comparison-table tbody td {
  padding: 1.15rem 1rem;
  border-color: rgba(15, 23, 42, 0.06);
  vertical-align: top;
}

.premium-comparison-table tbody th {
  color: var(--color-deep);
  font-weight: 700;
  background: rgba(15, 23, 42, 0.02);
}

.premium-comparison-table tbody td strong {
  display: block;
  color: var(--color-deep);
  font-size: 0.98rem;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.premium-comparison-table tbody td span {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.comparison-highlight {
  background: var(--color-success-soft);
}

.premium-comparison-table .comparison-highlight {
  background:
    linear-gradient(180deg, rgba(232, 246, 237, 0.95), rgba(240, 251, 243, 0.95));
  position: relative;
}

.premium-comparison-table .comparison-highlight::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-primary-red), var(--color-accent-warm));
}

.premium-comparison-table tbody tr:hover td,
.premium-comparison-table tbody tr:hover th {
  background-color: rgba(15, 23, 42, 0.015);
}

/* tablet */
@media (max-width: 991.98px) {
  .premium-comparison-section {
    padding: 70px 0;
  }

  .premium-comparison-section::before {
    width: calc(100% - 24px);
    border-radius: 28px;
  }

  .premium-comparison-head {
    justify-content: center !important;
    text-align: center;
  }

  .comparison-head-badge-full {
    max-width: 220px;
    font-size: 0.78rem;
    line-height: 1.4;
  }
}

/* mobile */
@media (max-width: 767.98px) {
  .premium-comparison-section {
    padding: 58px 0;
  }

  .premium-comparison-kicker {
    font-size: 0.76rem;
    padding: 0.55rem 0.85rem;
  }

  .premium-comparison-title {
    font-size: 1.7rem;
  }

  .premium-comparison-note {
    font-size: 0.74rem;
    padding: 0.65rem 0.85rem;
  }

  .premium-comparison-wrap {
    border-radius: 22px;
  }

  .premium-comparison-table {
    min-width: 920px;
  }

  .comparison-head-badge-full {
    max-width: 210px;
    font-size: 0.74rem;
    line-height: 1.35;
    padding: 0.7rem 0.85rem;
  }

  .premium-comparison-table tbody td strong {
    font-size: 0.92rem;
  }

  .premium-comparison-table tbody td span {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}




/* ============================================================
   PREMIUM BUY NOW SECTION
   ============================================================ */
.buy-section {
  background:
    radial-gradient(circle at top left, rgba(255, 153, 0, 0.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(40, 116, 240, 0.10), transparent 26%),
    linear-gradient(135deg, #1b2034, #242a44);
  color: #fff;
}

.premium-buy-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 153, 0, 0.14), transparent 24%),
    radial-gradient(circle at bottom right, rgba(40, 116, 240, 0.12), transparent 28%),
    linear-gradient(135deg, #171c30 0%, #1e243a 45%, #242a44 100%);
}

.buy-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.buy-bg-orb-1 {
  width: 260px;
  height: 260px;
  background: rgba(255, 153, 0, 0.12);
  top: 40px;
  left: -70px;
}

.buy-bg-orb-2 {
  width: 320px;
  height: 320px;
  background: rgba(40, 116, 240, 0.10);
  right: -80px;
  bottom: 10px;
}

.premium-buy-section .container {
  position: relative;
  z-index: 2;
}

.premium-buy-card {
  position: relative;
  padding: 2.25rem;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 28px 60px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.premium-buy-content {
  max-width: 100%;
}

.premium-buy-kicker {
  display: inline-block;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  color: #ffd7c7;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.premium-buy-title {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  color: #fff;
  line-height: 1.02;
  font-weight: 800;
  margin-bottom: 1rem;
}

.premium-buy-quote {
  font-size: clamp(1.2rem, 2vw, 2.2rem);
  line-height: 1.45;
  color: rgba(255,255,255,0.82);
  font-style: italic;
  margin-bottom: 1.4rem;
}

.premium-buy-quote span {
  color: #fff;
  font-weight: 700;
}

.premium-buy-copy-box {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.15rem 1.2rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 14px 28px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.premium-buy-copy-box strong {
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.4;
}

.premium-buy-copy-box span {
  color: rgba(255,255,255,0.76);
  font-size: 0.95rem;
  line-height: 1.75;
}

.premium-divider-vertical {
  width: 2px;
  align-self: stretch;
  background-image: linear-gradient(to bottom, transparent, rgba(255,255,255,0.65), transparent);
  opacity: 0.85;
}

/* ============================================================
   PREMIUM BUY ACTION BUTTONS
   ============================================================ */
.premium-buy-actions {
  display: grid;
  gap: 18px;
}

.premium-buy-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
  min-height: 108px;
  padding: 1.15rem 1.25rem;
  border-radius: 26px;
  text-align: left;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
  box-shadow:
    0 20px 40px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

.premium-buy-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.03));
  opacity: 1;
  pointer-events: none;
}

.premium-buy-btn:hover {
  transform: translateY(-6px);
}

.premium-buy-btn-content,
.premium-buy-btn-icon-wrap,
.premium-buy-btn-arrow {
  position: relative;
  z-index: 2;
}

.premium-buy-btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  flex: 1;
}

.premium-buy-btn-platform {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.82;
  margin-bottom: 0.22rem;
}

.premium-buy-btn-label {
  display: block;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.2;
}

.premium-buy-btn-sub {
  display: block;
  font-size: 0.88rem;
  margin-top: 0.32rem;
  opacity: 0.9;
  line-height: 1.5;
}

.premium-buy-btn-arrow {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0.95;
  flex-shrink: 0;
  transition: transform 0.28s ease;
}

.premium-buy-btn:hover .premium-buy-btn-arrow {
  transform: translateX(4px);
}

.premium-buy-btn-arrow-dark {
  color: var(--color-deep);
}

.premium-buy-btn-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow:
    0 12px 24px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.75);
}

.premium-buy-btn-icon-wrap-amazon {
  background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(255,248,238,0.97));
  border: 1px solid rgba(255, 176, 32, 0.20);
}

.premium-buy-btn-icon-wrap-flipkart {
  background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(239,246,255,0.98));
  border: 1px solid rgba(40, 116, 240, 0.18);
}

.premium-buy-btn-icon-wrap-bulk {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(255,247,240,0.98));
  border: 1px solid rgba(255, 153, 0, 0.18);
}

.premium-buy-btn-icon {
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.12));
}

.premium-buy-btn-icon-amazon {
  width: 38px;
  height: 38px;
}

.premium-buy-btn-icon-flipkart {
  width: 38px;
  height: 38px;
}

.premium-buy-btn-icon-bulk {
  width: 50px;
  height: 50px;
}

.premium-buy-btn-amazon {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 176, 32, 0.24), rgba(255, 145, 0, 0.12)),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 191, 73, 0.24);
  box-shadow:
    0 22px 38px rgba(255, 153, 0, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.premium-buy-btn-amazon:hover {
  box-shadow:
    0 28px 46px rgba(255, 153, 0, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.premium-buy-btn-flipkart {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(40, 116, 240, 0.25), rgba(71, 150, 255, 0.12)),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(109, 171, 255, 0.20);
  box-shadow:
    0 22px 38px rgba(40, 116, 240, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.premium-buy-btn-flipkart:hover {
  box-shadow:
    0 28px 46px rgba(40, 116, 240, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.premium-buy-btn-bulk,
.premium-buy-btn-light {
  color: var(--color-deep);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,247,240,0.96));
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow:
    0 22px 38px rgba(255, 145, 0, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.88);
}

.premium-buy-btn-bulk .premium-buy-btn-platform,
.premium-buy-btn-bulk .premium-buy-btn-sub,
.premium-buy-btn-light .premium-buy-btn-sub {
  color: var(--color-text-muted);
  opacity: 1;
}

.premium-buy-btn-bulk .premium-buy-btn-label,
.premium-buy-btn-light .premium-buy-btn-label {
  color: var(--color-deep);
}

.premium-buy-btn-bulk:hover,
.premium-buy-btn-light:hover {
  box-shadow:
    0 30px 46px rgba(255, 145, 0, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

/* tablet */
@media (max-width: 991.98px) {
  .premium-buy-section {
    padding: 70px 0;
  }

  .premium-buy-card {
    padding: 1.6rem;
    border-radius: 28px;
  }

  .premium-buy-content {
    max-width: 100%;
    text-align: center;
  }

  .premium-buy-copy-box {
    max-width: 100%;
    text-align: center;
  }

  .premium-buy-actions {
    margin-top: 0.5rem;
  }

  .premium-buy-btn {
    min-height: 96px;
  }
}

/* mobile */
@media (max-width: 767.98px) {
  .premium-buy-section {
    padding: 58px 0;
  }

  .premium-buy-card {
    padding: 1.25rem;
    border-radius: 24px;
  }

  .premium-buy-kicker {
    font-size: 0.76rem;
    padding: 0.55rem 0.85rem;
  }

  .premium-buy-title {
    font-size: 2rem;
  }

  .premium-buy-quote {
    font-size: 1.08rem;
    line-height: 1.6;
    margin-bottom: 1.1rem;
  }

  .premium-buy-copy-box {
    padding: 1rem;
    border-radius: 18px;
    text-align: left;
  }

  .premium-buy-copy-box strong {
    font-size: 0.96rem;
  }

  .premium-buy-copy-box span {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .premium-buy-actions {
    gap: 14px;
    margin-top: 0.2rem;
  }

  .premium-buy-btn {
    min-height: 86px;
    border-radius: 20px;
    padding: 1rem;
    gap: 12px;
  }

  .premium-buy-btn-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .premium-buy-btn-icon-wrap-bulk {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .premium-buy-btn-icon-amazon,
  .premium-buy-btn-icon-flipkart {
    width: 30px;
    height: 30px;
  }

  .premium-buy-btn-icon-bulk {
    width: 40px;
    height: 40px;
  }

  .premium-buy-btn-platform {
    font-size: 0.64rem;
  }

  .premium-buy-btn-label {
    font-size: 1rem;
  }

  .premium-buy-btn-sub {
    font-size: 0.78rem;
  }

  .premium-buy-btn-arrow {
    font-size: 1.08rem;
  }
}

@media (max-width: 575.98px) {
  .premium-buy-card {
    padding: 1rem;
    border-radius: 22px;
  }

  .premium-buy-title {
    font-size: 1.82rem;
  }

  .premium-buy-quote {
    font-size: 1rem;
  }

  .premium-buy-copy-box {
    padding: 0.9rem;
  }

  .premium-buy-btn {
    min-height: 82px;
    border-radius: 18px;
    padding: 0.9rem;
  }

  .premium-buy-btn-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 13px;
  }

  .premium-buy-btn-icon-wrap-bulk {
    width: 54px;
    height: 54px;
    border-radius: 15px;
  }

  .premium-buy-btn-icon-amazon,
  .premium-buy-btn-icon-flipkart {
    width: 28px;
    height: 28px;
  }

  .premium-buy-btn-icon-bulk {
    width: 36px;
    height: 36px;
  }

  .premium-buy-btn-label {
    font-size: 0.95rem;
  }

  .premium-buy-btn-sub {
    font-size: 0.76rem;
  }
}





/* ============================================================
   COMMON / EXISTING SUPPORT STYLES
   ============================================================ */
.divider-vertical {
  width: 2px;
  align-self: stretch;
  background-image: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.65), transparent);
  opacity: 0.8;
}

.accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: 14px;
  background: #fff;
}

.accordion-button {
  font-weight: 700;
  padding: 1rem 1.2rem;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: rgba(217, 43, 43, 0.05);
  color: var(--color-primary-red-dark);
}

.partner-card {
  background:
    linear-gradient(135deg, rgba(217, 43, 43, 0.08), rgba(255, 107, 53, 0.10)),
    #fff;
  overflow: hidden;
}

.footer {
  background: #fff;
  border-top: 1px solid var(--color-divider);
}

.social-link {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-link:hover {
  background: var(--color-primary-red);
  color: #fff;
  border-color: var(--color-primary-red);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.40s; }

.placeholder-note {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  background: rgba(0, 0, 0, 0.03);
  border-radius: 12px;
  padding: 0.6rem 0.8rem;
  display: inline-block;
}

/* ============================================================
   PREMIUM FAQ SECTION
   ============================================================ */
.premium-faq-section {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
  background: linear-gradient(180deg, #fffaf8 0%, #ffffff 42%, #f8f7f4 100%);
}

.premium-faq-section::before {
  content: "";
  position: absolute;
  inset: 40px auto 0 50%;
  transform: translateX(-50%);
  width: min(92%, 1280px);
  height: calc(100% - 40px);
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(217, 43, 43, 0.05), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 107, 53, 0.05), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.54));
  border: 1px solid rgba(15, 23, 42, 0.05);
  z-index: 0;
  pointer-events: none;
}

.faq-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.faq-bg-orb-1 {
  width: 260px;
  height: 260px;
  background: rgba(217, 43, 43, 0.08);
  top: 60px;
  left: -70px;
}

.faq-bg-orb-2 {
  width: 320px;
  height: 320px;
  background: rgba(255, 107, 53, 0.08);
  right: -90px;
  bottom: 20px;
}

.premium-faq-section .container {
  position: relative;
  z-index: 2;
}

.premium-faq-head {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.premium-faq-kicker {
  display: inline-block;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(217, 43, 43, 0.10);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  color: var(--color-primary-red);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.premium-faq-title {
  font-size: clamp(2rem, 3vw, 3rem);
}

.premium-faq-subtitle {
  max-width: 760px;
}

.premium-faq-wrap {
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.84));
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 22px 54px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.75);
}

.premium-accordion-item {
  border-radius: 18px !important;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.premium-accordion-button {
  padding: 1.15rem 1.2rem;
  font-weight: 700;
  color: var(--color-deep);
  background: #fff;
}

.premium-accordion-button:not(.collapsed) {
  background: rgba(217, 43, 43, 0.05);
  color: var(--color-primary-red-dark);
}

.premium-accordion-body {
  color: var(--color-text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ============================================================
   PREMIUM PARTNER SECTION
   ============================================================ */
.premium-partner-section {
  padding: 0 0 90px;
  background: linear-gradient(180deg, #f8f7f4 0%, #ffffff 100%);
}

.premium-partner-card {
  position: relative;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(217, 43, 43, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 107, 53, 0.10), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(255,255,255,0.84));
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 24px 56px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.70);
}

.premium-partner-kicker {
  display: inline-block;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(217, 43, 43, 0.10);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  color: var(--color-primary-red);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.premium-partner-title {
  font-size: clamp(2rem, 3vw, 3rem);
}

.premium-partner-subtitle {
  max-width: 760px;
}

.premium-partner-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.premium-partner-point {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  color: var(--color-text);
  font-weight: 600;
}

.premium-partner-point-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(217, 43, 43, 0.08);
  color: var(--color-primary-red);
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.premium-partner-btn {
  min-width: 220px;
  padding: 1rem 1.5rem;
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============================================================
   PREMIUM FOOTER
   ============================================================ */
.premium-footer {
  position: relative;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.premium-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(217, 43, 43, 0.03), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255, 107, 53, 0.04), transparent 28%);
  pointer-events: none;
}

.premium-footer .container {
  position: relative;
  z-index: 2;
}

.premium-footer-top {
  padding-bottom: 1rem;
}

.premium-footer-block {
  height: 100%;
}

.premium-footer-brand-mark {
  box-shadow: 0 12px 24px rgba(217, 43, 43, 0.18);
  flex-shrink: 0;
}

.premium-footer-brand-title {
  color: var(--color-deep);
  font-size: 1.1rem;
}

.premium-footer-brand-subtitle {
  color: var(--color-text-muted);
}

.premium-footer-text {
  color: var(--color-text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

.premium-footer-heading {
  color: var(--color-deep);
  font-size: 1rem;
  font-weight: 700;
}

.premium-footer-links a,
.premium-footer-bottom-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.premium-footer-links a:hover,
.premium-footer-bottom-links a:hover {
  color: var(--color-primary-red);
  transform: translateX(2px);
}

/* ============================================================
   FIXED SOCIAL ICON VISIBILITY
   ============================================================ */
.social-link {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
}

.social-link i {
  font-size: 1rem;
  line-height: 1;
}

.premium-social-link {
  background: linear-gradient(180deg, #ffffff, #f5f5f5);
  color: var(--color-deep) !important;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow:
    0 10px 20px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.premium-social-link:hover {
  background: linear-gradient(135deg, var(--color-primary-red), var(--color-accent-warm));
  color: #fff !important;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow:
    0 16px 28px rgba(217, 43, 43, 0.22),
    0 6px 14px rgba(15, 23, 42, 0.08);
}

.premium-footer-bottom {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.premium-footer-copy {
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    padding-top: 45px;
  }

  .hero-product {
    min-height: 420px;
  }

  .divider-vertical {
    display: none;
  }

  .premium-faq-section {
    padding: 70px 0 60px;
  }

  .premium-faq-section::before {
    width: calc(100% - 24px);
    border-radius: 28px;
  }

  .premium-partner-section {
    padding-bottom: 70px;
  }

  .premium-partner-card {
    border-radius: 26px;
  }
}

@media (max-width: 767.98px) {
  .premium-faq-section {
    padding: 58px 0 48px;
  }

  .premium-faq-kicker,
  .premium-partner-kicker {
    font-size: 0.76rem;
    padding: 0.55rem 0.85rem;
  }

  .premium-faq-title,
  .premium-partner-title {
    font-size: 1.75rem;
  }

  .premium-accordion-button {
    padding: 1rem 1rem;
    font-size: 0.95rem;
  }

  .premium-accordion-body {
    font-size: 0.9rem;
  }

  .premium-partner-card {
    border-radius: 22px;
  }

  .premium-partner-points {
    flex-direction: column;
    align-items: stretch;
  }

  .premium-partner-point {
    justify-content: flex-start;
    text-align: left;
  }

  .premium-partner-btn {
    width: 100%;
    min-width: 100%;
  }

  .premium-footer {
    text-align: center;
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
  }

  .premium-footer-top {
    padding-bottom: 0.5rem;
  }

  .premium-footer-block {
    padding: 1.2rem 1rem;
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.82));
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow:
      0 16px 34px rgba(15, 23, 42, 0.06),
      inset 0 1px 0 rgba(255,255,255,0.75);
  }

  .premium-footer-brand-row {
    justify-content: center;
    text-align: left;
  }

  .premium-footer-text {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .premium-footer-links {
    align-items: center;
  }

  .premium-footer-links a {
    padding: 0.2rem 0;
  }

  .premium-footer-socials {
    justify-content: center;
  }

  .premium-footer-bottom {
    margin-top: 1.5rem !important;
    padding-top: 1.2rem !important;
  }

  .premium-footer-bottom-links {
    justify-content: center !important;
  }

  .premium-footer-copy {
    display: block;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .premium-footer {
    padding-top: 2.6rem !important;
    padding-bottom: 1.6rem !important;
  }

  .premium-footer-block {
    padding: 1rem 0.9rem;
    border-radius: 18px;
  }

  .premium-footer-brand-row {
    gap: 0.85rem !important;
    flex-direction: column;
    text-align: center !important;
  }

  .premium-footer-brand-title {
    font-size: 1rem;
  }

  .premium-footer-brand-subtitle {
    display: block;
    font-size: 0.82rem;
  }

  .premium-footer-heading {
    font-size: 0.95rem;
    margin-bottom: 0.85rem !important;
  }

  .premium-footer-text {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .social-link {
    width: 42px;
    height: 42px;
  }

  .social-link i {
    font-size: 0.92rem;
  }

  .premium-footer-bottom-links {
    gap: 0.9rem !important;
  }

  .premium-footer-bottom-links a {
    font-size: 0.88rem;
  }

  .premium-footer-copy {
    font-size: 0.82rem;
    line-height: 1.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.premium-footer-logo-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow:
    0 12px 24px rgba(217, 43, 43, 0.12),
    0 4px 12px rgba(15, 23, 42, 0.06);
  padding: 8px;
  flex-shrink: 0;
}

.premium-footer-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 575.98px) {
  .premium-footer-logo-wrap {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    padding: 7px;
  }
}




/* ============================================================
   CERTIFICATIONS STRIP
   ============================================================ */

.cert-strip-section {
  position: relative;
  padding: 34px 0 28px;
  background:
    linear-gradient(180deg, rgba(255, 248, 245, 0.72) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.premium-cert-strip {
  position: relative;
  padding: 38px 34px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 247, 0.98) 100%);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 28px 70px rgba(15, 23, 42, 0.08),
    0 12px 30px rgba(217, 43, 43, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  overflow: hidden;
}

.premium-cert-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(217, 43, 43, 0.07), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 107, 53, 0.08), transparent 26%);
  pointer-events: none;
}

.cert-strip-head {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
}

.cert-strip-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(217, 43, 43, 0.08);
  color: var(--color-primary-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cert-strip-title {
  color: var(--color-deep);
}

.cert-strip-subtitle {
  max-width: 760px;
}

.cert-strip-logos {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.cert-logo-card {
  position: relative;
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 14px 30px rgba(15, 23, 42, 0.06),
    0 5px 14px rgba(15, 23, 42, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-logo-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 22px 42px rgba(15, 23, 42, 0.09),
    0 8px 20px rgba(217, 43, 43, 0.05);
}

.cert-logo-card img {
  max-width: 100%;
  max-height: 74px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: saturate(1.02) contrast(1.02);
}

/* ============================================================
   LARGE TABLET
   ============================================================ */

@media (max-width: 1199.98px) {
  .cert-strip-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cert-logo-card {
    min-height: 126px;
  }
}

/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 991.98px) {
  .cert-strip-section {
    padding: 28px 0 22px;
  }

  .premium-cert-strip {
    padding: 32px 24px;
    border-radius: 28px;
  }

  .cert-strip-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .cert-logo-card {
    min-height: 118px;
    padding: 18px 16px;
    border-radius: 20px;
  }

  .cert-logo-card img {
    max-height: 66px;
  }
}

/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 767.98px) {
  .cert-strip-section {
    padding: 24px 0 18px;
  }

  .premium-cert-strip {
    padding: 26px 16px 20px;
    border-radius: 24px;
    box-shadow:
      0 20px 44px rgba(15, 23, 42, 0.08),
      0 8px 20px rgba(217, 43, 43, 0.05);
  }

  .cert-strip-head {
    margin-bottom: 20px;
  }

  .cert-strip-kicker {
    font-size: 0.72rem;
    padding: 0.58rem 0.9rem;
    margin-bottom: 0.8rem;
  }

  .cert-strip-title {
    margin-bottom: 0.45rem !important;
  }

  .cert-strip-subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .cert-strip-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .cert-logo-card {
    min-height: 112px;
    padding: 16px 14px;
    border-radius: 18px;
  }

  .cert-logo-card img {
    max-height: 58px;
  }
}

/* ============================================================
   SMALL PHONES
   ============================================================ */

@media (max-width: 575.98px) {
  .premium-cert-strip {
    padding: 22px 14px 18px;
    border-radius: 20px;
  }

  .cert-strip-logos {
    gap: 12px;
  }

  .cert-logo-card {
    min-height: 98px;
    padding: 14px 12px;
    border-radius: 16px;
  }

  .cert-logo-card img {
    max-height: 50px;
  }

  .cert-strip-subtitle {
    font-size: 0.9rem;
  }
}