:root {
    --primary-blue: #0A66C2;
    --light-blue: #F0F8FF;
    --cyan: #00D2FF;
    --dark-blue: #3A7BD5;
    --text-dark: #111827;
    --text-light: #4b5563;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(0, 110, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: #f4f9fd;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(0, 210, 255, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(58, 123, 213, 0.08), transparent 25%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 24px;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 210, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0);
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Top Bar Countdown */
.top-bar {
    background: linear-gradient(90deg, var(--dark-blue) 0%, var(--cyan) 100%);
    color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.top-bar-text {
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.countdown {
    display: flex;
    gap: 15px;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 8px;
    min-width: 60px;
    backdrop-filter: blur(5px);
}

.time-box span {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.time-box small {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    padding: 30px 0 10px 0;
    position: relative;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.p-8 {
    padding: 40px;
}

/* Top Image Cover */
.top-cover-container {
    text-align: center;
    margin-bottom: 25px;
}

.top-cover-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 50, 100, 0.1);
    object-fit: contain;
}

.badge {
    background: rgba(0, 210, 255, 0.15);
    color: var(--primary-blue);
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 210, 255, 0.3);
}

.main-title {
    font-size: 2.3rem;
    /* Era 2.8rem */
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.gradient-text {
    background: linear-gradient(90deg, var(--dark-blue) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.highlight-text {
    color: #e53e3e;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.text-center {
    text-align: center;
}

.price-box {
    margin-bottom: 30px;
}

.price-box del {
    color: #94a3b8;
    font-size: 1.2rem;
    font-weight: 600;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-top: 10px;
}

.current-price .currency {
    font-size: 2.2rem;
    color: #22c55e;
}

.current-price .amount {
    font-size: 4rem;
    color: #22c55e;
    display: block;
    margin-top: -5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--cyan) 100%);
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50px;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 114, 255, 0.4);
}

.glow-effect {
    animation: pulseGlow 2s infinite;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

/* Image Separator */
.image-separator {
    text-align: center;
    padding: 0 0 20px 0;
}

.image-separator img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    max-height: 500px;
    object-fit: contain;
}

/* Sections General */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 800;
}

.center-cta {
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
}

.center-cta .btn-primary {
    width: auto;
    min-width: 300px;
}

.mt-5 {
    margin-top: 40px;
}

/* What you get */
.what-you-get {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Benefits */
.benefits {
    padding: 80px 0 30px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 114, 255, 0.15);
}

.benefit-check {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    color: rgba(0, 210, 255, 0.05);
    z-index: 0;
}

.benefit-card i.fa-check-circle {
    color: #10b981;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

/* Testimonials */
.testimonials {
    padding: 30px 0 80px 0;
}

.testimonials-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    align-items: start;
}

.testimonial-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-img:hover {
    transform: scale(1.03);
}




/* Guarantee Section */
.guarantee {
    padding: 80px 0;
}

.guarantee-container {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 50px;
}

.guarantee-img img {
    max-width: 200px;
}

.guarantee-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.guarantee-text p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Author Section */
.author {
    padding: 40px 0 0 0;
}

.author-container {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 50px 50px 20px 50px;
}

.author-img img {
    max-width: 300px;
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

.author-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.author-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Payment Flags */
.payment-flags {
    width: 100%;
    max-width: 600px;
    max-height: none;
    object-fit: contain;
    opacity: 1;
    margin-bottom: 30px;
}

.pb-5 {
    padding-bottom: 40px;
}

/* Footer */
footer {
    padding: 10px 0 40px 0;
    margin-top: 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.copyright-text {
    margin-top: 40px;
    margin-bottom: 0;
}

.payment-box {
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 50, 100, 0.05);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {

    .hero-container,
    .guarantee-container,
    .author-container {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }

    .main-title {
        font-size: 1.9rem;
        /* era 2.2rem */
    }

    .author-img {
        margin: 0 auto;
    }
}

/* Scroll Animations Base */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Offer Slot (Pre-Checkout) */
.offer-slot {
    max-width: 500px;
    margin: 60px auto 0 auto;
    padding: 40px 30px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 50, 100, 0.08);
}

.offer-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 25px;
}

.offer-author {
    color: var(--dark-blue);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.offer-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: -5px;
}

.offer-price {
    font-size: 4.5rem;
    font-weight: 800;
    color: #22c55e;
    line-height: 1.2;
    margin-bottom: 20px;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.offer-list li {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-list li i {
    color: #22c55e;
    font-size: 1.1rem;
}

.offer-subtext {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 25px;
}

.offer-btn {
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: none;
    border-radius: 8px;
}

.offer-payment-flags {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
}

.offer-security {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
    flex-wrap: wrap;
}

.offer-security span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.offer-security i {
    font-size: 1.2rem;
}