/* ========================================
   RISEAXE - Number 9 Numerology Design
   Color Palette: Red + Blue + White + Black
   ======================================== */

:root {
    /* Primary Colors (Mars Energy - Number 9) */
    --crimson-red: #D7263D;
    --royal-blue: #0047FF;
    --pure-white: #FFFFFF;
    
    /* Secondary Colors */
    --deep-black: #000000;
    --light-gray: #F4F5F7;
    --soft-blue: #F0F5FF;
    
    /* Additional Shades */
    --red-light: #FFE5EA;
    --blue-light: #E5F0FF;
    --gray-text: #666666;
    --gray-border: #E0E0E0;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-headline: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 96px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-blue: 0 4px 20px rgba(0, 71, 255, 0.15);
    --shadow-red: 0 4px 20px rgba(215, 38, 61, 0.15);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--deep-black);
    background: var(--pure-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-3xl) 0;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-text);
}

.section-title {
    text-align: center;
    color: var(--deep-black);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--gray-text);
    margin-bottom: var(--spacing-xl);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--crimson-red);
    color: var(--pure-white);
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    background: #b81e31;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(215, 38, 61, 0.25);
}

.btn-secondary {
    background: var(--pure-white);
    color: var(--royal-blue);
    border: 2px solid var(--royal-blue);
}

.btn-secondary:hover {
    background: var(--soft-blue);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.125rem;
}

.btn-xlarge {
    padding: 20px 48px;
    font-size: 1.25rem;
}

.btn-full {
    width: 100%;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: sticky;
    top: 0;
    background: var(--pure-white);
    border-bottom: 1px solid var(--gray-border);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 200px;
    width: auto;
    display: block;
    margin: -70px 0;
}

.logo-text {
    font-family: var(--font-headline);
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--crimson-red), var(--royal-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-links a {
    font-weight: 500;
    color: var(--deep-black);
}

.nav-links a:hover {
    color: var(--royal-blue);
}

.nav-cta {
    padding: 10px 24px;
    background: var(--crimson-red);
    color: var(--pure-white);
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav-cta:hover {
    background: #b81e31;
    color: var(--pure-white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--deep-black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    background: linear-gradient(180deg, var(--soft-blue) 0%, var(--pure-white) 100%);
    padding: var(--spacing-3xl) 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-headline {
    color: var(--deep-black);
    margin-bottom: var(--spacing-md);
}

.hero-subheadline {
    font-size: 1.375rem;
    color: var(--gray-text);
    margin-bottom: var(--spacing-lg);
}

.hero-cta-group {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.trust-text {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.95rem;
    color: var(--gray-text);
    font-weight: 500;
}

.check-icon {
    flex-shrink: 0;
}

/* Dashboard Mockup */
.hero-visual {
    position: relative;
}

.dashboard-mockup {
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--gray-border);
}

.mockup-header {
    background: var(--light-gray);
    padding: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-border);
}

.mockup-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-text);
}

.mockup-content {
    padding: var(--spacing-lg);
}

.input-group-mockup {
    margin-bottom: var(--spacing-md);
}

.input-group-mockup label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--deep-black);
    margin-bottom: var(--spacing-xs);
}

.input-mockup {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 12px 16px;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--gray-text);
}

.budget-card-mockup {
    background: var(--soft-blue);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.budget-header {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--royal-blue);
    margin-bottom: var(--spacing-xs);
}

.budget-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--deep-black);
    margin-bottom: var(--spacing-xs);
}

.budget-estimate {
    font-size: 0.95rem;
    color: var(--gray-text);
}

/* Slider Mockup - Now Functional */
.slider-mockup {
    margin-bottom: var(--spacing-md);
}

.hero-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--crimson-red) 0%, var(--royal-blue) 100%);
    outline: none;
    margin-bottom: var(--spacing-sm);
    cursor: pointer;
}

