/* ==================== BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary: #ff5722;
    --primary-dark: #f4511e;
    --secondary: #0f172a;
    --secondary-light: #1e293b;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    --success: #22c55e;
    --danger: #ef4444;
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 120px;
    --section-padding-mobile: 60px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 0;
    animation: pageLoad 0.6s ease-out forwards;
}

@keyframes pageLoad {
    to {
        opacity: 1;
    }
}

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

/* ==================== HEADER ==================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    width: 40px;
    height: auto;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

nav a:not(.cta-nav-btn):hover {
    color: var(--text-primary);
}

nav a:not(.cta-nav-btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

nav a:not(.cta-nav-btn):hover::after {
    width: 100%;
}

.cta-nav-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.25);
    transition: all 0.3s;
}

.cta-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.35);
}

.cta-nav-btn::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-nav-overlay.active {
    opacity: 1;
}

/* ==================== HERO SECTION - ENHANCED ==================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 110px 24px 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.1) 0%, rgba(244, 81, 30, 0.05) 100%);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: pulse 15s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.15) 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: 7s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }
    75% {
        transform: translate(20px, 30px) rotate(270deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.hero-container {
    max-width: 1000px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.badge-intro {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border: 1px solid rgba(255, 87, 34, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.sparkle {
    font-size: 16px;
    animation: sparkle 2s infinite ease-in-out;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -2px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.highlight-text {
    position: relative;
    display: inline-block;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    color: var(--primary);
    opacity: 0.3;
    animation: draw-line 1.5s ease-out 0.8s forwards;
}

@keyframes draw-line {
    from {
        stroke-dasharray: 1000;
        stroke-dashoffset: 1000;
    }
    to {
        stroke-dasharray: 1000;
        stroke-dashoffset: 0;
    }
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

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

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
    opacity: 0;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
    opacity: 1;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.5);
}

.btn-primary:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-primary svg {
    transition: transform 0.3s;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

/* Improved Trust Indicators Grid */
.trust-indicators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 48px auto 9px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.trust-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.trust-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 87, 34, 0.15);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.95);

    transition: all 0.3s ease;
    animation: scaleIn 0.6s ease-out both;
}

.trust-card:nth-child(1) {
    animation-delay: 0.5s;
}

.trust-card:nth-child(2) {
    animation-delay: 0.6s;
}

.trust-card:nth-child(3) {
    animation-delay: 0.7s;
}

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

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.9);
}

.trust-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.1) 0%, rgba(244, 81, 30, 0.05) 100%);
    border-radius: 12px;
    color: var(--primary);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.trust-card:hover .trust-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.4);
}

.trust-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-family: 'Space Grotesk', sans-serif;
}

.trust-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 87, 34, 0.05);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--border);
}

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

/* ==================== SECTION STYLES ==================== */
.section-label {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.1) 0%, rgba(244, 81, 30, 0.05) 100%);
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==================== INBOX MOCKUP SECTION ==================== */
.mockup-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.inbox-mockup {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.inbox-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 16px 24px;
    border-bottom: 2px solid var(--border);
}

.inbox-tabs {
    display: flex;
    gap: 12px;
}

.tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
}

.tab:hover {
    background: rgba(255, 255, 255, 0.5);
}

.tab.active {
    background: var(--bg-white);
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tab-icon {
    font-size: 18px;
}

.inbox-content {
    position: relative;
    min-height: 300px;
}

.email-list {
    display: none;
    flex-direction: column;
    padding: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.email-list.active {
    display: flex;
    opacity: 1;
}

.email-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.email-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(255, 87, 34, 0.1), transparent);
    transition: width 0.4s ease;
}

.email-item:hover::before {
    width: 100%;
}

.email-item:hover {
    background: var(--bg-light);
    transform: translateX(8px);
    box-shadow: -4px 0 12px rgba(255, 87, 34, 0.1);
}

.email-item.featured {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.05) 0%, rgba(244, 81, 30, 0.02) 100%);
    border-left: 4px solid var(--primary);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: -4px 0 12px rgba(255, 87, 34, 0.2);
    }
    50% {
        box-shadow: -4px 0 20px rgba(255, 87, 34, 0.4);
    }
}

.email-item.buried {
    opacity: 0.6;
}

.email-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    flex-shrink: 0;
}

.email-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.email-sender {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-primary);
}

.email-subject {
    font-size: 14px;
    color: var(--text-primary);
}

.email-preview {
    font-size: 13px;
    color: var(--text-muted);
}

