:root {
  /* Colors - Premium Dark Theme */
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-tertiary: #1a1a24;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --bg-glass: rgba(255, 255, 255, 0.05);
  --bg-glass-strong: rgba(255, 255, 255, 0.08);

  /* Text */
  --text-primary: #f0f0f5;
  --text-secondary: #a0a0b5;
  --text-muted: #6b6b80;
  --text-accent: #c4b5fd;

  /* Accent Colors */
  --accent-primary: #8B5CF6;
  --accent-primary-light: #a78bfa;
  --accent-primary-dark: #7c3aed;
  --accent-secondary: #06B6D4;
  --accent-warm: #F59E0B;
  --accent-success: #10B981;
  --accent-danger: #EF4444;
  --accent-pink: #EC4899;

  /* WhatsApp */
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --whatsapp-hover: #20bd5a;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 50%, #10B981 100%);
  --gradient-accent: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
  --gradient-warm: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
  --gradient-card: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);

  /* Badge Colors */
  --badge-viral: linear-gradient(135deg, #EF4444, #F97316);
  --badge-bestseller: linear-gradient(135deg, #F59E0B, #D97706);
  --badge-new: linear-gradient(135deg, #06B6D4, #3B82F6);
  --badge-pack: linear-gradient(135deg, #8B5CF6, #A855F7);

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(139, 92, 246, 0.3);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.15);
  --shadow-glow-strong: 0 0 40px rgba(139, 92, 246, 0.25);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3rem;
  --fs-5xl: 3.5rem;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;
  --radius-pill: 999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
  --z-whatsapp: 400;
  --z-toast: 500;

  /* Container */
  --container-max: 1200px;
  --container-narrow: 800px;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap');

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: var(--fs-4xl);
}

h2 {
    font-size: var(--fs-3xl);
}

h3 {
    font-size: var(--fs-2xl);
}

h4 {
    font-size: var(--fs-xl);
}

a {
    color: var(--accent-primary-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-primary);
}

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

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
    background: none;
    color: inherit;
    font-size: inherit;
}

input,
select,
textarea {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    color: var(--text-primary);
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    transition: border-color var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary-dark);
}

::selection {
    background: rgba(139, 92, 246, 0.3);
    color: var(--text-primary);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(37, 211, 102, 0.3), 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(37, 211, 102, 0.5), 0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Intersection Observer Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 {
    transition-delay: 100ms;
}

.animate-on-scroll.delay-2 {
    transition-delay: 200ms;
}

.animate-on-scroll.delay-3 {
    transition-delay: 300ms;
}

.animate-on-scroll.delay-4 {
    transition-delay: 400ms;
}

.animate-on-scroll.delay-5 {
    transition-delay: 500ms;
}

.animate-on-scroll.delay-6 {
    transition-delay: 600ms;
}

/* Background patterns */
.bg-dots {
    background-image: radial-gradient(rgba(139, 92, 246, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
}

.bg-grid {
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Utility classes */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: var(--space-4xl) 0;
}

.section--sm {
    padding: var(--space-3xl) 0;
}

.text-center {
    text-align: center;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: var(--fs-3xl);
    }

    h2 {
        font-size: var(--fs-2xl);
    }

    h3 {
        font-size: var(--fs-xl);
    }

    h4 {
        font-size: var(--fs-lg);
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    .container {
        padding: 0 var(--space-md);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: var(--fs-2xl);
    }

    h2 {
        font-size: var(--fs-xl);
    }
}/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-base);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    text-decoration: none;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::after {
    opacity: 1;
}

.btn--primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-md), 0 0 20px rgba(139, 92, 246, 0.2);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(139, 92, 246, 0.3);
}

.btn--whatsapp {
    background: var(--whatsapp);
    color: white;
    box-shadow: var(--shadow-md), 0 0 15px rgba(37, 211, 102, 0.2);
}

