/* ============================================================
   OnlyGym v3 Landing Page — Main Stylesheet
   Extracted from base.html inline <style> block
   ============================================================ */

/* ---- Skip-nav link (accessibility + Lighthouse) ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--navy);
  color: var(--cream);
  padding: 8px 16px;
  font-size: .85rem;
  font-weight: 600;
  z-index: 9999;
  border-radius: 0 0 8px 0;
  transition: top .2s
}
.skip-link:focus { top: 0 }

/* ---- Mobile base fixes ---- */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent
}

/* ---- Touch tap targets (min 44px — Apple HIG + Google Material) ---- */
.btn,
.nav-links a,
.nav-cta,
.nav-login,
.nav-toggle,
.role-tab,
.region-tab,
.faq-q,
.wa-float {
  min-height: 44px;
  touch-action: manipulation
}

/* ---- Padding bottom utility ---- */
.pb-1 { padding-bottom: 8px }
.pb-2 { padding-bottom: 16px }
.pb-3 { padding-bottom: 24px }

/* ---- Mobile: reduce hero top padding so CTA is visible sooner ---- */
@media(max-width: 768px) {
  .hero { padding-top: 90px }
  .section { padding: 64px 20px }
}



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

:root {
  --navy: #0C1B3D;
  --navy-90: rgba(12, 27, 61, .9);
  --navy-light: #132952;
  --cream: #F5F0EA;
  --white: #fff;
  --blue: #0B12DF;
  --soft-blue: #13B7EA;
  --cyan: #16FAEE;
  --gray-50: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-400: #ADB5BD;
  --gray-600: #6C757D;
  --gray-800: #343A40;
  --gray-900: #212529;
  --gradient: linear-gradient(135deg, #0B12DF 0%, #13B7EA 50%, #16FAEE 100%);
  --r: 12px;
  --r-sm: 8px
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased
}

.serif {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400
}

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

a {
  text-decoration: none;
  color: inherit
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  transition: box-shadow .3s
}

.nav.scrolled {
  box-shadow: 0 4px 20px rgba(12, 27, 61, .08)
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px
}

.nav-logo {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  letter-spacing: -.5px
}

.nav-logo em {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal
}

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center
}

.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 6px 14px;
  border-radius: 8px;
  transition: .2s;
  white-space: nowrap
}

.nav-links a:hover {
  color: var(--navy);
  background: var(--gray-50)
}

.nav-cta {
  background: var(--navy) !important;
  color: var(--cream) !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  border-radius: 8px !important
}

.nav-cta:hover {
  box-shadow: 0 4px 16px rgba(12, 27, 61, .2)
}

.nav-login {
  font-weight: 600 !important;
  color: var(--navy) !important;
  border: 1px solid var(--gray-200) !important;
  padding: 7px 18px !important;
  border-radius: 8px !important
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: .3s
}

@media(max-width:768px) {
  .nav-toggle {
    display: block
  }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--gray-200);
    transform: translateY(-120%);
    transition: transform .3s;
    z-index: 99
  }

  .nav-links.open {
    transform: translateY(0);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .1)
  }

  .nav-links a {
    padding: 14px 16px;
    font-size: .95rem;
    width: 100%;
    text-align: left
  }
}

/* HERO */
.hero {
  background: var(--navy);
  color: var(--cream);
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 183, 234, .08), transparent 70%);
  pointer-events: none
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative
}

@media(max-width:900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid rgba(22, 250, 238, .2);
  border-radius: 20px;
  background: rgba(22, 250, 238, .05)
}

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

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1.5px;
  margin-bottom: 20px
}

.hero h1 .accent {
  display: block;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(245, 240, 234, .65);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 500px
}

@media(max-width:900px) {
  .hero-sub {
    margin-left: auto;
    margin-right: auto
  }
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

@media(max-width:900px) {
  .hero-actions {
    justify-content: center
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s;
  border: none
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(19, 183, 234, .3)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(19, 183, 234, .4)
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 234, .2)
}

.btn-ghost:hover {
  border-color: rgba(245, 240, 234, .4);
  background: rgba(245, 240, 234, .05)
}

.btn-dark {
  background: var(--navy);
  color: var(--cream)
}

.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-1px)
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--gray-200)
}

.btn-outline:hover {
  border-color: var(--navy);
  background: var(--gray-50)
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap
}

@media(max-width:900px) {
  .hero-stats {
    justify-content: center
  }
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white)
}

