/* ============================================
   SIDODASH - LANDING PAGE STYLES
   
   Design System:
   - Primary Blue: #3E64FF → #5A7FFF
   - Primary Light: #5A7FFF → #7C9AFF
   - Cyan: #5EDFFF → #7BE8FF
   - Cyan Light: #B2FCFF → #ECFCFF
   ============================================ */

/* ===== DESIGN SYSTEM VARIABLES ===== */
:root {
    /* Colors */
    --primary-blue: #3E64FF;
    --primary-light: #5A7FFF;
    --cyan: #5EDFFF;
    --cyan-light: #B2FCFF;
    --cyan-lighter: #ECFCFF;
    
    /* Text Colors */
    --text-dark: #1f2937;
    --text-medium: #475569;
    --text-light: #64748b;
    
    /* Background */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-subtle: #f1f5f9;
    
    /* Border Radius System */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 50px;
    
    /* Shadow System */
    --shadow-sm: 0 2px 8px rgba(62, 100, 255, 0.08);
    --shadow-md: 0 4px 16px rgba(62, 100, 255, 0.1);
    --shadow-lg: 0 8px 30px rgba(62, 100, 255, 0.12);
    --shadow-xl: 0 15px 50px rgba(62, 100, 255, 0.15);
    --shadow-2xl: 0 25px 60px rgba(62, 100, 255, 0.2);
    --shadow-cyan: 0 8px 30px rgba(94, 223, 255, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.navbar-logo {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #5EDFFF 0%, #3E64FF 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(62, 100, 255, 0.3);
}

.navbar-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    transition: color 0.3s ease;
}

.navbar.scrolled .navbar-title {
    color: var(--text-dark);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-link {
    color: var(--text-medium);
}

.navbar-link:hover {
    color: var(--cyan);
}

.navbar.scrolled .navbar-link:hover {
    color: #3E64FF;
}

.btn-navbar {
    background: white;
    color: #3E64FF;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-navbar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.navbar.scrolled .btn-navbar {
    background: linear-gradient(135deg, #3E64FF 0%, #5EDFFF 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(62, 100, 255, 0.3);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #3E64FF 0%, #5A7FFF 50%, #3E64FF 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

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

/* Subtle background pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(94, 223, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(94, 223, 255, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150'%3E%3Cpath fill='%23f8fafc' d='M0,96L48,90.7C96,85,192,75,288,80C384,85,480,107,576,112C672,117,768,107,864,90.7C960,75,1056,53,1152,48C1248,43,1344,53,1392,58.7L1440,64L1440,150L1392,150C1344,150,1248,150,1152,150C1056,150,960,150,864,150C768,150,672,150,576,150C480,150,384,150,288,150C192,150,96,150,48,150L0,150Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

/* Floating Shapes - Hidden */
.floating-shapes {
    display: none;
}

.hero .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    animation: fadeInUp 0.8s var(--transition-smooth);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s var(--transition-smooth) 0.1s both;
}

.hero-badge i {
    color: var(--cyan);
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.2s both;
}

.hero-title .highlight-cyan {
    color: var(--cyan-light);
    position: relative;
}

.hero-title .highlight-light {
    color: var(--cyan-lighter);
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.8;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.3s both;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.4s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-blue);
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.2px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 28px;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.5s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.trust-item i {
    font-size: 18px;
    color: var(--cyan);
}

/* Hero Preview Card */
.hero-preview {
    animation: fadeInRight 1s var(--transition-smooth) 0.3s both;
}

.preview-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 24px;
    box-shadow: var(--shadow-2xl);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition-smooth);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(-15px); }
}

.preview-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
    animation-play-state: paused;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bg-subtle);
}

.preview-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: var(--transition-normal);
}

.preview-card:hover .preview-dot {
    transform: scale(1.2);
}

/* Window dots using brand palette */
.preview-dot.red { background: var(--primary-blue); }
.preview-dot.yellow { background: var(--cyan); }
.preview-dot.green { background: var(--cyan-light); }

