* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 0, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.hero-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-logo-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.3));
    animation: glow-logo 2s ease-in-out infinite alternate;
}

.hero-logo-mobile {
    display: none;
    text-align: center;
}

.hero-logo-desktop {
    display: block;
    text-align: center;
}

@keyframes glow-logo {
    from {
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.3));
    }

    to {
        filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.6));
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* Selling Point Sections */
.selling-point {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.selling-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 0, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.selling-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.selling-icon {
    font-size: clamp(8rem, 15vw, 12rem);
    text-align: center;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.3));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.selling-text h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 2rem;
    line-height: 1.1;
    animation: glow 2s ease-in-out infinite alternate;
}

.selling-text p {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.95;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* Buttons */
.cta-button,
.cta-button-large {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 20;
}

.cta-button-large {
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
}

.cta-button:hover,
.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
    position: relative;
    padding: 8rem 0;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.cta-text {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 300;
}

.price {
    margin: 3rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    display: inline-block;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.2);
}

.price-label {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.price-amount {
    font-size: 5rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.guarantee {
    margin-top: 3rem;
    opacity: 0.8;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: 90vh;
        padding: 2rem 0;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin: 2rem 0;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .selling-point {
        padding: 3rem 0;
    }

    .selling-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .selling-icon {
        font-size: clamp(4rem, 15vw, 6rem);
    }

    .selling-text h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .selling-text p {
        font-size: clamp(1rem, 3.5vw, 1.2rem);
        line-height: 1.4;
    }

    .final-cta {
        padding: 4rem 0;
    }

    .final-cta h2 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1.5rem;
    }

    .cta-text {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .price {
        margin: 2rem 0;
        padding: 2rem 1.5rem;
    }

    .price-label {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .price-amount {
        font-size: 3rem;
    }

    .cta-button-large {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
        margin: 2rem auto;
    }

    .guarantee {
        margin-top: 2rem;
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-logo-image {
        width: 100%;
        max-width: none;
        margin-bottom: 1rem;
    }

    .hero-logo-desktop {
        display: none;
    }

    .hero-logo-mobile {
        display: block;
    }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .hero {
        min-height: 85vh;
        padding: 1.5rem 0;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin: 1.5rem 0;
        line-height: 1.3;
    }

    .hero-stats {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .selling-point {
        padding: 2.5rem 0;
    }

    .selling-content {
        gap: 1.5rem;
    }

    .selling-icon {
        font-size: clamp(3.5rem, 18vw, 5rem);
    }

    .selling-text h2 {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 0.8rem;
        line-height: 1.1;
    }

    .selling-text p {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        line-height: 1.3;
    }

    .final-cta {
        padding: 3rem 0;
    }

    .final-cta h2 {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
        margin-bottom: 1rem;
        line-height: 1.1;
    }

    .cta-text {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }

    .price {
        margin: 1.5rem auto;
        padding: 1.5rem 1rem;
        max-width: 280px;
    }

    .price-label {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .cta-button-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        margin: 1.5rem auto;
        max-width: 280px;
        width: 100%;
    }

    .guarantee {
        margin-top: 1.5rem;
        font-size: 0.9rem;
        line-height: 1.3;
        padding: 0 0.5rem;
    }
}

/* Small Mobile (375px and below) */
@media (max-width: 375px) {
    .container {
        padding: 0 8px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin: 1rem 0;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .selling-point {
        padding: 2rem 0;
    }

    .selling-icon {
        font-size: clamp(3rem, 20vw, 4.5rem);
    }

    .selling-text h2 {
        font-size: clamp(1.3rem, 8vw, 1.8rem);
    }

    .selling-text p {
        font-size: clamp(0.85rem, 4.5vw, 1rem);
    }

    .price {
        padding: 1.2rem 0.8rem;
        max-width: 260px;
    }

    .price-amount {
        font-size: 2.2rem;
    }

    .cta-button-large {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        max-width: 260px;
    }

    .guarantee {
        font-size: 0.85rem;
    }
}