.stat-label {
  font-size: .75rem;
  color: rgba(245, 240, 234, .4);
  text-transform: uppercase;
  letter-spacing: 1px
}

.hero-visual {
  position: relative
}

.hero-visual .mockup {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3)
}

@media(max-width:900px) {
  .hero-visual {
    display: none
  }
}

/* SECTIONS */
.section {
  padding: 100px 24px
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto
}

.section-wide {
  max-width: 1200px;
  margin: 0 auto
}

.section-dark {
  background: var(--navy);
  color: var(--cream)
}

.section-cream {
  background: var(--cream)
}

.section-gray {
  background: var(--gray-50)
}

.label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--soft-blue);
  margin-bottom: 12px
}

.section-dark .label {
  color: var(--cyan)
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 20px
}

.section-dark h2 {
  color: var(--cream)
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px
}

.section-dark h3 {
  color: var(--cream)
}

.mb-0 {
  margin-bottom: 0
}

.mb-1 {
  margin-bottom: 12px
}

.mb-2 {
  margin-bottom: 24px
}

.mb-3 {
  margin-bottom: 32px
}

.mb-4 {
  margin-bottom: 48px
}

.mb-5 {
  margin-bottom: 72px
}

p {
  color: var(--gray-600);
  font-size: .95rem;
  margin-bottom: 16px
}

.section-dark p {
  color: rgba(245, 240, 234, .6)
}

/* TRUST BAR */
.trust-bar {
  background: var(--gray-50);
  padding: 32px 24px;
  border-bottom: 1px solid var(--gray-200)
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center
}

.trust-label {
  font-size: .7rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px
}

.trust-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content
}

.trust-track img {
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: .5;
  filter: grayscale(100%);
  transition: .3s
}

.trust-track img:hover {
  opacity: 1;
  filter: grayscale(0%)
}

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

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

/* PAIN */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px
}

@media(max-width:768px) {
  .pain-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }
}

.pain-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-100)
}

.pain-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(220, 38, 38, .06);
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem
}

.pain-text h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px
}

.pain-text p {
  font-size: .85rem;
  margin: 0;
  color: var(--gray-600)
}

.solution-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px;
  color: var(--cream);
  position: relative;
  overflow: hidden
}

.solution-card::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 250, 238, .06), transparent);
  pointer-events: none
}

.solution-card h3 {
  color: var(--cream);
  font-size: 1.3rem;
  margin-bottom: 16px
}

.solution-card p {
  color: rgba(245, 240, 234, .65)
}

.solution-list {
  list-style: none;
  margin-top: 20px
}

.solution-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--cream);
  padding: 8px 0;
  font-weight: 500
}

.solution-list li::before {
  content: '→';
  color: var(--cyan);
  font-weight: 700
}

/* FEATURE CARDS */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  padding: 32px;
  transition: all .3s;
  position: relative;
  overflow: hidden
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(12, 27, 61, .08);
  transform: translateY(-4px);
  border-color: transparent
}

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

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

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(11, 18, 223, .06), rgba(19, 183, 234, .06))
}

.feature-card h3 {
  font-size: 1.05rem
}

.feature-card p {
  font-size: .87rem;
  color: var(--gray-600);
  margin: 0
}

/* ROLE TABS */
.role-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px
}

.role-tab {
  font-size: .85rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: .2s;
  border: 1px solid var(--gray-200);
  background: white;
  color: var(--gray-600)
}

.role-tab:hover,
.role-tab.active {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy)
}

.role-content {
  display: none;
  animation: fadeUp .4s ease
}

.role-content.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center
}

@media(max-width:768px) {
  .role-content.active {
    grid-template-columns: 1fr
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.role-benefit {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 16px
}

.role-feeling {
  font-size: 1rem;
  color: var(--soft-blue);
  font-style: italic;
  padding-left: 16px;
  border-left: 3px solid var(--cyan);
  margin-bottom: 20px
}

.role-features {
  list-style: none
}

.role-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: .9rem;
  color: var(--gray-600)
}

.role-features li::before {
  content: '✓';
  color: var(--soft-blue);
  font-weight: 700;
  margin-top: 2px
}

/* REGION TABS */
.region-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 24px
}

.region-tab {
  font-size: .75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: .2s;
  background: rgba(245, 240, 234, .08);
  color: rgba(245, 240, 234, .5);
  border: 1px solid transparent
}