.preview-title {
    margin-left: auto;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Live Badge */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%);
    color: #1e3a5f;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #1e3a5f;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

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

.preview-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-cyan);
    transform: translateY(-2px);
}

.stat-label {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.stat-change {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat-change.positive {
    color: var(--cyan);
}

.stat-change.negative {
    color: #7C9AFF;
}

/* Floating Badge on Preview */
.preview-floating-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #3E64FF, #2B4BC8);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(62, 100, 255, 0.4);
    animation: pulse 2s infinite;
}

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

/* ===== SOCIAL PROOF SECTION ===== */
.social-proof {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(62, 100, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(94, 223, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.social-proof .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.social-proof-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.proof-stat {
    text-align: center;
    padding: 24px 32px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.proof-stat:hover {
    background: linear-gradient(135deg, rgba(62, 100, 255, 0.05) 0%, rgba(94, 223, 255, 0.05) 100%);
    transform: translateY(-4px);
}

.proof-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(62, 100, 255, 0.1) 0%, rgba(94, 223, 255, 0.1) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 26px;
    color: var(--primary-blue);
    transition: all 0.4s ease;
}

.proof-stat:hover .proof-icon {
    background: linear-gradient(135deg, #3E64FF 0%, #5EDFFF 100%);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(62, 100, 255, 0.25);
}

.proof-number {
    font-size: 44px;
    font-weight: 800;
    background: linear-gradient(135deg, #3E64FF 0%, #5EDFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.proof-label {
    font-size: 14px;
    color: var(--text-medium);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.proof-divider {
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, #5EDFFF 50%, transparent 100%);
    border-radius: 2px;
    opacity: 0.5;
}

/* ===== FEATURES SECTION ===== */
.features {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: var(--section-padding) 0;
    position: relative;
}

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

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(62, 100, 255, 0.1), rgba(94, 223, 255, 0.1));
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 20px;
    border: 1px solid rgba(62, 100, 255, 0.1);
}

.section-badge i {
    color: var(--cyan);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(62, 100, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Subtle gradient border on left */
.feature-card::before {
    content: '';
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 0;
    width: 4px;
    border-radius: 0 4px 4px 0;
    transition: all 0.4s ease;
}

/* Top gradient line on hover */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(62, 100, 255, 0.12),
        0 8px 16px rgba(62, 100, 255, 0.08);
    border-color: rgba(62, 100, 255, 0.12);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

/* Card accent colors - consistent visual hierarchy */
.feature-card:nth-child(1)::before {
    background: linear-gradient(180deg, var(--primary-blue), var(--primary-light));
}

.feature-card:nth-child(2)::before {
    background: linear-gradient(180deg, var(--cyan), #7BE8FF);
}

.feature-card:nth-child(3)::before {
    background: linear-gradient(180deg, var(--primary-light), var(--cyan));
}

.feature-card:hover::before {
    top: 16px;
    bottom: 16px;
    box-shadow: 0 0 12px rgba(62, 100, 255, 0.3);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.08) translateY(-2px);
}

/* Consistent icon styling with matching card accent */
.feature-icon.blue {
    background: linear-gradient(135deg, rgba(62, 100, 255, 0.12) 0%, rgba(62, 100, 255, 0.04) 100%);
    color: var(--primary-blue);
    border: 1px solid rgba(62, 100, 255, 0.1);
}

.feature-card:nth-child(1):hover .feature-icon.blue {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(62, 100, 255, 0.3);
}

.feature-icon.cyan {
    background: linear-gradient(135deg, rgba(94, 223, 255, 0.15) 0%, rgba(94, 223, 255, 0.05) 100%);
    color: var(--cyan);
    border: 1px solid rgba(94, 223, 255, 0.15);
}

.feature-card:nth-child(2):hover .feature-icon.cyan {
    background: linear-gradient(135deg, var(--cyan), #7BE8FF);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(94, 223, 255, 0.35);
}

/* Using Primary Light for third card */
.feature-icon.purple {
    background: linear-gradient(135deg, rgba(90, 127, 255, 0.12) 0%, rgba(124, 154, 255, 0.04) 100%);
    color: var(--primary-light);
    border: 1px solid rgba(90, 127, 255, 0.1);
}

.feature-card:nth-child(3):hover .feature-icon.purple {
    background: linear-gradient(135deg, var(--primary-light), var(--cyan));
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(90, 127, 255, 0.3);
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.feature-description {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0;
    border-radius: var(--radius-md);
}

.feature-link:hover {
    gap: 10px;
    color: var(--primary-light);
}

.feature-link i {
    transition: transform 0.3s ease;
}

.feature-link:hover i {
    transform: translateX(3px);
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 50%, var(--bg-white) 100%);
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(62, 100, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.how-it-works .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.steps-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    position: relative;
    padding: 20px 0;
}

/* Step Card */
.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 32px 24px;
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 0 0 260px;
    background: var(--bg-white);
    border: 1px solid rgba(62, 100, 255, 0.06);
}

.step-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(62, 100, 255, 0.03) 0%, rgba(94, 223, 255, 0.03) 100%);
    box-shadow: 0 20px 50px rgba(62, 100, 255, 0.1);
}

/* First & Last Step Emphasis */
.step-card.first .step-number,
.step-card.last .step-number {
    transform: scale(1.08);
}

.step-card.first .step-glow,
.step-card.last .step-glow {
    opacity: 0.4;
}

/* Last Step - Completion State */
.step-card.last .step-number {
    background: linear-gradient(135deg, #5EDFFF 0%, #7BE8FF 100%);
    box-shadow: 
        0 10px 40px rgba(94, 223, 255, 0.35),
        0 0 0 5px white,
        0 0 0 8px rgba(94, 223, 255, 0.15);
}

.step-card.last .step-glow {
    background: radial-gradient(circle, rgba(94, 223, 255, 0.35) 0%, transparent 70%);
}

.step-card.last .step-icon {
    background: linear-gradient(135deg, rgba(94, 223, 255, 0.15) 0%, rgba(178, 252, 255, 0.15) 100%);
    border-color: rgba(94, 223, 255, 0.2);
    color: #5EDFFF;
}

.step-card.last:hover .step-icon {
    background: linear-gradient(135deg, #5EDFFF 0%, #7BE8FF 100%);
    color: #fff;
}

/* Step Number Wrapper */
.step-number-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

/* Glow Effect Behind Circle */
.step-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, rgba(62, 100, 255, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.step-card:hover .step-glow {
    opacity: 1;
    animation: pulseGlow 2.5s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* Step Number */
.step-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3E64FF 0%, #5EDFFF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    color: white;
    box-shadow: 
        0 8px 32px rgba(62, 100, 255, 0.25),
        0 0 0 6px white,
        0 0 0 10px rgba(62, 100, 255, 0.08);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover .step-number {
    transform: scale(1.06);
    box-shadow: 
        0 12px 40px rgba(62, 100, 255, 0.35),
        0 0 0 6px white,
        0 0 0 12px rgba(62, 100, 255, 0.12);
}

/* Step Icon */
.step-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, rgba(62, 100, 255, 0.12) 0%, rgba(94, 223, 255, 0.12) 100%);
    border: 2px solid rgba(62, 100, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    color: var(--primary-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(62, 100, 255, 0.08);
}

.step-card:hover .step-icon {
    background: linear-gradient(135deg, #3E64FF 0%, #5A7FFF 100%);
    border-color: transparent;
    color: #fff;
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 20px rgba(62, 100, 255, 0.25);
}

/* Step Title */
.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.step-card:hover .step-title {
    color: #3E64FF;
}

/* Step Description - Darker for readability */
.step-description {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Connector Between Steps */
.step-connector {
    flex: 0 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100px;
    margin-top: 28px;
    align-self: flex-start;
}

.connector-line {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--cyan) 50%, var(--primary-blue) 100%);
    background-size: 200% 100%;
    border-radius: 3px;
    position: relative;
    animation: gradientFlow 3s ease-in-out infinite;
    box-shadow: 
        0 2px 12px rgba(62, 100, 255, 0.3),
        0 0 20px rgba(94, 223, 255, 0.15);
}

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

.connector-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.4) 10px,
        rgba(255, 255, 255, 0.4) 20px
    );
    animation: dashMove 1.5s linear infinite;
}

@keyframes dashMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(20px); }
}

.connector-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%);
    border-radius: 50%;
    border: 3px solid var(--bg-white);
    box-shadow: 
        0 0 0 4px rgba(94, 223, 255, 0.25),
        0 4px 12px rgba(94, 223, 255, 0.4);
    animation: dotPulse 2s ease-in-out infinite;
}

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

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

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

.cta-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light) 50%, var(--primary-blue) 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    border-radius: var(--radius-2xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

/* Decorative elements */
.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(94, 223, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(94, 223, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.cta-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 38px;
    color: white;
    position: relative;
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

.cta-title {
    font-size: 44px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-blue);
    padding: 18px 40px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

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

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* CTA Trust Badges */
.cta-trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-normal);
}

.cta-trust-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cta-trust-item i {
    color: var(--cyan-light);
    font-size: 16px;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #3E64FF 0%, #5A7FFF 100%);
    padding: 64px 0 32px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo svg {
    width: 100%;
    height: 100%;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
}

.footer-links {
    display: flex;
    gap: 36px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #B2FCFF;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #fff;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background: #5EDFFF;
    border-color: #5EDFFF;
    color: #3E64FF;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(94, 223, 255, 0.4);
}

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

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-preview {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* How It Works - Tablet */
    .steps-grid {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .step-card {
        flex: 0 0 180px;
    }
    
    .step-connector {
        display: none;
    }
    
    .step-number-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .step-number {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }
    
    .step-glow {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .preview-card {
        transform: none;
    }
    
    .social-proof-content {
        gap: 16px;
    }
    
    .proof-stat {
        padding: 16px 20px;
        flex: 0 0 calc(50% - 16px);
    }
    
    .proof-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .proof-number {
        font-size: 32px;
    }
    
    .proof-label {
        font-size: 12px;
    }
    
    .proof-divider {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* How It Works Responsive */
    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    
    .step-card {
        flex: none;
        width: 100%;
        max-width: 300px;
    }
    
    .step-connector {
        width: 3px;
        height: 60px;
        min-width: unset;
        max-width: unset;
        flex-direction: column;
    }
    
    .connector-line {
        width: 3px;
        height: 100%;
        background: linear-gradient(180deg, #3E64FF 0%, #5EDFFF 50%, #3E64FF 100%);
        background-size: 100% 200%;
    }
    
    .connector-line::before {
        background: repeating-linear-gradient(
            180deg,
            transparent,
            transparent 8px,
            rgba(255, 255, 255, 0.5) 8px,
            rgba(255, 255, 255, 0.5) 16px
        );
    }
    
    @keyframes dashMove {
        0% { transform: translateY(0); }
        100% { transform: translateY(16px); }
    }
    
    .cta-card {
        padding: 50px 30px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

/* Decorative background */
.testimonials::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(62, 100, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: 30%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(94, 223, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid #e2e8f0;
    border-left: 4px solid transparent;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card:not(.featured) {
    border-left: 4px solid var(--cyan);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
    border-left-color: var(--primary-blue);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light) 100%);
    border: none;
    transform: scale(1.08);
    box-shadow: var(--shadow-2xl);
    z-index: 2;
}

.testimonial-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--primary-blue) 100%);
    border-radius: calc(var(--radius-xl) + 2px);
    z-index: -1;
    opacity: 0.5;
}

.testimonial-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 30px 70px rgba(62, 100, 255, 0.4);
}

/* Quote Icon */
.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(62, 100, 255, 0.08) 0%, rgba(94, 223, 255, 0.08) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #5EDFFF;
    opacity: 0.8;
}

.testimonial-card.featured .testimonial-quote-icon {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background: linear-gradient(135deg, #5EDFFF 0%, #7BE8FF 100%);
    color: #1e3a5f;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(94, 223, 255, 0.3);
}

.testimonial-badge i {
    font-size: 10px;
    color: #3E64FF;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #5EDFFF;
    font-size: 15px;
    filter: drop-shadow(0 1px 2px rgba(94, 223, 255, 0.3));
}

.testimonial-card.featured .testimonial-rating i {
    color: #B2FCFF;
    filter: drop-shadow(0 1px 3px rgba(178, 252, 255, 0.4));
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-medium);
    margin-bottom: 28px;
    font-style: italic;
    flex-grow: 1;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 24px;
    font-weight: 700;
    color: #5EDFFF;
    margin-right: 2px;
}

.testimonial-text::after {
    content: '"';
    font-size: 24px;
    font-weight: 700;
    color: #5EDFFF;
    margin-left: 2px;
}

.testimonial-card.featured .testimonial-text {
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-card.featured .testimonial-text::before,
.testimonial-card.featured .testimonial-text::after {
    color: rgba(255, 255, 255, 0.5);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(62, 100, 255, 0.08);
    margin-top: auto;
}

.testimonial-card.featured .testimonial-author {
    border-top-color: rgba(255, 255, 255, 0.15);
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3E64FF 0%, #5EDFFF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 
        0 4px 12px rgba(62, 100, 255, 0.2),
        0 0 0 3px #fff,
        0 0 0 5px rgba(62, 100, 255, 0.1);
    flex-shrink: 0;
}

.testimonial-card.featured .testimonial-avatar {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 0 0 3px rgba(255, 255, 255, 0.3);
}

.testimonial-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 15px;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.verified-badge {
    color: #5EDFFF;
    font-size: 13px;
}

.testimonial-card.featured .testimonial-name {
    color: #fff;
}

.testimonial-card.featured .verified-badge {
    color: #B2FCFF;
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.4;
}

.testimonial-card.featured .testimonial-role {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== FAQ SECTION ===== */
.faq {
    background: var(--bg-white);
    padding: var(--section-padding) 0;
}

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

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: var(--transition-smooth);
    position: relative;
}

/* Expandable hint line */
.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--cyan);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 4px 0 0 4px;
}

.faq-item:hover::before {
    transform: scaleY(0.3);
}

.faq-item.active::before {
    transform: scaleY(1);
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--cyan) 100%);
}

.faq-item:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    background: linear-gradient(135deg, rgba(62, 100, 255, 0.04) 0%, rgba(94, 223, 255, 0.04) 100%);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 24px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-normal);
    gap: 16px;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-question-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(62, 100, 255, 0.1) 0%, rgba(94, 223, 255, 0.1) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.faq-question-icon i {
    color: var(--primary-blue);
    font-size: 12px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover .faq-question-icon {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--cyan) 100%);
}