.hero-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--pure-white);
    border: 3px solid var(--royal-blue);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 71, 255, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 71, 255, 0.4);
}

.hero-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--pure-white);
    border: 3px solid var(--royal-blue);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 71, 255, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 71, 255, 0.4);
}

.slider-labels-mockup {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--gray-text);
}

/* Dropdown Mockup - Now Functional */
.dropdown-mockup {
    margin-bottom: var(--spacing-md);
}

.dropdown-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--deep-black);
    margin-bottom: var(--spacing-xs);
}

.hero-dropdown {
    width: 100%;
    padding: 12px 14px;
    background: var(--pure-white);
    border: 2px solid var(--gray-border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--deep-black);
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dropdown:focus {
    outline: none;
    border-color: var(--royal-blue);
    box-shadow: 0 0 0 3px rgba(0, 71, 255, 0.1);
}

.hero-dropdown option[value="worldwide"] {
    font-weight: 600;
    color: var(--crimson-red);
}

.btn-mockup {
    width: 100%;
    padding: 14px;
    background: var(--crimson-red);
    color: var(--pure-white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
}

/* ========================================
   COMPARISON SECTION
   ======================================== */

.comparison-section {
    background: var(--light-gray);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--pure-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-4px);
}

.comparison-card.riseaxe {
    border: 2px solid var(--royal-blue);
    position: relative;
}

.comparison-card.riseaxe::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--royal-blue);
    color: var(--pure-white);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.comparison-icon {
    margin-bottom: var(--spacing-md);
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--deep-black);
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    font-size: 1rem;
    color: var(--gray-text);
}

.x-icon, .check-icon-small {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.how-it-works {
    background: linear-gradient(180deg, var(--pure-white) 0%, var(--soft-blue) 50%, var(--pure-white) 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(circle at 50% 0%, rgba(0, 71, 255, 0.05), transparent);
    pointer-events: none;
}

/* Progress Journey Animation */
.progress-journey {
    position: relative;
    max-width: 1200px;
    margin: var(--spacing-xl) auto var(--spacing-2xl);
    height: 4px;
}

.progress-line {
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--royal-blue) 0%, 
        var(--royal-blue) 25%, 
        var(--crimson-red) 75%, 
        var(--crimson-red) 100%);
    border-radius: 2px;
    opacity: 0.2;
}

.progress-indicator {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--crimson-red), #ff4d6d);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 20px rgba(215, 38, 61, 0.6);
    animation: progressMove 6s ease-in-out infinite;
}

.progress-indicator::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--crimson-red);
    border-radius: 50%;
    animation: ripple 1.5s ease-out infinite;
}

@keyframes progressMove {
    0% {
        left: 0%;
    }
    25% {
        left: 25%;
    }
    50% {
        left: 50%;
    }
    75% {
        left: 75%;
    }
    100% {
        left: 100%;
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: var(--spacing-lg) 0;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-xl);
    position: relative;
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 var(--spacing-xs);
    min-height: 380px;
    max-width: 280px;
}

.step:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.step:hover .step-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: var(--shadow-blue);
}

.step:hover .step-number {
    transform: translateX(-50%) scale(1.15);
    animation: none;
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--crimson-red), #ff4d6d);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(215, 38, 61, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(215, 38, 61, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(215, 38, 61, 0.5);
    }
}

