
* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background:
        radial-gradient(circle at top, #0b1020 0%, #0b1020 40%, #070913 100%);
    color: #f3f4f6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* GLOBAL ANIMATIONS */
.card, .plan-box, .step, .faq-item {
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* SUBTLE FLOAT BACKGROUND LIGHT */
body::before {
    content: "";
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.12), transparent 60%);
    top: -200px;
    left: -200px;
    filter: blur(80px);
    animation: floatGlow 12s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes floatGlow {
    from { transform: translate(0,0); }
    to { transform: translate(120px, 80px); }
}

/* NAV */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 32px;
    background: rgba(10, 14, 28, 0.75);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 10;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav a {
    font-size: 14px;
    color: #cbd5e1;
    padding: 6px 8px;
    transition: 0.2s;
}

.nav a:hover {
    color: #d4af37;
}

.nav-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* BUTTONS */
.btn {
    padding: 10px 14px;
    border-radius: 10px;
    background: linear-gradient(135deg, #d4af37, #ffb84d);
    color: #1a1a1a;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 0 18px rgba(212,175,55,0.18);
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
}

.btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 30px rgba(212,175,55,0.35);
}

.btn.secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #f3f4f6;
}

.btn.secondary:hover {
    border-color: #d4af37;
    color: #d4af37;
}

/* HERO */
.hero {
    text-align: center;
    padding: 90px 20px 60px;
    position: relative;
    z-index: 2;
}


/* GRADIENT TEXT */
.gradient-text {
    background: linear-gradient(90deg, #d4af37, #f5d28e, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* HERO HEADING */
.hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
}

/* HERO TEXT */
.hero p {
    font-size: 16px;
    color: #aab4c8;
    max-width: 700px;
    margin: 0 auto 20px;
}

.cta {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* TRUST */
.trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 22px;
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
    font-size: 13px;
    color: #aab4c8;
}

/* SECTION */
.section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.section h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
}

/* CARDS */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 22px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
}

/* ✨ HOVER LIFT + GLOW */
.card:hover {
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.5);
    box-shadow: 0 10px 35px rgba(212,175,55,0.12);
}

.card h3 { color: #fff; }
.card p { color: #cbd5e1; }

/* STEPS */
.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.step {
    flex: 1;
    min-width: 220px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 22px;
    border-radius: 16px;
}

.step:hover {
    transform: translateY(-6px);
    border-color: rgba(212,175,55,0.4);
}

/* MOCK CONTAINER */
.mock {
    width: 100%;
    max-width: 1000px;
    margin: 20px auto 0;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    transition: 0.3s;
}

/* IMAGE FIX */
.mock img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* HOVER EFFECT (SUBTLE PREMIUM FEEL) */
.mock:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 60px rgba(212,175,55,0.15);
    border-color: rgba(212,175,55,0.3);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .mock {
        border-radius: 12px;
        margin: 15px 10px 0;
    }
}

/* PRICING */
.plans-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.plan-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 22px;
    border-radius: 16px;
    text-align: center;
}

/* ✨ PREMIUM HOVER BORDER ANIMATION */
.plan-box:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 0 25px rgba(212,175,55,0.15);
}

.featured {
    border: 1px solid #d4af37;
    box-shadow: 0 0 25px rgba(212,175,55,0.12);
}

.badge {
    background: linear-gradient(135deg, #d4af37, #ffb84d);
    color: #1a1a1a;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.price {
    font-size: 30px;
    font-weight: bold;
}

.features {
    font-size: 14px;
    color: #cbd5e1;
}

/* FAQ */
.faq-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 14px;
}

.faq-item:hover {
    border-color: rgba(212,175,55,0.4);
    transform: translateX(4px);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
    color: #94a3b8;
}

/* MOBILE FIX */
@media (max-width: 768px) {

    .hero h1 { font-size: 32px; }

    .nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        width: 100%;
    }

    .cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* FUNNEL SECTION */
.funnel {
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-top: 20px;
    position: relative;
    flex-wrap: wrap;
}

/* connector line glow */
.funnel::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
    z-index: 0;
}

.funnel-step {
    flex: 1;
    min-width: 220px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
}

.funnel-step:hover {
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.4);
    box-shadow: 0 10px 30px rgba(212,175,55,0.1);
}

.funnel-step h3 {
    margin-top: 15px;
}

.funnel-step p {
    color: #cbd5e1;
    font-size: 14px;
}

/* DOTS */
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #94a3b8;
    box-shadow: 0 0 10px rgba(148,163,184,0.4);
}

.dot.gold {
    background: #d4af37;
    box-shadow: 0 0 14px rgba(212,175,55,0.6);
}