.faq-item:hover .faq-question-icon i {
    color: white;
}

.faq-item.active .faq-question-icon {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--cyan) 100%);
    transform: rotate(180deg);
}

.faq-item.active .faq-question-icon i {
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}

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

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-medium);
}

/* ===== CTA TRUST BADGES (OLD - keeping for compatibility) ===== */
.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.cta-trust .trust-item i {
    color: var(--cyan-light);
    font-size: 16px;
}

/* ===== ENHANCED FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light) 100%);
    padding: 80px 0 32px;
    position: relative;
    overflow: hidden;
}

/* Decorative background */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(94, 223, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(94, 223, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.footer .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 32px;
}

.footer-brand-section {
    max-width: 320px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 8px;
}

.footer-logo svg {
    width: 100%;
    height: 100%;
}

.footer-title {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.social-link {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--cyan);
    border-color: var(--cyan);
    color: var(--primary-blue);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(94, 223, 255, 0.4);
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
}

.footer-links-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--cyan-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 0;
    transition: var(--transition-normal);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-link::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--cyan);
    position: absolute;
    bottom: 8px;
    left: 0;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #fff;
}

.footer-link:hover::before {
    width: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
}

.footer-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.footer-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.footer-badge i {
    color: var(--cyan-light);
    font-size: 14px;
}