.step-icon {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, var(--soft-blue), #e0ebff);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-md);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.step-title {
    font-size: 1.375rem;
    color: var(--deep-black);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-description {
    font-size: 1rem;
    color: var(--gray-text);
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.arrow-animated {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.arrow-animated path:first-child {
    stroke-dasharray: 65;
    stroke-dashoffset: 65;
    animation: drawLine 3s ease-in-out infinite;
}

.arrow-animated path:nth-child(2) {
    animation: arrowMove 3s ease-in-out infinite;
    transform-origin: center;
}

/* Particle effect animation */
@keyframes drawLine {
    0% {
        stroke-dashoffset: 65;
        opacity: 0.3;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    100% {
        stroke-dashoffset: -65;
        opacity: 0.3;
    }
}

@keyframes arrowMove {
    0%, 100% {
        transform: translateX(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateX(8px) scale(1.2);
        opacity: 1;
    }
}

/* Add flowing particles effect */
.step-connector::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--crimson-red);
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    animation: particleFlow 3s ease-in-out infinite;
    opacity: 0;
}

@keyframes particleFlow {
    0% {
        left: 0;
        opacity: 0;
        transform: translateY(-50%) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    100% {
        left: 100%;
        opacity: 0;
        transform: translateY(-50%) scale(0.5);
    }
}

/* ========================================
   POLICY SECTION
   ======================================== */

.policy-section {
    background: var(--soft-blue);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.policy-icon {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    animation: shieldPulse 3s ease-in-out infinite;
}

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

.policy-intro {
    font-size: 1.25rem;
    color: var(--deep-black);
    margin-bottom: var(--spacing-xl);
}

.prohibited-content h3 {
    font-size: 1.5rem;
    color: var(--deep-black);
    margin-bottom: var(--spacing-lg);
}

.prohibited-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    text-align: left;
}

.prohibited-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--pure-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.prohibited-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(215, 38, 61, 0.05), transparent);
    transition: left 0.5s ease;
}

.prohibited-item:hover::before {
    left: 100%;
}

.prohibited-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(215, 38, 61, 0.15);
    border: 2px solid rgba(215, 38, 61, 0.2);
}

.prohibited-item svg {
    transition: all 0.3s ease;
}

.prohibited-item:hover svg {
    transform: rotate(360deg) scale(1.1);
}

.prohibited-item span {
    font-size: 1rem;
    color: var(--gray-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.prohibited-item:hover span {
    color: var(--deep-black);
    font-weight: 600;
}

/* ========================================
   CREATE CAMPAIGN SECTION
   ======================================== */

.create-campaign-section {
    background: var(--light-gray);
    padding: var(--spacing-3xl) 0;
}

.campaign-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.campaign-body {
    padding: var(--spacing-2xl);
}

/* URL Input Section */
.url-input-section {
    margin-bottom: var(--spacing-2xl);
}

.url-input-section label {
    display: block;
    font-weight: 600;
    color: var(--deep-black);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.url-input-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 16px 20px;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    border: 2px solid var(--gray-border);
    transition: all 0.3s ease;
}

.url-input-wrapper:focus-within {
    border-color: var(--royal-blue);
    box-shadow: 0 0 0 4px rgba(0, 71, 255, 0.1);
}

.url-input-wrapper svg {
    flex-shrink: 0;
}

#video-url {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-family: var(--font-primary);
    color: var(--gray-text);
    outline: none;
}

#video-url::placeholder {
    color: #999;
}

/* Budget Display */
.budget-display {
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, #E5F0FF 0%, #F0F5FF 100%);
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.budget-display h3 {
    font-size: 1rem;
    color: var(--royal-blue);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.budget-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--deep-black);
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-heading);
}

.estimated-views {
    font-size: 1.125rem;
    color: var(--gray-text);
}

/* Budget Slider Container */
.budget-slider-container {
    margin-bottom: var(--spacing-2xl);
}

.slider-wrapper {
    margin-bottom: var(--spacing-md);
}

#budget-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--crimson-red) 0%, var(--royal-blue) 100%);
    outline: none;
    margin: var(--spacing-lg) 0;
}

#budget-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--pure-white);
    cursor: pointer;
    border: 4px solid var(--royal-blue);
    box-shadow: 0 4px 12px rgba(0, 71, 255, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#budget-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 16px rgba(0, 71, 255, 0.5);
}

#budget-slider::-moz-range-thumb {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--pure-white);
    cursor: pointer;
    border: 4px solid var(--royal-blue);
    box-shadow: 0 4px 12px rgba(0, 71, 255, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#budget-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 16px rgba(0, 71, 255, 0.5);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    color: var(--gray-text);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: var(--spacing-xs);
}

