/* ===================================
   AGELESS MALE MAX - STYLES.CSS
   Mobile-First Responsive Design
   =================================== */

/* ===================================
   1. RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, select, textarea {
    font-size: 16px;
    font-family: inherit;
}

/* ===================================
   2. UTILITY CLASSES
   =================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 60px;
    }
}

/* Section Titles */
.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1E40AF;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 42px;
        margin-bottom: 24px;
    }
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
}

/* ===================================
   3. BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 48px;
    line-height: 1.4;
}

.btn-primary {
    background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
    min-height: 56px;
}

@media (max-width: 768px) {
    .btn-large {
        width: 100%;
        padding: 16px 20px;
    }
}

/* ===================================
   4. NAVIGATION
   =================================== */
#header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

#header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar {
    padding: 16px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 20px;
    color: #1E40AF;
    font-weight: 700;
}

@media (min-width: 768px) {
    .logo h2 {
        font-size: 24px;
    }
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #1E40AF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    padding: 80px 30px 30px;
    list-style: none;
    transition: right 0.4s ease;
    z-index: 999;
}

.nav-menu.active {
    right: 0;
}

.nav-menu li {
    margin-bottom: 24px;
}

.nav-link {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    display: block;
    padding: 8px 0;
}

.nav-link:hover {
    color: #1E40AF;
}

.btn-primary-nav {
    display: block;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .nav-menu li {
        margin-bottom: 0;
    }

    .nav-link {
        font-size: 16px;
    }

    .btn-primary-nav {
        margin-top: 0;
    }
}

/* ===================================
   5. HERO SECTION
   =================================== */
.hero {
    padding: 40px 0;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: 60px 0;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 80px 0;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        gap: 60px;
    }
}

.hero-image {
    flex: 1;
    position: relative;
    max-width: 400px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 16px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 42px;
        margin-bottom: 20px;
    }
}

@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 48px;
        margin-bottom: 24px;
    }
}

.hero-subtitle {
    font-size: 18px;
    color: #1E40AF;
    font-weight: 600;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

.hero-text p {
    font-size: 16px;
    color: #4B5563;
    margin-bottom: 20px;
    line-height: 1.7;
}

.hero-features {
    margin: 24px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-item svg {
    color: #10B981;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 16px;
    color: #374151;
}

/* Hero Animations */
.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideLeft 0.8s ease forwards;
}

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

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideRight 0.8s ease forwards 0.2s;
}

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

.pulse-animation {
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(30, 64, 175, 0.5);
    }
}

/* ===================================
   6. WHY CHOOSE US SECTION
   =================================== */
.why-choose {
    padding: 60px 0;
    background: #fff;
}

@media (min-width: 768px) {
    .why-choose {
        padding: 80px 0;
    }
}

.badges-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 576px) {
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .badges-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

.badge-card {
    background: #fff;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.badge-card:hover {
    transform: translateY(-8px) rotate(2deg);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.15);
    border-color: #3B82F6;
}

.badge-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
}

.badge-card h3 {
    font-size: 18px;
    color: #1E40AF;
    margin-bottom: 12px;
    font-weight: 700;
}

.badge-card p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
}

/* ===================================
   7. WHAT IS SECTION
   =================================== */
.what-is {
    padding: 60px 0;
    background: #F9FAFB;
}

@media (min-width: 768px) {
    .what-is {
        padding: 80px 0;
    }
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .content-wrapper {
        flex-direction: row;
        gap: 60px;
    }
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 28px;
    color: #1E40AF;
    margin-bottom: 20px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .content-text h2 {
        font-size: 36px;
        margin-bottom: 24px;
    }
}

.content-text p {
    font-size: 16px;
    color: #4B5563;
    margin-bottom: 16px;
    line-height: 1.7;
}

.content-image {
    flex: 1;
    max-width: 500px;
}

/* ===================================
   8. HOW IT WORKS & ACCORDION
   =================================== */
.how-it-works {
    padding: 60px 0;
    background: #fff;
}

@media (min-width: 768px) {
    .how-it-works {
        padding: 80px 0;
    }
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: #fff;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: #3B82F6;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #1E40AF;
    cursor: pointer;
    background: #F9FAFB;
    transition: all 0.3s ease;
    min-height: 48px;
}

@media (max-width: 768px) {
    .accordion-header {
        font-size: 16px;
        padding: 16px;
    }
}

.accordion-header:hover {
    background: #EFF6FF;
}

.accordion-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 20px;
    font-size: 16px;
    color: #4B5563;
    line-height: 1.7;
}

/* ===================================
   9. CUSTOMER REVIEWS
   =================================== */
.reviews {
    padding: 60px 0;
    background: #F9FAFB;
}

