/* ========================================
   LANDING PREMIUM - JESÚS SAGRARIO PSICÓLOGO
   Diseño distintivo, mobile-first, conversión extrema
   ======================================== */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* === CSS VARIABLES === */
:root {
    /* Colors - Refined palette */
    --primary: #1a5c53;
    --primary-light: #248f7f;
    --primary-dark: #0f3d37;
    --accent: #c9a962;
    --accent-light: #e5d4a1;

    --bg-cream: #faf8f5;
    --bg-sage: #f0f4f2;
    --bg-dark: #1a1a1a;

    --text-dark: #1a1a1a;
    --text-body: #3d3d3d;
    --text-muted: #6b7280;
    --text-light: #9ca3af;

    --white: #ffffff;
    --border: rgba(26, 92, 83, 0.1);

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-med: 0.4s var(--ease-out);
    --transition-slow: 0.6s var(--ease-out);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(26, 92, 83, 0.15);

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
}

/* === RESET & BASE === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--bg-cream);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* === LAYOUT === */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-xl) 0;
}

@media (min-width: 768px) {
    .section {
        padding: var(--space-2xl) 0;
    }
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: var(--transition-med);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-fast);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: #ffffff;
    box-shadow: var(--shadow-md), 0 4px 20px rgba(26, 92, 83, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 8px 30px rgba(26, 92, 83, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #b8963a 100%);
    color: var(--text-dark);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* === UTILITIES === */
.bg-light {
    background-color: var(--bg-cream);
}

.bg-white {
    background-color: var(--white);
}

.text-center {
    text-align: center;
}

.section {
    padding: var(--space-2xl) 0;
}

/* === FEATURE CARD (Generic) === */
.features-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-med);
    text-align: left;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-sage);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    background: transparent;
    transition: var(--transition-med);
}

.header.scrolled {
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.logo-text span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
    font-family: var(--font-body);
}

.nav-desktop {
    display: none;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: var(--space-lg);
    }
}

.nav-desktop a {
    font-size: 0.9375rem;
    color: var(--text-body);
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
}

.nav-desktop a:hover::after {
    width: 100%;
}

/* Dropdown Talleres */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.nav-dropdown .dropdown-toggle i {
    font-size: 0.65rem;
    transition: var(--transition-fast);
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: var(--space-sm) 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-body);
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--bg-sage);
    color: var(--primary);
}

.dropdown-menu a::after {
    display: none;
}

/* Botón CTA Nav Desktop */
.nav-desktop .btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.nav-desktop .btn-primary::after {
    display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    padding: 100px var(--space-lg) var(--space-lg);
    transition: var(--transition-med);
    z-index: 999;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile a {
    display: block;
    padding: var(--space-sm) 0;
    font-size: 1.25rem;
    font-family: var(--font-display);
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
}

/* CTA Button Mobile Menu - Centered */
.nav-mobile .btn-primary {
    margin-top: auto;
    text-align: center;
    font-size: 1.15rem;
    padding: 1rem 1.5rem;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-med);
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 var(--space-xl);
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-sage) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(26, 92, 83, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    gap: var(--space-lg);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

.hero-content {
    text-align: center;
    order: 2;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
        order: 1;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    color: var(--primary);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-sm);
}

.hero-badge i {
    color: var(--accent);
}

.hero-title {
    margin-bottom: var(--space-md);
}

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    max-width: 500px;
}

@media (min-width: 1024px) {
    .hero-subtitle {
        margin-left: 0;
        margin-right: auto;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-cta {
        justify-content: flex-start;
    }
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-trust {
        justify-content: flex-start;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.trust-item i {
    color: var(--primary);
}

/* Hero Urgency Badge */
.hero-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--space-sm);
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: #e65100;
    animation: pulse 2s ease-in-out infinite;
}

@media (min-width: 1024px) {
    .hero-urgency {
        justify-content: flex-start;
        max-width: fit-content;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.hero-urgency i {
    color: #e65100;
}

/* CTA Price Badge */
.cta-price {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    margin-left: 0.5rem;
    font-weight: 700;
}

/* === ABOUT SECTION (Conoce al Terapeuta) === */
.about-therapist {
    background: var(--white);
    position: relative;
}

.about-therapist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.about-grid {
    display: grid;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 300px 1fr;
    }
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary);
}

.about-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: var(--space-md);
}

.about-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.credential-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-sage);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--primary);
}

