/*
Theme Name: AnyCaptcha
Theme URI: https://anycaptcha.gdevs.co/
Author: Parbat Pithiya
Author URI: https://gdevs.co/
Description: A premium, multi-provider CAPTCHA theme for AnyCaptcha WordPress.
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: anycaptcha
*/

:root {
  --ff: 'Inter', system-ui, sans-serif;
  --fd: 'Plus Jakarta Sans', 'Inter', sans-serif;
  /* Joomla palette */
  --j-red: #F44321;
  --j-blue: #5091CD;
  --j-orange: #F9A541;
  --j-green: #7AC143;
  --j-black: #0a0a0a;
  /* Extended */
  --primary: #5091CD;
  --primary-dark: #3b7ab8;
  --accent: #F44321;
  --accent-light: rgba(244, 67, 33, 0.08);
  --bg: #ffffff;
  --bg-alt: #f6f8fb;
  --bg-hero: linear-gradient(160deg, #f6f8fb 0%, #eaf1f9 40%, #fef7f0 70%, #f6f8fb 100%);
  --surface: #ffffff;
  --border: #e5e9f0;
  --border-2: #d0d7e2;
  --text: #111827;
  --text-2: #374151;
  --muted: #6b7280;
  --muted-light: #9ca3af;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 24px 56px rgba(0, 0, 0, 0.1);
  --grad-primary: linear-gradient(135deg, #5091CD 0%, #3b7ab8 100%);
  --grad-accent: linear-gradient(135deg, #F44321 0%, #e03a1c 100%);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: var(--ff);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden
}

img {
  max-width: 100%;
  display: block
}

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px
}

.section {
  padding: 120px 0
}

.section--alt {
  background: var(--bg-alt)
}

/* ── REVEAL ── */
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1)
}

.rv.v {
  opacity: 1;
  transform: none
}

.rv-d1 {
  transition-delay: .12s
}

.rv-d2 {
  transition-delay: .24s
}

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}

.eyebrow svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.h1 {
  font-family: var(--fd);
  font-size: clamp(36px, 5.6vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 24px;
}

.h2 {
  font-family: var(--fd);
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}

.h3 {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em
}

.sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--muted);
  line-height: 1.75;
  max-width: 620px
}

.sub--center {
  margin-left: auto;
  margin-right: auto
}

.text-primary {
  color: var(--primary)
}

.text-accent {
  color: var(--accent)
}

.text-green {
  color: var(--j-green)
}

/* ── PILLS ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.pill--blue {
  background: rgba(80, 145, 205, .1);
  color: var(--j-blue);
  border: 1px solid rgba(80, 145, 205, .2)
}

.pill--green {
  background: rgba(122, 193, 67, .1);
  color: #4a8c1e;
  border: 1px solid rgba(122, 193, 67, .2)
}

.pill--orange {
  background: rgba(249, 165, 65, .1);
  color: #b87415;
  border: 1px solid rgba(249, 165, 65, .25)
}

.pill--red {
  background: rgba(244, 67, 33, .08);
  color: var(--j-red);
  border: 1px solid rgba(244, 67, 33, .15)
}

.pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--muted);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff);
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: all .25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--grad-primary);
  color: #fff;
  font-size: 15px;
  padding: 14px 28px;
  box-shadow: 0 6px 20px rgba(80, 145, 205, .35);
  border-radius: 14px;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(80, 145, 205, .45)
}


.btn--accent {
  background: var(--grad-accent);
  color: #fff;
  font-size: 15px;
  padding: 14px 28px;
  box-shadow: 0 4px 16px rgba(244, 67, 33, .3);
}

.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244, 67, 33, .4)
}

.btn--outline {
  background: transparent;
  color: var(--text);
  font-size: 15px;
  padding: 13px 26px;
  border: 2px solid var(--border-2);
}

.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(80, 145, 205, .04)
}

.btn--xl {
  padding: 18px 40px;
  font-size: 17px;
  border-radius: 14px
}

.btn--lg {
  padding: 15px 30px;
  font-size: 15px;
  border-radius: 12px
}

.btn--sm {
  padding: 10px 18px;
  font-size: 13px;
  border-radius: 8px
}

.btn--pulse {
  position: relative
}

.btn--pulse::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: inherit;
  opacity: 0;
  z-index: -1;
  animation: btn-p 2.8s ease-out infinite;
}

@keyframes btn-p {
  0% {
    opacity: .4;
    transform: scale(1)
  }

  100% {
    opacity: 0;
    transform: scale(1.15)
  }
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0
}

.logo__mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(80, 145, 205, .3);
  flex-shrink: 0;
}

.logo__mark svg {
  width: 20px;
  height: 20px
}

.logo__wordmark {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.03em
}

.logo__wordmark span {
  color: var(--primary)
}

.logo__tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(80, 145, 205, .08);
  color: var(--primary);
  border: 1px solid rgba(80, 145, 205, .15);
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center
}

.nav__links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: all .2s;
}

.nav__links a:hover {
  color: var(--primary);
  background: rgba(80, 145, 205, .06)
}

.nav__account-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  text-decoration: none;
  transition: all .3s ease;
  flex-shrink: 0;
  position: relative;
}

.nav__account-btn svg {
  width: 18px;
  height: 18px
}

.nav__account-btn:hover {
  background: var(--primary);
  color: #fff
}

.nav__cart-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid #fff;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 12px
}

.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav__burger svg {
  width: 20px;
  height: 20px
}

/* ── DRAWER ── */
.drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000
}

