/* ============================================
   CSS Reset & Variables
   ============================================ */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    --gold: #d4a843;
    --gold-light: #f0d078;
    --gold-dark: #b8860b;
    --yellow: #f5c518;
    --red: #c0392b;
    --red-bright: #e74c3c;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #777777;
    --border-color: #2a2a2a;
    --gradient-gold: linear-gradient(135deg, #b8860b, #d4a843, #f0d078, #d4a843, #b8860b);
    --gradient-vip: linear-gradient(135deg, #1a1a1a 0%, #2d1f0e 50%, #1a1a1a 100%);
    --gradient-hero: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.8) 60%, #0a0a0a 100%);
    --shadow-gold: 0 0 30px rgba(212, 168, 67, 0.3);
    --shadow-red: 0 0 30px rgba(231, 76, 60, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-display: 'Georgia', 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   Background Particles
   ============================================ */
.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.bg-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 8s ease-in-out infinite;
}

.bg-gradient-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.12) 0%, transparent 70%);
    top: -10%;
    left: 10%;
    animation-delay: 0s;
}

.bg-gradient-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.08) 0%, transparent 70%);
    top: 40%;
    right: -5%;
    animation-delay: -3s;
}

.bg-gradient-orb.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.06) 0%, transparent 70%);
    bottom: 10%;
    left: 30%;
    animation-delay: -6s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(40px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-20px, -60px) scale(0.95);
    }
    75% {
        transform: translate(-40px, -20px) scale(1.02);
    }
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 40px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.5);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-logo svg {
    width: 36px;
    height: 36px;
}

.nav-logo .logo-accent {
    color: var(--gold);
}

.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .active {
    color: var(--gold);
}

.nav-links .active::after {
    width: 100%;
}


