* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #000000;
    --accent-color: #ffc528;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --light-bg: #f8f9fa;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);

    /* Extended palette */
    --accent-dark: #e6b000;
    --accent-light: #ffdb6b;
    --accent-glow: rgba(255, 197, 40, 0.3);
    --dark-surface: #111111;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-gold: linear-gradient(135deg, #ffc528 0%, #ffdb6b 50%, #e6b000 100%);
    --gradient-dark: linear-gradient(180deg, #000000 0%, #111111 100%);
    --gradient-radial: radial-gradient(ellipse at center, rgba(255, 197, 40, 0.15) 0%, transparent 70%);

    /* Typography scale */
    --fs-display: clamp(2.5rem, 5vw, 4rem);
    --fs-h1: clamp(2rem, 4vw, 3.2rem);
    --fs-h2: clamp(1.8rem, 3.5vw, 2.8rem);
    --fs-h3: clamp(1.2rem, 2vw, 1.5rem);
    --fs-body: clamp(0.95rem, 1.2vw, 1.1rem);
    --fs-small: clamp(0.8rem, 1vw, 0.9rem);

    /* Spacing */
    --section-padding: clamp(60px, 8vw, 100px);

    /* Animation timing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.8s;

    /* Premium shadows */
    --shadow-gold: 0 0 20px rgba(255, 197, 40, 0.3);
    --shadow-gold-lg: 0 0 40px rgba(255, 197, 40, 0.4);
    --shadow-elevation-1: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-elevation-2: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-elevation-3: 0 16px 48px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: clip;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    background: var(--primary-color);
}

::selection {
    background: var(--accent-color);
    color: var(--primary-color);
}

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

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-color), var(--accent-dark));
    border-radius: 5px;
    border: 2px solid var(--primary-color);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-light), var(--accent-color));
}

@supports not selector(::-webkit-scrollbar) {
    * {
        scrollbar-width: thin;
        scrollbar-color: var(--accent-color) var(--primary-color);
    }
}

/* ========== KEYFRAME ANIMATIONS ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 10px var(--accent-glow); }
    50% { box-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(255, 197, 40, 0.15); }
}

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

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes countdownPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); color: var(--accent-color); }
}

@keyframes borderGlow {
    0%, 100% { border-color: var(--accent-color); box-shadow: 0 0 5px var(--accent-glow); }
    50% { border-color: var(--accent-light); box-shadow: 0 0 20px var(--accent-glow); }
}

/* ========== SCROLL REVEAL CLASSES ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--duration-slow) var(--ease-out-expo),
                transform var(--duration-slow) var(--ease-out-expo);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity var(--duration-slow) var(--ease-out-expo),
                transform var(--duration-slow) var(--ease-out-expo);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity var(--duration-slow) var(--ease-out-expo),
                transform var(--duration-slow) var(--ease-out-expo);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity var(--duration-slow) var(--ease-out-expo),
                transform var(--duration-slow) var(--ease-out-expo);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out-expo),
                transform 0.6s var(--ease-out-expo);
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.6s; }
.reveal-stagger.revealed > *:nth-child(7) { transition-delay: 0.7s; }
.reveal-stagger.revealed > *:nth-child(8) { transition-delay: 0.8s; }

.reveal-stagger.revealed > * {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .reveal-stagger > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .hero-aurora,
    .hero-particles { display: none; }
    .mouse-trail { display: none; }
    .sep-dot { animation: none; opacity: 0.5; }
    .hero-orb { animation: none; }
    .cta-shimmer::after { animation: none; }
    .guarantee-badge { animation: none; }
    .bonus-total { animation: none; }
    .pricing-box { animation: none; }
    .video-container { animation: none; }
    .benefits-illustration img { animation: none; }
    .hero-text .hero-badge,
    .hero-text h1,
    .hero-text .subtitle,
    .hero-text .cta-button,
    .hero-text .hero-stats,
    .hero .video-container {
        animation: none;
        opacity: 1;
    }
}

/* ========== GRADIENT TEXT ========== */
.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .gradient-text {
    filter: drop-shadow(0 0 20px rgba(255, 197, 40, 0.4));
}