.drawer.open {
  display: flex
}

.drawer__bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(4px)
}

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  background: #fff;
  border-left: 1px solid var(--border);
  padding: 80px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.drawer__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer__close svg {
  width: 16px;
  height: 16px
}

.drawer a {
  padding: 14px 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 12px;
}

.drawer a svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--primary);
}

.drawer .btn {
  margin-top: 20px;
  display: flex;
}

/* ── ANNOUNCEMENT ── */
.ann {
  background: var(--grad-primary);
  color: #fff;
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
}

.ann a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px
}

/* ── STICKY BAR ── */
.bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px 10px 22px;
  background: #fff;
  border: 1.5px solid rgba(80, 145, 205, .35);
  border-radius: 100px;
  box-shadow: var(--shadow-xl);
  transition: transform .5s cubic-bezier(.34, 1.56, .64, 1);
  white-space: nowrap;
}

.bar.show {
  transform: translateX(-50%) translateY(0)
}

.bar__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--j-green);
  flex-shrink: 0;
  animation: dp 2s infinite
}

@keyframes dp {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .35
  }
}

.bar__text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text)
}

.bar__text strong {
  color: var(--primary)
}

@media (max-width: 580px) {
  .bar {
    bottom: 12px;
    padding: 8px 10px 8px 16px;
    gap: 8px;
    width: 92%;
    max-width: 400px;
  }
  .bar__text {
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .bar .btn--sm {
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 100px;
  background: var(--bg-hero);
}

/* animated mesh */
.hero__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(80, 145, 205, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 145, 205, .04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 72%);
}

/* floating blurs */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .35;
  pointer-events: none;
  animation: blob 18s ease-in-out infinite alternate;
}

.hero__blob--1 {
  width: 550px;
  height: 550px;
  top: -180px;
  left: -80px;
  background: rgba(80, 145, 205, .35);
  animation-duration: 20s
}

.hero__blob--2 {
  width: 450px;
  height: 450px;
  top: -80px;
  right: -120px;
  background: rgba(249, 165, 65, .25);
  animation-duration: 24s;
  animation-delay: -5s
}

.hero__blob--3 {
  width: 400px;
  height: 400px;
  bottom: -120px;
  left: 35%;
  background: rgba(244, 67, 33, .15);
  animation-duration: 22s;
  animation-delay: -10s
}

@keyframes blob {
  0% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(25px, -15px) scale(1.04)
  }

  66% {
    transform: translate(-20px, 10px) scale(.96)
  }

  100% {
    transform: translate(15px, 20px) scale(1.02)
  }
}

/* particles */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.ptcl {
  position: absolute;
  border-radius: 50%;
  background: rgba(80, 145, 205, .25);
  animation: ptcl-up linear infinite;
}

@keyframes ptcl-up {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0
  }

  15% {
    opacity: 1
  }

  85% {
    opacity: 1
  }

  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0
  }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px
}

.hero__desc {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted)
}

.hero__trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--j-green);
  flex-shrink: 0
}

/* ── HERO WIDGET (RIGHT) ── */
.hw {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .08), 0 0 0 1px rgba(0, 0, 0, .02);
  overflow: hidden;
}

.hw__bar {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hw__dots {
  display: flex;
  gap: 6px
}

.hw__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%
}

.hw__dot--r {
  background: #ff5f57
}

.hw__dot--y {
  background: #ffbd2e
}

.hw__dot--g {
  background: #28c940
}

.hw__url {
  flex: 1;
  font-size: 11px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  text-align: center;
  font-weight: 500;
}

.hw__body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.hw__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  transition: all .2s;
  cursor: default;
}

.hw__row:hover {
  border-color: rgba(80, 145, 205, .35);
  background: var(--bg-alt);
  transform: translateX(3px)
}

.hw__row-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hw__row-icon svg {
  width: 18px;
  height: 18px
}

.hw__row-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3
}

.hw__row-note {
  font-size: 11px;
  color: var(--muted-light);
  line-height: 1.3
}

.hw__row-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--j-green);
  margin-left: auto;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(122, 193, 67, .5);
  animation: dp 2s infinite;
}

.hw__foot {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hw__price {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 900;
  color: var(--text)
}

.hw__price span {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted)
}

.hw__buy {
  padding: 8px 18px;
  border-radius: 8px;
  background: var(--grad-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  box-shadow: 0 3px 10px rgba(80, 145, 205, .25);
}

.hw__buy:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(80, 145, 205, .4)
}

/* ── MARQUEE ── */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 16px 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: mq 45s linear infinite
}

.marquee__track:hover {
  animation-play-state: paused
}

@keyframes mq {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.marquee__item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: .55
}

.marquee__sep {
  color: var(--border-2);
  user-select: none;
  padding: 0 4px
}

/* ── STATS ── */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}

.stat {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background .2s;
}

.stat:last-child {
  border-right: none
}

.stat:hover {
  background: var(--bg-alt)
}

.stat__num {
  font-family: var(--fd);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 8px
}

.stat__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted)
}

/* ── PAIN ── */
.pain__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 56px
}

