/* Global Reset & Variables */
:root {
    --primary-color: #0284C7;
    /* Sky Blue 600 */
    --primary-dark: #0369A1;
    /* Sky Blue 700 */
    --accent-color: #38BDF8;
    /* Sky Blue 400 */
    --secondary-color: #0F172A;
    /* Slate 900 */
    --text-color: #1E293B;
    /* Slate 800 */
    --text-light: #64748B;
    /* Slate 500 */
    --bg-white: #FFFFFF;
    --bg-light: #F1F5F9;
    /* Slate 100 */
    --bg-gradient: linear-gradient(180deg, #F0F9FF 0%, #FFFFFF 100%);
    --bg-gradient-reverse: linear-gradient(180deg, #FFFFFF 0%, #F0F9FF 100%);

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 10px 10px -5px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(56, 189, 248, 0.3);

    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.7);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(2, 132, 199, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(2, 132, 199, 0);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(56, 189, 248, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(56, 189, 248, 0.6);
    }

    100% {
        box-shadow: 0 0 5px rgba(56, 189, 248, 0.2);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.fade-in-left {
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.fade-in-right {
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.pulse-effect {
    animation: pulse 2s infinite;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.highlight {
    color: var(--primary-color);
}

.btn-primary {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md), var(--shadow-glow);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(2, 132, 199, 0.5);
}

.btn-primary small {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.btn-sm {
    background-color: var(--primary-color);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.btn-sm:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

/* Sales Popup */
.sales-popup {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
    max-width: 320px;
    border-left: 4px solid #10B981;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sales-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.sales-popup.hidden {
    display: none;
}

.popup-icon {
    font-size: 1.5rem;
    color: #10B981;
}

.popup-content {
    font-size: 0.9rem;
    line-height: 1.3;
}

.popup-time {
    font-size: 0.75rem;
    color: var(--text-light);
    display: block;
    margin-top: 0.2rem;
}

/* Sticky Live Counter */
.live-counter-sticky {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1001;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: #DC2626;
    /* Red 600 */
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    animation: fadeIn 1s forwards;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #DC2626;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(220, 38, 38, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

/* Hero Section */
.hero {
    padding: 4rem 0 5rem;
    background: var(--bg-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.badge-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #E0F2FE;
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.headline {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    letter-spacing: -0.03em;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* VSL */
.vsl-wrapper {
    margin-bottom: 3rem;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.vsl-container {
    overflow: hidden;
    position: relative;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(45deg, #0f172a, #1e293b);
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-button:hover {
    transform: scale(1.1);
}

.cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.security-badges {
    display: flex;
    gap: 1.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
    justify-content: center;
    flex-wrap: wrap;
}

.security-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Problem Section */
.problem {
    padding: 6rem 0;
    background-color: white;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card-feature {
    padding: 2.5rem 2rem;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid #E2E8F0;
    transition: all 0.3s;
}

.card-feature:hover {
    transform: translateY(-8px);
    background-color: white;
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(2, 132, 199, 0.1);
    color: var(--primary-color);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.card-feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Solution / Benefits Redesign */
.solution {
    padding: 8rem 0;
    background-color: #F8FAFC;
    position: relative;
    overflow: hidden;
}

.row {
    display: flex;
    align-items: flex-start;
    gap: 5rem;
    flex-wrap: wrap;
}

.col-text {
    flex: 1;
    min-width: 320px;
}

.col-image {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
    position: relative;
}

.col-text h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    line-height: 1.1;
    background: linear-gradient(to right, #0F172A, #334155);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefits-list li {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(226, 232, 240, 0.6);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefits-list li:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary-color);
}

.benefits-list i {
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0;
    box-shadow: 0 4px 6px rgba(2, 132, 199, 0.2);
}

.benefits-list strong {
    display: block;
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.benefits-list p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.floating-card {
    background: white;
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.floating-card::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: conic-gradient(from 180deg at 50% 50%, #E0F2FE 0deg, #F0F9FF 180deg, #E0F2FE 360deg);
    z-index: -1;
    border-radius: 2.5rem;
    opacity: 0.6;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    font-family: var(--font-heading);
}

.stat .label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
    display: block;
}

/* Modules */
.modules {
    padding: 6rem 0;
    background-color: white;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #E2E8F0;
    transition: background-color 0.2s;
}

.accordion-item:hover {
    background-color: #F8FAFC;
}

.accordion-header {
    padding: 1.75rem 1rem;
    font-weight: 700;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.accordion-header span {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.75rem;
    opacity: 0.3;
}

/* Redesigned Mentors Section: Overlapping Glass Card */
.mentors {
    padding: 10rem 0;
    background: radial-gradient(circle at top right, #F0F9FF, #F8FAFC 60%, white);
    position: relative;
    overflow: hidden;
}

.mentors::before {
    content: '';
    position: absolute;
    top: 50px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: rgba(2, 132, 199, 0.03);
    border-radius: 50%;
    z-index: 0;
    filter: blur(50px);
}

.mentors-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.mentors-image {
    flex: 0 0 45%;
    position: relative;
    z-index: 1;
}

.mentors-image img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: block;
}

.mentor-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background-color: #CBD5E1;
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(to bottom, #94A3B8, #475569);
}

.mentor-placeholder i {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.mentors-content {
    flex: 0 0 60%;
    margin-left: -15%;
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 3.5rem;
    border-radius: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
}

.mentors-content:hover {
    transform: translateY(-5px);
}

.mentors-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--text-color);
}

.mentor-role {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    display: inline-block;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.25rem;
}

.mentors-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Testimonials (Fixed Single Card Carousel) */
.testimonials {
    padding: 6rem 0;
    background-color: white;
}

.carousel-wrapper {
    position: relative;
    max-width: 400px;
    /* Fixed width for single card */
    margin: 0 auto;
    padding: 0;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    /* Take full width of container */
    box-sizing: border-box;
    opacity: 1;
    transform: none;
    filter: none;
}

.video-testimonial {
    background: white;
    width: 100%;
}

.video-frame {
    aspect-ratio: 9/16;
    background-color: #1E293B;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-frame .play-icon {
    width: 60px;
    height: 60px;
    background-color: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
}

.video-frame:hover .play-icon {
    transform: scale(1.1);
}

.video-caption {
    padding: 1.5rem;
    text-align: center;
    background: white;
}

.video-caption strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.video-caption span {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

/* Nav Buttons outside the card */
.carousel-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -70px;
}

.next-btn {
    right: -70px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #CBD5E1;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-indicator.current-slide {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Offer */
.offer {
    padding: 6rem 0;
}

.offer-card {
    max-width: 550px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl), 0 0 0 4px rgba(2, 132, 199, 0.1);
    overflow: hidden;
    position: relative;
}

.offer-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 2rem;
    text-align: center;
}

.offer-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.offer-body {
    padding: 3rem 2rem;
    text-align: center;
}

.price-box {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: #F8FAFC;
    border-radius: var(--radius-lg);
    border: 1px dashed #CBD5E1;
}

.old-price {
    display: block;
    color: #94A3B8;
    text-decoration: line-through;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.current-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
    color: var(--text-color);
}

.current-price small {
    font-size: 1.25rem;
    font-weight: 600;
}

.current-price .value {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.05em;
    line-height: 1;
}

.cash-price {
    display: block;
    margin-top: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.offer-features {
    text-align: left;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.offer-features li {
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.offer-features i {
    color: #10B981;
    /* Green check */
    margin-top: 0.3rem;
    font-size: 1.1rem;
}

.btn-large {
    width: 100%;
    font-size: 1.3rem;
    padding: 1.5rem;
}

.payment-methods {
    margin-top: 2rem;
    font-size: 2.5rem;
    color: #94A3B8;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Guarantee Enhanced - Premium Gold/Black */
.guarantee {
    padding: 6rem 0;
    text-align: center;
}

.enhanced-guarantee {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3.5rem;
    text-align: left;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    border-radius: var(--radius-xl);
}

/* Premium Gold Seal */
.premium-seal {
    width: 170px;
    height: 170px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Gold Gradient */
    background: radial-gradient(circle at 30% 30%, #FCD34D, #F59E0B, #B45309);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(180, 83, 9, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.4), 0 0 0 6px rgba(245, 158, 11, 0.2);
    animation: float 4s ease-in-out infinite;
    color: #1a0f02;
    /* Very dark brown/black */
}

/* Update text color inside seal */
.premium-seal .seal-inner {
    color: #0F172A;
    /* Dark Slate */
}

.premium-seal .seal-text text {
    fill: #0F172A;
    /* Dark Slate for the rotating text */
    font-weight: 900;
}

/* Badge above Title */
.premium-badge {
    display: inline-block;
    background: #0F172A;
    color: #FCD34D;
    /* Gold text */
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.premium-badge i {
    color: #FCD34D;
    margin-right: 0.3rem;
}

/* Text adjustments */
.text-guarantee h3 {
    color: #0F172A;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.text-guarantee p {
    color: #334155;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.seal-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

.seal-text text {
    font-size: 11px;
    /* Slightly smaller to fit "METODO PREMIADO" */
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.seal-inner {
    text-align: center;
    line-height: 1;
    z-index: 2;
}

.seal-inner span {
    font-size: 3.5rem;
    font-weight: 800;
    display: block;
}

.seal-inner small {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: #94A3B8;
}

.footer-links a:hover {
    color: white;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .mentors-wrapper {
        flex-direction: column;
    }

    .mentors-content {
        margin-left: 0;
        margin-top: -3rem;
        /* Overlap vertically */
        width: 90%;
    }

    .mentors-image {
        width: 100%;
        max-width: 400px;
    }

    .col-text h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .headline {
        font-size: 2.25rem;
    }

    .solution {
        padding: 4rem 0;
    }

    .row,
    .enhanced-guarantee {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 2.5rem;
    }

    .col-text {
        min-width: 100%;
    }

    .col-text h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .col-image {
        min-width: 100%;
    }

    .floating-card {
        max-width: 100%;
        padding: 2rem;
        aspect-ratio: auto;
    }

    .benefits-list {
        gap: 1rem;
    }

    .benefits-list li {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .benefits-list i {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }

    .benefits-list strong {
        font-size: 1.1rem;
    }

    .stat .number {
        font-size: 2.5rem;
    }

    .stat .label {
        font-size: 0.9rem;
    }

    .offer-card {
        margin: 0 1rem;
    }

    .live-counter-sticky {
        top: 1rem;
        right: 1rem;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .carousel-wrapper {
        max-width: 300px;
    }

    .prev-btn {
        left: -20px;
    }

    .next-btn {
        right: -20px;
    }
}