/* FINAL STEP EMPHASIS */
.funnel-step.highlight {
    border: 1px solid #d4af37;
    box-shadow: 0 0 25px rgba(212,175,55,0.15);
}

/* MOBILE */
@media (max-width: 768px) {
    .funnel {
        flex-direction: column;
    }

    .funnel::before {
        display: none;
    }
}

/* COMPARISON TABLE WRAPPER */
.comparison-wrap {
    overflow-x: auto;
}

/* TABLE */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

/* HEADER */
.comparison-table thead {
    background: rgba(212,175,55,0.12);
}

.comparison-table th {
    padding: 14px;
    text-align: left;
    color: #ffffff;
    font-size: 14px;
}

/* CELLS */
.comparison-table td {
    padding: 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 14px;
    color: #cbd5e1;
}

/* HOVER EFFECT */
.comparison-table tbody tr {
    transition: 0.25s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(212,175,55,0.05);
    transform: scale(1.01);
}

/* STATUS COLORS */
.yes {
    color: #34d399;
    font-weight: bold;
}

.no {
    color: #fb7185;
    font-weight: bold;
}

.mid {
    color: #fbbf24;
}

.highlight {
    color: #d4af37;
    font-weight: bold;
}

/* MOBILE */
@media (max-width: 768px) {
    .comparison-table th,
    .comparison-table td {
        font-size: 12px;
        padding: 10px;
    }
}
/* CALCULATOR */
.calculator-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.calc-sub {
    text-align: center;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.calc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.calc-card {
    display: flex;
    flex-direction: column;
}

.calc-card label {
    font-size: 13px;
    margin-bottom: 6px;
    color: #aab4c8;
}

.calc-card input {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.3);
    color: #fff;
    outline: none;
}

.calc-card input:focus {
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212,175,55,0.2);
}

.result-box {
    margin-top: 20px;
    padding: 15px;
    border-radius: 12px;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.2);
    color: #f3f4f6;
    font-weight: bold;
    text-align: center;
}
/* WARNING BOX */
.calc-warning {
    background: rgba(255, 0, 0, 0.08);
    border: 1px solid rgba(255, 80, 80, 0.3);
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    color: #fca5a5;
    font-size: 13px;
}

/* SELECT */
.calc-card select {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.3);
    color: #fff;
}

/* RESULT GRID */
.result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

/* RESULT BOXES */
.result-box {
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: bold;
    border: 1px solid rgba(255,255,255,0.08);
}

/* COLORS */
.result-box.red {
    background: rgba(255, 80, 80, 0.08);
    border-color: rgba(255, 80, 80, 0.25);
    color: #fca5a5;
}

.result-box.green {
    background: rgba(52, 211, 153, 0.08);
    border-color: rgba(52, 211, 153, 0.25);
    color: #6ee7b7;
}

.result-box.gold {
    background: rgba(212, 175, 55, 0.10);
    border-color: rgba(212, 175, 55, 0.25);
    color: #f5d28e;
}
/* FEATURE ICON */
.feature-card .icon {
    font-size: 26px;
    margin-bottom: 10px;
    transition: 0.3s;
}

/* PROOF LINE */
.proof {
    margin-top: 10px;
    font-size: 13px;
    color: #6ee7b7;
}

/* ✨ PREMIUM HOVER EFFECT */
.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(212,175,55,0.5);
    box-shadow: 0 15px 40px rgba(212,175,55,0.15);
}

/* ICON GLOW ON HOVER */
.feature-card:hover .icon {
    transform: scale(1.15);
    filter: drop-shadow(0 0 6px rgba(212,175,55,0.6));
}
/* STEP ICON */
.step .icon {
    font-size: 28px;
    margin-bottom: 10px;
    transition: 0.3s;
}

/* STEP HOVER EFFECT */
.step:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(212,175,55,0.5);
    box-shadow: 0 15px 40px rgba(212,175,55,0.12);
}

/* ICON GLOW */
.step:hover .icon {
    transform: scale(1.15);
    filter: drop-shadow(0 0 6px rgba(212,175,55,0.6));
}

/* PROOF LINE */
.step .proof {
    margin-top: 10px;
    font-size: 13px;
    color: #6ee7b7;
}
/* FLOW CONNECTOR */
.steps.flow {
    position: relative;
}

/* glowing line */
.steps.flow::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.6), transparent);
    z-index: 0;
}

/* STEP BASE */
.step {
    position: relative;
    z-index: 1;
}

/* ✨ REVEAL ANIMATION (initial state) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

/* when visible */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* STAGGER EFFECT */
.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.3s; }
.reveal:nth-child(3) { transition-delay: 0.5s; }

