/* ============================================
   SIMPLE MALE ENHANCEMENT GUMMIES - STYLES.CSS
   Modern Gradient Design Theme
   Mobile-First Responsive Design
   ============================================ */

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

ul {
    list-style: none;
}

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

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.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.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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;
    }
}

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

.btn-primary {
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

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

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

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
    min-height: 40px;
}

@media (min-width: 768px) {
    .btn {
        padding: 16px 32px;
        font-size: 18px;
    }
    
    .btn-large {
        padding: 20px 50px;
        font-size: 20px;
    }
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 40px 0;
}

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

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

.section-title {
    text-align: center;
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    margin: 15px auto 0;
    border-radius: 2px;
}

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

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

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.navbar-brand .logo {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 30px;
    justify-content: center;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #4F46E5;
    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);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

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

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4F46E5;
}

.nav-cta {
    width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        box-shadow: none;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 30px;
    }
    
    .nav-links {
        flex-direction: row;
        margin-bottom: 0;
        gap: 30px;
    }
    
    .nav-link {
        border-bottom: none;
        padding: 0;
    }
    
    .nav-cta {
        width: auto;
    }
    
    .navbar-brand .logo {
        font-size: 24px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding-top: 80px;
    background: linear-gradient(135deg, #f5f7ff 0%, #e0f2fe 100%);
    overflow: hidden;
}

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

.hero-image {
    width: 100%;
    max-width: 400px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(79, 70, 229, 0.2));
}

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

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

.hero-text {
    width: 100%;
}

.hero-title {
    color: #1a1a1a;
    margin-bottom: 20px;
}

.hero-description {
    color: #555;
    margin-bottom: 15px;
    font-size: 16px;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

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

@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        gap: 50px;
    }
    
    .hero-image {
        width: 45%;
        max-width: none;
    }
    
    .hero-text {
        width: 55%;
    }
    
    .hero-trust {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .trust-item {
        font-size: 15px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 100px;
    }
    
    .hero-badge {
        font-size: 14px;
        padding: 10px 20px;
    }
}

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

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

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

.animate-slide-up {
    animation: slide-up 0.8s ease-out;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fade-in 1s ease-out;
}

