/* main.css - Enhanced Premium Version */
:root {
    /* Brand Colors */
    --volt-yellow: #F9C30E;
    --volt-yellow-light: #FFE169;
    --volt-yellow-dark: #E0AF0C;
    --night-black: #0F0F0F;
    --soft-off-white: #F5F5F2;
    --graphite: #1C1C1C;
    --slate-grey: #2A2A2A;
    --mid-grey: #8C8C8C;
    --pure-white: #FFFFFF;
    
    /* Gradients */
    --hero-gradient: linear-gradient(135deg, #0F0F0F 0%, #1C1C1C 50%, #2A2A2A 100%);
    --card-gradient: linear-gradient(135deg, #1C1C1C 0%, #252525 100%);
    --accent-gradient: linear-gradient(135deg, #F9C30E 0%, #FFD700 100%);
    
    /* Typography */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: clamp(80px, 10vw, 120px);
    --container-max: 1200px;
    
    /* Effects */
    --glow-shadow: 0 20px 40px rgba(249, 195, 14, 0.15);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --hover-lift: translateY(-8px);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--night-black);
    color: var(--soft-off-white);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--soft-off-white);
}

h1 {
    font-size: clamp(2.8rem, 6vw, 4rem);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--soft-off-white) 0%, var(--volt-yellow-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.section-title h2::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
}

h4 {
    font-size: 1.3rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    color: var(--soft-off-white);
    line-height: 1.7;
}

/* Layout */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced Header */
.main-header {
    background: rgba(15, 15, 15, 0.95);
    border-bottom: 1px solid var(--slate-grey);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--soft-off-white);
    font-weight: 700;
    font-family: var(--heading-font);
    font-size: 1.3rem;
    gap: 0.75rem;
}

