:root {
    --primary-green: #0ebd52;
    --primary-dark: #098e3c;
    --gold: #f59e0b;
    --gold-light: #fef3c7;
    --bg-color: #fafafa;
    --text-dark: #1f2937;
    --text-light: #4b5563;
    --white: #ffffff;
    --danger: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Base Top Bar */
.top-bar {
    background: linear-gradient(90deg, #1f2937 0%, #000000 100%);
    color: var(--gold);
    text-align: center;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: slideDown 0.5s ease-out;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Container */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Header */
.header-section {
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

.header-section h1 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
}

/* Image Section */
.image-section {
    width: 100%;
}

.image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background-color: var(--white);
    border: 3px solid var(--gold);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Benefits */
.benefits-section {
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.benefits-list .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(14, 189, 82, 0.3);
}

/* Bonus Block */
.bonus-section {
    animation: fadeIn 1s ease-out;
}

.bonus-box {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    color: var(--white);
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.bonus-header {
    background: var(--gold);
    color: #111827;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.bonus-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
}

.bonus-box p {
    font-size: 15px;
    color: #e5e7eb;
}

/* Offer and Buttons */
.offer-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.urgency-triggers {
    text-align: center;
    background: var(--gold-light);
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 12px 16px;
}

.urgency-triggers p {
    font-size: 14px;
    font-weight: 700;
    color: #b45309;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    line-height: 1.3;
}

.offer-box {
    background: var(--white);
    padding: 32px 20px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 2px solid var(--primary-green);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-tag {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-green);
    color: var(--white);
    padding: 6px 0;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-container {
    margin-top: 10px;
    margin-bottom: 20px;
}

.old-price {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.new-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.new-price span {
    font-size: 46px;
    font-weight: 800;
    color: var(--primary-green);
    display: block;
    line-height: 1;
    margin-top: 4px;
}

/* Buttons */
.cta-button {
    width: 100%;
    background: linear-gradient(180deg, #11cd5e 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 20px;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(9, 142, 60, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    animation: pulse 2s infinite;
}

.cta-button:active {
    transform: translateY(2px);
    box-shadow: 0 4px 10px rgba(9, 142, 60, 0.3);
}

.refuse-button {
    width: 100%;
    background: transparent;
    color: var(--text-light);
    border: none;
    padding: 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s ease;
    text-align: center;
}

.refuse-button:hover {
    color: var(--text-dark);
}

/* Security Elements */
.security-section {
    display: flex;
    justify-content: space-between;
    background: var(--white);
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.security-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
}

.security-icon {
    font-size: 20px;
}

/* Animations */
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

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

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 10px 20px rgba(9, 142, 60, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 15px 25px rgba(9, 142, 60, 0.4); }
    100% { transform: scale(1); box-shadow: 0 10px 20px rgba(9, 142, 60, 0.3); }
}

/* Desktop Responsiveness */
@media (min-width: 768px) {
    .container {
        padding: 40px 20px;
    }
    
    .header-section h1 {
        font-size: 34px;
    }
}