.pain {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid #fdd;
  transition: all .3s;
}

.pain:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #fbb
}

.pain__num {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 12px
}

.pain__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--j-red);
  margin-bottom: 8px
}

.pain__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65
}

/* ═══════════════════════════════
   PROVIDERS
═══════════════════════════════ */
.prov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px
}

.pc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .35s;
  position: relative;
}

.pc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(80, 145, 205, .3)
}

.pc__accent {
  height: 3px;
  width: 100%
}

.pc__body {
  padding: 28px 24px 24px
}

.pc__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px
}

.pc__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}

.pc__logo svg {
  width: 24px;
  height: 24px
}

.pc__name {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2
}

.pc__type {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 2px
}

/* CAPTCHA WIDGET MOCKS */
.mock {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--bg-alt);
}

/* reCAPTCHA checkbox mock */
.mock-recaptcha {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #f9f9f9;
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, #4285F4, #34A853, #FBBC05, #EA4335) 1;
}

.mock-recaptcha__box {
  width: 28px;
  height: 28px;
  border: 2.5px solid #c1c1c1;
  border-radius: 3px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mock-recaptcha__box svg {
  width: 18px;
  height: 18px
}

.mock-recaptcha__label {
  font-size: 14px;
  color: #555;
  flex: 1
}

.mock-recaptcha__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px
}

.mock-recaptcha__brand svg {
  width: 28px;
  height: 28px
}

.mock-recaptcha__brand span {
  font-size: 7px;
  color: #aaa;
  letter-spacing: .3px
}

/* Invisible badge mock */
.mock-invisible {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background: #fafafa;
}

.mock-invisible__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 6px;
  background: rgba(66, 133, 244, .07);
  border: 1px solid rgba(66, 133, 244, .18);
}

.mock-invisible__badge svg {
  width: 14px;
  height: 14px
}

.mock-invisible__badge span {
  font-size: 11px;
  font-weight: 600;
  color: #4285F4
}

/* Turnstile mock */
.mock-turnstile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
}

.mock-turnstile__ok {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--j-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mock-turnstile__ok svg {
  width: 14px;
  height: 14px
}

.mock-turnstile__text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2)
}

.mock-turnstile__cf {
  margin-left: auto;
  opacity: .4
}

.mock-turnstile__cf svg {
  width: 22px;
  height: 22px
}

/* hCaptcha mock */
.mock-hcaptcha {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #fafafa;
  border-bottom: 3px solid #0074BF;
}

.mock-hcaptcha__box {
  width: 28px;
  height: 28px;
  border: 2.5px solid #0074BF;
  border-radius: 3px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mock-hcaptcha__box svg {
  width: 18px;
  height: 18px
}

.mock-hcaptcha__label {
  font-size: 14px;
  color: #555;
  flex: 1
}

.mock-hcaptcha__brand {
  font-size: 9px;
  font-weight: 700;
  color: #0074BF;
  letter-spacing: .5px
}

/* GeeTest slide mock */
.mock-geetest {
  padding: 14px;
  background: #fafafa
}

.mock-geetest__track {
  height: 40px;
  background: #e8e8e8;
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.mock-geetest__label {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #aaa;
  font-weight: 500;
  pointer-events: none;
}

.mock-geetest__handle {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--j-green), #4a8c1e);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
  position: relative;
  animation: slide-h 3.5s ease-in-out infinite;
}

.mock-geetest__handle svg {
  width: 16px;
  height: 16px
}

@keyframes slide-h {

  0%,
  100% {
    left: 0
  }

  50% {
    left: 40px
  }
}

/* Friendly Captcha proof-of-work */
.mock-fc {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: #fff
}

.mock-fc__spin {
  width: 24px;
  height: 24px;
  border: 3px solid #e8e8e8;
  border-top-color: var(--j-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  flex-shrink: 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.mock-fc__info {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4
}

.mock-fc__info strong {
  font-weight: 700;
  color: var(--text-2)
}

.pc__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px
}

.pc__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px
}

/* Custom request */
.pc--custom {
  grid-column: span 3;
  background: linear-gradient(135deg, rgba(80, 145, 205, .03), rgba(249, 165, 65, .03));
  border: 2px dashed rgba(80, 145, 205, .25);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 32px;
}

.pc--custom:hover {
  border-color: var(--primary)
}

.pc--custom .pc__body {
  padding: 0
}

/* ── FEATURES BENTO ── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 60px
}

.bf {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all .3s;
}

.bf:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md)
}

.bf--1 {
  grid-column: span 7;
  background: linear-gradient(135deg, #eaf1f9, #dfe9f5);
  border-color: #c5d8ed
}

.bf--2 {
  grid-column: span 5;
  background: linear-gradient(135deg, #fef7f0, #fdecd6);
  border-color: #f8d9b0
}

.bf--3 {
  grid-column: span 4;
  background: linear-gradient(135deg, #edfaed, #d9f2d4);
  border-color: #b5e0ac
}

.bf--4 {
  grid-column: span 4;
  background: linear-gradient(135deg, #fef0ef, #fdd);
  border-color: #f5c4c0
}

.bf--5 {
  grid-column: span 4;
  background: linear-gradient(135deg, #f0f5ff, #dfe9fa);
  border-color: #bdd3f0
}

.bf--6 {
  grid-column: span 6;
  background: linear-gradient(135deg, #fef7f0, #fdf0e3);
  border-color: #f4dbb8
}

.bf--7 {
  grid-column: span 6;
  background: linear-gradient(135deg, #edf8ed, #dcf0d8);
  border-color: #b8deb0
}

.bf__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(0, 0, 0, .06)
}

.bf__icon svg {
  width: 24px;
  height: 24px
}

.bf__title {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px
}

.bf__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7
}

.bf__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px
}

code.c {
  background: rgba(80, 145, 205, .1);
  color: var(--primary-dark);
  border-radius: 5px;
  padding: 2px 7px;
  font-size: 12px;
  font-family: monospace
}

/* ── STEPS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative
}

.steps::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--j-blue), var(--j-green));
  opacity: .2;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px
}

.step__n {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 20px rgba(80, 145, 205, .35);
}

.step__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px
}

.step__text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65
}

/* ── TABLE ── */
.tbl-wrap {
  margin-top: 56px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  overflow-x: auto
}

.tbl {
  width: 100%;
  border-collapse: collapse;
  min-width: 580px
}

.tbl thead th {
  padding: 16px 22px;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.tbl thead th.hl {
  background: rgba(80, 145, 205, .06);
  color: var(--primary);
  border-left: 2px solid rgba(80, 145, 205, .25);
  border-right: 2px solid rgba(80, 145, 205, .25);
  text-align: center;
}

.tbl td {
  padding: 14px 22px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border)
}

.tbl td.hl {
  background: rgba(80, 145, 205, .02);
  border-left: 2px solid rgba(80, 145, 205, .12);
  border-right: 2px solid rgba(80, 145, 205, .12);
  text-align: center;
  font-weight: 700;
}

.tbl tr:last-child td {
  border-bottom: none
}

.tbl tr:hover td {
  background: var(--bg-alt)
}

.tbl tr:hover td.hl {
  background: rgba(80, 145, 205, .05)
}

.ck {
  color: var(--j-green);
  font-weight: 800
}

.cx {
  color: #dc2626
}

.cp {
  color: var(--j-orange);
  font-weight: 700;
  font-size: 13px
}

/* ── COMPAT ── */
.compat {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
  margin-top: 60px
}

.cc {
  padding: 24px 16px;
  border-radius: var(--radius);
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  transition: all .25s;
}

.cc:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md)
}

