/* ===================================
   VOLCA BURN - BOLD & ENERGETIC DESIGN
   Mobile-First Responsive Stylesheet
   =================================== */

/* ===================================
   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: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #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;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
.section-title {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-weight: 500;
}

.left-align {
    text-align: left;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    min-height: 48px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
    min-height: 56px;
}

.btn-block {
    width: 100%;
}

.btn-icon {
    font-size: 22px;
}

@media (max-width: 768px) {
    .btn {
        width: 100%;
        padding: 16px 24px;
    }

    .btn-large {
        padding: 18px 32px;
        font-size: 16px;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(100px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1) translateY(0);
    }
}

@keyframes slide-in-right {
    0% {
        opacity: 0;
        transform: translateX(-80px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-left {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-right {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoom-in {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes flip-in {
    0% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    100% {
        opacity: 1;
        transform: rotateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

@keyframes rotate-scale {
    0% {
        opacity: 0;
        transform: rotate(-10deg) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

.bounce-in {
    animation: bounce-in 1s ease-out;
}

.slide-in-right {
    animation: slide-in-right 0.8s ease-out;
}

.slide-left {
    animation: slide-left 0.8s ease-out;
}

.slide-right {
    animation: slide-right 0.8s ease-out;
}

.fade-in-up {
    animation: fade-in-up 0.8s ease-out;
}

.fade-in-up.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.zoom-in {
    animation: zoom-in 0.6s ease-out;
}

.zoom-in.delay-1 {
    animation-delay: 0.15s;
}

.zoom-in.delay-2 {
    animation-delay: 0.3s;
}

.zoom-in.delay-3 {
    animation-delay: 0.45s;
}

.flip-in {
    animation: flip-in 0.8s ease-out;
}

.flip-in.delay-1 {
    animation-delay: 0.2s;
}

.flip-in.delay-2 {
    animation-delay: 0.4s;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.shake-animation {
    animation: shake 1s ease-in-out infinite;
}

.rotate-scale {
    animation: rotate-scale 1s ease-out;
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-icon {
    font-size: 32px;
    animation: pulse 2s ease-in-out infinite;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.nav-links a:not(.cta-btn):hover {
    color: #EF4444;
}

.nav-links a:not(.cta-btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #EF4444, #F59E0B);
    transition: width 0.3s ease;
}

.nav-links a:not(.cta-btn):hover::after {
    width: 100%;
}

.nav-links .cta-btn {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 6px;
    min-height: 44px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.nav-links .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }

    .logo {
        font-size: 22px;
    }

    .logo-icon {
        font-size: 28px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        max-width: 85%;
        height: calc(100vh - 70px);
        background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
        gap: 25px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #FFF7ED 0%, #FED7AA 50%, #FEF3C7 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.3;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #EF4444, #DC2626);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: -100px;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    bottom: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #10B981, #059669);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    top: 50%;
    right: -50px;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image {
    position: relative;
    text-align: center;
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10B981, #059669);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    letter-spacing: 1px;
}

.product-image {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #EF4444;
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: #EF4444;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
}

.hero-content {
    padding: 20px 0;
}

.hero-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.highlight-text {
    background: linear-gradient(135deg, #EF4444, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(16px, 2.5vw, 18px);
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.trust-indicators {
    display: flex;
    gap: 25px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #333;
    font-weight: 600;
}

.trust-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 110px 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

    .product-image {
        max-width: 320px;
    }

    .product-badge {
        font-size: 12px;
        padding: 10px 20px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-item {
        padding: 12px 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .trust-indicators {
        justify-content: center;
        gap: 15px;
    }
}

/* ===================================
   WHY CHOOSE SECTION
   =================================== */
.why-choose-section {
    padding: 80px 0;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #EF4444, #F59E0B, #10B981);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.2);
    border-color: #EF4444;
}

.feature-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
}

.feature-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card {
        padding: 35px 25px;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   WHAT IS SECTION
   =================================== */
.what-is-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FEF3C7 0%, #FED7AA 100%);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.support-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid #ffffff;
}

@media (max-width: 768px) {
    .what-is-section {
        padding: 60px 0;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-block {
        order: -1;
    }
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */
.how-it-works-section {
    padding: 80px 0;
    background: #ffffff;
}

.accordion-wrapper {
    max-width: 900px;
    margin: 50px auto 0;
}

.accordion-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.accordion-item:hover {
    border-color: #EF4444;
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.15);
}

.accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 80px;
}