.email-time {
    font-size: 13px;
    color: var(--text-muted);
    flex-shrink: 0;
}

/* ==================== RESULTS CAROUSEL SECTION - 16:9 FIT IN VIEWPORT ==================== */
.results-section {
    padding: calc(var(--section-padding) * 0.8) 0;
    background: var(--bg-light);
    position: relative;
}

.results-section .section-header {
    margin-bottom: 48px;
}

/* Carousel Container - Optimized for viewport fit */
.carousel-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 70px;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 16px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

/* Slide Content - Optimized for 16:9 and viewport fit */
.slide-content {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.slide-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.1) 0%, rgba(244, 81, 30, 0.05) 100%);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

/* 16:9 Image Wrapper */
.slide-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}


/* Video Wrapper - 16:9 */
.slide-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(255, 87, 34, 0.4);
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(255, 87, 34, 0.5);
}

.video-play-btn svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
}

/* Slide Caption */
.slide-caption {
    text-align: center;
}

.slide-caption h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.slide-caption p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Slide Stats */
.slide-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 24px;
    border-top: 2px solid var(--border);
}

.result-stat {
    text-align: center;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.result-stat:hover {
    background: rgba(255, 87, 34, 0.05);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.1);
}

.result-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.result-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav:hover svg path {
    stroke: white;
}

.carousel-nav svg path {
    transition: stroke 0.3s ease;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-nav:disabled:hover {
    background: var(--bg-white);
    border-color: var(--border);
    transform: translateY(-50%) scale(1);
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}

.indicator:hover:not(.active) {
    background: var(--text-muted);
    transform: scale(1.2);
}

/* Animation for slide entrance */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-slide.active .slide-content {
    animation: slideIn 0.5s ease-out;
}

/* ==================== HOW IT WORKS SECTION ==================== */
.steps-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    padding: 40px 32px;
    background: var(--bg-light);
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.step-card:hover {
    background: var(--bg-white);
    border-color: var(--border);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
}

.step-number {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.1);
}

.step-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==================== COMPARISON SECTION ==================== */
.comparison-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-card {
    padding: 40px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 2px solid var(--border);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.comparison-card:hover::before {
    opacity: 1;
}

.comparison-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.card-badge {
    display: inline-block;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.badge-old {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    color: var(--danger);
}

.badge-new {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
    color: var(--success);
}

.card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
    line-height: 1.3;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(4px);
}

.icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
}

.icon-negative {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.icon-positive {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
}

.feature-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.result-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-radius: 12px;
    margin-top: 32px;
}

.result-negative {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(220, 38, 38, 0.02) 100%);
    border: 2px solid rgba(239, 68, 68, 0.2);
}

.result-positive {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(22, 163, 74, 0.02) 100%);
    border: 2px solid rgba(34, 197, 94, 0.2);
}

.result-arrow {
    font-size: 32px;
    flex-shrink: 0;
}

.result-negative .result-arrow {
    color: var(--danger);
}

.result-positive .result-arrow {
    color: var(--success);
}

.result-badge h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.result-badge p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ==================== CTA SECTION ==================== */
.final-cta-section {
    padding: 4px 0;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

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

.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== FOOTER ==================== */
footer {
    padding: 40px 0;
    background: var(--secondary);
    color: white;
    text-align: center;
}

.footer-content p {
    font-size: 14px;
    opacity: 0.8;
}

/* ==================== REVEAL ANIMATIONS ==================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 968px) {
    :root {
        --section-padding: 80px;
        --section-padding-mobile: 50px;
    }

    nav {
        position: fixed;
        top: 73px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 73px);
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 24px;
        gap: 24px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }

    nav.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-nav-overlay {
        display: block;
    }

    .mobile-nav-overlay.active {
        display: block;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .trust-indicators-grid {
        grid-template-columns: 1fr;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 24px 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .carousel-container {
        padding: 0 50px;
    }

    .slide-content {
        padding: 24px;
    }

    .slide-caption h4 {
        font-size: 20px;
    }

    .slide-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .result-stat {
        padding: 12px;
    }

    .result-stat-number {
        font-size: 28px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-nav svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        padding: 0 40px;
    }

    .slide-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .slide-caption h4 {
        font-size: 18px;
    }

    .slide-caption p {
        font-size: 14px;
    }

    .carousel-indicators {
        gap: 8px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 24px;
    }

    .comparison-card,
    .step-card {
        padding: 24px;
    }
}
/* ==================== VIDEO TESTIMONIAL SECTION - ORIGINAL CLEAN STYLE ==================== */
.testimonial-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.testimonial-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #000;
}

