* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0A0C10;
    color: #EFF3F8;
    line-height: 1.4;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ========== HEADER STYLES ========== */
.site-header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background-color: rgba(10, 12, 16, 0.96);
    backdrop-filter: blur(2px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 32px;
    color: #C0A86A;
    filter: drop-shadow(0 0 4px rgba(192, 168, 106, 0.3));
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, #FFFFFF 30%, #C0A86A 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-sub {
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 400;
    color: #C0A86A;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
}

.nav-link {
    color: #EFF3F8;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
    letter-spacing: -0.2px;
    position: relative;
    cursor: pointer;
}

.nav-link:hover {
    color: #C0A86A;
}

.nav-link.active {
    color: #C0A86A;
}

.nav-link.active:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #C0A86A;
    border-radius: 2px;
}

.client-btn {
    background: rgba(192, 168, 106, 0.12);
    border: 1px solid rgba(192, 168, 106, 0.5);
    padding: 8px 22px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    color: #F5E7C8;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(4px);
}

.client-btn i {
    font-size: 24px;
}

.client-btn:hover {
    background: #C0A86A;
    border-color: #C0A86A;
    color: #0A0C10;
    box-shadow: 0 5px 12px rgba(192, 168, 106, 0.3);
}

/* ========== HERO SECTION ========== */
.hero-section {
    padding: 70px 0 90px;
    background: radial-gradient(circle at 20% 30%, rgba(20, 24, 32, 0.9), #0A0C10 80%);
}

.hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1.1;
    min-width: 280px;
}

.hero-badge {
    display: inline-block;
    background: rgba(192, 168, 106, 0.18);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #C0A86A;
    margin-bottom: 20px;
    border: 0.5px solid rgba(192, 168, 106, 0.3);
}

.hero-left h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, #FFFFFF, #D4C094);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 18px;
    color: #B0B8C5;
    line-height: 1.5;
    margin-bottom: 36px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #C0A86A;
    border: none;
    padding: 14px 32px;
    border-radius: 46px;
    font-weight: 700;
    font-size: 16px;
    color: #0A0C10;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(192, 168, 106, 0.25);
}

.btn-primary:hover {
    background: #D9BD7A;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(192, 168, 106, 0.35);
}

.btn-secondary {
    background: transparent;
    border: 1.5px solid rgba(192, 168, 106, 0.7);
    padding: 12px 28px;
    border-radius: 46px;
    font-weight: 600;
    font-size: 16px;
    color: #F5E7C8;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(192, 168, 106, 0.1);
    border-color: #C0A86A;
    transform: translateY(-2px);
}