/* === GUARANTEE SECTION === */
.guarantee-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    border: 2px solid var(--primary);
    margin-top: var(--space-lg);
}

.guarantee-box i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.guarantee-box h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.guarantee-box p {
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Image ordered correctly in mobile */
.hero-image {
    order: 1;
    position: relative;
}

/* === WORKSHOP CARDS WITH IMAGES === */
.workshop-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-med);
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none !important;
    color: inherit;
    border: 1px solid var(--border);
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.workshop-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.workshop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.workshop-card:hover .workshop-image img {
    transform: scale(1.05);
}

.workshop-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 92, 83, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.workshop-card:hover .workshop-overlay {
    opacity: 1;
}

.workshop-overlay i {
    color: var(--white);
    font-size: 3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.workshop-content {
    padding: var(--space-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.workshop-content h3 {
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
    font-size: 1.25rem;
}

.workshop-content p {
    color: var(--text-body);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
    flex-grow: 1;
    line-height: 1.6;
}

/* Fix About Image Mobile */
@media (max-width: 767px) {
    .about-image {
        margin: 0 auto var(--space-md);
    }
}

/* Desktop CTA Buttons Fix */
@media (min-width: 1024px) {
    .nav-desktop .btn-primary {
        padding: 0.85rem 1.75rem;
        font-size: 1.05rem;
    }

    .hero-cta .btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .hero-image {
        order: 2;
    }
}

/* === BUTTON FONT RENDERING FIX === */
.btn,
.hero-cta .btn {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 600 !important;
    /* Force bolder font */
    letter-spacing: 0.01em;
}

.hero-cta .btn {
    font-size: 1.15rem !important;
    /* Ensure readable size */
}

.hero-image-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.hero-image-main {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.hero-image-decoration {
    position: absolute;
    inset: -20px;
    border: 2px solid var(--accent);
    border-radius: var(--radius-xl);
    opacity: 0.6;
    z-index: 1;
}

/* Floating badges */
.hero-badge-float {
    position: absolute;
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-size: 0.875rem;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.hero-badge-float.tve {
    top: 10%;
    right: -10%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-badge-float.tve i {
    color: #e60000;
}

.hero-badge-float.rating {
    bottom: 15%;
    left: -5%;
}

.hero-badge-float.rating .stars {
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.hero-badge-float.rating strong {
    font-size: 1.25rem;
    color: var(--text-dark);
}

.hero-badge-float.rating span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Hero Image Mobile Adjustment */
@media (max-width: 768px) {
    .hero-image-wrapper {
        max-width: 280px;
        margin: 2rem auto 0;
    }

    .hero-image-decoration {
        inset: -10px;
        opacity: 0.4;
    }

    .hero-badge-float {
        transform: scale(0.9);
    }
}

/* === SOCIAL PROOF BAR === */
.social-proof-bar {
    background: var(--white);
    padding: var(--space-md) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.proof-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.proof-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
}

.proof-text strong {
    display: block;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.proof-text span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* === SECTION HEADERS === */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(26, 92, 83, 0.1);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    color: var(--primary);
    margin-bottom: var(--space-sm);
    font-weight: 500;
}

.section-header h2 {
    margin-bottom: var(--space-sm);
}

.section-header p {
    color: var(--text-muted);
}

/* === PROBLEM SECTION === */
.problems {
    background: var(--white);
}

.problem-grid {
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .problem-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.problem-card {
    background: var(--bg-cream);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition-med);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.problem-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.problem-card h3 {
    margin-bottom: 0.5rem;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.problem-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--space-sm);
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9375rem;
}

.problem-link:hover {
    gap: 0.75rem;
}

/* === VIDEO SECTION === */
.video-section {
    background: var(--bg-sage);
}

.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/9;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.75rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-med);
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn i {
    margin-left: 4px;
}

/* === TESTIMONIALS === */
.testimonials {
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--bg-cream);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-sm);
    right: var(--space-md);
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--space-md);
    color: var(--text-body);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.testimonial-info strong {
    display: block;
    color: var(--text-dark);
}

.testimonial-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* === PRICING === */
.pricing {
    background: var(--bg-sage);
}

.pricing-grid {
    display: grid;
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
    }
}

.pricing-card {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition-med);
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
    display: inline-block;
}

.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.pricing-duration {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
}

.pricing-features i {
    color: var(--primary);
    margin-top: 0.25rem;
}

.pricing-savings {
    display: block;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
}

/* === FAQ === */
.faq {
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-family: var(--font-body);
    font-weight: 500;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-med);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding-bottom: var(--space-md);
    color: var(--text-muted);
}

/* === FINAL CTA === */
.final-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    text-align: center;
    padding: var(--space-2xl) 0;
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.final-cta p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    font-size: 1.125rem;
}