.btn--whatsapp:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(37, 211, 102, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn--outline:hover {
    background: var(--bg-glass);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.btn--ghost {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.btn--ghost:hover {
    background: var(--bg-glass-strong);
    border-color: var(--border-light);
}

.btn--sm {
    padding: 0.5rem 1rem;
    font-size: var(--fs-sm);
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: var(--fs-md);
}

.btn--full {
    width: 100%;
}

.btn--icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: var(--radius-full);
}

/* ===== CARDS ===== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

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

.card>* {
    position: relative;
    z-index: 1;
}

.card__icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    display: block;
}

.card__title {
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-sm);
}

.card__text {
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    line-height: 1.6;
}

/* Product Card */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.product-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.product-card__image {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: var(--gradient-card);
    position: relative;
}

.product-card__badges {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

.product-card__body {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card__name {
    font-family: var(--font-heading);
    font-size: var(--fs-md);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-xs);
}

.product-card__desc {
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    margin-bottom: var(--space-sm);
    line-height: 1.5;
}

.product-card__benefit {
    color: var(--accent-primary-light);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    margin-bottom: var(--space-md);
    flex: 1;
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    margin-top: auto;
}

.product-card__price {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
}

.product-card__price-current {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
}

.product-card__price-original {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-card__cta {
    padding: 0.5rem 1rem;
    font-size: var(--fs-sm);
}

/* ===== BADGES ===== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    border-radius: var(--radius-pill);
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge--viral {
    background: var(--badge-viral);
}

.badge--mas-vendido {
    background: var(--badge-bestseller);
}

.badge--nuevo {
    background: var(--badge-new);
}

.badge--pack {
    background: var(--badge-pack);
}

.badge--imprimible {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge--entrega {
    background: rgba(139, 92, 246, 0.15);
    color: var(--accent-primary-light);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

/* ===== RATING ===== */
.rating {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--fs-sm);
    color: var(--accent-warm);
}

.rating__stars {
    letter-spacing: 2px;
}

.rating__value {
    font-weight: var(--fw-semibold);
}

.rating__count {
    color: var(--text-muted);
}

/* ===== FAQ ACCORDION ===== */
.accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.accordion__item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.accordion__item.active {
    border-color: var(--border-accent);
}

.accordion__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    font-size: var(--fs-base);
    font-weight: var(--fw-medium);
    color: var(--text-primary);
    text-align: left;
    background: none;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.accordion__header:hover {
    background: var(--bg-glass);
}

.accordion__icon {
    font-size: var(--fs-lg);
    transition: transform var(--transition-base);
    color: var(--text-muted);
    flex-shrink: 0;
}

.accordion__item.active .accordion__icon {
    transform: rotate(45deg);
    color: var(--accent-primary-light);
}

.accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.accordion__content {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    line-height: 1.7;
}

/* ===== SEAL / TRUST ===== */
.seal {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    font-size: var(--fs-sm);
    color: var(--text-secondary);
}

.seal__icon {
    font-size: var(--fs-md);
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header__label {
    display: inline-block;
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--accent-primary-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.section-header__title {
    margin-bottom: var(--space-md);
}

.section-header__subtitle {
    color: var(--text-secondary);
    font-size: var(--fs-md);
    line-height: 1.6;
}

/* ===== GRID LAYOUTS ===== */
.grid {
    display: grid;
    gap: var(--space-lg);
}

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

.grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid--auto-fill {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

@media (max-width: 1024px) {
    .grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 640px) {

    .grid--4,
    .grid--3,
    .grid--2 {
        grid-template-columns: 1fr;
    }
}

/* ===== TESTIMONIAL CARD ===== */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-md);
    right: var(--space-lg);
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--accent-primary);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-card__text {
    color: var(--text-secondary);
    font-size: var(--fs-base);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--fw-bold);
    font-size: var(--fs-sm);
    flex-shrink: 0;
}

.testimonial-card__info {
    display: flex;
    flex-direction: column;
}

.testimonial-card__name {
    font-weight: var(--fw-semibold);
    font-size: var(--fs-sm);
}

.testimonial-card__meta {
    color: var(--text-muted);
    font-size: var(--fs-xs);
}

/* ===== STEP CARD ===== */
.step {
    text-align: center;
    padding: var(--space-xl);
}

.step__number {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: var(--fs-xl);
    margin: 0 auto var(--space-lg);
}

.step__title {
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-sm);
}

.step__text {
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    line-height: 1.6;
}

/* ===== PACK CARD ===== */
.pack-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.pack-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.pack-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
}

.pack-card__badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
}

.pack-card__icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.pack-card__name {
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-sm);
}