.cc__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center
}

.cc__icon svg {
  width: 28px;
  height: 28px
}

.cc__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px
}

.cc__note {
  font-size: 11px;
  color: var(--j-green);
  font-weight: 600
}

/* ── WP TEASER ── */
.wp {
  border-radius: var(--radius-xl);
  padding: 56px 52px;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5, #f0f9ff);
  border: 1.5px solid #bbf7d0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.wp::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, .1), transparent 70%);
  pointer-events: none;
}

.wp__title {
  font-family: var(--fd);
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 14px
}

.wp__text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 26px
}

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

.wp__input {
  flex: 1;
  min-width: 200px;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--border-2);
  background: #fff;
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
  font-family: var(--ff);
}

.wp__input:focus {
  border-color: var(--primary)
}

.wp__input::placeholder {
  color: var(--muted-light)
}

.wp__rt {
  flex-shrink: 0;
  text-align: center
}

.wp__logo {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  background: #21759b;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(33, 117, 155, .25);
  margin: 0 auto 12px;
}

.wp__logo svg {
  width: 48px;
  height: 48px
}

.wp__eta {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted)
}

/* ── PRICING ── */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 60px;
  align-items: start
}

.val {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border)
}

.val__title {
  font-family: var(--fd);
  font-size: 21px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px
}

.val__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.val__li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-2)
}

.val__li strong {
  color: var(--text);
  font-weight: 700
}

.val__ck {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(122, 193, 67, .1);
  border: 1px solid rgba(122, 193, 67, .2);
  color: var(--j-green);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.prc {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  background: #fff;
  border: 2px solid rgba(80, 145, 205, .35);
  box-shadow: 0 0 50px rgba(80, 145, 205, .06);
  position: relative;
  overflow: hidden;
}

.prc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-primary)
}

.prc__ribbon {
  position: absolute;
  top: 20px;
  right: -1px;
  background: var(--grad-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 5px 16px 5px 12px;
  clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%);
}

.prc__plan {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px
}

.prc__name {
  font-family: var(--fd);
  font-size: 24px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 4px
}

.prc__desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px
}

.prc__row {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 6px
}

.prc__cur {
  font-size: 24px;
  font-weight: 700;
  color: var(--muted);
  align-self: flex-start;
  margin-top: 10px
}

.prc__amt {
  font-family: var(--fd);
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.05em;
  color: var(--text)
}

.prc__dec {
  font-family: var(--fd);
  font-size: 36px;
  font-weight: 900;
  color: var(--text);
  align-self: flex-start;
  margin-top: 4px
}

.prc__per {
  font-size: 14px;
  color: var(--muted);
  padding-bottom: 10px
}

.prc__save {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(122, 193, 67, .08);
  border: 1px solid rgba(122, 193, 67, .2);
  color: #4a8c1e;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 26px;
}

.prc__hr {
  height: 1px;
  background: var(--border);
  margin: 22px 0
}