.logo-mark {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.logo-link:hover .logo-mark {
    transform: scale(1.1) rotate(5deg);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--soft-off-white);
    text-decoration: none;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--volt-yellow);
    transition: width 0.3s ease;
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-button {
    background: var(--accent-gradient);
    color: var(--night-black);
    padding: 0.85rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: var(--glow-shadow);
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(249, 195, 14, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--soft-off-white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Enhanced Hero Section */
.hero {
    background: var(--hero-gradient);
    padding: calc(var(--section-padding) + 80px) 0 var(--section-padding);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(249, 195, 14, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(249, 195, 14, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--volt-yellow);
    margin-bottom: 2rem;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--mid-grey);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.feature-tag {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--soft-off-white);
    font-size: 1rem;
    text-align: left;
    padding: 1.5rem;
    background: rgba(42, 42, 42, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(249, 195, 14, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    border-color: var(--volt-yellow);
    transform: translateY(-2px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(249, 195, 14, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 2px solid var(--volt-yellow);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--night-black);
    box-shadow: var(--glow-shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(249, 195, 14, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--soft-off-white);
    border: 2px solid var(--volt-yellow);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(249, 195, 14, 0.1);
    transform: translateY(-3px);
}

.hero .trust-line {
    color: var(--mid-grey);
    font-size: 0.95rem;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.hero .credibility-line {
    color: var(--volt-yellow);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Enhanced Sections */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    margin-bottom: 1.5rem;
}

.section-title p {
    color: var(--mid-grey);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Enhanced Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.audience-card {
    background: var(--card-gradient);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--slate-grey);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.audience-card:hover {
    transform: var(--hover-lift);
    border-color: var(--volt-yellow);
    box-shadow: var(--card-shadow);
}

.audience-card:hover::before {
    transform: scaleX(1);
}

.audience-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(249, 195, 14, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--volt-yellow);
}

.audience-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--volt-yellow);
}

.audience-card h4 {
    color: var(--volt-yellow);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.audience-card p {
    color: var(--mid-grey);
    line-height: 1.6;
}

.audience-cta {
    color: var(--mid-grey);
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Enhanced Brand Introduction */
.brand-intro {
    background: var(--graphite);
    position: relative;
}

.brand-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.brand-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--mid-grey);
}

.brand-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.visual-card {
    background: var(--card-gradient);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(249, 195, 14, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.visual-card:hover::before {
    opacity: 0.05;
}

.visual-card:hover {
    transform: translateY(-5px);
    border-color: var(--volt-yellow);
    box-shadow: var(--glow-shadow);
}

.visual-icon {
    width: 64px;
    height: 64px;
    fill: var(--volt-yellow);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.visual-card h4 {
    color: var(--soft-off-white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.visual-card p {
    color: var(--mid-grey);
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Enhanced Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.tool-card {
    background: var(--card-gradient);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    border: 1px solid var(--slate-grey);
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tool-card:hover {
    transform: var(--hover-lift);
    border-color: var(--volt-yellow);
    box-shadow: var(--card-shadow);
}

.tool-card:hover::before {
    transform: scaleX(1);
}

.tool-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: var(--night-black);
    box-shadow: var(--glow-shadow);
}

.tool-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--night-black);
}

.tool-card h3 {
    margin-bottom: 1rem;
    color: var(--soft-off-white);
    font-size: 1.5rem;
}

.tool-subtitle {
    color: var(--volt-yellow);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
    font-size: 1.1rem;
}

.tool-description {
    color: var(--mid-grey);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.tool-highlights {
    margin-bottom: 2rem;
}

.tool-highlights h4 {
    color: var(--soft-off-white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tool-features {
    list-style: none;
    margin-bottom: 2rem;
}

.tool-features li {
    padding: 0.75rem 0;
    color: var(--soft-off-white);
    position: relative;
    padding-left: 2rem;
    line-height: 1.5;
}

.tool-features li::before {
    content: "→";
    color: var(--volt-yellow);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

.tool-ideal {
    background: rgba(249, 195, 14, 0.1);
    border-left: 4px solid var(--volt-yellow);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 12px 12px 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.tool-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--volt-yellow);
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    text-shadow: 0 2px 10px rgba(249, 195, 14, 0.3);
}

.tool-download {
    color: var(--mid-grey);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
}

.tool-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: var(--soft-off-white);
    border: 2px solid var(--slate-grey);
    padding: 1rem 1.5rem;
    flex: 1;
}

.btn-outline:hover {
    border-color: var(--volt-yellow);
    background: transparent;
    transform: translateY(-2px);
}

.btn.small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Enhanced Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--card-gradient);
    border-radius: 16px;
    border: 1px solid var(--slate-grey);
    transition: all 0.3s ease;
    position: relative;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--volt-yellow);
    box-shadow: var(--card-shadow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(249, 195, 14, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--volt-yellow);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--volt-yellow);
}

.feature-item h4 {
    color: var(--volt-yellow);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-item p {
    color: var(--mid-grey);
    line-height: 1.6;
}

/* Enhanced Comparison Table */
.comparison-table {
    background: var(--card-gradient);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--slate-grey);
    box-shadow: var(--card-shadow);
    margin: 4rem 0;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr repeat(5, 1fr);
    background: linear-gradient(135deg, var(--slate-grey) 0%, #333 100%);
    border-bottom: 3px solid var(--volt-yellow);
}

.comparison-feature {
    padding: 2rem 1.5rem;
    font-weight: 700;
    color: var(--soft-off-white);
    background: transparent;
    display: flex;
    align-items: center;
    font-family: var(--heading-font);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.comparison-tool {
    padding: 2rem 1.5rem;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.tool-name {
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--volt-yellow);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tool-best {
    font-size: 0.85rem;
    color: var(--mid-grey);
    line-height: 1.4;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr repeat(5, 1fr);
    border-bottom: 1px solid var(--slate-grey);
    transition: background-color 0.2s ease;
}

.comparison-row:hover {
    background: rgba(249, 195, 14, 0.05);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: 1.5rem;
    border-left: 1px solid var(--slate-grey);
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.5;
}

.comparison-cell:first-child {
    border-left: none;
}

.difficulty {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--heading-font);
}

.difficulty.easy {
    background: rgba(0, 184, 148, 0.2);
    color: #00b894;
    border: 1px solid rgba(0, 184, 148, 0.3);
}

.difficulty.medium {
    background: rgba(249, 195, 14, 0.2);
    color: var(--volt-yellow);
    border: 1px solid rgba(249, 195, 14, 0.3);
}

.difficulty-desc {
    font-size: 0.8rem;
    color: var(--mid-grey);
    line-height: 1.4;
}

.actions-row .comparison-cell {
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

/* Enhanced Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 4rem 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--slate-grey);
    z-index: 1;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--card-gradient);
    border-radius: 20px;
    border: 1px solid rgba(249, 195, 14, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.process-step:hover {
    transform: var(--hover-lift);
    border-color: var(--volt-yellow);
    box-shadow: var(--card-shadow);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    color: var(--night-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 2rem;
    font-family: var(--heading-font);
    border: 4px solid var(--graphite);
    box-shadow: 0 0 0 4px var(--volt-yellow);
    position: relative;
    z-index: 3;
}

.process-step h4 {
    color: var(--volt-yellow);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.process-step p {
    color: var(--mid-grey);
    line-height: 1.7;
}

/* Enhanced YouTube Comparison */
.comparison-cards {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
    margin: 4rem 0;
}

.comparison-card {
    background: var(--card-gradient);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--slate-grey);
    transition: all 0.3s ease;
    position: relative;
}

.comparison-card.highlighted {
    border-color: var(--volt-yellow);
    background: linear-gradient(135deg, var(--graphite) 0%, #222 100%);
    transform: scale(1.02);
    box-shadow: var(--glow-shadow);
}

.comparison-card.highlighted::before {
    content: "RECOMMENDED";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: var(--night-black);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-card h4 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--soft-off-white);
    font-size: 1.4rem;
    font-family: var(--heading-font);
}

.disadvantages, .advantages {
    list-style: none;
    font-size: 0.95rem;
}

.disadvantages li, .advantages li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--slate-grey);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}

.disadvantages li:last-child, .advantages li:last-child {
    border-bottom: none;
}

.disadvantages li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: #ff4444;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.advantages li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--volt-yellow);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-text {
    background: var(--accent-gradient);
    color: var(--night-black);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--heading-font);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 0 4px var(--graphite);
}

/* Enhanced Bundle Section */
.bundle-section {
    background: linear-gradient(135deg, var(--graphite) 0%, #222 100%);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    margin: 4rem 0;
    border: 2px solid var(--volt-yellow);
    position: relative;
    overflow: hidden;
}

.bundle-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--volt-yellow), #ffd700, var(--volt-yellow));
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

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

.bundle-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.bundle-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--volt-yellow);
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    text-shadow: 0 2px 10px rgba(249, 195, 14, 0.3);
}

.bundle-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

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

.bundle-feature .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--volt-yellow);
}

.bundle-feature h4 {
    color: var(--soft-off-white);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.bundle-feature p {
    color: var(--mid-grey);
    margin: 0;
}

/* Enhanced FAQ */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-gradient);
    border-radius: 16px;
    margin-bottom: 1rem;
    border: 1px solid var(--slate-grey);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--volt-yellow);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--soft-off-white);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(249, 195, 14, 0.05);
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--volt-yellow);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 2rem 2rem;
    color: var(--mid-grey);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question::after {
    content: "-";
    transform: rotate(180deg);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--graphite) 0%, #1a1a1a 100%);
    border-top: 4px solid var(--volt-yellow);
}

