/* ===============================
   LIPO FORME - MEDICAL PROFESSIONAL DESIGN
   Mobile-First Responsive CSS
   =============================== */

/* CSS 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: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

input, select, textarea {
    font-size: 16px; /* Prevent zoom on iOS */
}

/* Container */
.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;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #1E40AF;
    margin-bottom: 1rem;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 30px;
    }
    h3 {
        font-size: 24px;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 48px;
    }
    h2 {
        font-size: 36px;
    }
    h3 {
        font-size: 28px;
    }
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 28px;
    color: #1E40AF;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #93C5FD);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 2rem;
}

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

/* ===============================
   SECTION 1: HEADER & NAVIGATION
   =============================== */

.header {
    background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(30, 64, 175, 0.2);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(30, 64, 175, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h2 {
    color: #ffffff;
    font-size: 24px;
    margin: 0;
}

.logo span {
    color: #93C5FD;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    padding: 2rem;
    gap: 1rem;
    animation: slideInDown 0.3s ease;
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-link {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 15px;
    display: block;
    text-align: center;
}

.nav-link:hover {
    color: #93C5FD;
}

.cta-btn-nav {
    background: #ffffff;
    color: #1E40AF;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    min-height: 48px;
    line-height: 24px;
}

.cta-btn-nav:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    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);
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        background: none;
        padding: 0;
    }
    
    .nav-menu.active {
        flex-direction: row;
        top: auto;
        left: auto;
        right: auto;
        background: none;
        padding: 0;
    }
}

/* ===============================
   SECTION 2: HERO SECTION
   =============================== */

.hero {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    padding: 60px 0;
    overflow: hidden;
}

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

.hero-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    animation: float 3s ease-in-out infinite;
}

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

.animate-float {
    animation: float 3s ease-in-out infinite;
}

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

.hero-text h1 {
    color: #1E40AF;
    margin-bottom: 1.5rem;
}

.hero-text .highlight {
    color: #3B82F6;
    position: relative;
}

.hero-text .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6, #93C5FD);
    border-radius: 2px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    min-height: 48px;
    justify-content: center;
    margin-top: 1rem;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.6);
}

.cta-btn:active {
    transform: scale(0.98);
}

.cta-btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 6px 30px rgba(59, 130, 246, 0.8);
    }
}

@media (min-width: 768px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero-content {
        flex-direction: row;
        align-items: center;
    }
    
    .hero-image {
        width: 45%;
    }
    
    .hero-text {
        width: 55%;
        text-align: left;
    }
}

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

/* Fade In Animations */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   SECTION 3: WHY CHOOSE US
   =============================== */

.why-choose {
    padding: 60px 0;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, #EFF6FF 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h3 {
    color: #1E40AF;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    margin: 0;
}

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

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

/* ===============================
   SECTION 4: WHAT IS LIPO FORME
   =============================== */

.what-is {
    padding: 60px 0;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
}

.content-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.content-text {
    width: 100%;
}

.content-image {
    width: 100%;
    max-width: 500px;
}

.content-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

@media (min-width: 768px) {
    .content-split {
        flex-direction: row;
    }
    
    .content-text {
        width: 55%;
    }
    
    .content-image {
        width: 45%;
    }
}

/* ===============================
   SECTION 5: HOW IT WORKS
   =============================== */

.how-it-works {
    padding: 60px 0;
    background: #ffffff;
}

.accordion-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.accordion-item {
    background: #ffffff;
    border: 2px solid #E5E7EB;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #EFF6FF 0%, #ffffff 100%);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    text-align: left;
}