.prc__feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px
}

.prc__feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text)
}

.prc__feat-ck {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(122, 193, 67, .08);
  border: 1px solid rgba(122, 193, 67, .15);
  color: var(--j-green);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prc__cta {
  display: block;
  width: 100%;
  padding: 18px;
  border-radius: 14px;
  text-align: center;
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  background: var(--grad-primary);
  box-shadow: 0 8px 28px rgba(80, 145, 205, .35);
  transition: all .25s;
}

.prc__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(80, 145, 205, .5)
}

.prc__sub {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px
}

.prc__sub span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600
}

.prc__sub svg {
  width: 14px;
  height: 14px
}

.prc__urg {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(249, 165, 65, .06);
  border: 1px solid rgba(249, 165, 65, .2);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--j-orange);
}

/* ── TESTIMONIALS ── */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px
}

.test {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  transition: all .25s;
}

.test:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(80, 145, 205, .25)
}

.test__stars {
  color: var(--j-orange);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px
}

.test__text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 20px
}

.test__foot {
  display: flex;
  align-items: center;
  gap: 12px
}

.test__av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
}

.test__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text)
}

.test__role {
  font-size: 11px;
  color: var(--muted)
}

/* ── FAQ ── */
.faq-list {
  max-width: 800px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.faq {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: #fff;
  transition: border-color .3s
}

.faq.open {
  border-color: var(--primary)
}

.faq__q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  gap: 16px;
  transition: background .2s;
}

.faq__q:hover {
  background: var(--bg-alt)
}

.faq.open .faq__q {
  background: rgba(80, 145, 205, .04)
}

.faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s;
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
}

.faq.open .faq__icon {
  transform: rotate(45deg);
  background: rgba(80, 145, 205, .08);
  border-color: var(--primary)
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  padding: 0 24px
}

.faq__a.open {
  max-height: 280px;
  padding: 0 24px 20px
}

.faq__a p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75
}

/* ── SUPPORT ── */
.sup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px
}

.sup {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  text-align: center;
  transition: all .25s;
}

.sup:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(80, 145, 205, .25)
}

.sup__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}

.sup__icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary)
}

.sup__title {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px
}

.sup__text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px
}

.sup__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: var(--primary);
  transition: gap .2s;
}

.sup__link:hover {
  gap: 9px
}

.dev {
  margin-top: 32px;
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #eaf1f9, #f0f5fc);
  border: 1px solid #c5d8ed;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.dev__av {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(80, 145, 205, .25);
  flex-shrink: 0;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
}

.dev__name {
  font-family: var(--fd);
  font-size: 19px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 3px
}

.dev__role {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px
}

.dev__bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65
}

.dev__links {
  display: flex;
  flex-direction: column;
  gap: 8px
}

/* ── FINAL CTA ── */
.cta-section {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f6f8fb 0%, #eaf1f9 40%, #fef7f0 70%, #f6f8fb 100%);
}

.cta-section__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .3;
  pointer-events: none
}

.cta-section__blob--1 {
  width: 500px;
  height: 500px;
  top: -150px;
  left: -100px;
  background: rgba(80, 145, 205, .35)
}

.cta-section__blob--2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -100px;
  background: rgba(249, 165, 65, .25)
}

.cta-section__inner {
  position: relative;
  z-index: 1
}

.cta-section__pills {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px
}

.cta-section__fine {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px
}

.cta-section__fine span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted)
}

.cta-section__fine svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0
}

/* ── FOOTER ── */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border)
}

.footer__top {
  margin-bottom: 24px
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap
}

.footer__copy {
  font-size: 13px;
  color: var(--muted);
  flex: 1
}

.footer__copy a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600
}

.footer__links {
  display: flex;
  gap: 20px;
  list-style: none;
  flex-shrink: 0
}

.footer__links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s
}

.footer__links a:hover {
  color: var(--primary)
}

/* ── RESPONSIVE ── */
@media(max-width:1080px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center
  }

  .hero__right {
    display: none
  }

  .hero__pills,
  .hero__actions,
  .hero__trust {
    justify-content: center
  }

  .hero__desc {
    margin-left: auto;
    margin-right: auto
  }

  /* Header Tablet Adjustments */
  .nav__links,
  .nav__right .btn--primary {
    display: none
  }

  .nav__burger {
    display: flex
  }

  .nav__right {
    gap: 8px
  }

  .prov-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .pc--custom {
    grid-column: span 2
  }

  .bento {
    grid-template-columns: repeat(6, 1fr)
  }

  .bf--1,
  .bf--2 {
    grid-column: span 3
  }

  .bf--3,
  .bf--4,
  .bf--5 {
    grid-column: span 2
  }

  .bf--6,
  .bf--7 {
    grid-column: span 3
  }

  .pricing {
    grid-template-columns: 1fr
  }

  .val {
    display: none
  }

  .test-grid {
    grid-template-columns: 1fr 1fr
  }

  .test-grid .test:last-child {
    grid-column: span 2
  }

  .dev {
    grid-template-columns: auto 1fr
  }

  .dev__links {
    grid-column: span 2;
    flex-direction: row
  }

  .wp {
    grid-template-columns: 1fr
  }

  .wp__rt {
    display: none
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .stat:nth-child(2) {
    border-right: none
  }

  /* Footer Tablet Adjustments */
  .footer__inner {
    justify-content: center;
    text-align: center
  }

  .footer__copy {
    flex: none;
    width: 100%;
    margin-bottom: 12px
  }
}