/* Enhanced Footer */
.main-footer {
    background: var(--graphite);
    border-top: 1px solid var(--slate-grey);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.3rem;
    gap: 0.75rem;
}

.footer-tagline {
    color: var(--mid-grey);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: var(--soft-off-white);
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
}

.footer-section a {
    display: block;
    color: var(--mid-grey);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--volt-yellow);
}

.footer-bottom {
    border-top: 1px solid var(--slate-grey);
    padding-top: 2rem;
    text-align: center;
    color: var(--mid-grey);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.tool-card:hover .tool-icon {
    animation: float 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-feature {
        background: var(--slate-grey);
        font-weight: 700;
        border-bottom: 1px solid var(--graphite);
    }
    
    .comparison-tool {
        border-left: none;
        border-top: 1px solid var(--graphite);
    }
    
    .comparison-cell {
        border-left: none;
        border-top: 1px solid var(--slate-grey);
    }
    
    .comparison-cards {
        grid-template-columns: 1fr;
    }
    
    .vs-divider {
        order: -1;
        margin: 2rem 0;
    }
    
    .brand-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .tool-actions {
        flex-direction: column;
    }
    
    .btn-outline, .btn-primary {
        width: 100%;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .bundle-section {
        padding: 2rem;
        margin: 2rem 0;
    }
    
    .bundle-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .brand-visual {
        grid-template-columns: 1fr;
    }
}

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
}

/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--volt-yellow);
    outline-offset: 2px;
    border-radius: 6px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* Enhanced Hero Section */
.hero-badge {
    display: inline-block;
    background: var(--accent-gradient);
    color: var(--night-black);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-family: var(--heading-font);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--soft-off-white);
    font-size: 1rem;
    text-align: left;
    padding: 1.5rem;
    background: rgba(42, 42, 42, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(249, 195, 14, 0.2);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    border-color: var(--volt-yellow);
    transform: translateY(-2px);
}

.hero-feature-icon {
    width: 24px;
    height: 24px;
    fill: var(--volt-yellow);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.hero-trust {
    animation: fadeInUp 0.8s ease-out 1s both;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--mid-grey);
    font-size: 0.9rem;
}

.trust-badge svg {
    fill: var(--volt-yellow);
}

/* Enhanced Audience Grid (3 columns) */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Enhanced Brand Introduction */
.brand-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--volt-yellow);
    font-family: var(--heading-font);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--mid-grey);
    margin-top: 0.5rem;
}

.visual-showcase {
    position: relative;
    height: 400px;
    width: 100%;
}