/* ========== RIGHT SIDE GIF SECTION ========== */
/* RIGHT SIDE GIF SECTION - EXACT FIT */
.hero-right {
    flex: 0.3;
    min-width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gif-container {
    background: transparent;
    border-radius: 16px;
    padding: 0;
    box-shadow: none;
    border: none;
    width: fit-content;
}

.hero-gif {
    width: 250px;
    height: auto;
    border-radius: 16px;
    display: block;
}

.gif-placeholder {
    width: 100%;
    max-width: 460px;
    border-radius: 28px;
    display: block;
    background: #101218;
    overflow: hidden;
}

.animated-gif-sim {
    width: 100%;
    aspect-ratio: 1 / 0.9;
    background: linear-gradient(135deg, #1A1E26, #0C0F14);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.floating-icons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
    z-index: 2;
}

.floating-icons i {
    font-size: 42px;
    color: #C0A86A;
    opacity: 0.8;
    animation: floatSoft 3s infinite ease-in-out;
    filter: drop-shadow(0 0 6px rgba(192, 168, 106, 0.5));
}

.floating-icons i:nth-child(2) {
    animation-delay: 0.4s;
    font-size: 48px;
}

.floating-icons i:nth-child(3) {
    animation-delay: 0.8s;
}

.floating-icons i:nth-child(4) {
    animation-delay: 1.2s;
}

@keyframes floatSoft {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.glow-text {
    color: #C0A86A;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 16px;
    border-radius: 40px;
    backdrop-filter: blur(4px);
    margin-top: 8px;
}

.gif-subtext {
    font-size: 12px;
    margin-top: 16px;
    color: #8E9AAB;
    font-weight: 400;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #C0A86A;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    animation: pulse 1.2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.4; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}

.shine-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 168, 106, 0.15), transparent);
    transform: skewX(-15deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 120%; }
    100% { left: 120%; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .hero-left h1 {
        font-size: 42px;
    }
    .hero-description {
        max-width: 100%;
    }
    .nav-menu {
        gap: 18px;
    }
    .container {
        padding: 0 24px;
    }
}

@media (max-width: 680px) {
    .header-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .nav-menu {
        justify-content: center;
    }
    .client-btn {
        align-self: center;
        width: fit-content;
    }
    .hero-grid {
        flex-direction: column;
    }
    .hero-left h1 {
        font-size: 36px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-left {
        text-align: center;
    }
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ========== PREMIUM TOOLS SECTION ========== */
.tools-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0A0C10 0%, #0F1117 100%);
}

.tools-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.tools-header .highlight {
    color: #C0A86A;
    position: relative;
    display: inline-block;
}

.tools-header .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #C0A86A, transparent);
}

.tools-subtitle {
    font-size: 18px;
    color: #B0B8C5;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.tool-card {
    background: rgba(18, 22, 28, 0.8);
    border: 1px solid rgba(192, 168, 106, 0.2);
    border-radius: 24px;
    padding: 28px 20px;
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(4px);
}

.tool-card:hover {
    transform: translateY(-8px);
    border-color: rgba(192, 168, 106, 0.5);
    box-shadow: 0 20px 35px -15px rgba(0, 0, 0, 0.5);
    background: rgba(22, 26, 34, 0.9);
}

.tool-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(192, 168, 106, 0.2), rgba(192, 168, 106, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.tool-icon i {
    font-size: 34px;
    color: #C0A86A;
}

.tool-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.tool-card p {
    font-size: 14px;
    color: #9AA3B3;
    line-height: 1.5;
    margin-bottom: 20px;
}

.tool-price {
    font-size: 28px;
    font-weight: 800;
    color: #C0A86A;
    margin-bottom: 20px;
}

.tool-price span {
    font-size: 14px;
    font-weight: 400;
    color: #8E9AAB;
}

.tool-btn {
    background: rgba(192, 168, 106, 0.12);
    border: 1px solid rgba(192, 168, 106, 0.4);
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    color: #C0A86A;
    cursor: pointer;
    transition: all 0.25s;
    width: 100%;
}

.tool-btn:hover {
    background: #C0A86A;
    color: #0A0C10;
    border-color: #C0A86A;
}

.tools-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.request-text {
    font-size: 16px;
    color: #B0B8C5;
    margin-bottom: 30px;
}

.request-text i {
    color: #C0A86A;
    margin-right: 8px;
}

.tools-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(192, 168, 106, 0.6);
    padding: 12px 32px;
    border-radius: 46px;
    font-weight: 600;
    font-size: 15px;
    color: #F5E7C8;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: rgba(192, 168, 106, 0.1);
    border-color: #C0A86A;
    transform: translateY(-2px);
}

.btn-request {
    background: #C0A86A;
    border: none;
    padding: 12px 32px;
    border-radius: 46px;
    font-weight: 700;
    font-size: 15px;
    color: #0A0C10;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-request:hover {
    background: #D9BD7A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(192, 168, 106, 0.3);
}

/* Responsive for tools section */
@media (max-width: 1100px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .tools-header h2 {
        font-size: 32px;
    }
    
    .tools-subtitle {
        font-size: 15px;
    }
}

/* ========== PREMIUM BUNDLES SECTION ========== */
.bundles-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0F1117 0%, #0A0C10 100%);
}

.bundles-header {
    text-align: center;
    margin-bottom: 50px;
}

.bundles-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.bundles-header .highlight {
    color: #C0A86A;
    position: relative;
    display: inline-block;
}

.bundles-subtitle {
    font-size: 18px;
    color: #B0B8C5;
    max-width: 800px;
    margin: 0 auto 25px;
}

.bundles-badge {
    display: inline-block;
    background: rgba(192, 168, 106, 0.15);
    border: 1px solid rgba(192, 168, 106, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #C0A86A;
}

.bundles-badge i {
    margin-right: 8px;
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* 3D Card Styles */
.bundle-card {
    perspective: 1500px;
    cursor: pointer;
}

.bundle-inner {
    position: relative;
    width: 100%;
    height: 380px;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border-radius: 20px;
}

.bundle-card.rotate .bundle-inner {
    transform: rotateY(180deg);
}

.bundle-front, .bundle-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 25px 20px;
    background: rgba(18, 22, 28, 0.95);
    border: 1px solid rgba(192, 168, 106, 0.25);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.bundle-front {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bundle-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    background: linear-gradient(135deg, rgba(192, 168, 106, 0.1), rgba(18, 22, 28, 0.98));
    border: 1px solid rgba(192, 168, 106, 0.4);
}

.bundle-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(192, 168, 106, 0.2), rgba(192, 168, 106, 0.05));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.bundle-icon i {
    font-size: 36px;
    color: #C0A86A;
}

.bundle-front h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.bundle-front p {
    font-size: 14px;
    color: #9AA3B3;
    line-height: 1.5;
    margin-bottom: 20px;
}

.bundle-price {
    font-size: 32px;
    font-weight: 800;
    color: #C0A86A;
    margin-bottom: 20px;
}

.bundle-price span {
    font-size: 14px;
    font-weight: 400;
    color: #8E9AAB;
}

.bundle-view-btn {
    background: transparent;
    border: 1px solid rgba(192, 168, 106, 0.4);
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: #C0A86A;
    cursor: pointer;
    transition: all 0.25s;
    width: 100%;
}

.bundle-view-btn:hover {
    background: rgba(192, 168, 106, 0.15);
    border-color: #C0A86A;
}

.bundle-back h4 {
    font-size: 18px;
    font-weight: 700;
    color: #C0A86A;
    margin-bottom: 15px;
    text-align: center;
}

.bundle-back ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.bundle-back ul li {
    padding: 6px 0;
    font-size: 13px;
    color: #EFF3F8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bundle-back ul li i {
    color: #C0A86A;
    font-size: 12px;
}

.back-save {
    text-align: center;
    background: rgba(192, 168, 106, 0.15);
    padding: 8px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #C0A86A;
}

.bundle-access-btn {
    width: 100%;
    margin-top: 15px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #C0A86A, #A8894A);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    color: #0A0C10;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bundle-access-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(192, 168, 106, 0.4);
    background: linear-gradient(135deg, #D9BD7A, #C0A86A);
}

/* Responsive */
@media (max-width: 1100px) {
    .bundles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .bundles-grid {
        grid-template-columns: 1fr;
    }
    
    .bundles-header h2 {
        font-size: 32px;
    }
    
    .bundles-subtitle {
        font-size: 15px;
    }
    
    .bundle-inner {
        height: 360px;
    }
}


/* ========== SECURE PAYMENT SECTION ========== */
.payment-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0A0C10 0%, #080A0E 100%);
}

.payment-header {
    text-align: center;
    margin-bottom: 50px;
}

.payment-badge {
    display: inline-block;
    background: rgba(192, 168, 106, 0.12);
    border: 1px solid rgba(192, 168, 106, 0.3);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #C0A86A;
}

.payment-badge i {
    margin-right: 8px;
}

.payment-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.payment-left {
    flex: 1.8;
}

.payment-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.payment-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.payment-left > p {
    font-size: 16px;
    color: #B0B8C5;
    margin-bottom: 35px;
    max-width: 90%;
}

/* ========== SECURE PAYMENT SECTION ========== */
.payment-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0A0C10 0%, #080A0E 100%);
}

.payment-header {
    text-align: center;
    margin-bottom: 50px;
}

.payment-badge {
    display: inline-block;
    background: rgba(192, 168, 106, 0.12);
    border: 1px solid rgba(192, 168, 106, 0.3);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #C0A86A;
}

.payment-badge i {
    margin-right: 8px;
}

.payment-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.payment-left {
    flex: 1.8;
}

.payment-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.payment-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #FFFFFF;
    text-align: center;
}

