:root {
    --color-bg: #161616;
    --color-bg-darker: #0f0f0f;
    --color-bg-card: rgba(26, 26, 26, 0.6);
    --color-primary: #ffea00;
    --color-primary-hover: #e7bc00;
    --color-text: #e8e8e8;
    --color-text-muted: rgba(232, 232, 232, 0.6);
    --color-border: rgba(232, 232, 232, 0.1);

    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --shadow-glow: 0 0 20px rgba(255, 234, 0, 0.15);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.text-highlight {
    color: var(--color-primary);
}

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

.text-center {
    text-align: center;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-sm) 0;
    background: rgba(22, 22, 22, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid var(--color-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-weight: 700;
    font-size: 1.1rem;
}

.logo-img {
    height: 32px;
}

/* Nav & Mobile Menu */
.nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--color-bg-darker);
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
    display: flex;
}

.nav.active {
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-toggle {
    display: block;
    background: transparent;
    border: none;
    color: var(--color-text);
    cursor: pointer;
}

@media (min-width: 768px) {
    .nav {
        position: static;
        flex-direction: row;
        background: transparent;
        padding: 0;
        border: none;
        transform: none;
        display: flex;
        box-shadow: none;
    }

    .nav-toggle {
        display: none;
    }
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--color-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #161616;
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 234, 0, 0.1);
    border: 1px solid rgba(255, 234, 0, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.hero-card {
    margin-top: 4rem;
    max-width: 800px;
}

/* Generic Sections */
.section {
    padding: var(--spacing-lg) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.bg-darker {
    background-color: var(--color-bg-darker);
}

/* Cards & Grid */
.grid-2 {
    display: grid;
    gap: var(--spacing-md);
}

.grid-3 {
    display: grid;
    gap: var(--spacing-md);
}

.grid-4 {
    display: grid;
    gap: var(--spacing-md);
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.glass-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.4s ease;
}

.hover-glow:hover {
    border-color: rgba(255, 234, 0, 0.4);
    box-shadow: 0 0 30px rgba(255, 234, 0, 0.05);
    transform: translateY(-5px);
}

.card-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(255, 234, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.large-padding {
    padding: 2.5rem;
}

/* Tiers */
.tiers-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tier-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
}

.tier-item.highlight-border {
    border-color: rgba(255, 234, 0, 0.3);
    background: rgba(255, 234, 0, 0.05);
}

.tier-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.tier-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.bronze {
    background: #cd7f32;
    box-shadow: 0 0 10px rgba(205, 127, 50, 0.4);
}

.silver {
    background: #c0c0c0;
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.4);
}

.gold {
    background: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.diamond {
    background: #b9f2ff;
    box-shadow: 0 0 10px rgba(185, 242, 255, 0.4);
}

.elite {
    background: #ffea00;
    box-shadow: 0 0 10px rgba(255, 234, 0, 0.4);
}

.tier-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tier-users {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.tier-percent {
    font-weight: 800;
    font-size: 1.1rem;
}

.bronze-text {
    color: #cd7f32;
}

.silver-text {
    color: #c0c0c0;
}

.gold-text {
    color: #ffd700;
}

.diamond-text {
    color: #b9f2ff;
}

.elite-text {
    color: #ffea00;
}

.price-box {
    background: #000;
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    margin: 1.5rem 0;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    display: block;
    line-height: 1;
}

.price-label {
    display: block;
    margin-top: 0.5rem;
    color: var(--color-text-muted);
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
    text-align: center;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr auto 1fr auto 1fr;
    }
}

.step-card {
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.step-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 234, 0, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--color-primary);
    color: #000;
    border-radius: 50%;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.step-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 234, 0, 0.5), transparent);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .step-line {
        width: 100px;
        height: 2px;
        background: linear-gradient(to right, rgba(255, 234, 0, 0.5), transparent);
        margin-top: 40px;
    }
}

/* Profile Ideal */
.profile-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.profile-card:hover {
    border-color: rgba(255, 234, 0, 0.3);
    background: rgba(26, 26, 26, 0.9);
}

.icon-box {
    width: 48px;
    height: 48px;
    background: rgba(255, 234, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Form Styles Override */
.form-wrapper {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Overriding RD Station embedded styles aggressively */
.rd-station-form-wrapper form {
    width: 100% !important;
    max-width: 100% !important;
}

/* Helpers */
.icon-box-sm {
    width: 36px;
    height: 36px;
    background: rgba(255, 234, 0, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.responsibility-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.resp-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
}

.alert-box {
    background: rgba(255, 234, 0, 0.1);
    border: 1px solid rgba(255, 234, 0, 0.2);
    padding: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 0.9rem;
}

.package-card {
    background: linear-gradient(to right, #161616, #1a1a1a);
    border: 1px solid rgba(255, 234, 0, 0.2);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.package-tag {
    font-size: 0.75rem;
    padding: 4px 8px;
    background: rgba(255, 234, 0, 0.1);
    border-radius: var(--radius-full);
}

.package-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.card-header-flex {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Background Gradients */
.bg-gradient-top {
    position: absolute;
    top: 0;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 234, 0, 0.08) 0%, rgba(22, 22, 22, 0) 70%);
    z-index: 1;
    pointer-events: none;
    transform: translateY(-30%);
}

.bg-gradient-bottom {
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(231, 188, 0, 0.05) 0%, rgba(22, 22, 22, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* Footer */
.footer {
    padding: 2rem 0;
    border-top: 1px solid var(--color-border);
    margin-top: 4rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    animation-delay: 0.1s;
    transition-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
    transition-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
    transition-delay: 0.5s;
}

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 6s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    15% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hidden-mobile {
        display: none;
    }
}