.testimonial-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #000;
}

.testimonial-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonial-video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.testimonial-play-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(255, 87, 34, 0.4);
    transition: all 0.3s ease;
}

.testimonial-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(255, 87, 34, 0.5);
}

.testimonial-play-btn svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
}

.testimonial-info {
    color: var(--text-primary);
}

.testimonial-header {
    margin-bottom: 32px;
}

.testimonial-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.testimonial-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

.testimonial-quote {
    font-size: 20px;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
    padding-left: 24px;
    border-left: 4px solid var(--primary);
    position: relative;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 32px;
}

.author-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
}

.author-title {
    font-size: 15px;
    color: var(--text-muted);
}

.testimonial-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 32px;
    border-top: 2px solid var(--border);
}

.result-stat {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.result-stat:hover {
    background: rgba(255, 87, 34, 0.05);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.1);
}

.result-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.result-stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive for testimonial section */
@media (max-width: 968px) {
    .testimonial-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-video-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .testimonial-results {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .result-stat {
        padding: 16px;
    }

    .result-stat-number {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .testimonial-video-wrapper {
        max-width: 100%;
    }

    .testimonial-play-btn {
        width: 64px;
        height: 64px;
    }

    .testimonial-play-btn svg {
        width: 24px;
        height: 24px;
    }
}
/* ==================== ADDITIONAL CREATIVE ANIMATIONS ==================== */

/* Shimmer effect for badges */
.badge-intro,
.section-label,
.slide-badge {
    position: relative;
    overflow: hidden;
}

.badge-intro::after,
.section-label::after,
.slide-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Glow pulse animation for CTA buttons */
.btn-primary {
    animation: glow-pulse 3s infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(255, 87, 34, 0.5), 0 0 30px rgba(255, 87, 34, 0.3);
    }
}

/* Floating animation for hero title underline */
.title-underline {
    animation: float-underline 3s ease-in-out infinite;
}

@keyframes float-underline {
    0%, 100% {
        transform: translateY(0) scaleX(1);
    }
    50% {
        transform: translateY(-2px) scaleX(1.05);
    }
}

/* Scale bounce for stat items */
.stat-item {
    animation: subtle-bounce 6s ease-in-out infinite;
}

.stat-item:nth-child(1) {
    animation-delay: 0s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes subtle-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Slide in animation for comparison cards */
.comparison-card.old-way {
    animation: slideInLeft 0.8s ease-out;
}

.comparison-card.new-way {
    animation: slideInRight 0.8s ease-out;
}

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

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

/* Enhanced carousel slide transitions with perspective */
.carousel-slide {
    transform-style: preserve-3d;
}

.carousel-slide:not(.active) {
    opacity: 0.4;
    transform: scale(0.95) rotateY(5deg);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
}

/* Hover effect for carousel navigation */
.carousel-nav {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
}

.carousel-nav:hover {
    animation: nav-bounce 0.6s ease;
}

@keyframes nav-bounce {
    0%, 100% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-50%) scale(1.15);
    }
}

/* Gradient text animation */
.text-gradient {
    background-size: 200% auto;
    animation: gradient-shift 4s linear infinite;
}

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

/* Pulse dot animation enhancement */
.pulse-dot {
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

/* Icon rotation on reveal */
.icon {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

/* Result badge pop animation */
.result-badge {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.comparison-card:hover .result-badge {
    transform: scale(1.05);
}

/* Card badge floating effect */
.card-badge {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.comparison-card:hover .card-badge {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.2);
}

/* Enhanced inbox tabs animation */
.tab {
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary);
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

.tab.active::after {
    width: 80%;
}

.tab:hover:not(.active) {
    transform: translateY(-3px);
}

/* Smooth page load fade-in */
body {
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

/* Enhance video play button */
.video-play-btn {
    animation: pulse-btn 2s infinite;
}

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

.video-play-btn:hover {
    animation: none;
}

/* Carousel indicator animation */
.indicator {
    position: relative;
    overflow: hidden;
}

.indicator.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: indicator-shine 2s infinite;
}

@keyframes indicator-shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Feature list items scale on hover */
.feature-item {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-item:hover {
    transform: translateX(10px) scale(1.02);
    background: rgba(255, 87, 34, 0.02);
    border-radius: 8px;
    padding: 8px;
    margin: -8px;
}

