:root {
    --gold: #c5a059;
    --gold-dark: #a68541;
    --deep-blue: #111827;
    --soft-bg: #f9fafb;
}

.stamp-premium {
    position: relative;
    padding: 36px 0 !important;
    background-color: var(--soft-bg);
    font-family: 'Inter', 'Segoe UI', sans-serif;
    overflow: hidden;
}

/* Background accent shape */
.bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background: #ffffff;
    z-index: 0;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.stamp-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* VISUAL SECTION */
.stamp-visual {
    position: relative;
}

.main-image-container {
    position: relative;
    z-index: 2;
}

.main-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    transition: transform 0.5s ease;
}

    .main-img:hover {
        transform: scale(1.02);
    }

/* Floating Badge */
.stats-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: #79ad70;
    
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.badge-text strong {
    display: block;
    font-size: 20px;
    color: var(--deep-blue);
}

.badge-text span {
    font-size: 13px;
    color: #6b7280;
}

/* CONTENT SECTION */
.tagline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

    .tagline .line {
        width: 30px;
        height: 2px;
        background: #79ad70;
    }

    .tagline .text {
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #79ad70;
    }

.title {
    font-size: 48px;
    font-weight: 900;
    color: var(--deep-blue);
    line-height: 1.1;
    margin-bottom: 25px;
}

.highlight {
    color: #79ad70;
    font-weight: 400;
    font-family: serif;
    font-style: italic;
}

.lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 35px;
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

    .feature-item:hover {
        border-color: #79ad70;
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

.f-icon {
    color: #79ad70;
    font-size: 18px;
}

.f-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--deep-blue);
}

/* Footer area */
.stamp-footer {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.support-box {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
}

.cta-btn {
    display: inline-block;
    width: fit-content;
    background: #1f1e5a;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

    .cta-btn:hover {
        background: #79ad70;
        transform: translateX(10px);
    }

/* Responsive */
@media (max-width: 992px) {
    .stamp-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .bg-shape {
        display: none;
    }

    .title {
        font-size: 36px;
    }

    .stats-badge {
        right: 10px;
    }
}