.payment-left > p {
    font-size: 16px;
    color: #B0B8C5;
    margin-bottom: 35px;
    max-width: 90%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Payment Methods - HORIZONTAL Boxes (3 in a row) */
.payment-methods {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.payment-method-card {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    background: rgba(18, 22, 28, 0.6);
    border: 1px solid rgba(192, 168, 106, 0.15);
    border-radius: 20px;
    padding: 25px 20px;
    transition: all 0.3s ease;
}

.payment-method-card:hover {
    border-color: rgba(192, 168, 106, 0.4);
    background: rgba(18, 22, 28, 0.9);
    transform: translateY(-5px);
}

.method-icon {
    width: 70px;
    height: 70px;
    background: rgba(192, 168, 106, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon i {
    font-size: 36px;
    color: #C0A86A;
}

.method-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.method-info p {
    font-size: 13px;
    color: #9AA3B3;
    line-height: 1.4;
}

/* Features Section - NO BOXES, just text with line below */
.payment-features {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-top: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    min-width: 200px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(192, 168, 106, 0.3);
    text-align: center;
}

.feature-icon {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}

.feature-icon i {
    font-size: 28px;
    color: #C0A86A;
}

.feature-text h4 {
    font-size: 17px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    text-align: center;
}

.feature-text p {
    font-size: 13px;
    color: #9AA3B3;
    line-height: 1.5;
    text-align: center;
}

/* Guarantee Section - Below features, full width */
/* Guarantee Section - Single line with icon - NO WRAPPING */
.payment-guarantee {
    margin-top: 30px;
    width: 100%;
}

.guarantee-box {
    background: linear-gradient(135deg, rgba(192, 168, 106, 0.12), rgba(192, 168, 106, 0.05));
    border: 1px solid rgba(192, 168, 106, 0.3);
    border-radius: 28px;
    padding: 18px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 100%;
    width: fit-content;
    margin: 0 auto;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-wrap: nowrap;
}

.guarantee-box:hover {
    transform: translateY(-3px);
    border-color: rgba(192, 168, 106, 0.6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.guarantee-box i {
    font-size: 24px;
    color: #C0A86A;
    flex-shrink: 0;
}

.guarantee-box h3 {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
    white-space: nowrap;
}

.guarantee-box p {
    font-size: 16px;
    color: #C0A86A;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
}

/* Responsive - on smaller screens, allow wrapping */
@media (max-width: 700px) {
    .guarantee-box {
        flex-wrap: wrap;
        white-space: normal;
        padding: 15px 20px;
        width: 100%;
    }
    
    .guarantee-box h3 {
        white-space: normal;
    }
    
    .guarantee-box p {
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

/* Remove old right side vertical line and guarantee box */
.payment-right {
    display: none;
}

/* Responsive */
@media (max-width: 1000px) {
    .payment-grid {
        flex-direction: column;
    }
    
    .payment-left h2 {
        font-size: 30px;
    }
    
    .payment-left > p {
        max-width: 100%;
    }
    
    .payment-methods {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .payment-method-card {
        min-width: 200px;
    }
    
    .payment-features {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .payment-methods {
        flex-direction: column;
    }
    
    .payment-method-card {
        flex-direction: row;
        text-align: left;
        align-items: center;
    }
    
    .payment-features {
        flex-direction: column;
    }
    
    .feature-item {
        border-bottom: 1px solid rgba(192, 168, 106, 0.3);
    }
    
    .guarantee-box {
        padding: 25px 20px;
    }
    
    .guarantee-box h3 {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .payment-section {
        padding: 50px 0;
    }
    
    .payment-left h2 {
        font-size: 26px;
    }
}

/* ========== WHY CHOOSE DigitalSecretSociety SECTION ========== */
.comparison-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #080A0E 0%, #0A0C10 100%);
}

.comparison-header {
    text-align: center;
    margin-bottom: 50px;
}

.comparison-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.comparison-header h2 .wave {
    display: inline-block;
    animation: wave 1s infinite;
}

@keyframes wave {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    75% { transform: rotate(-10deg); }
    100% { transform: rotate(0deg); }
}

.comparison-header p {
    font-size: 18px;
    color: #B0B8C5;
}

/* Comparison Grid - 2 boxes side by side */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.comparison-card {
    background: rgba(18, 22, 28, 0.8);
    border: 1px solid rgba(192, 168, 106, 0.2);
    border-radius: 28px;
    padding: 30px;
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    border-color: rgba(192, 168, 106, 0.4);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
}

.DigitalSecretSociety-card {
    border-top: 4px solid #C0A86A;
}

.other-card {
    border-top: 4px solid #6B6B6B;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.emoji-big {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

.card-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.subhead {
    font-size: 14px;
    color: #9AA3B3;
}

/* Graph Items */
.graph-item {
    margin-bottom: 22px;
}

.graph-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    color: #EFF3F8;
}

.graph-value {
    font-weight: 600;
    color: #C0A86A;
}

.other-card .graph-value {
    color: #999999;
}

.graph-bar-bg {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 10px;
    overflow: hidden;
}

.graph-bar-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease;
}

.graph-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-badge {
    font-size: 14px;
    font-weight: 500;
    color: #C0A86A;
}

.DigitalSecretSociety-card .footer-badge {
    color: #C0A86A;
}

.other-footer .footer-badge {
    color: #999999;
}

.footer-star, .footer-sad {
    font-size: 24px;
}

/* Stats Row - 4 boxes */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.stat-box {
    background: rgba(18, 22, 28, 0.6);
    border: 1px solid rgba(192, 168, 106, 0.2);
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: rgba(192, 168, 106, 0.5);
    background: rgba(18, 22, 28, 0.9);
}

.stat-number {
    font-size: 38px;
    font-weight: 800;
    color: #C0A86A;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 15px;
    color: #EFF3F8;
    margin-bottom: 12px;
    font-weight: 500;
}

.stat-emoji {
    font-size: 28px;
}

/* Responsive */
@media (max-width: 900px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .comparison-header h2 {
        font-size: 34px;
    }
}

@media (max-width: 500px) {
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-card {
        padding: 20px;
    }
    
    .card-header h3 {
        font-size: 20px;
    }
    
    .emoji-big {
        font-size: 36px;
    }
    
    .stat-number {
        font-size: 32px;
    }
}



/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0A0C10 0%, #080A0E 100%);
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.faq-header p {
    font-size: 18px;
    color: #B0B8C5;
    max-width: 700px;
    margin: 0 auto;
}

/* Single column layout */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* FAQ Item Styles */
.faq-item {
    background: rgba(18, 22, 28, 0.6);
    border: 1px solid rgba(192, 168, 106, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(192, 168, 106, 0.3);
    background: rgba(18, 22, 28, 0.8);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.faq-question span {
    flex: 1;
    padding-right: 15px;
}

.faq-question i {
    color: #C0A86A;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px 24px;
}

.faq-answer p {
    font-size: 14px;
    color: #B0B8C5;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .faq-header h2 {
        font-size: 34px;
    }
    
    .faq-header p {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-header h2 {
        font-size: 28px;
    }
    
    .faq-question {
        padding: 14px 18px;
        font-size: 14px;
    }
    
    .faq-answer p {
        font-size: 13px;
    }
}




/* ========== FOOTER ========== */
.footer {
    background: #06080C;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(192, 168, 106, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 28px;
    color: #C0A86A;
}

.footer-logo img {
    height: 60px;
    width: 60px;
    object-fit: contain;
}

.footer-logo span {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF 30%, #C0A86A 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-description {
    font-size: 13px;
    color: #9AA3B3;
    line-height: 1.6;
    margin-bottom: 20px;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(192, 168, 106, 0.1);
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(192, 168, 106, 0.2);
}

.verified-badge i {
    color: #C0A86A;
    font-size: 16px;
}

.verified-badge span {
    font-size: 11px;
    color: #B0B8C5;
}

/* Footer Columns */

.footer-col {
    text-align: center;
}

.footer-col h4 {
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #C0A86A;
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #9AA3B3;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #C0A86A;
    transform: translateX(3px);
}

/* Contact Info */
.contact-info li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info li i {
    color: #C0A86A;
    font-size: 14px;
    margin-top: 2px;
}

/* Payment Methods Footer */
.payment-methods-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    margin-bottom: 25px;
}

.payment-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.payment-label {
    font-size: 13px;
    color: #B0B8C5;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 28px;
    color: #9AA3B3;
    transition: all 0.2s ease;
}

.payment-icons i:hover {
    color: #C0A86A;
}

.payment-text {
    font-size: 13px;
    color: #9AA3B3;
}

.ssl-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ssl-badge i {
    color: #C0A86A;
    font-size: 16px;
}

.ssl-badge span {
    font-size: 12px;
    color: #9AA3B3;
}

/* Bottom Footer */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 10px;
}

.footer-bottom p {
    font-size: 12px;
    color: #8E9AAB;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    color: #8E9AAB;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: #C0A86A;
}

.footer-links span {
    color: #8E9AAB;
    font-size: 12px;
}

/* Responsive for mobile */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

/* Responsive Footer */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-row {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-icons {
        justify-content: center;
    }
}

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .verified-badge {
        justify-content: center;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
}


/* Social Media Links in Footer */
.contact-info li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9AA3B3;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.contact-info li a:hover {
    color: #C0A86A;
}

.contact-info li a i {
    color: #C0A86A;
    font-size: 16px;
}


/* ========== DROPDOWN MENU ========== */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(18, 22, 28, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(192, 168, 106, 0.25);
    border-radius: 12px;
    min-width: 180px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #EFF3F8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(192, 168, 106, 0.15);
    color: #C0A86A;
    padding-left: 25px;
}

/* Mobile responsive - dropdown on click for mobile */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: rgba(18, 22, 28, 0.95);
        margin-top: 5px;
        box-shadow: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
}

.tool-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

/* If you want larger images */
.tool-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}











/* 3D Card Styles */
.bundle-card {
    perspective: 1500px;
    cursor: pointer;
}

.bundle-inner {
    position: relative;
    width: 100%;
    height: 400px; /* Increased height for better visibility */
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border-radius: 20px;
}

.bundle-card.rotate .bundle-inner {
    transform: rotateY(180deg);
}

.bundle-front, .bundle-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 25px 20px;
    background: rgba(18, 22, 28, 0.95);
    border: 1px solid rgba(192, 168, 106, 0.25);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.bundle-front {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bundle-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(192, 168, 106, 0.1), rgba(18, 22, 28, 0.98));
    border: 1px solid rgba(192, 168, 106, 0.4);
    overflow: hidden; /* Hide overflow, scrollbar will handle */
}

/* Scrollable content area on back of card */
.bundle-back-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
    margin-bottom: 15px;
}

/* Custom scrollbar styling */
.bundle-back-content::-webkit-scrollbar {
    width: 5px;
}

.bundle-back-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.bundle-back-content::-webkit-scrollbar-thumb {
    background: #C0A86A;
    border-radius: 10px;
}

.bundle-back-content::-webkit-scrollbar-thumb:hover {
    background: #D9BD7A;
}

.bundle-back h4 {
    font-size: 18px;
    font-weight: 700;
    color: #C0A86A;
    margin-bottom: 15px;
    text-align: center;
    flex-shrink: 0;
}

.bundle-back ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bundle-back ul li {
    padding: 8px 0;
    font-size: 13px;
    color: #EFF3F8;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bundle-back ul li:last-child {
    border-bottom: none;
}

.bundle-back ul li i {
    color: #C0A86A;
    font-size: 12px;
    flex-shrink: 0;
}

.back-save {
    text-align: center;
    background: rgba(192, 168, 106, 0.15);
    padding: 10px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #C0A86A;
    flex-shrink: 0;
    margin-top: auto;
}

/* Adjust bundle access button */
.bundle-access-btn {
    width: 100%;
    margin-top: 15px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #C0A86A, #A8894A);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    color: #0A0C10;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.bundle-access-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(192, 168, 106, 0.4);
    background: linear-gradient(135deg, #D9BD7A, #C0A86A);
}

/* Responsive */
@media (max-width: 1100px) {
    .bundles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .bundles-grid {
        grid-template-columns: 1fr;
    }
    
    .bundles-header h2 {
        font-size: 32px;
    }
    
    .bundles-subtitle {
        font-size: 15px;
    }
    
    .bundle-inner {
        height: 420px;
    }
}