/* ═══════════════════════════════════════════════════════════════
   PHASE 2: HOMEPAGE PREMIUM UPGRADE
   Dark Gradients, Glass Morphism & Enhanced Animations
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   PREMIUM HERO SECTION
   ═══════════════════════════════════════════════════════════════ */

.hero {
    background: linear-gradient(135deg, #0a1628 0%, #1a2942 50%, #0f2439 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px; /* Reduced for mobile, increased via media query for desktop */
}

/* Desktop spacing */
@media (min-width: 768px) {
    .hero {
        padding: 140px 0 120px;
    }
}

/* Animated gradient overlay with radial glow */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 168, 204, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Parallax effect on scroll */
.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 217, 255, 0.03) 50%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 217, 255, 0.3);
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.6;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

/* Premium CTA Buttons */
.hero .btn-primary {
    background: linear-gradient(135deg, var(--electric-cyan, #00FFF0) 0%, #00cccc 100%);
    padding: 18px 45px;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.4), 0 0 20px rgba(0, 217, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.hero .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.6), 0 0 40px rgba(0, 217, 255, 0.4);
}

/* Trust Badges with Glow */
.trust-badges {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
    transform: translateY(-3px);
}

.trust-badge i {
    font-size: 1.5rem;
    color: var(--electric-cyan, #00FFF0);
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.6));
}

/* ═══════════════════════════════════════════════════════════════
   PROBLEM SECTION - DARK GRADIENT
   ═══════════════════════════════════════════════════════════════ */

.problem-section {
    background: linear-gradient(135deg, #0f2439 0%, #1a2942 100%);
    position: relative;
    padding: 100px 0;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.5), transparent);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px; /* Mobile-first: reduced padding */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Desktop spacing */
@media (min-width: 768px) {
    .problem-card {
        padding: 35px;
    }
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff4444, #ff6b6b);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 68, 68, 0.4);
    box-shadow: 0 20px 50px rgba(255, 68, 68, 0.2);
}

.problem-card:hover::before {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   SOLUTION SECTION - GLASS MORPHISM
   ═══════════════════════════════════════════════════════════════ */

.solution-section {
    background: linear-gradient(135deg, #1a2942 0%, #0a1628 100%);
    padding: 60px 0; /* Mobile-first */
    position: relative;
}

@media (min-width: 768px) {
    .solution-section {
        padding: 100px 0;
    }
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 28px; /* Mobile-first: comfortable but not excessive */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .solution-card {
        padding: 40px;
    }
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--electric-cyan, #00FFF0) 0%, #00cccc 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 217, 255, 0.5);
    box-shadow: 0 25px 60px rgba(0, 217, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 168, 204, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

.solution-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--electric-cyan, #00FFF0), #00cccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════════════════════════════════════════════════════
   14-DAY PROCESS TIMELINE - PREMIUM GRADIENT
   ═══════════════════════════════════════════════════════════════ */

.process-section {
    background: linear-gradient(135deg, #0a1628 0%, #1a2942 50%, #0f2439 100%);
    padding: 100px 0;
    position: relative;
}

.process-timeline {
    position: relative;
    margin-top: 60px;
}

/* Glowing timeline line */
.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(0, 217, 255, 0.5) 20%, 
        rgba(0, 217, 255, 0.8) 50%, 
        rgba(0, 217, 255, 0.5) 80%, 
        transparent 100%
    );
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

.process-day {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    animation: fadeInTimeline 0.6s ease-out forwards;
}

.process-day:nth-child(1) { animation-delay: 0.1s; }
.process-day:nth-child(2) { animation-delay: 0.2s; }
.process-day:nth-child(3) { animation-delay: 0.3s; }
.process-day:nth-child(4) { animation-delay: 0.4s; }
.process-day:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInTimeline {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.day-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--electric-cyan, #00FFF0), #00cccc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.6), 0 10px 40px rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: all 0.3s ease;
}

.process-day:hover .day-marker {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 0 50px rgba(0, 217, 255, 0.9), 0 15px 50px rgba(0, 0, 0, 0.4);
}

.day-content {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    width: calc(50% - 50px);
    transition: all 0.4s ease;
}

.process-day:nth-child(odd) .day-content {
    margin-right: auto;
    margin-left: 0;
}

.process-day:nth-child(even) .day-content {
    margin-left: auto;
    margin-right: 0;
}

.day-content:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 217, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.2);
}

/* ═══════════════════════════════════════════════════════════════
   ROI CALCULATOR - GLASS MORPHISM PREMIUM
   ═══════════════════════════════════════════════════════════════ */

.roi-calculator-section {
    background: linear-gradient(135deg, #0f2439 0%, #1a2942 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.roi-calculator-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.calculator-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(10, 22, 40, 0.95);
    -webkit--webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 217, 255, 0.1);
    position: relative;
    z-index: 1;
}

.calculator-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.calculator-form h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 30px;
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group select option {
    background: #0a1628;
    color: #ffffff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 217, 255, 0.8);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.2), 0 0 20px rgba(0, 217, 255, 0.3);
}

/* Checkbox Labels - High Visibility */
.calculator-form .checkbox-label {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 16px;
    border-radius: 10px;
    color: #ffffff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calculator-form .checkbox-label:hover {
    background: rgba(0, 217, 255, 0.2);
    border-color: rgba(0, 217, 255, 0.5);
    transform: translateY(-2px);
}

.calculator-form .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.calculator-form .checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    grid-column: 1 / -1;
}

/* Premium Calculate Button */
#calculateROI {
    background: linear-gradient(135deg, var(--electric-cyan, #00FFF0) 0%, #00cccc 100%);
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

#calculateROI::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

#calculateROI:hover::before {
    width: 400px;
    height: 400px;
}

#calculateROI:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.6);
}

/* Results Cards with Glow */
.calculator-results {
    margin-top: 40px;
}

.calculator-results h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.roi-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.roi-metric {
    background: rgba(255, 255, 255, 0.08);
    -webkit--webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.roi-metric:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 217, 255, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.3);
}