.accordion-btn:hover {
    background: linear-gradient(135deg, #FFF7ED 0%, #FED7AA 100%);
}

.accordion-number {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #EF4444, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 50px;
}

.accordion-title {
    flex: 1;
    font-size: 19px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: left;
    text-transform: uppercase;
}

.accordion-icon {
    font-size: 32px;
    font-weight: 300;
    color: #EF4444;
    transition: transform 0.3s ease;
    min-width: 32px;
    text-align: center;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-panel {
    max-height: 500px;
}

.accordion-panel p {
    padding: 25px 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 60px 0;
    }

    .accordion-btn {
        padding: 20px;
        gap: 15px;
        min-height: 70px;
    }

    .accordion-number {
        font-size: 24px;
        min-width: 40px;
    }

    .accordion-title {
        font-size: 16px;
    }

    .accordion-icon {
        font-size: 28px;
    }

    .accordion-panel p {
        padding: 20px;
        font-size: 15px;
    }
}

/* ===================================
   REVIEWS SECTION
   =================================== */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 3px solid transparent;
}

.review-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 15px 45px rgba(239, 68, 68, 0.2);
    border-color: #EF4444;
}

.review-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.reviewer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #EF4444;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.reviewer-details h4 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.reviewer-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.stars-rating {
    color: #F59E0B;
    font-size: 20px;
    letter-spacing: 3px;
}

.review-body {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    position: relative;
}