/* ========== GLASSMORPHISM ========== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

/* ========== CTA SHIMMER ========== */
.cta-shimmer {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s ease-in-out infinite;
    z-index: -1;
}

/* ========== HERO PARTICLES ========== */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ========== HERO AURORA ========== */
.hero-aurora {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255, 197, 40, 0.25) 0%, rgba(255, 197, 40, 0.08) 40%, transparent 70%);
    filter: blur(60px);
    animation: auroraShift 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* ========== HERO STATS ========== */
.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-stat {
    text-align: center;
    min-width: 80px;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    display: inline;
    font-variant-numeric: tabular-nums;
}

.hero-stat-plus {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.hero-stat-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    font-weight: 600;
}

/* ========== GLOW TITLE ========== */
.glow-title {
    position: relative;
}

.glow-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(255, 197, 40, 0.15) 0%, transparent 70%);
    filter: blur(30px);
    pointer-events: none;
    z-index: -1;
}

/* ========== MOUSE TRAIL ========== */
.mouse-trail {
    position: fixed;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 197, 40, 0.6), transparent);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.15s ease;
    mix-blend-mode: screen;
}

.mouse-trail.visible {
    opacity: 1;
}

@media (max-width: 767px) {
    .mouse-trail { display: none; }
}

@media (pointer: coarse) {
    .mouse-trail { display: none; }
}

/* Hero Section */
.hero {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    will-change: transform;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-dark);
    bottom: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 197, 40, 0.15);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: var(--fs-small);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: pulseGlow 3s ease-in-out infinite;
}

.hero-trust-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 30px;
    font-size: var(--fs-small);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.trust-divider {
    color: var(--accent-color);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-text {
    position: relative;
    margin-bottom: 50px;
}

.logo-image {
    max-width: 320px;
    margin: 0 auto 30px;
}

h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 16px 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 197, 40, 0.4);
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid rgba(255, 197, 40, 0.3);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 197, 40, 0.15),
        inset 0 0 30px rgba(255, 197, 40, 0.05);
    animation: videoGlow 4s ease-in-out infinite;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Countdown Timer */
.countdown-section {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 50px 20px;
    text-align: center;
}

.countdown-title {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.countdown-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.countdown-item {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 12px;
    min-width: 100px;
    flex: 0 1 auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform var(--duration-fast) ease;
}

.countdown-item:hover {
    transform: scale(1.05);
}

.countdown-number.tick {
    animation: countdownPulse 0.5s ease;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.countdown-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 5px;
    display: block;
}

.countdown-warning {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section */
.section {
    padding: 80px 20px;
}

.section-alt {
    background: var(--light-bg);
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
    color: var(--primary-color);
}

/* ========== SALARY SECTION ========== */
.salary-section {
    background: var(--primary-color);
    color: var(--white);
    padding: var(--section-padding) 20px;
    position: relative;
    overflow: hidden;
}

.salary-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: var(--gradient-radial);
    pointer-events: none;
}

.salary-title {
    color: var(--white) !important;
}

.salary-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: var(--fs-body);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.salary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.salary-card {
    padding: 40px 24px;
    text-align: center;
    position: relative;
    transition: transform var(--duration-normal) var(--ease-out-expo),
                box-shadow var(--duration-normal) ease;
}

.salary-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.salary-card-featured {
    border-color: var(--accent-color);
    background: rgba(255, 197, 40, 0.08);
}

.salary-card-premium {
    border: 2px solid var(--accent-color);
    background: rgba(255, 197, 40, 0.12);
}

.salary-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    white-space: nowrap;
}

.salary-level {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.salary-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.salary-period {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.salary-annual {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    padding-top: 8px;
    border-top: 1px solid var(--glass-border);
}

.salary-sources {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 40px;
}

.salary-cta-block {
    text-align: center;
    padding: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.salary-hook {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.salary-hook strong {
    color: var(--accent-color);
}

/* Target Audience - Grid with Icons */
.target-section {
    background: var(--accent-color);
    padding: 80px 20px;
}

.target-section .section-title {
    color: var(--primary-color);
}

.target-grid {
    display: grid;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.target-card {
    background: var(--primary-color);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out-expo);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 197, 40, 0.1);
    position: relative;
    overflow: hidden;
}

.target-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-color);
    transition: height var(--duration-slow) var(--ease-out-expo);
}

.target-card:hover::before {
    height: 100%;
}

.target-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 197, 40, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.target-card img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.target-emoji {
    font-size: 4rem;
    margin-bottom: 20px;
    display: none;
}

.target-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.target-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 20px;
    overflow: hidden;
}