.floating-card {
    position: absolute;
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(249, 195, 14, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
    width: 220px;
}

.floating-card:hover {
    transform: translateY(-5px);
    border-color: var(--volt-yellow);
}

.card-1 {
    top: 10%;
    left: 10%;
    animation: float 3s ease-in-out infinite;
}

.card-2 {
    top: 40%;
    right: 10%;
    transform: translateY(-50%);
    animation: float 3s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 10%;
    left: 30%;
    animation: float 3s ease-in-out infinite 2s;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.card-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--night-black);
}

.floating-card h5 {
    color: var(--soft-off-white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.floating-card p {
    color: var(--mid-grey);
    margin: 0;
    font-size: 0.9rem;
}

/* Enhanced What You Get Section */
.features-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.feature-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    background: var(--card-gradient);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--slate-grey);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--volt-yellow);
    box-shadow: var(--card-shadow);
}

.feature-card.highlight {
    border-color: var(--volt-yellow);
    background: linear-gradient(135deg, var(--graphite) 0%, #222 100%);
}

.feature-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(249, 195, 14, 0.1);
    position: absolute;
    top: -10px;
    right: 10px;
    font-family: var(--heading-font);
    line-height: 1;
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-card h4 {
    color: var(--volt-yellow);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--mid-grey);
    margin: 0;
    line-height: 1.6;
}

.feature-badge {
    background: var(--accent-gradient);
    color: var(--night-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Enhanced Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 4rem 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--slate-grey);
    z-index: 1;
}

.process-phase {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--card-gradient);
    border-radius: 20px;
    border: 1px solid rgba(249, 195, 14, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.process-phase:hover {
    transform: var(--hover-lift);
    border-color: var(--volt-yellow);
    box-shadow: var(--card-shadow);
}

.phase-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}


.phase-number {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    color: var(--night-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--heading-font);
    border: 4px solid var(--graphite);
    box-shadow: 0 0 0 2px var(--volt-yellow);
    position: relative;
    z-index: 3;
}

.phase-header h4 {
    color: var(--volt-yellow);
    margin: 0;
    font-size: 1.2rem;
}

.process-phase p {
    color: var(--mid-grey);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}


.phase-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tool-tag {
    background: rgba(249, 195, 14, 0.1);
    color: var(--volt-yellow);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(249, 195, 14, 0.3);
}

.phase-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: rgba(249, 195, 14, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--volt-yellow);
}

.phase-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--volt-yellow);
}

/* Responsive Design Updates */
@media (max-width: 1024px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-features-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .features-showcase {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
  .floating-card {
        position: relative;
        margin-bottom: 1rem;
        animation: none !important;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
  .visual-showcase {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}
/* Enhanced Footer Styles */
.main-footer {
    background: var(--graphite);
    border-top: 1px solid var(--slate-grey);
    padding: 4rem 0 2rem;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.3rem;
    gap: 0.75rem;
    color: var(--soft-off-white);
}

.footer-tagline {
    color: var(--mid-grey);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 300px;
}

/* Payment & Security Section */
.payment-security {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-grey);
}

.payment-security h5 {
    color: var(--soft-off-white);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.payment-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stripe-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(103, 114, 229, 0.1);
    border: 1px solid rgba(103, 114, 229, 0.3);
    border-radius: 8px;
    color: var(--soft-off-white);
    font-size: 0.85rem;
    font-weight: 600;
}

.stripe-badge svg {
    flex-shrink: 0;
}

.security-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--mid-grey);
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    background: rgba(42, 42, 42, 0.6);
    border-radius: 6px;
    border: 1px solid var(--slate-grey);
}

.security-badge svg {
    flex-shrink: 0;
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: var(--soft-off-white);
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-section a {
    display: block;
    color: var(--mid-grey);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    padding-left: 0;
}

.footer-section a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--volt-yellow);
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: var(--volt-yellow);
    padding-left: 1rem;
}

.footer-section a:hover::before {
    width: 0.5rem;
}

.footer-highlight {
    color: var(--volt-yellow) !important;
    font-weight: 600;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    border-top: 1px solid var(--slate-grey);
}

/* Trust Indicators */
.footer-trust {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--slate-grey);
    border-bottom: 1px solid var(--slate-grey);
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--soft-off-white);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-icon {
    width: 40px;
    height: 40px;
    background: rgba(249, 195, 14, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(249, 195, 14, 0.3);
    flex-shrink: 0;
}

.trust-icon svg {
    width: 20px;
    height: 20px;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--mid-grey);
    font-size: 0.9rem;
}

.footer-social {
    text-align: right;
    font-style: italic;
    color: var(--mid-grey);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .payment-badges {
        align-items: center;
    }
    
    .security-badges {
        justify-content: center;
    }
    
    .trust-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
}