.roi-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.result-item {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.result-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 217, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.2);
}

.roi-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--electric-cyan, #00FFF0), #00FF88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 10px 0;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.4));
}

/* ROI Breakdown Section */
.roi-breakdown {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

.roi-breakdown h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breakdown-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.breakdown-item strong {
    color: var(--electric-cyan, #00FFF0);
    font-size: 1.1rem;
    font-weight: 700;
}

.breakdown-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 0 0;
    margin-top: 15px;
    border-top: 2px solid rgba(0, 217, 255, 0.3);
}

.breakdown-total span {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
}

.breakdown-total strong {
    color: #00FF88;
    font-size: 1.5rem;
    font-weight: 800;
}

/* ROI CTA Section */
.roi-cta {
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.roi-cta p {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.roi-cta strong {
    color: var(--electric-cyan, #00FFF0);
}

.inline-lead-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.inline-lead-form input {
    flex: 1;
    min-width: 200px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
}

.inline-lead-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.inline-lead-form button {
    padding: 15px 30px;
    white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════
   SOCIAL PROOF - PREMIUM STATS
   ═══════════════════════════════════════════════════════════════ */

.social-proof-section {
    background: linear-gradient(135deg, #1a2942 0%, #0a1628 100%);
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--electric-cyan, #00FFF0), #00cccc);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 217, 255, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--electric-cyan, #00FFF0), #00cccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    display: block;
}

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION - FINAL PREMIUM TOUCH
   ═══════════════════════════════════════════════════════════════ */

.cta-section {
    background: linear-gradient(135deg, #0a1628 0%, #1a2942 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse 6s ease-in-out infinite;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #e0f2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .day-marker {
        left: 30px;
    }
    
    .day-content {
        width: calc(100% - 80px);
        margin-left: 80px;
    }
    
    .calculator-container {
        padding: 30px 20px;
    }
    
    .roi-value {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   PHASE 4: CONVERSION OPTIMIZATION ELEMENTS
   ═══════════════════════════════════════════════════════════════ */

/* Urgency messaging under hero CTA */
.hero-urgency {
    margin-top: 1rem;
    margin-bottom: 0;
    color: #ff9f43;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-urgency i {
    animation: pulse 2s ease-in-out infinite;
}

/* Pulse animation for CTAs */
.pulse-animation {
    animation: ctaPulse 2s ease-in-out infinite;
    position: relative;
}

.pulse-animation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    animation: pulseRing 2s ease-in-out infinite;
    border: 2px solid var(--electric-cyan, #00D9FF);
    opacity: 0;
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0; }
}

/* Process section guarantee text */
.process-guarantee {
    text-align: center;
    margin-top: 1rem;
    color: var(--neon-green, #00FF88);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.process-guarantee i {
    color: var(--neon-green, #00FF88);
}

/* Calculator privacy promise */
.calculator-promise {
    text-align: center;
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.calculator-promise i {
    color: var(--neon-green, #00FF88);
}

/* CTA section urgency box */
.cta-urgency-box {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 159, 67, 0.15);
    border: 1px solid rgba(255, 159, 67, 0.4);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin: 1.5rem 0;
    animation: urgencyGlow 2s ease-in-out infinite;
}

.urgency-icon {
    font-size: 1.25rem;
    color: #ff9f43;
    animation: fireFlicker 1s ease-in-out infinite;
}

.urgency-text {
    color: #fff;
    font-size: 0.95rem;
}

@keyframes urgencyGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 159, 67, 0.2); }
    50% { box-shadow: 0 0 20px rgba(255, 159, 67, 0.4); }
}

@keyframes fireFlicker {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1) rotate(-5deg); }
    75% { transform: scale(1.1) rotate(5deg); }
}

/* Fade in up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive for new elements */
@media (max-width: 768px) {
    .hero-urgency {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .cta-urgency-box {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .urgency-text {
        font-size: 0.9rem;
    }
    
    .process-guarantee,
    .calculator-promise {
        font-size: 0.8rem;
    }
    
    /* Hero CTA Buttons Mobile Fix */
    .hero-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        min-width: unset;
        padding: 16px 24px;
        font-size: 0.95rem;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    
    .hero .btn-primary,
    .hero .btn-secondary {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    /* Story Cards Mobile Fix */
    .success-stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .story-card {
        padding: 20px;
        padding-top: 50px;
        min-height: 0;
    }
    
    .story-card.featured {
        grid-column: span 1;
    }
    
    .story-card h3 {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .story-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .story-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .story-card.featured .story-metrics {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .story-metric {
        padding: 12px 8px;
    }
    
    .metric-value {
        font-size: 1.25rem;
    }
    
    .metric-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    /* Smaller mobile - Stack everything */
    .hero-cta .btn {
        padding: 14px 16px;
        font-size: 0.85rem;
    }
    
    .hero-cta .btn i {
        display: none;
    }
    
    .story-card.featured .story-metrics {
        grid-template-columns: 1fr 1fr;
    }
    
    .story-card.featured .story-metrics .story-metric:last-child {
        grid-column: span 2;
    }
    
    .metric-value {
        font-size: 1.1rem;
    }
    
    .metric-label {
        font-size: 0.65rem;
    }
    
    .story-badge {
        font-size: 0.65rem;
        padding: 6px 12px;
    }
}