@media(max-width:768px) {
  .section {
    padding: 80px 0
  }

  .container {
    padding: 0 20px
  }

  /* Burger menu already shown at 1024px */
  .nav__inner {
    height: 60px
  }

  .logo__wordmark {
    font-size: 18px
  }

  .logo__mark {
    width: 34px;
    height: 34px
  }

  .logo__mark svg {
    width: 18px;
    height: 18px
  }

  .nav__account-btn {
    width: 34px;
    height: 34px
  }

  .nav__account-btn svg {
    width: 16px;
    height: 16px
  }

  .bento {
    grid-template-columns: 1fr
  }

  .bf--1,
  .bf--2,
  .bf--3,
  .bf--4,
  .bf--5,
  .bf--6,
  .bf--7 {
    grid-column: span 1
  }

  .prov-grid {
    grid-template-columns: 1fr
  }

  .pc--custom {
    grid-column: span 1;
    flex-direction: column;
    text-align: center
  }

  .steps {
    grid-template-columns: 1fr 1fr
  }

  .steps::after {
    display: none
  }

  .compat {
    grid-template-columns: repeat(2, 1fr)
  }

  .test-grid {
    grid-template-columns: 1fr
  }

  .test-grid .test:last-child {
    grid-column: span 1
  }

  .sup-grid {
    grid-template-columns: 1fr
  }

  .dev {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px
  }

  .dev__av {
    margin: 0 auto
  }

  .dev__links {
    flex-direction: column;
    grid-column: 1
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px
  }

  .footer__links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px
  }

  .bar {
    width: calc(100% - 32px);
    border-radius: 16px;
    flex-direction: column;
    padding: 16px;
    text-align: center
  }

  .bar .btn {
    width: 100%
  }
}

@media(max-width:480px) {
  .steps {
    grid-template-columns: 1fr
  }

  .compat {
    grid-template-columns: 1fr
  }

  .stats__grid {
    grid-template-columns: 1fr
  }

  .stat {
    border-right: none !important
  }

  .hero__actions {
    flex-direction: column
  }

  .hero__actions .btn {
    width: 100%
  }
}


/* ══════════════════════════════════════════════
   BLOG & SINGLE POST STYLES
   ══════════════════════════════════════════════ */

.blog-grid {
  margin-top: 40px;
}

.post-card {
  transition: all .3s ease;
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.post-card:hover .post-card__image img {
  transform: scale(1.05);
}

.content h2,
.content h3,
.content h4 {
  font-family: var(--fd);
  font-weight: 800;
  color: var(--text);
  margin: 40px 0 20px;
}

.content p {
  margin-bottom: 24px;
  line-height: 1.8;
}

.content blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 24px;
  font-style: italic;
  color: var(--muted);
  margin: 40px 0;
}

.content img {
  border-radius: var(--radius-lg);
  margin: 40px 0;
}

.nav-card {
  transition: all .2s;
}

.nav-card:hover {
  border-color: var(--primary);
  background: rgba(80, 145, 205, 0.04);
}

/* ══════════════════════════════════════════════
   MY ACCOUNT DASHBOARD
   ══════════════════════════════════════════════ */

.woocommerce-account .woocommerce {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 280px;
  flex-shrink: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
  border-bottom: 1px solid var(--border);
}

.woocommerce-account .woocommerce-MyAccount-navigation li:last-child {
  border-bottom: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 16px 20px;
  text-decoration: none;
  color: var(--text-2);
  font-size: 15px;
  font-weight: 600;
  transition: all .2s;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
  background: var(--primary);
  color: #fff;
}

.woocommerce-account .woocommerce-MyAccount-content {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.woocommerce-account .woocommerce-MyAccount-content p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 24px;
}

.woocommerce-account .woocommerce-MyAccount-content a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.woocommerce-account .woocommerce-MyAccount-content a:hover {
  text-decoration: underline;
}

/* Dashboard Buttons */
.woocommerce-account .woocommerce-Button,
.woocommerce-account .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  background: var(--grad-primary);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .2s;
}

.woocommerce-account .woocommerce-Button:hover,
.woocommerce-account .button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(80, 145, 205, 0.3);
}

@media (max-width: 768px) {
  .woocommerce-account .woocommerce {
    flex-direction: column;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 100%;
  }
}

/* ══════════════════════════════════════════════
   LOGIN & PASSWORD RESET
   ══════════════════════════════════════════════ */

.woocommerce-account .woocommerce-form-login,
.woocommerce-ResetPassword {
  max-width: 450px;
  margin: 40px auto;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.woocommerce-form-login .form-row,
.woocommerce-ResetPassword .form-row {
  margin-bottom: 20px;
}

.woocommerce-form-login label,
.woocommerce-ResetPassword label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.woocommerce-form-login input.input-text,
.woocommerce-ResetPassword input.input-text {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-2);
  border-radius: 10px;
  font-family: var(--ff);
  font-size: 15px;
  outline: none;
  transition: border-color .2s;
}

.woocommerce-form-login input.input-text:focus,
.woocommerce-ResetPassword input.input-text:focus {
  border-color: var(--primary);
}