@media (min-width: 768px) {
    .reviews {
        padding: 80px 0;
    }
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.review-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-info h4 {
    font-size: 16px;
    color: #1F2937;
    margin-bottom: 4px;
}

.review-info p {
    font-size: 14px;
    color: #6B7280;
}

.rating {
    margin-top: 4px;
}

.rating span {
    font-size: 16px;
    color: #F59E0B;
}

.review-text {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
    font-style: italic;
}

/* ===================================
   10. PRICING SECTION
   =================================== */
.pricing {
    padding: 60px 0;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
}

@media (min-width: 768px) {
    .pricing {
        padding: 80px 0;
    }
}

/* Countdown Timer */
.countdown-timer {
    max-width: 500px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.timer-text {
    font-size: 16px;
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .timer-text {
        font-size: 18px;
    }
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-unit span:first-child {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

@media (min-width: 768px) {
    .timer-unit span:first-child {
        font-size: 48px;
    }
}

.timer-label {
    font-size: 12px;
    color: #FEE2E2;
    text-transform: uppercase;
    margin-top: 4px;
}

.timer-separator {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

@media (min-width: 768px) {
    .timer-separator {
        font-size: 48px;
    }
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.pricing-card-popular {
    border: 3px solid #10B981;
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .pricing-card-popular {
        transform: scale(1);
    }
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.pricing-label {
    font-size: 14px;
    font-weight: 700;
    color: #6B7280;
    text-align: center;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-bottle {
    font-size: 24px;
    font-weight: 700;
    color: #1E40AF;
    text-align: center;
    margin-bottom: 4px;
}

.pricing-supply {
    font-size: 14px;
    color: #6B7280;
    text-align: center;
    margin-bottom: 20px;
}

.pricing-card img:not(.payment-logos):not([src*="atc"]) {
    max-width: 200px;
    margin: 0 auto 20px;
}

.pricing-price {
    text-align: center;
    margin-bottom: 12px;
}

.price-per {
    font-size: 42px;
    font-weight: 700;
    color: #1E40AF;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #6B7280;
}

.pricing-total {
    text-align: center;
    margin-bottom: 16px;
}

.price-old {
    font-size: 20px;
    color: #9CA3AF;
    text-decoration: line-through;
    margin-right: 8px;
}

.price-new {
    font-size: 28px;
    font-weight: 700;
    color: #DC2626;
}

.pricing-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.badge-bonus,
.badge-shipping {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.pricing-card .btn {
    width: 100%;
    margin-bottom: 16px;
}

.pricing-card .btn img {
    max-width: 120px;
    margin: 0 auto;
}

.payment-logos {
    max-width: 200px;
    margin: 0 auto;
}

.rating-display {
    text-align: center;
    margin-top: 40px;
}

.rating-display img {
    max-width: 200px;
    margin: 0 auto;
}

/* ===================================
   11. BONUS SECTION
   =================================== */
.bonus {
    padding: 60px 0;
    background: #fff;
}

@media (min-width: 768px) {
    .bonus {
        padding: 80px 0;
    }
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

.bonus-card {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.bonus-card img {
    max-width: 150px;
    margin: 0 auto 20px;
}

.bonus-card h3 {
    font-size: 20px;
    color: #1E40AF;
    margin-bottom: 12px;
    font-weight: 700;
}

.bonus-card p {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
}

/* ===================================
   12. INGREDIENTS SECTION
   =================================== */
.ingredients {
    padding: 60px 0;
    background: #F9FAFB;
}

@media (min-width: 768px) {
    .ingredients {
        padding: 80px 0;
    }
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

.ingredient-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.ingredient-card h3 {
    font-size: 18px;
    color: #1E40AF;
    margin-bottom: 12px;
    font-weight: 700;
}

.ingredient-card p {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
}

/* ===================================
   13. SCIENTIFIC EVIDENCE SECTION
   =================================== */
.scientific-evidence {
    padding: 60px 0;
    background: #fff;
}

@media (min-width: 768px) {
    .scientific-evidence {
        padding: 80px 0;
    }
}

.evidence-content {
    max-width: 900px;
    margin: 0 auto;
}

.evidence-intro {
    text-align: center;
    margin-bottom: 40px;
}

.evidence-intro p {
    font-size: 16px;
    color: #4B5563;
    line-height: 1.7;
}

/* ===================================
   14. MONEY BACK GUARANTEE
   =================================== */
.guarantee {
    padding: 60px 0;
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
}

@media (min-width: 768px) {
    .guarantee {
        padding: 80px 0;
    }
}

.guarantee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .guarantee-wrapper {
        flex-direction: row;
        gap: 60px;
    }
}

.guarantee-image {
    flex: 0 0 auto;
}

.guarantee-image img {
    max-width: 300px;
}

.guarantee-content {
    flex: 1;
}

.guarantee-content h2 {
    font-size: 28px;
    color: #92400E;
    margin-bottom: 24px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .guarantee-content h2 {
        font-size: 36px;
    }
}

.guarantee-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.guarantee-point h3 {
    font-size: 18px;
    color: #B45309;
    margin-bottom: 8px;
    font-weight: 700;
}

.guarantee-point p {
    font-size: 15px;
    color: #78350F;
    line-height: 1.7;
}

/* ===================================
   15. BENEFITS SECTION
   =================================== */
.benefits {
    padding: 60px 0;
    background: #fff;
}

@media (min-width: 768px) {
    .benefits {
        padding: 80px 0;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-item {
    display: flex;
    gap: 16px;
    background: #F9FAFB;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #EFF6FF;
    transform: translateX(5px);
}

.benefit-icon {
    color: #10B981;
    flex-shrink: 0;
}

.benefit-item h3 {
    font-size: 18px;
    color: #1E40AF;
    margin-bottom: 8px;
    font-weight: 700;
}

.benefit-item p {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
}

/* ===================================
   16. FAQ SECTION
   =================================== */
.faq {
    padding: 60px 0;
    background: #F9FAFB;
}

@media (min-width: 768px) {
    .faq {
        padding: 80px 0;
    }
}

/* ===================================
   17. FINAL CTA SECTION
   =================================== */
.final-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .final-cta {
        padding: 100px 0;
    }
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".1" fill="%23fff"></path></svg>') no-repeat;
    background-size: cover;
    opacity: 0.1;
}

.final-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta-image {
    max-width: 300px;
    margin: 0 auto 30px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.final-cta-content h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .final-cta-content h2 {
        font-size: 40px;
        margin-bottom: 30px;
    }
}

.final-cta-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.final-price-old {
    font-size: 20px;
    color: #DBEAFE;
    text-decoration: line-through;
}

.final-price-new {
    font-size: 36px;
    font-weight: 700;
    color: #FCD34D;
}

@media (min-width: 768px) {
    .final-price-new {
        font-size: 48px;
    }
}

.final-cta-content .btn {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    font-size: 20px;
    padding: 20px 50px;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

@media (max-width: 768px) {
    .final-cta-content .btn {
        width: 100%;
        padding: 18px 30px;
        font-size: 18px;
    }
}

.final-cta-guarantee {
    margin-top: 20px;
    font-size: 14px;
    color: #DBEAFE;
}

/* Final CTA Animation */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

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

.btn-pulse {
    animation: btnPulse 1.5s infinite;
}

@keyframes btnPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===================================
   18. FOOTER
   =================================== */
.footer {
    background: #1F2937;
    color: #D1D5DB;
    padding: 40px 0 20px;
}

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

.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.legal-link {
    color: #93C5FD;
    font-size: 14px;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #60A5FA;
}

.link-separator {
    color: #4B5563;
}

.footer-disclaimer {
    max-width: 900px;
    margin: 0 auto 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #9CA3AF;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #3B82F6;
    transform: translateY(-3px);
}

.footer-copyright p {
    font-size: 14px;
    color: #6B7280;
}

/* ===================================
   19. SCROLL TO TOP BUTTON
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    cursor: pointer;
}

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

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
}

/* ===================================
   20. PURCHASE NOTIFICATION POPUP
   =================================== */
.purchase-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    max-width: 320px;
    transform: translateX(-400px);
    transition: transform 0.4s ease;
    z-index: 998;
}

.purchase-notification.show {
    transform: translateX(0);
}

@media (max-width: 768px) {
    .purchase-notification {
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%) translateY(100px);
        max-width: calc(100% - 40px);
    }

    .purchase-notification.show {
        transform: translateX(-50%) translateY(0);
    }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    font-size: 24px;
}

.notification-text {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    color: #374151;
}

.notification-text strong {
    color: #1E40AF;
    font-weight: 700;
}

.notification-message {
    color: #6B7280;
    font-size: 13px;
}

/* ===================================
   21. EXIT INTENT POPUP
   =================================== */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.exit-popup.show {
    opacity: 1;
    visibility: visible;
}

.exit-popup-content {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.exit-popup.show .exit-popup-content {
    transform: scale(1);
}

.exit-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.exit-popup-close:hover {
    background: #E5E7EB;
    color: #374151;
}

.exit-popup-content h3 {
    font-size: 28px;
    color: #DC2626;
    margin-bottom: 16px;
    font-weight: 700;
}

.exit-popup-content p {
    font-size: 18px;
    color: #374151;
    margin-bottom: 12px;
    line-height: 1.6;
}

.exit-popup-subtext {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 24px;
}

/* ===================================
   22. FADE-IN ANIMATION
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   23. REDUCED MOTION SUPPORT
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===================================
   24. PRINT STYLES
   =================================== */
@media print {
    .navbar,
    .scroll-to-top,
    .purchase-notification,
    .exit-popup {
        display: none;
    }
}