.pack-card__desc {
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.pack-card__price {
    display: flex;
    align-items: baseline;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.pack-card__price-current {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-extrabold);
}

.pack-card__price-original {
    font-size: var(--fs-md);
    color: var(--text-muted);
    text-decoration: line-through;
}

.pack-card__savings {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-success);
    padding: 2px 10px;
    border-radius: var(--radius-pill);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
}

.pack-card__benefits {
    margin: var(--space-lg) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.pack-card__benefit {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-sm);
    color: var(--text-secondary);
}

.pack-card__benefit::before {
    content: '✓';
    color: var(--accent-success);
    font-weight: var(--fw-bold);
    flex-shrink: 0;
}

/* ===== STATS ===== */
.stats {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat__value {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-extrabold);
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat__label {
    color: var(--text-muted);
    font-size: var(--fs-sm);
    margin-top: var(--space-xs);
}

/* ===== SEARCH ===== */
.search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-box__input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    font-size: var(--fs-base);
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.search-box__input:focus {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.search-box__icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: var(--fs-lg);
}

/* ===== FILTER CHIPS ===== */
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.filter-chip {
    padding: 0.4rem 1rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-chip:hover,
.filter-chip.active {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--accent-primary);
    color: var(--accent-primary-light);
}

/* ===== SEPARATOR ===== */
.separator {
    height: 1px;
    background: var(--border-subtle);
    margin: var(--space-3xl) 0;
}

/* ===== NOTIFICATION BAR ===== */
.topbar {
    background: var(--gradient-accent);
    color: white;
    text-align: center;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
}

.topbar span {
    margin: 0 var(--space-md);
}/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(90deg, var(--accent-primary-dark), var(--accent-primary), var(--accent-secondary));
    background-size: 200% auto;
    animation: gradientShift 6s ease infinite;
    color: white;
    text-align: center;
    padding: 8px var(--space-md);
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    letter-spacing: 0.5px;
}

.top-bar__inner {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.top-bar__item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: box-shadow var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

.header__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.header__logo {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: var(--fw-extrabold);
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.header__link {
    padding: 8px 14px;
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-decoration: none;
    font-weight: var(--fw-medium);
    white-space: nowrap;
}

.header__link:hover,
.header__link.active {
    color: var(--text-primary);
    background: var(--bg-glass);
}

.header__link--dropdown {
    position: relative;
}

.header__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    z-index: var(--z-dropdown);
}

.header__link--dropdown:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}

.header__dropdown-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 14px;
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
}

.header__dropdown-item:hover {
    background: var(--bg-glass);
    color: var(--text-primary);
}

.header__dropdown-item span:first-child {
    font-size: var(--fs-lg);
}

.header__cta {
    margin-left: var(--space-sm);
}