/* Target Countries */
.target-countries {
    margin-bottom: var(--spacing-2xl);
}

.target-countries label {
    display: block;
    font-weight: 600;
    color: var(--deep-black);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.required {
    color: var(--crimson-red);
}

.country-dropdown {
    width: 100%;
    padding: 16px 20px;
    font-size: 1.125rem;
    font-family: var(--font-primary);
    border: 2px solid var(--gray-border);
    border-radius: var(--radius-md);
    background: var(--pure-white);
    color: var(--deep-black);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.country-dropdown:focus {
    outline: none;
    border-color: var(--royal-blue);
    box-shadow: 0 0 0 4px rgba(0, 71, 255, 0.1);
}

.country-dropdown option {
    padding: 12px;
}

.country-dropdown option[value="worldwide"] {
    background: rgba(215, 38, 61, 0.1);
    color: var(--crimson-red);
    font-weight: 600;
}

/* Campaign Launch Button */
.campaign-launch-btn {
    width: 100%;
    font-size: 1.25rem;
    padding: 20px;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
    background: var(--pure-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--pure-white);
    border: 2px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    border-color: var(--royal-blue);
    box-shadow: var(--shadow-blue);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--light-gray);
    color: var(--deep-black);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-badge.popular {
    background: var(--crimson-red);
    color: var(--pure-white);
}

.pricing-title {
    font-size: 1.5rem;
    color: var(--deep-black);
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: var(--spacing-lg);
}

.pricing-amount .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--royal-blue);
}

.pricing-amount .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--deep-black);
    line-height: 1;
}

.pricing-amount .period {
    font-size: 1rem;
    color: var(--gray-text);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    font-size: 1rem;
    color: var(--gray-text);
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
    background: var(--soft-blue);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--pure-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--deep-black);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-avatar {
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--deep-black);
    font-size: 1rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--gray-text);
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    background: var(--pure-white);
}

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

.faq-item {
    background: var(--pure-white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md);
    background: var(--pure-white);
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--deep-black);
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.7;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */

.final-cta {
    background: linear-gradient(135deg, var(--royal-blue), var(--crimson-red));
    color: var(--pure-white);
    text-align: center;
    padding: var(--spacing-3xl) 0;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-headline {
    color: var(--pure-white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-md);
}

.final-cta-subheadline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
}

.final-cta .btn-primary {
    background: var(--pure-white);
    color: var(--royal-blue);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.final-cta .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.final-cta-note {
    margin-top: var(--spacing-md);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--deep-black);
    color: var(--pure-white);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand .logo-text {
    -webkit-text-fill-color: var(--pure-white);
    margin-bottom: var(--spacing-sm);
    display: block;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--pure-white);
}

.footer-column ul {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-lg);
    align-items: center;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    white-space: nowrap;
}

.footer-column a:hover {
    color: var(--pure-white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--pure-white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--crimson-red);
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .trust-text {
        justify-content: center;
    }
    
    .progress-journey {
        display: none;
    }
    
    .steps-container {
        flex-direction: column;
        gap: var(--spacing-xl);
        align-items: stretch;
    }
    
    .step {
        margin: 0;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    
    .step-connector {
        display: flex;
        margin-top: 0;
        margin-bottom: 0;
        transform: rotate(90deg);
        height: 60px;
    }
    
    .arrow-animated {
        transform: rotate(90deg);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--spacing-2xl) 0;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .prohibited-grid {
        grid-template-columns: 1fr;
    }
    
    .result-display {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .result-arrow {
        transform: rotate(90deg);
    }
    
    .result-views {
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .btn-large, .btn-xlarge {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .pricing-amount .amount {
        font-size: 2.5rem;
    }
    
    .result-amount .amount,
    .views-number {
        font-size: 2rem;
    }
}