.benefits-section .section-title {
    color: var(--accent-color);
    text-align: left;
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    line-height: 1.2;
    max-width: 700px;
}

.benefits-container {
    display: grid;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.benefits-list {
    display: grid;
    gap: 35px;
    counter-reset: benefit;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.benefit-item {
    position: relative;
    padding-left: 60px;
    counter-increment: benefit;
}

.benefit-item::before {
    content: counter(benefit, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.3;
    line-height: 1;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent-color);
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

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

.benefits-illustration img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

/* Testimonials */
.testimonials-section {
    background: var(--accent-color);
    padding: 80px 20px;
}

.testimonials-section .section-title {
    color: var(--primary-color);
}

.testimonials-grid {
    display: grid;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--primary-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform var(--duration-normal) var(--ease-out-expo),
                box-shadow var(--duration-normal) ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.testimonial-post {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.testimonial-post img {
    width: 100%;
}

.testimonial-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 20px auto;
    object-fit: cover;
    border: 4px solid var(--accent-color);
    transition: transform var(--duration-normal) ease,
                box-shadow var(--duration-normal) ease;
}

.testimonial-card:hover .testimonial-photo {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--accent-glow);
}

.testimonial-author {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--accent-color);
}

.testimonial-role {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

/* ========== BONUS VALUE STACK ========== */
.bonus-section {
    background: var(--primary-color);
    color: var(--white);
    padding: var(--section-padding) 20px;
    position: relative;
    overflow: hidden;
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.bonus-title {
    color: var(--white) !important;
}

.bonus-subtitle {
    text-align: center;
    max-width: 600px;
    margin: -30px auto 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-body);
    line-height: 1.8;
}

.bonus-stack {
    max-width: 800px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bonus-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 28px 32px;
    transition: transform var(--duration-normal) var(--ease-out-expo),
                border-color var(--duration-normal) ease;
}

.bonus-item:hover {
    transform: translateX(8px);
    border-color: var(--accent-color);
}

.bonus-number {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: 2px;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: nowrap;
}

.bonus-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--white);
    word-break: break-word;
}

.bonus-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.bonus-value {
    text-align: right;
    white-space: nowrap;
}

.bonus-value-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-value-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-color);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 100, 100, 0.7);
}

.bonus-total {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 32px;
    border: 2px solid var(--accent-color);
    border-radius: 16px;
    background: rgba(255, 197, 40, 0.05);
    animation: borderGlow 3s ease-in-out infinite;
}

.bonus-total-line {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 1rem;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.bonus-total-original {
    text-decoration: line-through;
    color: rgba(255, 100, 100, 0.7);
    font-weight: 700;
}

.bonus-total-free {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.bonus-free-tag {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 2px;
}

.bonus-total-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* What You Get Section */
.features-section {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 197, 40, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #3d3d3d 0%, #1a1a1a 50%, #1a1a1a 80%, rgba(255, 197, 40, 0.3) 100%);
    padding: 80px 20px;
    color: var(--white);
    overflow: hidden;
}

.features-container {
    display: grid;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.features-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--white);
}

.features-intro {
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    transition: transform var(--duration-fast) ease;
}

.features-list li:hover {
    transform: translateX(8px);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.2rem;
}

.features-image {
    text-align: center;
    border-radius: 16px;
    padding: 0;
    overflow: visible;
    position: relative;
    border: 1px solid rgba(255, 197, 40, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.features-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('fundo-imagem.png') center/cover no-repeat;
    filter: blur(4px);
    border-radius: 16px;
    clip-path: inset(0 round 16px);
    z-index: 0;
}

.features-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, transparent, #1a1a1a);
    border-radius: 0 0 16px 16px;
    pointer-events: none;
    z-index: 1;
}

.features-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin: -50px auto 0;
    border-radius: 15px;
    position: relative;
    z-index: 2;
}

