.gold-gradient-text {
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-brand-green { color: #132f2a; }
.text-brand-gold { color: #d4af37; }
.bg-brand-green { background-color: #132f2a; }
.bg-brand-lightgreen { background-color: #234b43; }
.bg-brand-lightgold { background-color: #f9f1d8; }
.border-brand-gold { border-color: #d4af37; }

.hero-shell {
    background:
        radial-gradient(circle at top right, rgba(212,175,55,0.18), transparent 28%),
        linear-gradient(135deg, #0d221f 0%, #16362f 45%, #0d221f 100%);
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

.glass-offer {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
}

.save-badge {
    background: linear-gradient(180deg, #fff3c4 0%, #d4af37 100%);
    color: #132f2a;
    border-radius: 24px;
    padding: 12px 18px;
    min-width: 130px;
    box-shadow: 0 14px 28px rgba(212,175,55,0.28);
}

.mini-proof {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 12px 14px;
    border-radius: 18px;
}

.mini-proof i {
    color: #d4af37;
}

.stat-card {
    background: #fff;
    border: 1px solid #eee7cf;
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.stat-card strong {
    display: block;
    font-size: 1.6rem;
    color: #132f2a;
    margin-bottom: 8px;
}

.stat-card span {
    color: #6b7280;
    font-size: 0.95rem;
}

.feature-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.media-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.media-card-head {
    font-weight: 800;
    color: #132f2a;
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.promo-strip {
    background: linear-gradient(135deg, #132f2a 0%, #234b43 100%);
    border-radius: 32px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    justify-content: space-between;
    box-shadow: 0 22px 50px rgba(19,47,42,0.25);
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 18px;
    font-weight: 800;
    background: #25D366;
    color: white;
    text-decoration: none;
}

.testimonial-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #eee;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.floating-product {
    animation: floaty 4s ease-in-out infinite;
}

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

.feedback-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.feedback-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (min-width: 768px) {
    .promo-strip {
        flex-direction: row;
        align-items: center;
    }
}