.final-cta .btn {
    background: var(--white);
    color: var(--primary);
}

.final-cta .btn:hover {
    background: var(--accent-light);
}

.cta-contact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding: 0 var(--space-sm);
}

.cta-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
    word-break: break-all;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cta-contact {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }

    .cta-contact a {
        font-size: 0.85rem;
        max-width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.cta-contact a:hover {
    opacity: 1;
}

/* === FOOTER === */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
}

.footer-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: var(--space-md);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--white);
}

/* === FLOATING CTA === */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-sm);
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 900;
    display: block;
}

@media (min-width: 1024px) {
    .floating-cta {
        display: none;
    }
}

.floating-cta .btn {
    width: 100%;
}

/* === ANIMATIONS === */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
.stagger>* {
    opacity: 0;
    transform: translateY(20px);
}

.stagger.visible>*:nth-child(1) {
    animation: fadeUp 0.5s var(--ease-out) 0.1s forwards;
}

.stagger.visible>*:nth-child(2) {
    animation: fadeUp 0.5s var(--ease-out) 0.2s forwards;
}

.stagger.visible>*:nth-child(3) {
    animation: fadeUp 0.5s var(--ease-out) 0.3s forwards;
}

.stagger.visible>*:nth-child(4) {
    animation: fadeUp 0.5s var(--ease-out) 0.4s forwards;
}

.stagger.visible>*:nth-child(5) {
    animation: fadeUp 0.5s var(--ease-out) 0.5s forwards;
}

.stagger.visible>*:nth-child(6) {
    animation: fadeUp 0.5s var(--ease-out) 0.6s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === UTILITY CLASSES === */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.text-accent {
    color: var(--accent);
}

.mb-sm {
    margin-bottom: var(--space-sm);
}

.mb-md {
    margin-bottom: var(--space-md);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

/* === MEDIA SECTION === */
.media .problem-grid {
    max-width: 800px;
    margin: 0 auto;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .media .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === WORKSHOPS SECTION === */
.workshops {
    background: var(--white);
}

/* === BLOG SECTION === */
.blog {
    background: var(--bg-sage);
}

/* === TEXT IMPROVEMENTS === */
.hero-title {
    letter-spacing: -0.02em;
}

.hero-subtitle {
    line-height: 1.8;
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === MOBILE ACCORDION === */
.mobile-accordion {
    border-bottom: 1px solid var(--border);
}

.mobile-accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    font-size: 1.25rem;
    font-family: var(--font-display);
    color: var(--text-dark);
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-accordion-toggle i {
    font-size: 0.75rem;
    transition: var(--transition-fast);
}

.mobile-accordion.active .mobile-accordion-toggle i {
    transform: rotate(180deg);
}

.mobile-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1rem;
}

.mobile-accordion.active .mobile-accordion-content {
    max-height: 300px;
}

.mobile-accordion-content a {
    font-size: 1rem !important;
    padding: 0.5rem 0 !important;
    border-bottom: none !important;
    color: var(--text-muted) !important;
}

.mobile-accordion-content a:hover {
    color: var(--primary) !important;
}

/* === BLOG CARDS WITH IMAGES === */
.blog-grid {
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition-med);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-med);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: var(--space-md);
}

.blog-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--bg-sage);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-xl);
    margin-bottom: 0.75rem;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.blog-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

/* === DISTINCTIVE SECTION STYLES === */
/* Workshops Section - Primary Green Theme */
.workshops {
    background: var(--white);
    position: relative;
}

.workshops::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}

.workshops .section-tag {
    background: rgba(26, 92, 83, 0.15);
    color: var(--primary);
}

/* Media Section - Accent Gold Theme */
.media {
    background: linear-gradient(180deg, var(--bg-cream) 0%, #fcf8ef 100%);
    position: relative;
}

/* === PREMIUM VIDEO THUMBNAIL (NO AI) === */
/* === PREMIUM VIDEO THUMBNAIL (NO AI) === */
.video-thumbnail-premium {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #0f2e2a 0%, #1a5c53 100%);
    /* Deep elegant green */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4rem;
    overflow: hidden;
}

.thumbnail-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 55%;
    text-align: left;
}