/* Guarantee */
.guarantee-section {
    text-align: center;
    padding: 80px 20px;
    background: var(--primary-color);
    color: var(--white);
}

.guarantee-badge {
    max-width: 200px;
    margin: 0 auto 30px;
    animation: float 4s ease-in-out infinite;
}

.guarantee-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 800;
}

.guarantee-box {
    border-top: 3px solid rgba(255, 197, 40, 0.5);
    border-bottom: 3px solid rgba(255, 197, 40, 0.5);
    padding: 40px 20px;
    margin: 40px auto;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.guarantee-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.guarantee-text {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pricing */
.pricing-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.pricing-intro {
    text-align: center;
    font-size: var(--fs-body);
    margin-bottom: 40px;
    color: var(--text-gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-box {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 500px;
    margin: 40px auto;
    border: 4px solid var(--accent-color);
    animation: borderGlow 4s ease-in-out infinite;
    position: relative;
    overflow: visible;
}

.pricing-popular-tag {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 24px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    border-radius: 0 0 12px 12px;
    display: inline-block;
    margin-bottom: 20px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-includes {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-top: 30px;
    margin-bottom: 15px;
}

.pricing-original {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.price-crossed {
    text-decoration: line-through;
    color: #cc4444;
    font-weight: 700;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 24px 0;
    padding: 0;
}

.pricing-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #25D366;
    font-weight: 800;
}

.pricing-countdown {
    margin-top: 50px;
}

.pricing-label {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.price-installment {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.price-total {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.price-cta {
    display: block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.price-cta:hover {
    transform: scale(1.03);
}

.secure-payment {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* Author Section */
.author-section-bg {
    background: linear-gradient(135deg, #3d3d3d 0%, #1a1a1a 50%, var(--accent-color) 100%);
    padding: 80px 20px;
    color: var(--white);
    overflow: hidden;
}

.author-container {
    display: grid;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.author-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.author-badges img {
    width: 100px;
    height: 100px;
}

.author-image-container {
    text-align: center;
    border-radius: 16px;
    padding: 0;
    overflow: visible;
    position: relative;
    border: 1px solid rgba(255, 197, 40, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.author-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('fundo-imagem.png') center/cover no-repeat;
    filter: blur(4px);
    border-radius: 16px;
    clip-path: inset(0 round 16px);
    z-index: 0;
}

.author-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, transparent, #1a1a1a);
    border-radius: 0 0 16px 16px;
    pointer-events: none;
    z-index: 1;
}

.author-image {
    max-width: 400px;
    margin: -40px auto 0;
    border-radius: 15px;
    transition: transform var(--duration-slow) var(--ease-out-expo);
    position: relative;
    z-index: 2;
}

.author-image:hover {
    transform: scale(1.03);
}

.author-content h3 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.author-name {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--white);
}

.author-bio {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* FAQ */
.faq-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--duration-fast) ease;
}

.faq-item:hover {
    transform: translateX(4px);
}

.faq-question {
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.faq-question:hover {
    background: var(--light-bg);
    border-left-color: var(--accent-color);
}

.faq-item.active .faq-question {
    border-left-color: var(--accent-color);
    background: rgba(255, 197, 40, 0.05);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-gray);
}

.faq-answer p, .faq-answer ul {
    line-height: 1.8;
}

.faq-answer ul {
    margin-left: 20px;
    margin-top: 10px;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 600px;
}

.faq-toggle {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
    color: var(--accent-color);
    font-weight: 700;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Contact */
.contact-section {
    text-align: center;
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 20px;
}

.contact-section .section-title {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-text {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.whatsapp-button {
    display: inline-block;
    background: #25D366;
    color: var(--white);
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    text-transform: uppercase;
    animation: whatsappGlow 2s ease-in-out infinite;
}

@keyframes whatsappGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 0 30px rgba(37, 211, 102, 0.4), 0 0 60px rgba(37, 211, 102, 0.15); }
}

@keyframes videoGlow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 197, 40, 0.1);
        border-color: rgba(255, 197, 40, 0.2);
    }
    50% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 197, 40, 0.25);
        border-color: rgba(255, 197, 40, 0.4);
    }
}

@keyframes auroraShift {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); opacity: 0.4; }
    33% { transform: translate(-50%, -50%) rotate(120deg) scale(1.1); opacity: 0.6; }
    66% { transform: translate(-50%, -50%) rotate(240deg) scale(0.9); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); opacity: 0.4; }
}

.whatsapp-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* ========== HERO CASCADE ENTRANCE ========== */
.hero-text .hero-badge {
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s both, pulseGlow 3s ease-in-out 1s infinite;
}

.hero-text h1 {
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.4s both;
}

.hero-text .subtitle {
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.6s both;
}

.hero-text .cta-button {
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.8s both;
}

.hero-text .hero-stats {
    animation: fadeInUp 0.8s var(--ease-out-expo) 1.0s both;
}

.hero .video-container {
    animation: fadeInScale 1s var(--ease-out-expo) 1.2s both, videoGlow 4s ease-in-out 2.2s infinite;
}

/* ========== SECTION AURORA EFFECTS ========== */
.guarantee-section {
    position: relative;
    overflow: hidden;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(255, 197, 40, 0.1) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.bonus-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: var(--gradient-radial);
    pointer-events: none;
    z-index: 0;
}

.bonus-section .container {
    position: relative;
    z-index: 1;
}

.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 250px;
    background: radial-gradient(ellipse, rgba(255, 197, 40, 0.08) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 30px 20px;
    text-align: center;
    border-top: 3px solid transparent;
    border-image: var(--gradient-gold) 1;
    font-size: 0.9rem;
}

/* Responsive */
@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

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

    .benefits-container {
        grid-template-columns: 1fr 1fr;
    }

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

    .features-container {
        grid-template-columns: 1fr 1fr;
    }

    .features-content h2 {
        font-size: 2.5rem;
    }

    .author-container {
        grid-template-columns: 1fr 2fr;
    }

    /* Salary grid: 4 columns on tablet+ */
    .salary-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Hero trust bar horizontal */
    .hero-trust-bar {
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

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

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

@media (max-width: 767px) {
    .features-content h2 {
        font-size: 1.8rem;
    }

    /* Salary grid: 2 columns on mobile */
    .salary-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .salary-card {
        padding: 24px 16px;
    }

    .salary-amount {
        font-size: 1.6rem;
    }

    /* Bonus items: stack vertically */
    .bonus-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
        padding: 20px;
    }

    .bonus-number {
        writing-mode: horizontal-tb;
        transform: none;
    }

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

    /* Hero trust bar wraps vertically */
    .hero-trust-bar {
        flex-direction: column;
        gap: 4px;
    }

    .trust-divider {
        display: none;
    }

    /* Reduce orb sizes on mobile */
    .hero-orb-1 {
        width: 200px;
        height: 200px;
    }

    .hero-orb-2 {
        width: 150px;
        height: 150px;
    }

    .hero-orb {
        opacity: 0.2;
    }

    /* Countdown items on mobile */
    .countdown-item {
        min-width: 65px;
        padding: 16px 12px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .countdown-title {
        font-size: 1.5rem;
    }

    /* Bonus total on mobile */
    .bonus-total-line {
        flex-direction: column;
        gap: 4px;
    }

    .bonus-total-free {
        flex-direction: column;
        gap: 8px;
    }

    .bonus-total {
        padding: 24px 16px;
    }

    /* Pricing box on mobile */
    .pricing-box {
        padding: 40px 20px;
        margin: 40px 10px;
    }

    .price-installment {
        font-size: 2rem;
    }

    .price-cta {
        padding: 18px 30px;
        font-size: 1rem;
    }

    /* Author section on mobile */
    .author-name {
        font-size: 2.2rem;
    }

    .author-image {
        max-width: 300px;
    }

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

    .author-content h3 {
        font-size: 0.85rem;
    }

    /* Guarantee section on mobile */
    .guarantee-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }

    .guarantee-box h3 {
        font-size: 1.4rem;
    }

    .guarantee-text {
        font-size: 1rem;
    }

    /* Pricing features */
    .pricing-features li {
        font-size: 0.85rem;
    }

    /* Benefits remove padding for counters on small screens */
    .benefit-item {
        padding-left: 40px;
    }

    .benefit-item::before {
        font-size: 1.4rem;
    }

    /* Hero stats on mobile */
    .hero-stats {
        gap: 20px;
        padding: 16px;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-plus {
        font-size: 1.2rem;
    }

    .hero-stat-label {
        font-size: 0.65rem;
    }

    /* Aurora reduced on mobile */
    .hero-aurora {
        width: 300px;
        height: 200px;
    }

    /* ===== RESPONSIVE FIX: Section padding reduction ===== */
    .hero { padding: 50px 24px; }

    .section,
    .target-section,
    .benefits-section,
    .testimonials-section,
    .features-section,
    .guarantee-section,
    .pricing-section,
    .faq-section,
    .contact-section,
    .author-section-bg { padding: 50px 24px; }

    .countdown-section { padding: 35px 24px; }

    .section-title { margin-bottom: 36px; }

    /* ===== RESPONSIVE FIX: Buttons ===== */
    .cta-button { padding: 14px 32px; font-size: 0.9rem; }

    .whatsapp-button { padding: 16px 32px; font-size: 1rem; }

    /* ===== RESPONSIVE FIX: Salary CTA block ===== */
    .salary-cta-block { padding: 24px 20px; }
    .salary-hook { font-size: 1rem; }

    /* ===== RESPONSIVE FIX: Countdown text ===== */
    .countdown-subtitle { font-size: 0.95rem; }
    .countdown-warning { font-size: 0.95rem; }

    /* ===== RESPONSIVE FIX: FAQ ===== */
    .faq-question { padding: 18px 20px; font-size: 1rem; }
    .faq-answer { padding: 0 20px; }
    .faq-item.active .faq-answer { padding: 18px 20px; }
    .faq-toggle { font-size: 1.4rem; }

    /* ===== RESPONSIVE FIX: Benefits container ===== */
    .benefits-container { overflow: visible; padding: 0 8px; }
    .benefits-container > * { min-width: 0; }
    .benefits-section .section-title { max-width: 100%; }
    .benefit-item { padding-left: 48px; }
    .benefit-item::before { font-size: 1.6rem; }

    /* ===== RESPONSIVE FIX: Target cards ===== */
    .target-card { padding: 28px 20px; }
    .target-card img { max-width: 160px; }

    /* ===== RESPONSIVE FIX: Testimonials ===== */
    .testimonial-card { padding: 20px; }
    .testimonial-photo { width: 90px; height: 90px; }

    /* ===== RESPONSIVE FIX: Features image ===== */
    .features-image img { margin: -20px auto 0; }

    /* ===== RESPONSIVE FIX: Contact text ===== */
    .contact-text { font-size: 1rem; }

    /* ===== RESPONSIVE FIX: Logo ===== */
    .logo-image { max-width: 240px; }

    /* ===== RESPONSIVE FIX: Guarantee letter-spacing ===== */
    .guarantee-title { letter-spacing: 2px; }

    /* ===== RESPONSIVE FIX: Pricing countdown ===== */
    .pricing-countdown { gap: 10px; }
}

/* Very small screens */
@media (max-width: 380px) {
    .benefit-item {
        padding-left: 0;
        padding-top: 32px;
    }

    .benefit-item::before {
        position: absolute;
        left: 0;
        top: 0;
        font-size: 1.2rem;
    }

    .benefit-item h3 {
        font-size: 1.1rem;
    }

    .salary-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .salary-card {
        max-width: 280px;
        margin: 0 auto;
        width: 100%;
    }

    /* ===== RESPONSIVE FIX: Hero stats on very small screens ===== */
    .hero-stat { min-width: 60px; }
    .hero-stat-number { font-size: 1.3rem; }
    .hero-stat-label { font-size: 0.6rem; letter-spacing: 0.5px; }
}