.animate-fade-in:nth-of-type(2) {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.animate-fade-in:nth-of-type(3) {
    animation-delay: 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

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

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

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose {
    background: #ffffff;
}

.badges-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.badge-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.badge-card.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.badge-card:nth-child(1) {
    animation-delay: 0.1s;
}

.badge-card:nth-child(2) {
    animation-delay: 0.2s;
}

.badge-card:nth-child(3) {
    animation-delay: 0.3s;
}

.badge-card:nth-child(4) {
    animation-delay: 0.4s;
}

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

.badge-card:hover {
    transform: translateY(-10px) rotate(2deg) scale(1.05);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.2);
}

.badge-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

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

.badge-title {
    font-size: 18px;
    color: #4F46E5;
    margin-bottom: 15px;
    font-weight: 700;
}

.badge-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

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

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

/* ============================================
   WHAT IS SECTION
   ============================================ */
.what-is {
    background: linear-gradient(135deg, #f5f7ff 0%, #e0f2fe 100%);
}

.content-split {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.content-text {
    width: 100%;
}

.content-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 16px;
}

.content-image {
    width: 100%;
}

.content-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    background: #ffffff;
}

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

.accordion-item {
    background: #ffffff;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
}

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

.accordion-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.accordion-title {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.accordion-icon {
    font-size: 28px;
    color: #4F46E5;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

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

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

.accordion-content p {
    padding: 0 20px 20px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .accordion-header {
        padding: 25px;
    }
    
    .accordion-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .accordion-title {
        font-size: 18px;
    }
    
    .accordion-content p {
        padding: 0 25px 25px;
        font-size: 16px;
    }
}

/* ============================================
   CUSTOMER REVIEWS SECTION
   ============================================ */
.reviews {
    background: linear-gradient(135deg, #f5f7ff 0%, #e0f2fe 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.review-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.review-card.review-animate {
    animation: review-appear 0.6s ease-out forwards;
}

.review-card:nth-child(1) {
    animation-delay: 0.1s;
}

.review-card:nth-child(2) {
    animation-delay: 0.2s;
}

.review-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes review-appear {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.15);
}

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

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

.review-info {
    flex: 1;
}

.review-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.review-location {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

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

.review-text {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    font-style: italic;
}

@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-text {
        font-size: 15px;
    }
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    background: #ffffff;
}

.countdown-timer {
    max-width: 500px;
    margin: 0 auto 40px;
    text-align: center;
}

.timer-label {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 600;
}

.timer-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(239, 68, 68, 0.3);
}

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

.timer-number {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.timer-text {
    font-size: 12px;
    color: #ffffff;
    text-transform: uppercase;
    margin-top: 5px;
}

.timer-separator {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

@media (min-width: 768px) {
    .timer-label {
        font-size: 18px;
    }
    
    .timer-number {
        font-size: 48px;
    }
    
    .timer-text {
        font-size: 14px;
    }
    
    .timer-separator {
        font-size: 48px;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.2);
}

.pricing-featured {
    border-color: #4F46E5;
    background: linear-gradient(135deg, #f5f7ff 0%, #e0f2fe 100%);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.pricing-label {
    font-size: 14px;
    font-weight: 700;
    color: #4F46E5;
    margin-bottom: 10px;
}

.pricing-bottles {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.pricing-supply {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.pricing-image {
    margin: 20px 0;
}

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

.pricing-price {
    margin: 20px 0;
}

.pricing-amount {
    font-size: 42px;
    font-weight: 700;
    color: #4F46E5;
    display: block;
}

.pricing-per {
    font-size: 14px;
    color: #666;
}

.pricing-total {
    margin: 15px 0;
}

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

.pricing-new {
    font-size: 28px;
    font-weight: 700;
    color: #10B981;
}

.pricing-bonuses {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.bonus-tag {
    background: #10B981;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.btn-pricing {
    width: 100%;
    margin: 20px 0;
}

.pricing-payment {
    margin-top: 20px;
}

.pricing-payment img {
    max-width: 200px;
    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);
        gap: 30px;
    }
}

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

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

.rating-text {
    font-size: 14px;
    color: #666;
}

/* ============================================
   INGREDIENTS SECTION
   ============================================ */
.ingredients {
    background: linear-gradient(135deg, #f5f7ff 0%, #e0f2fe 100%);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.ingredient-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(79, 70, 229, 0.15);
}

.ingredient-name {
    font-size: 18px;
    color: #4F46E5;
    margin-bottom: 10px;
    font-weight: 700;
}

.ingredient-description {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .ingredient-description {
        font-size: 15px;
    }
}

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

/* ============================================
   SCIENTIFIC EVIDENCE SECTION
   ============================================ */
.scientific {
    background: #ffffff;
}

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

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

.scientific-intro p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.evidence-accordion .evidence-item {
    background: #ffffff;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.evidence-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 15px;
    min-height: 44px;
}

.evidence-header:hover {
    background: #f5f7ff;
}

.evidence-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.evidence-icon {
    font-size: 28px;
    color: #4F46E5;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.evidence-item.active .evidence-icon {
    transform: rotate(45deg);
}

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

.evidence-item.active .evidence-content {
    max-height: 1000px;
}

.evidence-content p {
    padding: 0 20px 20px;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .evidence-header {
        padding: 25px;
    }
    
    .evidence-title {
        font-size: 18px;
    }
    
    .evidence-content p {
        padding: 0 25px 25px;
        font-size: 15px;
    }
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */
.guarantee {
    background: linear-gradient(135deg, #f5f7ff 0%, #e0f2fe 100%);
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.guarantee-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.guarantee-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.guarantee-text {
    width: 100%;
}

.guarantee-item {
    margin-bottom: 30px;
}

.guarantee-subtitle {
    font-size: 20px;
    color: #4F46E5;
    margin-bottom: 10px;
    font-weight: 700;
}

.guarantee-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .guarantee-content {
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }
    
    .guarantee-image {
        width: 35%;
    }
    
    .guarantee-text {
        width: 65%;
    }
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits {
    background: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(79, 70, 229, 0.15);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-text {
    flex: 1;
}

.benefit-title {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-weight: 700;
}

.benefit-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

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

@media (min-width: 1024px) {
    .benefits-grid {
        gap: 30px;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    background: linear-gradient(135deg, #f5f7ff 0%, #e0f2fe 100%);
}

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

.faq-item {
    background: #ffffff;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 15px;
    min-height: 44px;
}

.faq-header:hover {
    background: #f5f7ff;
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.faq-icon {
    font-size: 28px;
    color: #4F46E5;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-content {
    max-height: 1500px;
}

.faq-content p {
    padding: 0 20px 20px;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .faq-header {
        padding: 25px;
    }
    
    .faq-question {
        font-size: 18px;
    }
    
    .faq-content p {
        padding: 0 25px 25px;
        font-size: 15px;
    }
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: #ffffff;
}

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

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

.final-cta-image img {
    width: 100%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.final-cta-text {
    width: 100%;
    text-align: center;
}

.final-cta-title {
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 30px;
}

.final-cta-pricing {
    margin-bottom: 30px;
}

.final-price-old {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.final-price-old span {
    text-decoration: line-through;
    font-size: 22px;
}

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

.final-price-new span {
    font-size: 42px;
    display: block;
    color: #FDE047;
}

.final-cta-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 10px;
}

.feature-item .icon {
    color: #FDE047;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .final-cta-content {
        flex-direction: row;
        gap: 50px;
    }
    
    .final-cta-image {
        width: 40%;
    }
    
    .final-cta-text {
        width: 60%;
        text-align: left;
    }
    
    .final-cta-title {
        font-size: 32px;
    }
    
    .final-cta-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-item {
        font-size: 15px;
    }
}

@media (min-width: 1024px) {
    .final-cta-title {
        font-size: 38px;
    }
}

/* Final CTA Animations */
@keyframes scale-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column {
    width: 100%;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #06B6D4;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    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;
}

.social-icon:hover {
    background: #06B6D4;
    transform: translateY(-3px);
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 12px;
    color: #ccc;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-column {
        width: auto;
    }
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 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(79, 70, 229, 0.4);
}

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

/* ============================================
   POPUP
   ============================================ */
.popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: bottom 0.4s ease;
}

.popup.active {
    bottom: 0;
}

.popup-content {
    background: #ffffff;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #000;
}

.popup-body {
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.popup-image {
    width: 80px;
    flex-shrink: 0;
}

.popup-image img {
    width: 100%;
    border-radius: 10px;
}

.popup-text {
    flex: 1;
}

.popup-title {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-weight: 700;
}

.popup-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.popup-cta {
    width: 100%;
}

@media (min-width: 768px) {
    .popup {
        bottom: auto;
        top: 50%;
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0;
        transition: all 0.4s ease;
    }
    
    .popup.active {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    
    .popup-content {
        border-radius: 20px;
        max-width: 450px;
    }
}

/* ============================================
   PURCHASE NOTIFICATION
   ============================================ */
.purchase-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 350px;
    background: #ffffff;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    transform: translateX(-400px);
    transition: transform 0.4s ease;
    z-index: 998;
}

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

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

.notification-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
    font-size: 13px;
    color: #333;
}

.notification-time {
    font-size: 11px;
    color: #999;
    margin-top: 3px;
}

@media (max-width: 576px) {
    .purchase-notification {
        left: 15px;
        right: 15px;
        max-width: none;
        bottom: 15px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-0 {
    margin-top: 0;
}

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

/* ============================================
   LOADING OPTIMIZATION
   ============================================ */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .header,
    .popup,
    .purchase-notification,
    .scroll-to-top,
    .hamburger {
        display: none !important;
    }
    
    body {
        background: #ffffff;
    }
    
    * {
        box-shadow: none !important;
    }
}