.woocommerce-form-login .button,
.woocommerce-ResetPassword .button {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  background: var(--grad-primary);
  color: #fff !important;
  font-size: 16px;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(80, 145, 205, 0.3);
  transition: all .25s;
}

.woocommerce-form-login .button:hover,
.woocommerce-ResetPassword .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(80, 145, 205, 0.4);
}

.woocommerce-form-login .woocommerce-form-login__rememberme {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.woocommerce-form-login .woocommerce-LostPassword {
  margin-top: 20px;
  text-align: center;
}

.woocommerce-form-login .woocommerce-LostPassword a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.woocommerce-form-login .woocommerce-LostPassword a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 480px) {

  .woocommerce-account .woocommerce-form-login,
  .woocommerce-ResetPassword {
    padding: 30px 20px;
    margin: 20px auto;
    border: none;
    box-shadow: none;
  }
}

/* ══════════════════════════════════════════════
   CART PAGE DESIGN
   ══════════════════════════════════════════════ */

.woocommerce-cart .woocommerce {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: flex-start;
}

.woocommerce-cart table.cart {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.woocommerce-cart table.cart thead {
  background: var(--bg-alt);
}

.woocommerce-cart table.cart th {
  padding: 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.woocommerce-cart table.cart td {
  padding: 24px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.woocommerce-cart .product-thumbnail img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
}

.woocommerce-cart .product-name a {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}

.woocommerce-cart .product-price {
  font-weight: 600;
  color: var(--muted);
}

.woocommerce-cart .cart_totals {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.woocommerce-cart .cart_totals h2 {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.woocommerce-cart .cart_totals table {
  width: 100%;
  margin-bottom: 24px;
}

.woocommerce-cart .cart_totals table tr th {
  font-weight: 600;
  color: var(--muted);
  text-align: left;
  padding: 12px 0;
}

.woocommerce-cart .cart_totals table tr td {
  font-weight: 700;
  color: var(--text);
  text-align: right;
  padding: 12px 0;
}

.woocommerce-cart .cart_totals .order-total td {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  display: block;
  width: 100%;
  padding: 22px 32px;
  border-radius: 16px;
  text-align: center;
  background: var(--grad-primary);
  color: #fff !important;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(80, 145, 205, 0.4);
  transition: all .25s;
  letter-spacing: -0.01em;
}


.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(80, 145, 205, 0.45);
}

@media (max-width: 992px) {
  .woocommerce-cart .woocommerce {
    grid-template-columns: 1fr;
  }

  .woocommerce-cart .cart_totals {
    width: 100%;
  }
}

/* ══════════════════════════════════════════════
   CHECKOUT PAGE DESIGN
   ══════════════════════════════════════════════ */

.woocommerce-checkout .woocommerce {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 50px;
  align-items: flex-start;
}

.woocommerce-checkout h3 {
  font-family: var(--fd);
  font-size: 24px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 28px;
}

.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
  width: 100% !important;
  float: none !important;
  margin-bottom: 40px;
}

.woocommerce-checkout #order_review_heading {
  margin-top: 0;
}

.woocommerce-checkout #order_review {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.woocommerce-checkout .shop_table {
  width: 100%;
  border: none !important;
  margin-bottom: 24px;
}

.woocommerce-checkout .shop_table th {
  font-weight: 600;
  color: var(--muted);
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid var(--border) !important;
}

.woocommerce-checkout .shop_table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--border) !important;
  color: var(--text-2);
}

.woocommerce-checkout .shop_table .order-total th,
.woocommerce-checkout .shop_table .order-total td {
  border-bottom: none !important;
  padding-top: 20px;
}

.woocommerce-checkout .shop_table .order-total span.amount {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
}

.woocommerce-checkout #payment {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 24px;
  margin-top: 20px;
}

.woocommerce-checkout #payment ul.payment_methods {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  border-bottom: 1px solid var(--border);
}

.woocommerce-checkout #payment ul.payment_methods li {
  padding: 12px 0;
  font-weight: 600;
  color: var(--text);
}

.woocommerce-checkout #payment div.payment_box {
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

.woocommerce-checkout #place_order {
  display: block;
  width: 100%;
  padding: 18px;
  border-radius: 14px;
  text-align: center;
  background: var(--grad-primary);
  color: #fff !important;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(80, 145, 205, 0.3);
  transition: all .25s;
}

.woocommerce-checkout #place_order:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(80, 145, 205, 0.45);
}