.header__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.header__mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: var(--z-sticky);
    padding: var(--space-xl);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.mobile-nav.open {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.mobile-nav .header__link {
    font-size: var(--fs-md);
    padding: var(--space-md);
    border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav .btn {
    margin-top: var(--space-lg);
}

@media (max-width: 900px) {
    .header__nav {
        display: none;
    }

    .header__cta {
        display: none;
    }

    .header__mobile-toggle {
        display: flex;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: var(--fw-extrabold);
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
    display: block;
}

.footer__desc {
    color: var(--text-muted);
    font-size: var(--fs-sm);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer__heading {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__link {
    color: var(--text-muted);
    font-size: var(--fs-sm);
    transition: color var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
}

.footer__link:hover {
    color: var(--accent-primary-light);
}

.footer__bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer__copy {
    color: var(--text-muted);
    font-size: var(--fs-xs);
}

.footer__legal {
    display: flex;
    gap: var(--space-lg);
}

.footer__legal a {
    color: var(--text-muted);
    font-size: var(--fs-xs);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer__legal a:hover {
    color: var(--accent-primary-light);
}

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

    .footer__brand {
        grid-column: 1 / -1;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

/* ===== STICKY WHATSAPP ===== */
.whatsapp-sticky {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: var(--z-whatsapp);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-sm);
}

.whatsapp-sticky__tooltip {
    background: white;
    color: #333;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    animation: fadeInUp 0.5s ease;
    display: none;
}

.whatsapp-sticky:hover .whatsapp-sticky__tooltip {
    display: block;
}

.whatsapp-sticky__btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--whatsapp);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    animation: pulseGlow 2s ease-in-out infinite;
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-sticky__btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-sticky__btn svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* ===== PAGE TRANSITIONS ===== */
#app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#page-content {
    flex: 1;
    animation: fadeIn 0.3s ease;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--bg-glass-strong);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: var(--z-sticky);
    font-size: var(--fs-lg);
    color: var(--text-secondary);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
}/* ===== HERO ===== */
.hero {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 6px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-pill);
    font-size: var(--fs-sm);
    color: var(--accent-primary-light);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.6s ease;
}

.hero__title {
    font-size: var(--fs-5xl);
    font-weight: var(--fw-extrabold);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero__subtitle {
    font-size: var(--fs-lg);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-2xl);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero__ctas {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero__seals {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-2xl);
    animation: fadeInUp 0.6s ease 0.4s both;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: var(--space-3xl) 0;
    }

    .hero__title {
        font-size: var(--fs-3xl);
    }

    .hero__subtitle {
        font-size: var(--fs-base);
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: var(--fs-2xl);
    }

    .hero__ctas {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ===== PRODUCT PAGE ===== */
.product-page {
    padding: var(--space-3xl) 0;
}

.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
    margin-bottom: var(--space-4xl);
}

.product-hero__image {
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    min-height: 400px;
    position: sticky;
    top: 100px;
}

.product-hero__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.product-hero__category {
    font-size: var(--fs-sm);
    color: var(--accent-primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: var(--fw-semibold);
}

.product-hero__title {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-extrabold);
    line-height: 1.15;
}

.product-hero__benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.product-hero__benefit {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    color: var(--text-secondary);
    font-size: var(--fs-base);
}

.product-hero__benefit::before {
    content: '✓';
    color: var(--accent-success);
    font-weight: var(--fw-bold);
    flex-shrink: 0;
    margin-top: 2px;
}

.product-hero__price-block {
    display: flex;
    align-items: baseline;
    gap: var(--space-md);
}

.product-hero__price {
    font-family: var(--font-heading);
    font-size: var(--fs-4xl);
    font-weight: var(--fw-extrabold);
}

.product-hero__price-original {
    font-size: var(--fs-lg);
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-hero__savings {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-success);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
}

.product-hero__ctas {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.product-hero__seals {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.product-section {
    margin-bottom: var(--space-3xl);
}

.product-section__title {
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.product-section__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.product-section__list-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    color: var(--text-secondary);
    font-size: var(--fs-base);
    line-height: 1.6;
}

.product-section__list-item::before {
    content: '•';
    color: var(--accent-primary-light);
    font-weight: bold;
    flex-shrink: 0;
}

.product-section__list-item.check::before {
    content: '✓';
    color: var(--accent-success);
}

.product-section__list-item.cross::before {
    content: '✗';
    color: var(--accent-danger);
}

.product-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.product-step {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
}

.product-step__number {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--fw-bold);
    font-size: var(--fs-sm);
    margin: 0 auto var(--space-sm);
}

.product-step__text {
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    line-height: 1.5;
}

/* Cross-sell */
.cross-sell {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.cross-sell__title {
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-lg);
}

.cross-sell__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

/* Sticky Product CTA */
.product-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-md) var(--space-lg);
    z-index: var(--z-sticky);
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    animation: fadeInUp 0.3s ease;
}

.product-sticky.visible {
    display: flex;
}

.product-sticky__info {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.product-sticky__name {
    font-weight: var(--fw-semibold);
    font-size: var(--fs-sm);
}

.product-sticky__price {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: var(--fs-lg);
}

@media (max-width: 768px) {
    .product-hero {
        grid-template-columns: 1fr;
    }

    .product-hero__image {
        position: static;
        min-height: 250px;
        font-size: 5rem;
    }

    .product-hero__title {
        font-size: var(--fs-2xl);
    }

    .product-sticky__name {
        display: none;
    }
}

/* ===== CATALOG PAGE ===== */
.catalog-page {
    padding: var(--space-3xl) 0;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: var(--space-2xl);
}

.catalog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.catalog-sidebar__section {
    margin-bottom: var(--space-xl);
}

.catalog-sidebar__title {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.catalog-sidebar__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.catalog-sidebar__item {
    padding: 8px 12px;
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.catalog-sidebar__item:hover,
.catalog-sidebar__item.active {
    background: var(--bg-glass);
    color: var(--accent-primary-light);
}

.catalog-sidebar__item .count {
    margin-left: auto;
    color: var(--text-muted);
    font-size: var(--fs-xs);
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.catalog-header__count {
    color: var(--text-muted);
    font-size: var(--fs-sm);
}

.catalog-header__sort select {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: var(--fs-sm);
}

@media (max-width: 900px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-sidebar {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .catalog-sidebar__section {
        flex: 1;
        min-width: 200px;
    }
}

/* ===== CATEGORY PAGE ===== */
.category-page {
    padding: var(--space-3xl) 0;
}

.category-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.category-header__icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.category-header__title {
    margin-bottom: var(--space-sm);
}

.category-header__desc {
    color: var(--text-secondary);
    font-size: var(--fs-md);
}

.category-subcats {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.category-top {
    margin-bottom: var(--space-3xl);
}

.category-top__title {
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.category-seo {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    margin-top: var(--space-3xl);
}

.category-seo__title {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-md);
}

.category-seo__text {
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    line-height: 1.8;
}

/* ===== HOW IT WORKS PAGE ===== */
.how-page {
    padding: var(--space-3xl) 0;
}

.how-section {
    margin-bottom: var(--space-3xl);
}

.how-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.how-method {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
}

.how-method__icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.how-method__title {
    font-size: var(--fs-md);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-sm);
}

.how-method__text {
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    line-height: 1.6;
}

/* ===== TESTIMONIALS PAGE ===== */
.testimonials-page {
    padding: var(--space-3xl) 0;
}

/* ===== CONTACT PAGE ===== */
.contact-page {
    padding: var(--space-3xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.contact-form__group {
    margin-bottom: var(--space-lg);
}

.contact-form__label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

.contact-form__input,
.contact-form__textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: var(--fs-base);
    transition: border-color var(--transition-fast);
}

.contact-form__textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    border-color: var(--accent-primary);
    outline: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    gap: var(--space-lg);
}

.contact-card__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-card__title {
    font-size: var(--fs-md);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-xs);
}

.contact-card__text {
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    line-height: 1.6;
}

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

/* ===== LEGAL PAGES ===== */
.legal-page {
    padding: var(--space-3xl) 0;
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.legal-page h1 {
    margin-bottom: var(--space-2xl);
}

.legal-page h2 {
    font-size: var(--fs-xl);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.legal-page p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.legal-page ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

.legal-page li {
    color: var(--text-secondary);
    line-height: 1.8;
    list-style: disc;
    margin-bottom: var(--space-xs);
}

/* ===== THANKS PAGE ===== */
.thanks-page {
    padding: var(--space-4xl) 0;
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    margin-bottom: var(--space-xl);
    animation: bounceIn 0.6s ease;
}

.thanks-title {
    font-size: var(--fs-3xl);
    margin-bottom: var(--space-md);
}

.thanks-text {
    color: var(--text-secondary);
    font-size: var(--fs-md);
    max-width: 500px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
}

/* ===== BLOG PAGE ===== */
.blog-page {
    padding: var(--space-3xl) 0;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
}

.blog-card__image {
    height: 180px;
    background: var(--gradient-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.blog-card__body {
    padding: var(--space-lg);
}

.blog-card__tag {
    font-size: var(--fs-xs);
    color: var(--accent-primary-light);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
    display: block;
}

.blog-card__title {
    font-size: var(--fs-md);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-sm);
}

.blog-card__excerpt {
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.blog-card__link {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--accent-primary-light);
}

/* ===== PACKS PAGE ===== */
.packs-page {
    padding: var(--space-3xl) 0;
}

/* ===== TRENDING PAGE ===== */
.trending-page {
    padding: var(--space-3xl) 0;
}

.trending-hero {
    text-align: center;
    margin-bottom: var(--space-3xl);
    position: relative;
}

.trending-hero::before {
    content: '🔥';
    font-size: 4rem;
    display: block;
    margin-bottom: var(--space-md);
    animation: float 3s ease-in-out infinite;
}