.accordion-header:hover {
    background: linear-gradient(135deg, #DBEAFE 0%, #EFF6FF 100%);
}

.accordion-icon {
    color: #3B82F6;
    flex-shrink: 0;
}

.accordion-header span:nth-child(2) {
    flex: 1;
    font-weight: 600;
    color: #1E40AF;
    font-size: 16px;
}

.accordion-toggle {
    font-size: 24px;
    color: #3B82F6;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-toggle {
    transform: rotate(45deg);
}

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

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

.accordion-content p {
    color: #666;
    margin: 0;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .accordion-header span:nth-child(2) {
        font-size: 18px;
    }
}

/* ===============================
   SECTION 6: CUSTOMER REVIEWS
   =============================== */

.reviews {
    padding: 60px 0;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

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

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #3B82F6;
}

.review-info h4 {
    color: #1E40AF;
    font-size: 18px;
    margin: 0 0 0.25rem;
}

.review-location {
    color: #666;
    font-size: 14px;
    margin: 0 0 0.5rem;
}

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

.review-text {
    color: #333;
    font-style: italic;
    line-height: 1.8;
    margin: 0;
}

/* Review Animations */
.slide-in-left {
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
    opacity: 0;
    animation: slideInRight 0.8s ease forwards;
    animation-delay: 0.4s;
}

.slide-in-up {
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* ===============================
   SECTION 7 & 12: PRICING
   =============================== */

.pricing {
    padding: 60px 0;
    background: #ffffff;
}

.pricing-second {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
}

.countdown-timer {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem auto 3rem;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.timer-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timer-display {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: #ffffff;
    border: 2px solid #E5E7EB;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.pricing-card.featured {
    border: 3px solid #3B82F6;
    background: linear-gradient(135deg, #EFF6FF 0%, #ffffff 100%);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.pricing-label {
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 1rem;
}

.pricing-card h3 {
    color: #1E40AF;
    font-size: 24px;
    margin: 1rem 0 0.5rem;
}

.supply-text {
    color: #666;
    font-size: 16px;
    margin-bottom: 1.5rem;
}

.product-image {
    margin: 1.5rem 0;
}

.product-image img {
    max-width: 200px;
    margin: 0 auto;
}

.price-per-bottle {
    font-size: 36px;
    font-weight: 700;
    color: #1E40AF;
    margin: 1rem 0;
}

.price-per-bottle span {
    font-size: 18px;
    font-weight: 400;
    color: #666;
}

.total-price {
    margin: 1rem 0 1.5rem;
}

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

.new-price {
    color: #EF4444;
    font-size: 32px;
    font-weight: 700;
}

.bonus-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
}

.badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.buy-btn {
    display: block;
    margin: 1.5rem 0;
}

.buy-btn img {
    max-width: 250px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.buy-btn:hover img {
    transform: scale(1.05);
}

.buy-btn:active img {
    transform: scale(0.95);
}

.payment-logos {
    margin-top: 1.5rem;
}

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

.rating-section {
    text-align: center;
    margin-top: 3rem;
}

.rating-section img {
    max-width: 300px;
    margin: 0 auto;
}

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

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

/* ===============================
   SECTION 8: INGREDIENTS
   =============================== */

.ingredients {
    padding: 60px 0;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.ingredient-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #3B82F6;
    box-shadow: 0 2px 15px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.ingredient-card:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 25px rgba(59, 130, 246, 0.2);
}

.ingredient-card h3 {
    color: #1E40AF;
    font-size: 20px;
    margin-bottom: 0.75rem;
}

.ingredient-card p {
    color: #666;
    margin: 0;
    line-height: 1.7;
}

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

/* ===============================
   SECTION 9: SCIENTIFIC EVIDENCE
   =============================== */

.scientific-evidence {
    padding: 60px 0;
    background: #ffffff;
}

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

.evidence-intro {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.evidence-intro p {
    color: #333;
    font-size: 18px;
    margin: 0;
}

.evidence-section {
    margin-bottom: 2rem;
}

.evidence-section h3 {
    color: #1E40AF;
    font-size: 22px;
    margin-bottom: 1rem;
}

.evidence-section p {
    color: #666;
    line-height: 1.8;
}

@media (max-width: 767px) {
    .evidence-section p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* ===============================
   SECTION 10: MONEY BACK GUARANTEE
   =============================== */

.guarantee {
    padding: 60px 0;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.guarantee-image {
    width: 100%;
    max-width: 400px;
}

.guarantee-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.guarantee-text {
    width: 100%;
}

.guarantee-point {
    margin-bottom: 2rem;
}

.guarantee-point h3 {
    color: #1E40AF;
    font-size: 22px;
    margin-bottom: 1rem;
}

.guarantee-point p {
    color: #666;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .guarantee-content {
        flex-direction: row;
    }
    
    .guarantee-image {
        width: 40%;
    }
    
    .guarantee-text {
        width: 60%;
    }
}

/* ===============================
   SECTION 11: BENEFITS
   =============================== */

.benefits {
    padding: 60px 0;
    background: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: linear-gradient(135deg, #EFF6FF 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.2);
}

.benefit-icon {
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-item h3 {
    color: #1E40AF;
    font-size: 18px;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #666;
    margin: 0;
}

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

/* ===============================
   SECTION 13: FAQ
   =============================== */

.faq {
    padding: 60px 0;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: #ffffff;
    border: 2px solid #E5E7EB;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #EFF6FF 0%, #ffffff 100%);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    text-align: left;
}

.faq-question:hover {
    background: linear-gradient(135deg, #DBEAFE 0%, #EFF6FF 100%);
}

.faq-question span:first-child {
    font-weight: 600;
    color: #1E40AF;
    font-size: 16px;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    font-size: 24px;
    color: #3B82F6;
    font-weight: 600;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-answer p {
    color: #666;
    margin: 0;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .faq-question span:first-child {
        font-size: 18px;
    }
}

/* ===============================
   SECTION 16: FINAL CTA
   =============================== */

.final-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
}

.final-cta-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.final-cta-image {
    width: 100%;
    max-width: 400px;
}

.final-cta-image img {
    width: 100%;
    animation: scale 2s ease-in-out infinite;
}

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

.animate-scale {
    animation: scale 2s ease-in-out infinite;
}

.final-cta-text {
    text-align: center;
    color: #ffffff;
}

.final-cta-text h2 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 2rem;
}

.final-pricing {
    margin-bottom: 2rem;
}

.final-regular-price {
    font-size: 18px;
    margin-bottom: 0.5rem;
}

.final-regular-price span {
    text-decoration: line-through;
    color: #93C5FD;
}

.final-special-price {
    font-size: 24px;
    font-weight: 700;
}

.final-special-price span {
    font-size: 40px;
    color: #FCD34D;
}

.final-cta-text .cta-btn {
    background: #ffffff;
    color: #1E40AF;
}

.final-cta-text .cta-btn:hover {
    background: #F3F4F6;
}

.final-guarantee-text {
    font-size: 16px;
    margin-top: 1.5rem;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .final-cta-content {
        flex-direction: row;
    }
    
    .final-cta-image {
        width: 40%;
    }
    
    .final-cta-text {
        width: 60%;
        text-align: left;
    }
    
    .final-cta-text h2 {
        font-size: 36px;
    }
}

/* ===============================
   SECTION 17: FOOTER
   =============================== */

.footer {
    background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    color: #ffffff;
    padding: 40px 0 20px;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #93C5FD;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.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: all 0.3s ease;
}

.footer-social a:hover {
    background: #ffffff;
    color: #1E40AF;
    transform: translateY(-5px);
}

.footer-copyright {
    font-size: 14px;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
    .footer-links {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }
}

/* ===============================
   SCROLL TO TOP BUTTON
   =============================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    color: #ffffff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    display: flex;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.6);
}

.scroll-to-top:active {
    transform: scale(0.95);
}

/* ===============================
   PURCHASE NOTIFICATION POPUP
   =============================== */

.purchase-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 998;
    max-width: 320px;
    animation: slideInFromBottom 0.5s ease;
}

@keyframes slideInFromBottom {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.purchase-notification.show {
    display: block;
}

.notification-content {
    position: relative;
}

.notification-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #EF4444;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
}

.notification-content p {
    color: #333;
    font-size: 14px;
    margin-bottom: 0.5rem;
}

.notification-content small {
    color: #666;
    font-size: 12px;
}

@media (max-width: 767px) {
    .purchase-notification {
        left: 20px;
        right: 20px;
        max-width: calc(100% - 40px);
        bottom: 20px;
    }
}

/* ===============================
   SCROLL ANIMATIONS
   =============================== */

.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* ===============================
   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;
    }
}

/* ===============================
   PRINT STYLES
   =============================== */

@media print {
    .header,
    .footer,
    .scroll-to-top,
    .purchase-notification,
    .countdown-timer {
        display: none !important;
    }
    
    .pricing-card {
        page-break-inside: avoid;
    }
}