.review-body::before {
    content: '"';
    font-size: 60px;
    color: #EF4444;
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .review-card {
        padding: 30px;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
}

.pricing-section .section-title {
    color: #ffffff;
}

.pricing-section .section-subtitle {
    color: #cccccc;
}

.countdown-container {
    text-align: center;
    margin: 40px 0;
}

.countdown-label {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-timer {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #EF4444, #DC2626);
    padding: 25px 45px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.4);
}

.timer-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.timer-value {
    font-size: 52px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.timer-text {
    font-size: 12px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 8px;
    letter-spacing: 2px;
}

.timer-colon {
    font-size: 52px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid transparent;
}

.price-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(239, 68, 68, 0.3);
}

.price-card.popular-card {
    border-color: #EF4444;
    background: linear-gradient(135deg, #FFF7ED 0%, #ffffff 100%);
    transform: scale(1.05);
}

.price-card.popular-card:hover {
    transform: scale(1.08) translateY(-15px);
}

.popular-tag {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-header {
    text-align: center;
    margin-bottom: 15px;
}

.price-label {
    font-size: 14px;
    font-weight: 800;
    color: #EF4444;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.package-name {
    text-align: center;
    font-size: 26px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.package-duration {
    text-align: center;
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
    font-weight: 600;
}

.package-img {
    text-align: center;
    margin: 30px 0;
}

.package-img img {
    max-width: 220px;
    margin: 0 auto;
}

.price-details {
    text-align: center;
    margin: 30px 0;
}

.unit-price {
    font-size: 40px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.per-text {
    font-size: 16px;
    font-weight: 400;
    color: #666;
}

.total-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 18px 0;
}

.old-total {
    font-size: 28px;
    color: #999;
    text-decoration: line-through;
    font-weight: 600;
}

.new-total {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #EF4444, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-tags {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.bonus-tag {
    background: linear-gradient(135deg, #10B981, #059669);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-methods {
    text-align: center;
    margin-top: 25px;
    opacity: 0.8;
}

.payment-methods img {
    max-width: 220px;
    margin: 0 auto;
}

.rating-display {
    text-align: center;
    margin-top: 50px;
}

.rating-stars {
    max-width: 320px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }

    .countdown-timer {
        padding: 20px 35px;
        gap: 12px;
    }

    .timer-segment {
        padding: 12px 20px;
    }

    .timer-value {
        font-size: 42px;
    }

    .timer-colon {
        font-size: 42px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .price-card.popular-card {
        transform: scale(1);
    }

    .price-card.popular-card:hover {
        transform: translateY(-15px);
    }

    .package-img img {
        max-width: 200px;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   INGREDIENTS SECTION
   =================================== */
.ingredients-section {
    padding: 80px 0;
    background: #ffffff;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.ingredient-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #EF4444;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.ingredient-box:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.15);
    border-left-width: 8px;
}

.ingredient-box h3 {
    font-size: 21px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ingredient-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

@media (max-width: 768px) {
    .ingredients-section {
        padding: 60px 0;
    }

    .ingredients-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   SCIENTIFIC EVIDENCE SECTION
   =================================== */
.scientific-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FEF3C7 0%, #FED7AA 100%);
}

.evidence-wrapper {
    max-width: 900px;
    margin: 50px auto 0;
}

.evidence-block {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.evidence-block:hover {
    border-color: #F59E0B;
}

.evidence-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 20px;
    min-height: 70px;
}

.evidence-toggle:hover {
    background: #FFF7ED;
}

.evidence-toggle span:first-child {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
    text-transform: uppercase;
}

.toggle-symbol {
    font-size: 28px;
    color: #F59E0B;
    transition: transform 0.3s ease;
    min-width: 28px;
}

.evidence-block.active .toggle-symbol {
    transform: rotate(45deg);
}

.evidence-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.evidence-block.active .evidence-details {
    max-height: 600px;
}

.evidence-details p {
    padding: 25px 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

@media (max-width: 768px) {
    .scientific-section {
        padding: 60px 0;
    }

    .evidence-toggle {
        padding: 20px;
        min-height: 60px;
    }

    .evidence-toggle span:first-child {
        font-size: 16px;
    }

    .evidence-details p {
        padding: 20px;
        font-size: 15px;
    }
}

/* ===================================
   GUARANTEE SECTION
   =================================== */
.guarantee-section {
    padding: 80px 0;
    background: #ffffff;
}

.guarantee-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.guarantee-img img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.guarantee-list {
    margin-top: 30px;
}

.guarantee-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.guarantee-checkmark {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.guarantee-content h3 {
    font-size: 21px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.guarantee-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

@media (max-width: 768px) {
    .guarantee-section {
        padding: 60px 0;
    }

    .guarantee-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .guarantee-img {
        text-align: center;
    }
}

/* ===================================
   BENEFITS SECTION
   =================================== */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-box {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(239, 68, 68, 0.15);
    border-color: #EF4444;
}

.benefit-emoji {
    font-size: 48px;
    min-width: 60px;
}

.benefit-content h3 {
    font-size: 19px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.benefit-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 60px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .benefit-box {
        padding: 30px;
    }
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-wrapper {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-box {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-box:hover {
    box-shadow: 0 10px 35px rgba(239, 68, 68, 0.15);
    border-color: #EF4444;
}

.faq-question-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 20px;
    min-height: 70px;
}

.faq-question-btn:hover {
    background: linear-gradient(135deg, #FFF7ED 0%, #ffffff 100%);
}

.faq-q {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
    text-transform: uppercase;
}

.faq-plus {
    font-size: 32px;
    font-weight: 300;
    color: #EF4444;
    transition: transform 0.3s ease;
    min-width: 32px;
    text-align: center;
}

.faq-box.active .faq-plus {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-box.active .faq-answer {
    max-height: 700px;
}

.faq-answer p {
    padding: 25px 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-question-btn {
        padding: 20px;
        min-height: 60px;
    }

    .faq-q {
        font-size: 16px;
    }

    .faq-plus {
        font-size: 28px;
    }

    .faq-answer p {
        padding: 20px;
        font-size: 15px;
    }
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 50%, #F59E0B 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 50 L50 0 L100 50 L50 100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.final-cta-wrapper {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-image {
    margin-bottom: 40px;
}

.final-cta-image img {
    max-width: 420px;
    margin: 0 auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
}

.final-cta-heading {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 35px;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.final-price-box {
    margin: 35px 0;
}

.regular-rate {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    font-weight: 600;
}

.strike-price {
    text-decoration: line-through;
    font-weight: 700;
}

.special-rate {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
}

.highlight-price {
    background: rgba(255, 255, 255, 0.25);
    padding: 12px 35px;
    border-radius: 50px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.final-cta-wrapper .btn-primary {
    background: #ffffff;
    color: #EF4444;
    margin: 35px 0;
}

.final-cta-wrapper .btn-primary:hover {
    background: #f8f8f8;
    transform: translateY(-5px) scale(1.05);
}

.final-guarantees {
    margin-top: 35px;
}

.final-guarantees p {
    color: #ffffff;
    font-size: 17px;
    margin: 12px 0;
    font-weight: 600;
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 70px 0;
    }

    .final-cta-image img {
        max-width: 320px;
    }

    .special-rate {
        font-size: 30px;
    }
}

/* ===================================
   FOOTER SECTION
   =================================== */
.footer-section {
    padding: 60px 0 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #ffffff;
}

.footer-wrapper {
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.footer-nav a {
    color: #cccccc;
    font-size: 15px;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-nav a:hover {
    color: #EF4444;
}

.divider {
    color: #666666;
}

.footer-notice {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-notice p {
    font-size: 13px;
    line-height: 1.8;
    color: #cccccc;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 35px 0;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #EF4444;
    transform: translateY(-5px) rotate(10deg);
}

.copyright-text {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text p {
    font-size: 14px;
    color: #999999;
    font-weight: 500;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 45px 0 25px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 18px;
    }

    .divider {
        display: none;
    }

    .footer-notice {
        padding: 25px;
    }
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(239, 68, 68, 0.6);
}

@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 25px;
        right: 25px;
    }
}

/* ===================================
   PURCHASE NOTIFICATION POPUP
   =================================== */
.purchase-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 380px;
    transform: translateX(-450px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    border: 2px solid #EF4444;
}

.purchase-popup.show {
    transform: translateX(0);
}

.popup-inner {
    display: flex;
    align-items: center;
    gap: 18px;
}

.popup-emoji {
    font-size: 36px;
}

.popup-info {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.popup-info strong {
    display: block;
    color: #EF4444;
    font-weight: 800;
    margin-bottom: 5px;
    font-size: 15px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .purchase-popup {
        bottom: 90px;
        left: 20px;
        right: 20px;
        max-width: calc(100% - 40px);
    }
}