.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 992px) {
  .woocommerce-checkout .woocommerce {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════
   WOOCOMMERCE RESPONSIVE OVERRIDES
   ══════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* General Padding */
  .woocommerce-page .section {
    padding: 40px 0 60px;
  }

  /* Cart Table Mobile Optimization */
  .woocommerce-cart table.cart,
  .woocommerce-cart table.cart thead,
  .woocommerce-cart table.cart tbody,
  .woocommerce-cart table.cart th,
  .woocommerce-cart table.cart td,
  .woocommerce-cart table.cart tr {
    display: block;
    width: 100%;
  }

  .woocommerce-cart table.cart thead {
    display: none;
  }

  /* Hide headers on mobile */
  .woocommerce-cart table.cart tr {
    border-bottom: 2px solid var(--border);
    padding: 20px 0;
  }

  .woocommerce-cart table.cart td {
    border-bottom: none;
    padding: 8px 0;
    text-align: right;
    position: relative;
    padding-left: 50%;
  }

  .woocommerce-cart table.cart td::before {
    content: attr(data-title);
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    font-size: 11px;
  }

  .woocommerce-cart .product-thumbnail {
    text-align: center !important;
    padding-left: 0 !important;
  }

  .woocommerce-cart .product-thumbnail::before {
    display: none;
  }

  .woocommerce-cart .product-thumbnail img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }

  .woocommerce-cart .product-name {
    text-align: center !important;
    padding-left: 0 !important;
  }

  .woocommerce-cart .product-name::before {
    display: none;
  }

  /* Checkout Refinements */
  .woocommerce-checkout #order_review {
    padding: 20px;
  }

  .woocommerce-checkout #place_order {
    padding: 14px;
    font-size: 15px;
  }

  /* Account Refinements */
  .woocommerce-account .woocommerce-MyAccount-content {
    padding: 24px 20px;
    border: none;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .h1 {
    font-size: 28px;
  }

  .woocommerce-form-login,
  .woocommerce-ResetPassword {
    padding: 20px;
  }
}

/* ══════════════════════════════════════════════
   SHOP PAGE DESIGN
   ══════════════════════════════════════════════ */

.post-type-archive-product .section {
  padding: 60px 0 100px;
}

/* Product Grid */
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.woocommerce ul.products li.product {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  transition: all .3s ease;
  position: relative;
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
  text-decoration: none;
  display: block;
}

.woocommerce ul.products li.product img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
  transition: transform .5s ease;
}

.woocommerce ul.products li.product:hover img {
  transform: scale(1.05);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--ff);
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  padding: 20px 20px 8px;
  margin: 0;
  line-height: 1.3;
}

.woocommerce ul.products li.product span.price {
  display: block;
  padding: 0 20px 20px;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

.woocommerce ul.products li.product span.price ins {
  text-decoration: none;
}

.woocommerce ul.products li.product span.price del {
  font-size: 14px;
  color: var(--muted);
  margin-right: 8px;
  font-weight: 600;
}

.woocommerce ul.products li.product .button {
  margin: 0 20px 24px;
  display: block;
  text-align: center;
  background: var(--grad-primary);
  color: #fff !important;
  font-size: 15px;
  font-weight: 800;
  padding: 16px 20px;
  border-radius: 12px;
  transition: all .2s;
  box-shadow: 0 6px 20px rgba(80, 145, 205, 0.25);
}


.woocommerce ul.products li.product .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(80, 145, 205, 0.35);
}

/* Sorting & Result Count */
.woocommerce-result-count {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 10px;
}

.woocommerce-ordering select {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--border-2);
  font-family: var(--ff);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  outline: none;
}

@media (max-width: 580px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════
   SINGLE PRODUCT REFINEMENTS
   ══════════════════════════════════════════════ */

.woocommerce div.product .summary {
  padding-left: 30px;
}

.woocommerce div.product .product_title {
  font-size: 32px;
  margin-bottom: 8px;
}

.woocommerce div.product p.price {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 24px;
}

/* Add to Cart Button */
.woocommerce div.product form.cart .button {
  background: var(--grad-primary);
  color: #fff !important;
  padding: 18px 40px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 17px;
  box-shadow: 0 8px 24px rgba(80, 145, 205, 0.35);
  transition: all .25s;
}


.woocommerce div.product form.cart .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(80, 145, 205, 0.45);
}

/* Review Styling */
.woocommerce #reviews #comments h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
}

.woocommerce #review_form #respond .form-submit input {
  background: var(--grad-primary);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
}

.woocommerce #review_form #respond textarea {
  border-radius: 12px;
  border: 1.5px solid var(--border-2);
  padding: 12px;
}

/* Stars Styling */
.woocommerce .star-rating {
  color: #f9b233;
}

.woocommerce p.stars a::before {
  color: #f9b233;
}

/* Sale Badge */
.woocommerce span.onsale {
  background: var(--j-red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  min-height: auto;
  min-width: auto;
  line-height: 1.5;
  top: 12px;
  left: 12px;
}

.woocommerce div.product {
  clear: both;
  overflow: hidden;
  padding-bottom: 60px;
}

.woocommerce div.product::after {
  content: "";
  display: table;
  clear: both;
}

.woocommerce div.product .summary {
  padding-left: 40px;
}

.woocommerce div.product .product_title {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1px;
}

/* Tabs Polish */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 32px;
  padding: 0;
  margin: 0 0 32px 0;
  border: none;
  border-bottom: 1.5px solid var(--border);
  background: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: none !important;
  border: none !important;
  padding: 0 0 16px 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 0 !important;
  font-size: 16px;
  font-weight: 700;
  color: var(--muted) !important;
  transition: color .2s;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-bottom: 3.5px solid var(--primary);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--text) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:hover a {
  color: var(--primary) !important;
}

@media (max-width: 992px) {
  .woocommerce div.product .summary {
    padding-left: 0;
  }
}

/* --- WOOCOMMERCE LAYOUT FIX --- */
.woocommerce-page {
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.woocommerce-page .container::after {
  content: "";
  display: table;
  clear: both;
}