:root {
    --bg-dark: #020617;
    --bg-card: #0f172a;
    --bg-card-hover: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --gold-start: #FDB931;
    --gold-end: #C6930A;
    --gold-text: #fbbf24;
    --accent-blue: #3b82f6;
    --border-color: rgba(255, 255, 255, 0.08);
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FDB931 50%, #C6930A 100%);
    --card-shadow: 0 10px 40px -10px rgba(0,0,0,0.5);
    --inc-btn-gradient: linear-gradient(90deg, #2dd4bf 0%, #3b82f6 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

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

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes drift-fall {
    0% { transform: translateY(-8vh) translateX(0); opacity: 0; }
    12% { opacity: 0.35; }
    100% { transform: translateY(105vh) translateX(12px); opacity: 0; }
}

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    top: -10px;
    width: 3px;
    height: 3px;
    background: rgba(148, 163, 184, 0.35);
    border-radius: 50%;
    animation: drift-fall linear infinite;
}

.hero-section {
    position: relative;
    padding: 1.75rem 0 3.5rem;
    background: radial-gradient(circle at 50% 0%, #1e293b 0%, var(--bg-dark) 70%);
    overflow: hidden;
    z-index: 1;
}

.hero-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 2.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-brand {
    line-height: 0;
}

.hero-brand-logo {
    height: 40px;
    width: auto;
    max-width: 100%;
    display: block;
}

.hero-text {
    padding: 20px 0;
}

.hero-text h1 {
    font-weight: 900;
    font-size: clamp(2.35rem, 4.6vw, 3.65rem);
    line-height: 1.08;
    margin-bottom: 1.1rem;
    letter-spacing: -0.02em;
}

.text-gradient-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: rgba(203, 213, 225, 0.92);
    font-size: 1.05rem;
    max-width: 36rem;
    line-height: 1.55;
}

.hero-subtitle-trust {
    font-size: 0.98rem;
    color: var(--text-muted);
    max-width: 36rem;
}

.hero-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
    margin-top: 1.15rem;
    margin-bottom: 0;
}

.hero-chip-row li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.88);
    padding: 0.4rem 0.65rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(2, 6, 23, 0.45);
}

.hero-chip-row li i {
    font-size: 0.68rem;
    color: var(--gold-text);
    opacity: 0.95;
}

.countdown-wrapper {
    display: inline-block;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.timer-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 2px;
    font-weight: 600;
}

.timer-digit {
    font-family: 'Courier New', monospace;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gold-text);
    line-height: 1;
    text-shadow: 0 0 10px rgba(253, 185, 49, 0.3);
}

.timer-separator {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 300;
    padding-bottom: 2px;
}

.trust-text {
    color: var(--text-muted);
    font-weight: 500;
}

.text-gold {
    color: var(--gold-text);
}

.btn-primary-gold {
    background: var(--gold-gradient);
    border: none;
    color: #000;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(253, 185, 49, 0.4);
    color: #000;
}

.btn-outline-light {
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.hero-svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.2));
}

.led-blink-1 { animation: blink 1s infinite; }
.led-blink-2 { animation: blink 1.5s infinite 0.5s; }
.led-blink-3 { animation: blink 2s infinite 1s; }

@keyframes blink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; box-shadow: 0 0 5px currentColor; }
}

.plans-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.sub-title {
    color: var(--gold-text);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-weight: 800;
    margin-bottom: 1rem;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 0;
    height: 100%;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* overflow: hidden; Removed to allow badge to sit on top */
}

.plan-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px -5px rgba(0,0,0,0.4);
    border-color: rgba(255, 255, 255, 0.25);
}

.plan-card.featured {
    border: 1px solid var(--gold-text);
    background: linear-gradient(to bottom, rgba(253, 185, 49, 0.05), var(--bg-card));
    box-shadow: 0 0 30px rgba(253, 185, 49, 0.1);
    transform: scale(1.05);
    z-index: 5;
    overflow: visible; /* Ensure badge shows outside */
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
    box-shadow: 0 0 50px rgba(253, 185, 49, 0.3);
    border-color: var(--gold-text);
}