/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 80px;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212, 168, 67, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(231, 76, 60, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 0%, rgba(245, 197, 24, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 50px;
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 7vw, 72px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title .gold-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--text-secondary);
    margin-bottom: 44px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.btn-primary {
    padding: 16px 40px;
    background: var(--gradient-gold);
    color: #0a0a0a;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    padding: 16px 40px;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Features / Privileges Section
   ============================================ */
.features {
    padding: 80px 40px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 20px;
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    border-color: rgba(212, 168, 67, 0.3);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 67, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: rgba(212, 168, 67, 0.15);
    transform: scale(1.05);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing {
    padding: 80px 40px 100px;
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-single {
    display: flex;
    align-items: stretch;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

/* Featured / Recommended Plan */
.plan-card.featured {
    border-color: rgba(212, 168, 67, 0.4);
    background: var(--gradient-vip);
    transform: scale(1.03);
    z-index: 2;
}

.plan-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
    border-color: rgba(212, 168, 67, 0.6);
    box-shadow: var(--shadow-gold);
}

.plan-help-card:hover {
    border-color: rgba(212, 168, 67, 0.5) !important;
    box-shadow: var(--shadow-gold);
}

.plan-help-card a:hover {
    background: rgba(212, 168, 67, 0.15);
    border-color: var(--gold);
}

.plan-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 24px;
    background: var(--gradient-gold);
    color: #0a0a0a;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.plan-label {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.plan-slogan {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.plan-price-wrap {
    margin-bottom: 28px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.plan-price .currency {
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
}

.plan-price .amount {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.plan-price .period {
    font-size: 14px;
    color: var(--text-muted);
    margin-left: 4px;
}

.plan-original {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-top: 4px;
    margin-left: 4px;
}

.plan-original .save {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 10px;
    background: rgba(231, 76, 60, 0.15);
    color: var(--red-bright);
    font-size: 12px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.plan-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4a843' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    text-align: center;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
}

.btn-plan:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-plan-primary {
    background: var(--gradient-gold);
    color: #0a0a0a;
    border: none;
    font-weight: 700;
}

.btn-plan-primary:hover {
    box-shadow: var(--shadow-gold);
}

/* ============================================
   Hot Promo Banner
   ============================================ */
.promo-banner {
    max-width: 1100px;
    margin: 0 auto 80px;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.promo-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 36px 40px;
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.1), rgba(231, 76, 60, 0.08));
    border: 1px solid rgba(212, 168, 67, 0.25);
    border-radius: var(--radius-xl);
    flex-wrap: wrap;
}

.promo-info h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}

.promo-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

.promo-timer {
    display: flex;
    align-items: center;
    gap: clamp(8px, 2vw, 20px);
    flex-wrap: wrap;
    justify-content: center;
}

.timer-block {
    text-align: center;
    min-width: clamp(44px, 7vw, 60px);
}

.timer-value {
    font-family: var(--font-display);
    font-size: clamp(22px, 4.5vw, 32px);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.timer-label {
    font-size: clamp(10px, 1.5vw, 11px);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.timer-divider {
    font-family: var(--font-display);
    font-size: clamp(18px, 3.8vw, 28px);
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

.promo-cta .btn-primary {
    font-size: 15px;
    padding: 14px 36px;
}



/* ============================================
   FAQ Section
   ============================================ */
.faq {
    padding: 80px 40px 100px;
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(212, 168, 67, 0.2);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font-body);
    text-align: left;
}

.faq-question .arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.open .faq-question .arrow {
    transform: rotate(180deg);
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 40px 40px 24px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.footer-logo-accent {
    color: var(--gold);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 13px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 20px auto 0;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   Hamburger Menu Button (tablet & mobile)
   ============================================ */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    position: relative;
    z-index: 101;
    flex-shrink: 0;
    margin-left: auto;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   Responsive: Tablet (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
    /* --- Navigation --- */
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(212, 168, 67, 0.2);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100;
        padding: 8px 0;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    }

    .nav-links.show {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 14px 24px;
        font-size: 15px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        transition: all 0.2s;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover,
    .nav-links a:active {
        background: rgba(212, 168, 67, 0.08);
        color: var(--gold);
    }

    .nav-links .active {
        background: rgba(212, 168, 67, 0.1);
    }

    /* --- Hero --- */
    .hero {
        padding: 100px 32px 80px;
    }

    .hero-content {
        max-width: 100%;
    }

    /* --- Sections --- */
    .features,
    .pricing,
    .faq {
        padding: 70px 32px;
    }

    /* --- Pricing --- */
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .pricing-single {
        flex-direction: column;
        align-items: center;
    }

    .pricing-single .plan-card.featured {
        max-width: 100% !important;
        width: 100% !important;
        border-radius: 0 !important;
    }

    .pricing-single .plan-card.featured:nth-child(2) {
        border-radius: var(--radius-xl) var(--radius-xl) 0 0 !important;
    }

    .pricing-single .plan-card.featured:nth-child(3) {
        border-radius: 0 !important;
        border-right: none !important;
        border-bottom: 1px dashed rgba(212,168,67,0.2) !important;
    }

    .pricing-single .plan-help-card {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0 0 var(--radius-xl) var(--radius-xl) !important;
        border-left: 1px solid rgba(212,168,67,0.4) !important;
        border-top: none !important;
        flex: 0 0 auto !important;
    }

    .plan-card.featured {
        transform: none;
    }

    .plan-card.featured:hover {
        transform: translateY(-6px);
    }

    /* --- Promo Banner --- */
    .promo-banner {
        padding: 0 32px;
    }

    /* --- Footer --- */
    .footer-inner {
        gap: 24px;
    }
}

/* ============================================
   Responsive: Large Phone / Small Tablet (≤768px)
   ============================================ */
@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .features,
    .pricing,
    .faq {
        padding: 60px 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .promo-card {
        flex-direction: column;
        text-align: center;
    }

    .promo-timer {
        justify-content: center;
    }

    .promo-banner {
        padding: 0 20px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .footer-col {
        align-items: center;
    }

    .footer-col ul {
        align-items: center;
    }
}

/* ============================================
   Responsive: Small Phone (≤480px)
   ============================================ */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .plan-card {
        padding: 24px 20px;
    }

    .promo-card {
        padding: 24px 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

/* ============================================
   Scroll Animation Helper
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