.thumbnail-content h3 {
    font-size: 2.2rem;
    line-height: 1.1;
    margin: 0.5rem 0 1rem;
    font-family: var(--font-heading);
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    /* Stronger shadow for contrast */
}

.thumbnail-content h3 strong {
    font-weight: 700;
}

.limit-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    color: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.thumbnail-content p {
    font-size: 1rem;
    opacity: 1;
    /* Max opacity */
    margin: 0;
    max-width: 400px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    /* Text shadow for readability */
}

.thumbnail-image-container {
    position: absolute;
    bottom: 0;
    right: 5%;
    height: 110%;
    /* Slightly larger */
    width: 45%;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
}

.thumbnail-real-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Show full body/standing */
    object-position: bottom center;
    /* Suavizar el corte con la foto */
    -webkit-mask-image: linear-gradient(to right, transparent 5%, black 40%);
    mask-image: linear-gradient(to right, transparent 5%, black 40%);
    opacity: 1;
    mix-blend-mode: normal;
    /* Remove blend mode for clarity on generated image */
    filter: drop-shadow(-5px 0 15px rgba(0, 0, 0, 0.3));
}

/* Play button adjustment for this layout */
.video-wrapper .video-play-btn {
    z-index: 10;
    width: 80px;
    height: 80px;
}

@media (max-width: 768px) {
    .video-thumbnail-premium {
        padding: 1.5rem;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .thumbnail-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 0;
        z-index: 3;
        position: relative;
    }

    .thumbnail-content h3 {
        font-size: 1.5rem;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
        line-height: 1.3;
    }

    .thumbnail-content p {
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
        font-size: 0.9rem;
    }

    .limit-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
    }

    .thumbnail-image-container {
        width: 100%;
        height: 100%;
        opacity: 0.25;
        position: absolute;
        inset: 0;
        mix-blend-mode: normal;
    }

    .thumbnail-real-photo {
        -webkit-mask-image: none;
        mask-image: none;
        object-fit: cover;
        object-position: center;
    }
}

.hero-cta .btn {
    white-space: nowrap !important;
    flex-wrap: nowrap !important;
    width: auto;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
    font-weight: 600 !important;
}

.hero-cta .btn {
    font-size: 0.95rem !important;
    padding: 0.8rem 1rem !important;
}

.hero-cta .btn i {
    font-size: 0.9rem;
}

.cta-price {
    padding: 0.15rem 0.4rem;
    font-size: 0.85rem;
}

/* === VIDEO SECTION STYLES (RESTORED) === */
.video-section,
.approach-video {
    padding: var(--space-lg) 0;
    text-align: center;
}

.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 16/9;
    background: #000;
    z-index: 1;
}

.video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-wrapper:hover img {
    transform: scale(1.02);
}

/* Ensure video thumbnail visibility */
.video-thumbnail-premium {
    z-index: 2;
    /* Ensure it is above base background */
    display: flex !important;
    visibility: visible !important;
}

.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 16/9;
    background: #000;
}

.video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-wrapper:hover img {
    transform: scale(1.02);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary);
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
    text-decoration: none;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--white);
    color: var(--secondary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.video-play-btn::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
}

.media .section-tag {
    background: rgba(201, 169, 98, 0.2);
    color: #8b6f2a;
}

/* Blog Section - Cool Blue Theme */
.blog {
    background: linear-gradient(180deg, #f5f8fa 0%, var(--bg-sage) 100%);
    position: relative;
}

.blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a7c89 0%, #6ba3b3 100%);
}

.blog .section-tag {
    background: rgba(74, 124, 137, 0.15);
    color: #4a7c89;
}

/* Testimonials Section - Warm Theme */
.testimonials {
    background: var(--white);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e8c88b 0%, #f5e2c4 100%);
}