.footer-badge i {
    color: #B2FCFF;
}

/* ===== RESPONSIVE FOR NEW SECTIONS ===== */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .testimonial-card.featured {
        transform: none;
        order: -1;
    }
    
    .testimonial-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .testimonial-card:not(.featured) {
        border-left: none;
        border-top: 4px solid #5EDFFF;
    }
    
    .testimonial-card:hover {
        border-left-color: transparent;
        border-top-color: #3E64FF;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-brand-section {
        max-width: none;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links-section {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }
}

@media (max-width: 768px) {
    .testimonials,
    .faq {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 14px;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-badges {
        flex-direction: column;
        gap: 12px;
    }
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 50%, var(--bg-white) 100%);
}

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

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.billing-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition-normal);
    cursor: pointer;
}

.billing-label.active {
    color: var(--text-dark);
    font-weight: 600;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--primary-blue) 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    margin-left: 8px;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #e2e8f0;
    border-radius: 28px;
    transition: var(--transition-normal);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: var(--transition-normal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--cyan) 100%);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

/* Pricing Card Base */
.pricing-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid rgba(62, 100, 255, 0.08);
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(62, 100, 255, 0.15);
}

/* Featured Card */
.pricing-card.featured {
    background: linear-gradient(180deg, var(--bg-white) 0%, rgba(62, 100, 255, 0.03) 100%);
    border: 2px solid var(--primary-blue);
    transform: scale(1.05);
    box-shadow: var(--shadow-2xl);
    z-index: 2;
}

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

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--cyan) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(62, 100, 255, 0.3);
}

