:root {
    --primary-red: #FF0000;
    --highlight-yellow: #FFFF00;
    --trust-blue: #0000CC;
    --text-black: #111111;
    --bg-gray: #f5f5f5;
    --white: #FFFFFF;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--bg-gray);
    color: var(--text-black);
    overflow-x: hidden;
}

/* Utilities */
.impact-text {
    font-family: 'Impact', sans-serif;
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

/* Header */
.sticky-header {
    background-color: var(--trust-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid var(--highlight-yellow);
}

.logo {
    font-family: 'Impact', sans-serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--highlight-yellow);
    text-shadow: 2px 2px 0 #000;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.call-now {
    font-weight: bold;
    font-size: 1.2rem;
    display: none;
    /* Hidden on mobile */
}

@media(min-width: 600px) {
    .call-now {
        display: block;
    }
}

.cta-button {
    background-color: var(--primary-red);
    color: var(--highlight-yellow);
    border: 3px solid var(--white);
    padding: 0.5rem 1rem;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    text-transform: uppercase;
    font-family: 'Impact', sans-serif;
    box-shadow: 3px 3px 0 #000;
    transition: transform 0.1s;
}

.cta-button:active {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 #000;
}

.big-btn {
    font-size: 2rem;
    padding: 1rem 2rem;
    width: 100%;
    max-width: 400px;
}

/* Animations */
.flash {
    animation: flash 1s infinite;
}

@keyframes flash {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.shake {
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

/* Sections */
section {
    padding: 3rem 1rem;
    text-align: center;
}

.hero-section {
    background: linear-gradient(135deg, #ff9900 0%, #ff0000 100%);
    color: white;
    padding-top: 2rem;
}

.video-placeholder {
    background-color: #000;
    color: white;
    width: 100%;
    max-width: 600px;
    height: 300px;
    margin: 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.problem-section {
    background-color: #333;
    color: white;
}

.grayscale {
    filter: grayscale(100%) contrast(150%);
}

.pain-point {
    margin-bottom: 2rem;
}

.drama-text {
    font-family: 'Impact';
    font-size: 2rem;
    color: var(--primary-red);
    margin-top: 1rem;
}

.solution-section {
    background-color: var(--white);
}

.benefit-list {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
}

.benefit-list li {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed #ccc;
}

.variant-section {
    background-color: #e0e0e0;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: white;
    padding: 1rem;
    border: 2px solid #ccc;
}

.img-placeholder {
    background-color: #ccc;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #555;
    margin-bottom: 1rem;
    border: 2px dashed #999;
}

.testimonial-section {
    background-color: var(--trust-blue);
    color: white;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
}

.order-section {
    background-color: var(--highlight-yellow);
    border-top: 5px dashed var(--text-black);
    padding-bottom: 5rem;
}

.order-form {
    background: white;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
    border: 4px solid var(--primary-red);
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.2);
}

.price-box {
    margin: 1rem 0;
    font-size: 2rem;
    font-weight: bold;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.new-price {
    color: var(--primary-red);
    font-size: 3rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    font-size: 1.1rem;
    border: 2px solid #ccc;
    box-sizing: border-box;
}

.sticky-note {
    background: #ffcc00;
    color: red;
    padding: 1rem;
    transform: rotate(-2deg);
    margin-bottom: 2rem;
    display: inline-block;
    border: 1px solid #cc9900;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

footer {
    background: #111;
    color: #666;
    padding: 2rem;
    font-size: 0.8rem;
}