.region-tab:hover,
.region-tab.active {
  background: rgba(22, 250, 238, .1);
  color: var(--cyan);
  border-color: rgba(22, 250, 238, .2)
}

.region-clients {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px
}

.region-card {
  background: rgba(245, 240, 234, .04);
  border: 1px solid rgba(245, 240, 234, .06);
  border-radius: var(--r-sm);
  padding: 14px;
  text-align: center;
  transition: .2s
}

.region-card:hover {
  background: rgba(245, 240, 234, .08);
  border-color: rgba(245, 240, 234, .12)
}

.region-card img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  margin: 0 auto 8px
}

.region-card .name {
  font-size: .75rem;
  font-weight: 600;
  color: var(--cream)
}

.region-card .loc {
  font-size: .65rem;
  color: var(--cyan)
}

/* TESTIMONIALS */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 32px
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  padding: 28px;
  position: relative
}

.testimonial-quote {
  font-size: .9rem;
  color: var(--gray-800);
  line-height: 1.7;
  margin-bottom: 16px
}

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

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

.testimonial-name {
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy)
}

.testimonial-role {
  font-size: .75rem;
  color: var(--gray-400)
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0
}

.faq-q {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px
}

.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gray-400);
  transition: transform .3s;
  flex-shrink: 0
}

.faq-q.open::after {
  transform: rotate(45deg);
  color: var(--soft-blue)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  color: var(--gray-600);
  font-size: .9rem;
  line-height: 1.7
}

.faq-a-inner {
  padding-top: 12px
}

/* CTA */
.cta-section {
  background: var(--navy);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(19, 183, 234, .08), transparent 70%);
  pointer-events: none
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative
}

.cta-inner h2 {
  color: var(--cream)
}

.cta-inner p {
  color: rgba(245, 240, 234, .6);
  font-size: 1.1rem;
  margin-bottom: 32px
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap
}

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12, 27, 61, .6);
  backdrop-filter: blur(4px);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px
}

.modal-overlay.open {
  display: flex
}

.modal-box {
  background: white;
  border-radius: 16px;
  padding: 36px;
  max-width: 460px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
  animation: fadeUp .3s ease
}

.modal-box h3 {
  font-size: 1.2rem;
  margin-bottom: 4px
}

.modal-box>p {
  font-size: .85rem;
  color: var(--gray-400);
  margin-bottom: 24px
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--gray-400);
  padding: 4px 8px;
  border-radius: 6px
}

.modal-close:hover {
  background: var(--gray-50);
  color: var(--navy)
}

.form-group {
  margin-bottom: 16px
}

.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: .9rem;
  transition: border .2s;
  outline: none
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--soft-blue)
}

.form-group textarea {
  resize: vertical;
  min-height: 60px
}

.form-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: var(--gradient);
  color: white;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: .2s
}

.form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(19, 183, 234, .3)
}

/* FLOATING WA */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .3);
  cursor: pointer;
  transition: .2s;
  border: none
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, .4)
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: white
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.s1 {
  transition-delay: .1s
}

.s2 {
  transition-delay: .2s
}

.s3 {
  transition-delay: .3s
}

/* PRICING */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 48px
}

.price-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 24px;
  margin-top: 12px;
  margin-bottom: 32px;
  padding: 56px 40px;
  flex: 1;
  min-width: 300px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05)
}

.price-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 40px -10px rgba(12, 27, 61, 0.1);
  border-color: var(--soft-blue)
}

.price-card.featured {
  background: var(--navy);
  border: none;
  color: var(--white);
  transform: scale(1.05);
  z-index: 10;
  box-shadow: 0 30px 60px -12px rgba(12, 27, 61, 0.3)
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-12px);
  box-shadow: 0 35px 70px -10px rgba(12, 27, 61, 0.4)
}

.price-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gradient);
  color: var(--navy);
  padding: 8px 24px;
  border-radius: 40px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(22, 250, 238, 0.3);
  white-space: nowrap
}

.price-name {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--navy);
  letter-spacing: -1px
}

.featured .price-name {
  color: var(--white)
}

.price-main {
  margin-bottom: 24px
}

.price-footer-setup {
  margin: 16px 0 12px;
  padding: 10px;
  background: var(--gray-50);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px
}

.featured .price-footer-setup {
  background: rgba(255, 255, 255, 0.05)
}

.setup-label {
  font-size: .65rem;
  color: var(--gray-400);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px
}