.popular-badge i {
    font-size: 10px;
}

/* Plan Name */
.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-align: center;
}

.pricing-card.featured .plan-name {
    color: var(--primary-blue);
}

/* Plan Price */
.plan-price {
    text-align: center;
    margin-bottom: 8px;
    min-height: 60px;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-medium);
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: -2px;
}

.pricing-card.featured .price-amount {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-light);
}

/* Yearly Billing Note */
.yearly-billing {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
}

/* Plan Description */
.plan-description {
    text-align: center;
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 24px;
    min-height: 44px;
}

/* Plan Divider */
.plan-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
    margin-bottom: 24px;
}

/* Plan Features List */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-medium);
    border-bottom: 1px solid #f1f5f9;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, rgba(62, 100, 255, 0.1) 0%, rgba(94, 223, 255, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.plan-features li.feature-highlight {
    color: var(--text-dark);
    font-weight: 500;
}

.plan-features li.feature-highlight i {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--cyan) 100%);
    color: white;
}

/* Plan CTA Button */
.plan-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.plan-cta.secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid #e2e8f0;
}

.plan-cta.secondary:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.plan-cta.primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(62, 100, 255, 0.3);
}

.plan-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(62, 100, 255, 0.4);
}

/* ===== PRICING RESPONSIVE ===== */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: scale(1.02);
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.02) translateY(-8px);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card.featured {
        transform: none;
        grid-column: span 1;
        order: -1;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .billing-toggle {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .discount-badge {
        display: block;
        margin-left: 0;
        margin-top: 4px;
    }
    
    .price-amount {
        font-size: 40px;
    }
}