/* Pricing Section - Premium Dark Theme */
.pricing {
    background: linear-gradient(180deg, var(--bg-sage) 0%, var(--bg-cream) 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
}

/* === PRICING ORIGINAL PRICE === */
.price-original {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 0.5rem;
    font-weight: 400;
}

/* === BUTTON CTA FIX - WHITE TEXT === */
.nav-desktop .btn-primary {
    color: var(--white) !important;
}

.nav-mobile .btn-primary {
    color: var(--white) !important;
    margin-top: 1rem;
    text-align: center;
}

/* === HERO BADGE MOBILE RESPONSIVE === */
@media (max-width: 767px) {
    .hero-media-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.6rem;
        max-width: 90px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-media-badge i {
        font-size: 0.6rem;
    }
}

@media (max-width: 400px) {
    .hero-media-badge {
        display: none;
    }
}

/* === MODERN PREMIUM ENHANCEMENTS === */
/* Glassmorphism effect for cards */
.problem-card,
.blog-card,
.pricing-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Subtle glow on hover for premium feel */
.btn-primary:hover {
    box-shadow: 0 0 20px rgba(26, 92, 83, 0.4);
}

/* Smoother pricing cards */
.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Enhanced featured card */
.pricing-card.featured {
    background: linear-gradient(145deg, var(--white) 0%, #f8faf9 100%);
    box-shadow: 0 20px 60px rgba(26, 92, 83, 0.15);
}

/* === HERO BADGE TVE MOBILE RESPONSIVE === */
@media (max-width: 767px) {
    .hero-badge-float.tve {
        top: 5%;
        right: 0;
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .hero-badge-float.tve span {
        display: none;
    }

    .hero-badge-float.rating {
        bottom: 10%;
        left: 0;
    }

    /* Hero mobile order - CTA first */
    .hero-grid {
        display: flex;
        flex-direction: column;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
    }
}

/* === RECOVERED ANIMATIONS === */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.stagger.visible>* {
    opacity: 1;
    transform: translateY(0);
}

.stagger.visible>*:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger.visible>*:nth-child(2) {
    transition-delay: 0.2s;
}

/* === MOBILE OPTIMIZATIONS FINAL === */
@media (max-width: 768px) {

    /* Hide specific elements */
    .hero-badge-float.tve,
    .hero-content .hero-badge {
        display: none !important;
    }

    /* Adjust Hero Spacing - Fixed for menu overlap */
    .hero,
    .topic-hero {
        padding-top: 100px !important;
        padding-bottom: 20px;
    }

    /* Adjust Video Mobile Height */
    .video-wrapper {
        height: auto;
        aspect-ratio: 16/9;
    }
}

/* === PREMIUM ASSESSMENT SECTION === */
.premium-assessment-section {
    position: relative;
    padding: var(--space-2xl) 0;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-cream) 0%, #f4f1ea 100%);
}

.premium-assessment-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.premium-decoration-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.premium-decoration-element.left-element {
    width: 300px;
    height: 300px;
    background: rgba(26, 92, 83, 0.05);
    top: -50px;
    left: -100px;
}

.premium-decoration-element.right-element {
    width: 250px;
    height: 250px;
    background: rgba(201, 169, 98, 0.08);
    /* Gold accent */
    bottom: -50px;
    right: -80px;
}

.premium-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    position: relative;
    z-index: 1;
}

.premium-tag-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-sm);
}

.premium-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    background: var(--white);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.premium-section-title {
    margin-bottom: var(--space-sm);
    background: linear-gradient(135deg, var(--text-dark) 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-content-grid {
    position: relative;
    z-index: 1;
}

.premium-card.featured-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(26, 92, 83, 0.05);
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.premium-card.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(26, 92, 83, 0.1);
}

.premium-card-header {
    margin-bottom: var(--space-lg);
}

.premium-card-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--bg-sage) 0%, #e6ebe9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: var(--primary);
    font-size: 1.75rem;
}

.premium-features-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border);
}

.premium-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
    background: var(--bg-sage);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
}

.premium-feature i {
    color: var(--primary);
}

.premium-results-preview {
    text-align: left;
    max-width: 450px;
    margin: 0 auto;
    background: var(--bg-cream);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: 1px dashed rgba(26, 92, 83, 0.2);
}

.premium-results-preview span {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-xs);
    text-align: center;
}

.premium-discovery-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.premium-discovery-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-body);
}

.premium-discovery-list li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--accent);
    font-weight: bold;
}

.premium-main-cta-container .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 10px 30px rgba(26, 92, 83, 0.25);
    transition: all 0.3s ease;
}

.premium-main-cta-container .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 92, 83, 0.35);
}

@media (max-width: 768px) {
    .premium-card.featured-card {
        padding: var(--space-lg);
    }

    .premium-features-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}