.featured .setup-label {
  color: rgba(255, 255, 255, 0.4)
}

.setup-amount-old {
  font-size: .75rem;
  color: var(--gray-400);
  text-decoration: line-through;
  opacity: 0.5
}

.setup-amount-promo {
  font-size: .75rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--soft-blue);
  padding: 1px 6px;
  border-radius: 4px
}

.featured .setup-amount-promo {
  background: var(--cyan);
  color: var(--navy)
}

.monthly-box {
  margin-top: 0
}

.price-amount-wrapper {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px
}

.price-symbol {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-top: 4px
}

.price-value {
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1.5px;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05)
}

.featured .price-symbol,
.featured .price-value {
  color: var(--white)
}

.price-period {
  font-size: .95rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-left: 2px
}

.featured .price-period {
  color: rgba(255, 255, 255, 0.5)
}

.price-subtext {
  font-size: .8rem;
  color: var(--gray-500);
  margin: 4px 0 16px;
  display: block;
  font-weight: 500
}

.featured .price-subtext {
  color: rgba(255, 255, 255, 0.4)
}

.save-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(5, 150, 105, 0.08);
  color: #059669;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 30px;
  margin-top: 8px
}

.featured .save-badge {
  background: rgba(22, 250, 238, 0.15);
  color: var(--cyan)
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex-grow: 1
}

.price-features li {
  font-size: .88rem;
  color: var(--gray-600);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.4
}

.featured .price-features li {
  color: rgba(255, 255, 255, 0.85)
}

.price-features li::before {
  content: '✓';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--soft-blue);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  border-radius: 50%
}

.featured .price-features li::before {
  background: var(--cyan);
  color: var(--navy)
}

.price-features li.disabled {
  color: var(--gray-400);
  text-decoration: line-through;
  opacity: 0.6
}

.price-features li.disabled::before {
  content: '×';
  background: var(--gray-200);
  color: var(--gray-500)
}

.featured .price-features li.disabled::before {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.3)
}

.price-features li.addon {
  color: var(--gray-500)
}

.price-features li.addon::before {
  content: '+';
  background: var(--gray-100);
  color: var(--gray-600)
}

.featured .price-features li.addon::before {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white)
}

.price-segment-label {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--navy);
  padding: 6px 12px;
  margin: 28px 0 16px;
  display: flex;
  align-items: center;
  list-style: none;
  background: linear-gradient(to right, rgba(19, 115, 235, 0.05), transparent);
  border-radius: 0 4px 4px 0;
  position: relative
}

.price-segment-label::before {
  content: none !important
}

.featured .price-segment-label {
  color: var(--cyan)
}

@media(max-width:1100px) {
  .price-card.featured {
    transform: scale(1)
  }
}

/* BILLING TOGGLE */
.card-billing-toggle {
  display: flex;
  background: var(--gray-100);
  padding: 4px;
  border-radius: 30px;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  z-index: 1
}

.card-billing-toggle::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: var(--navy);
  border-radius: 26px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1)
}

.billing-monthly .card-billing-toggle::after {
  transform: translateX(100%)
}

.card-billing-toggle button {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 4px;
  border-radius: 24px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.3s ease;
  color: var(--gray-500);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  font-family: inherit
}

.card-billing-toggle button.active {
  color: white
}

.featured .card-billing-toggle {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2)
}

.featured .card-billing-toggle::after {
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2)
}

.featured .card-billing-toggle button.active {
  color: var(--navy)
}

.toggle-discount {
  font-size: 0.65rem;
  color: var(--soft-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px
}

.billing-monthly .price-annual,
.billing-annual .price-monthly,
.billing-annual .price-original-monthly {
  display: none !important
}

.price-value-container {
  transition: opacity .3s, transform .3s
}

.pricing-grid.switching .price-value-container {
  opacity: 0;
  transform: translateY(4px)
}

.price-original-monthly {
  font-size: 0.85rem;
  color: var(--gray-400);
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 500
}

.featured .price-original-monthly {
  color: rgba(245, 240, 234, 0.4)
}

/* RESPONSIVE */
@media(max-width:768px) {
  .emotion-grid {
    grid-template-columns: 1fr !important
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important
  }

  .compare-grid {
    grid-template-columns: 1fr !important
  }
}

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

/* Google Login Button */
.btn-google-login:hover {
  background: var(--gray-50) !important;
  border-color: var(--gray-300) !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05)
}