.popular-badge {
    position: absolute;
    top: -16px; /* Moved above the card */
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: #000;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 6px 18px;
    border-radius: 20px; /* Pill shape */
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(253, 185, 49, 0.4);
    z-index: 10;
    white-space: nowrap; /* Prevent wrapping */
}

.plan-header {
    padding: 30px 15px 20px; /* Reverted padding */
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(to bottom, rgba(255,255,255,0.02), transparent);
    border-radius: 16px 16px 0 0; /* Manually clip top corners since overflow is visible */
}

.plan-header h3 {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--gold-text);
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 0.8;
    font-family: 'Inter', sans-serif;
    color: #fff;
    font-weight: 800;
    font-size: 2.8rem; /* Slightly smaller to fit */
    margin-bottom: 5px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.price .currency {
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 4px;
    margin-top: 5px;
    color: var(--text-muted);
}

.price .period {
    font-size: 0.75rem;
    align-self: flex-end;
    margin-bottom: 5px;
    margin-left: 5px;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.plan-body {
    padding: 20px 15px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.plan-features li i {
    color: var(--gold-text);
    width: 24px;
    text-align: center;
    margin-right: 10px;
}

.plan-footer {
    padding: 0 25px 30px;
}

.btn-plan {
    width: 100%;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-weight: 700;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.btn-plan:hover {
    background: #fff;
    color: #000;
}

.btn-plan.featured-btn {
    background: var(--gold-gradient);
    color: #000;
    border: none;
}

.btn-plan.featured-btn:hover {
    filter: brightness(1.1);
}

.features-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--bg-dark), #0a0f1f);
}

.feature-item-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    height: 100%;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.feature-item-centered:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(253, 185, 49, 0.2);
    transform: translateY(-5px);
}

.feature-item-centered .icon {
    width: 70px;
    height: 70px;
    background: rgba(253, 185, 49, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-text);
    font-size: 1.75rem;
    margin-bottom: 20px;
    margin-right: 0;
    box-shadow: 0 0 20px rgba(253, 185, 49, 0.1);
}

.feature-item-centered h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.feature-item-centered p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.section-header-centered h2 {
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 0;
}

.title-separator {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #FDB931, #C6930A);
    margin: 15px auto 20px;
    border-radius: 2px;
}

.text-muted-enhanced {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.inc-awards-section {
    padding: 60px 0 80px;
    background: transparent;
}

.inc-awards-header {
    margin-bottom: 50px;
}

.inc-awards-header h2 {
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 0; 
}

.inc-card-new {
    background: #0f172a;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.inc-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    opacity: 0.7;
}

.inc-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
    background: #15203b;
}

.inc-card-new .trophy-icon {
    font-size: 2.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(253, 185, 49, 0.3));
}

.inc-card-new .rank {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(253, 185, 49, 0.2);
}

.inc-card-new .award-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-text);
    margin-bottom: 5px;
}

.inc-card-new .year {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.inc-card-new .inc-award-sub {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    text-transform: none;
    letter-spacing: 0;
    margin-top: 2px;
}

.inc-awards-row {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .inc-awards-row .inc-card-new {
        padding: 22px 12px;
    }

    .inc-awards-row .inc-card-new .rank {
        font-size: 2rem;
    }

    .inc-awards-row .inc-card-new .award-name {
        font-size: 0.95rem;
    }

    .inc-awards-row .inc-card-new .trophy-icon {
        font-size: 2rem;
    }
}

.btn-inc {
    background: transparent;
    color: var(--gold-text);
    font-weight: 700;
    padding: 12px 40px;
    border-radius: 50px;
    border: 1px solid var(--gold-text);
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: none;
}

.btn-inc:hover {
    background: var(--gold-gradient);
    color: #000;
    transform: translateY(-2px);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(253, 185, 49, 0.4);
}

.site-footer {
    padding: 50px 0;
    border-top: 1px solid var(--border-color);
    background: #020617;
}

.footer-logo {
    height: 35px;
    opacity: 0.9;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    color: #fff;
    margin-left: 10px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--gold-gradient);
    color: #000;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .hero-text {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .hero-subtitle,
    .hero-subtitle-trust {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-chip-row {
        justify-content: center;
    }

    .hero-svg {
        max-width: 80%;
    }
    
    .countdown-wrapper {
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
    }

    .countdown-timer {
        justify-content: center;
    }
}