/* ACTIVE STEP GLOW */
.step.active {
    border-color: rgba(212,175,55,0.6);
    box-shadow: 0 10px 35px rgba(212,175,55,0.2);
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .steps.flow::before {
        display: none;
    }
}

/* =========================
   FUNNEL SECTION
========================= */

/* ICON */
.funnel-step .icon {
    font-size: 26px;
    margin-bottom: 10px;
    transition: 0.3s ease;
}

/* PROOF LINE */
.funnel-step .proof {
    margin-top: 10px;
    font-size: 13px;
    color: #6ee7b7;
}

/* HOVER EFFECT */
.funnel-step:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(212,175,55,0.5);
    box-shadow: 0 15px 40px rgba(212,175,55,0.15);
}

/* ICON GLOW */
.funnel-step:hover .icon {
    transform: scale(1.15);
    filter: drop-shadow(0 0 6px rgba(212,175,55,0.6));
}


/* =========================
   TRAFFIC FLOW (FIXED STRUCTURE)
========================= */

.traffic-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 20px;
}

/* SOURCES ROW */
.traffic-sources {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* DESTINATION */
.traffic-destination {
    display: flex;
    justify-content: center;
}

/* ITEM BOX */
.traffic-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 16px;
    border-radius: 14px;
    text-align: center;
    min-width: 140px;
    transition: 0.3s ease;
    position: relative;
}

/* MAIN DESTINATION */
.traffic-item.main {
    border-color: rgba(212,175,55,0.6);
    box-shadow: 0 0 25px rgba(212,175,55,0.25);
}

/* ICON */
.traffic-item .icon {
    font-size: 26px;
    margin-bottom: 6px;
}

/* LABEL */
.traffic-item .label {
    font-size: 13px;
    color: #cbd5e1;
}

/* HOVER EFFECT */
.traffic-item:hover {
    transform: translateY(-6px);
    border-color: rgba(212,175,55,0.4);
    box-shadow: 0 10px 30px rgba(212,175,55,0.12);
}


/* FIX ARROW LAYOUT (CONSISTENT FLOW) */
.traffic-arrows {
    display: flex;
    justify-content: center;
    gap: 80px;
    font-size: 26px;
    color: #d4af37;
    text-shadow: 0 0 8px rgba(212,175,55,0.6);
}

/* FIX WEBSITE FLOW VISUAL BALANCE */
.traffic-sources {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* NOTE TEXT FIX (CENTERED + CLEAN WIDTH) */
.traffic-note {
    text-align: center;
    margin-top: 15px;
    color: #aab4c8;
    font-size: 14px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* NEW HIGHLIGHT BOX (IMPORTANT CONVERSION BLOCK) */
.traffic-highlight {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.25);
    color: #f5d28e;
    font-size: 13px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}


/* FORCE DESKTOP LAYOUT ON MOBILE */
@media (max-width: 768px) {

    .traffic-wrapper {
        transform: scale(0.85);
        transform-origin: top center;
    }

    /* KEEP ITEMS IN ONE ROW */
    .traffic-sources {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 10px;
    }

    /* PREVENT BOX SHRINK BREAKING */
    .traffic-item {
        min-width: 100px;
        padding: 12px;
    }

    /* KEEP ARROWS HORIZONTAL */
    .traffic-arrows {
        flex-direction: row;
        gap: 40px;
        font-size: 20px;
    }

}

/* FEATURED PLAN BASE */
.plan-box.featured {
    position: relative;
    transform: scale(1.04);
    z-index: 2;
    border: 1px solid rgba(212,175,55,0.6);
    box-shadow: 0 0 25px rgba(212,175,55,0.2);
    animation: planPulse 2.5s infinite ease-in-out;
}

/* ✨ SOFT PULSE ANIMATION */
@keyframes planPulse {
    0% {
        box-shadow: 0 0 15px rgba(212,175,55,0.15);
    }
    50% {
        box-shadow: 0 0 40px rgba(212,175,55,0.35);
    }
    100% {
        box-shadow: 0 0 15px rgba(212,175,55,0.15);
    }
}

/* GLOWING BORDER EFFECT */
.plan-box.featured::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: linear-gradient(
        120deg,
        rgba(212,175,55,0.4),
        transparent,
        rgba(212,175,55,0.4)
        );
    opacity: 0.6;
    z-index: -1;
    animation: borderFlow 4s linear infinite;
}

/* BORDER FLOW ANIMATION */
@keyframes borderFlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* OPTIONAL: STRONGER HOVER EFFECT */
.plan-box.featured:hover {
    transform: scale(1.07);
    box-shadow: 0 0 60px rgba(212,175,55,0.4);
}
.privacy h1
{
    text-align: center !important;
}
.privacy h2 {
    text-align: left !important;
}