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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8fafc;
    min-height: 100vh;
}

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

/* Accessibility Controls */
.accessibility-controls {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}

.accessibility-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

.accessibility-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

/* Header and Navigation */
.header {
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav {
    padding: 1rem 0;
}

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

/* TaxFlow Pro - Minimal Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-icon {
    width: 44px;
    height: 44px;
    position: relative;
    transition: all 0.3s ease;
}

.logo-symbol {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.logo:hover .logo-symbol {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

/* Cube Icon Specific Styles */
.cube-icon {
    background: linear-gradient(45deg, #4f46e5, #3b82f6, #6366f1, #7c3aed, #8b5cf6, #4f46e5);
    background-size: 400% 400%;
    transform: perspective(600px) rotateX(10deg) rotateY(-10deg);
    animation: gradientFlow 6s ease infinite;
}

.logo:hover .cube-icon {
    transform: perspective(600px) rotateX(25deg) rotateY(-25deg) scale(1.08);
    animation: none;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.cube-icon::before,
.cube-icon::after {
    content: '';
    position: absolute;
    background: #3730a3;
    transition: inherit;
}

.cube-icon::before {
    top: -6px;
    left: 0;
    width: 100%;
    height: 6px;
    background: #6d28d9;
    transform: skewX(-45deg);
    transform-origin: top left;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.cube-icon::after {
    top: 0;
    right: -6px;
    width: 6px;
    height: 100%;
    transform: skewY(-45deg);
    transform-origin: top right;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.cube-dollar {
    position: relative;
    z-index: 2;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    transform: translateZ(10px);
    transition: inherit;
}

.logo:hover .cube-dollar {
    transform: translateZ(20px);
}

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

/* Isometric Dollar Symbol */
.isometric-dollar {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.dollar-symbol {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateZ(2px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.logo:hover .dollar-symbol {
    transform: translateZ(8px) scale(1.3);
    color: #ffffff;
    text-shadow: 
        0 2px 0 rgba(255, 255, 255, 0.9),
        0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Isometric Shadow */
.dollar-shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    transform: translateZ(-2px) translateX(2px) translateY(2px);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logo:hover .dollar-shadow {
    transform: translateZ(-4px) translateX(4px) translateY(4px);
    background: rgba(0, 0, 0, 0.3);
}



/* Logo Text Animation */
.logo-text {
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    transform: perspective(100px) translateZ(0);
}

.logo:hover .logo-text {
    transform: perspective(100px) translateZ(5px);
}

.logo-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    transition: all 0.3s ease;
    line-height: 1;
}

.logo:hover .logo-title {
    color: #3b82f6;
}

.logo-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.logo:hover .logo-title::after {
    width: 100%;
}

.logo-subtitle {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    line-height: 1;
}

.logo:hover .logo-subtitle {
    color: #10b981;
}





.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.nav-link i {
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-link span {
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-link-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.nav-link:hover .nav-link-underline {
    width: 80%;
}

.nav-link:hover i {
    transform: scale(1.2);
    color: #3b82f6;
}

.nav-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Nav Status Indicator */
.nav-status {
    display: flex;
    align-items: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #22c55e;
    animation: pulse 2s ease-in-out infinite;
}

.status-indicator i {
    font-size: 8px;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Enhanced CTA Button */
.nav-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

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

.nav-cta:hover .btn-glow {
    left: 100%;
}

/* Floating Assessment Card */
.floating-card {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 50;
    max-width: 280px;
    border: 1px solid #e5e7eb;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
    color: #3b82f6;
    font-weight: 600;
    font-size: 14px;
}

.assessment-value {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.credit-impact {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-outline:hover {
    background: #3b82f6;
    color: white;
}

.btn-warning {
    background: #f59e0b;
    color: white;
}

.btn-warning:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.btn-link {
    background: none;
    color: #3b82f6;
    padding: 0;
    font-size: 14px;
    text-decoration: underline;
}

.btn-link:hover {
    color: #1d4ed8;
}

.btn-small {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

/* Animated Background */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

/* Grid Lines */
.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(59, 130, 246, 0.15) 1px, transparent 1px),
        linear-gradient(rgba(59, 130, 246, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridMove 15s linear infinite;
}

/* Particles */
.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
    animation: particleFloat 8s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 10%;
    background: #3b82f6;
    animation-delay: 0s;
}

.particle-2 {
    top: 60%;
    left: 80%;
    background: #8b5cf6;
    animation-delay: 1.5s;
}

.particle-3 {
    top: 80%;
    left: 30%;
    background: #10b981;
    animation-delay: 3s;
}

.particle-4 {
    top: 30%;
    left: 70%;
    background: #3b82f6;
    animation-delay: 4.5s;
}

.particle-5 {
    top: 70%;
    left: 20%;
    background: #8b5cf6;
    animation-delay: 6s;
}

/* Data Streams */
.data-stream {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #3b82f6, transparent);
    animation: dataFlow 6s linear infinite;
}

.data-stream-1 {
    left: 15%;
    animation-delay: 0s;
}

.data-stream-2 {
    left: 45%;
    animation-delay: 2s;
}

.data-stream-3 {
    left: 75%;
    animation-delay: 4s;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Animations */
@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(40px, 40px);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-30px) scale(1.3);
        opacity: 1;
    }
    50% {
        transform: translateY(-15px) scale(0.8);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-40px) scale(1.5);
        opacity: 0.9;
    }
}

@keyframes dataFlow {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Left Side - Hero Content */
.hero-left {
    max-width: 600px;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.security-badge i {
    font-size: 16px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1e293b;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* Right Side - Assessment Card */
.hero-right {
    position: relative;
}

.assessment-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.assessment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: #64748b;
    font-size: 16px;
    font-weight: 600;
}

.card-header i {
    color: #3b82f6;
    font-size: 18px;
}

.assessment-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.refund-section h3,
.credit-section h3 {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 600;
}

.refund-amount {
    font-size: 36px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 4px;
}

.refund-increase {
    font-size: 14px;
    color: #10b981;
    font-weight: 600;
}

.refund-note,
.credit-note {
    font-size: 12px;
    color: #94a3b8;
    font-style: italic;
    margin-top: 4px;
}

.stat-subtitle {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 4px;
    font-weight: 500;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.credit-score {
    font-size: 24px;
    font-weight: 700;
    color: #3b82f6;
}

.calculator-btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

/* ========================================
   HERO STATISTICS - MODERN REDESIGN
   ======================================== */
.hero-stats {
    margin-top: 100px;
    padding-top: 80px;
    position: relative;
    z-index: 2;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

/* Stat Card */
.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

/* Icon Wrapper */
.stat-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.stat-card:hover .icon-glow {
    opacity: 1;
    animation: pulse 2s infinite;
}

/* Stat Content */
.stat-content {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.2;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.stat-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* Decoration Elements */
.stat-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.stat-card:hover .stat-decoration {
    opacity: 0.6;
}

.decoration-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.decoration-line {
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, #3b82f6, transparent);
    border-radius: 1px;
}

/* Animation for stat cards */
.stat-card:nth-child(1) {
    animation: slideInUp 0.6s ease 0.1s both;
}

.stat-card:nth-child(2) {
    animation: slideInUp 0.6s ease 0.2s both;
}

.stat-card:nth-child(3) {
    animation: slideInUp 0.6s ease 0.3s both;
}

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

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        margin-top: 60px;
        padding-top: 50px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .stat-subtitle {
        font-size: 0.85rem;
    }
    
    .stat-card:nth-child(3) {
        grid-column: 1;
        max-width: none;
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-right {
        order: -1;
    }
    
    .assessment-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 40px;
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        margin-top: 60px;
        padding-top: 50px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .stat-subtitle {
        font-size: 0.85rem;
    }
    
    .assessment-card {
        padding: 24px;
    }
    
    .refund-amount {
        font-size: 28px;
    }
    
    .credit-score {
        font-size: 20px;
    }
}

/* Sections */
section {
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* How It Works Section */
.how-it-works {
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 24px;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.step-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.final-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.final-step .step-icon {
    margin: 0;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cta-section {
    text-align: center;
}

.cta-section p {
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Documents Section */
.documents {
    background: #f8fafc;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.document-category {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
}

.document-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    color: #3b82f6;
    font-weight: 600;
}

.category-header i {
    font-size: 1.2rem;
}

.document-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151;
}

.document-item i {
    color: #10b981;
    font-size: 0.9rem;
}

.privacy-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
}

.privacy-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.privacy-content i {
    color: #3b82f6;
    font-size: 1.5rem;
}

.privacy-content h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.privacy-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Features Section */
.features {
    background: white;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 24px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.learn-more {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.learn-more:hover {
    text-decoration: underline;
}

/* ========================================
   MOBILE APP SECTION - MODERN REDESIGN
   ======================================== */
.mobile-app {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
    padding: 120px 0;
    overflow: hidden;
}

/* Background Elements */
.app-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
    animation-delay: -7s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    bottom: -10%;
    left: 50%;
    animation-delay: -14s;
}

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

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    top: -20%;
    right: -20%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    bottom: -10%;
    left: -10%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(15px) rotate(240deg); }
}

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

/* Section Header */
.app-section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    color: #60a5fa;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.app-section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-section-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Content Grid */
.app-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Left Column */
.app-content-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Status Cards */
.status-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.status-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.status-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.status-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.status-card.available .status-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.status-card.coming-soon .status-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.status-card.business .status-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.status-info h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.status-info p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.available-badge {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.development-badge {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.coming-badge {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Key Features */
.key-features h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.feature-content h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-content p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Download Section */
.download-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.primary-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.coming-soon-btn {
    background: rgba(156, 163, 175, 0.2);
    color: #9ca3af;
    border: 1px solid rgba(156, 163, 175, 0.3);
    cursor: not-allowed;
    opacity: 0.7;
}

.download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.primary-btn .btn-icon {
    background: rgba(255, 255, 255, 0.2);
}

.btn-content {
    flex: 1;
}

.btn-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 2px;
}

.btn-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-status {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.btn-status.available {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-status.development {
    background: rgba(156, 163, 175, 0.2);
    color: #9ca3af;
}

/* Business Edition */
.business-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.business-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.business-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.business-info {
    flex: 1;
}

.business-info h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.business-info p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.business-status {
    background: rgba(139, 92, 246, 0.2);
    color: #a855f7;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.business-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.business-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.business-feature i {
    color: #a855f7;
    font-size: 0.8rem;
}

/* Registration Info */
.info-card {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    backdrop-filter: blur(10px);
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
}

.info-content h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-content p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Right Column - Device Preview */
.app-preview-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.device-preview {
    position: relative;
}

.desktop-preview {
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
    transition: transform 0.3s ease;
}

.desktop-preview:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) scale(1.02);
}

.mobile-preview {
    transform: perspective(1000px) rotateY(15deg) rotateX(-5deg);
    transition: transform 0.3s ease;
}

.mobile-preview:hover {
    transform: perspective(1000px) rotateY(10deg) rotateX(-2deg) scale(1.05);
}

.device-frame {
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.desktop-preview .device-frame {
    width: 400px;
    height: 250px;
}

.mobile-preview .device-frame {
    width: 200px;
    height: 350px;
    border-radius: 25px;
    padding: 15px;
}

.device-screen {
    background: #0f172a;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

/* Desktop Interface */
.app-interface {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
}

.app-logo i {
    color: #3b82f6;
    font-size: 18px;
}

.app-status-indicator {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.app-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    flex: 1;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #94a3b8;
    font-size: 0.8rem;
}

.card-header i {
    color: #3b82f6;
}

.card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.card-trend {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
}

.card-trend.positive {
    color: #10b981;
}

/* Mobile Interface */
.mobile-interface {
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.mobile-header i {
    color: #3b82f6;
    margin-right: 8px;
}

.coming-soon-tag {
    background: #f59e0b;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
}

.mobile-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.mobile-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: white;
    font-size: 0.8rem;
}

.mobile-feature-item i {
    color: #10b981;
    font-size: 0.9rem;
}

.development-progress {
    margin-top: auto;
}

.progress-label {
    color: #94a3b8;
    font-size: 0.7rem;
    margin-bottom: 8px;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    background: linear-gradient(90deg, #f59e0b, #d97706);
    height: 100%;
    width: 68%;
    border-radius: 3px;
}

.progress-percent {
    color: #f59e0b;
    font-size: 0.7rem;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .app-content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .app-section-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .desktop-preview {
        transform: none;
    }
    
    .mobile-preview {
        transform: none;
    }
}

@media (max-width: 768px) {
    .mobile-app {
        padding: 80px 0;
    }
    
    .app-section-title {
        font-size: 2rem;
    }
    
    .app-section-subtitle {
        font-size: 1rem;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
    }
    
    .business-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .device-frame {
        transform: scale(0.8);
    }
}

.preview-item i {
    color: #10b981;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.app-progress {
    text-align: center;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.2);
    height: 8px;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    height: 100%;
    width: 75%;
    border-radius: 4px;
}

.progress-fill.development {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    width: 45%;
}

.progress-text {
    font-size: 0.8rem;
    opacity: 0.8;
    color: #f59e0b;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: scrollTestimonials 60s linear infinite;
    width: max-content;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    min-width: 350px;
    max-width: 350px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.testimonial-rating i {
    color: #fbbf24;
    font-size: 16px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 16px;
    margin-bottom: 4px;
}

.author-title {
    color: #6b7280;
    font-size: 14px;
}

/* Animation for scrolling testimonials */
@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.testimonials-carousel:hover .testimonials-track {
    animation-play-state: paused;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 25px;
    }
    
    .testimonials-track {
        gap: 20px;
    }
    
    .testimonial-card p {
        font-size: 14px;
    }
    
    .author-name {
        font-size: 14px;
    }
    
    .author-title {
        font-size: 12px;
    }
}

/* Pricing Section */
.pricing {
    background: #f8fafc;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    color: #374151;
}

.toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    transition: .4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #3b82f6;
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.save-badge {
    background: #10b981;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid #3b82f6;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.pricing-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.price-period {
    color: #6b7280;
    font-size: 1rem;
}

.crypto-note {
    margin-bottom: 2rem;
    text-align: center;
    padding: 8px 12px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 8px;
    border: 1px solid #e0f2fe;
}

.crypto-note small {
    display: block;
    font-size: 12px;
    color: #0369a1;
    margin-bottom: 4px;
    font-weight: 600;
}

.crypto-disclaimer {
    font-size: 10px;
    color: #0284c7;
    font-style: italic;
}

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

.pricing-features li {
    padding: 8px 0;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features i {
    color: #10b981;
}

.payment-options {
    text-align: center;
    color: #374151;
}

.payment-options p {
    margin-bottom: 1rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 2rem;
    color: #6b7280;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-content .section-title {
    color: white;
}

.cta-content .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Help Widget */
.help-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.help-button {
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.help-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .mobile-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mobile-features {
        grid-template-columns: 1fr;
    }
    
    .mobile-cta {
        justify-content: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-card {
        position: static;
        margin: 2rem auto;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* High Contrast Mode */
body.high-contrast {
    background: #000;
    color: #fff;
}

body.high-contrast .header {
    background: #000;
    border-bottom: 2px solid #fff;
}

body.high-contrast .nav-link {
    color: #fff;
}

body.high-contrast .btn-outline {
    border-color: #fff;
    color: #fff;
}

/* Simple Mode */
body.simple-mode {
    background: #f5f5f5;
    color: #333;
}

body.simple-mode .hero {
    background: #fff;
}

body.simple-mode .hero-title {
    color: #333;
}

body.simple-mode .section-title {
    color: #333;
}

body.simple-mode .section-subtitle {
    color: #666;
}

/* Large Font Mode */
body.large-font {
    font-size: 18px;
}

body.large-font .hero-title {
    font-size: 4rem;
}

body.large-font .section-title {
    font-size: 3rem;
}

/* Screen Reader Announcements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Hero Visual - Process Animation */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

/* Process Animation */
.process-animation {
    background: #000;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.process-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.step.active {
    opacity: 1;
    transform: scale(1.1);
}

.step-dot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    transition: all 0.5s ease;
    position: relative;
}

.step.active .step-dot {
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
    animation: pulse 1s infinite;
}

.step-text {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.arrow {
    color: #00ff88;
    font-size: 24px;
    font-weight: bold;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.arrow.active {
    opacity: 1;
    animation: glow 1s infinite;
}

/* Get Refund Button */
.get-refund-btn {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin: 30px auto;
    max-width: 200px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    cursor: pointer;
}

.get-refund-btn.show {
    opacity: 1;
    transform: scale(1);
    animation: bounce 0.6s ease;
}

.get-refund-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
}

/* Money Animation */
.money-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.money-animation.show {
    opacity: 1;
    transform: translateY(0);
}

.money-icon {
    font-size: 48px;
    animation: moneyFloat 2s ease-in-out infinite;
}

.refund-amount {
    font-size: 36px;
    font-weight: bold;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    animation: moneyGlow 2s ease-in-out infinite;
}

.refund-text {
    color: #fff;
    font-size: 16px;
    opacity: 0.8;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 10px rgba(0, 255, 136, 0.5); }
    50% { text-shadow: 0 0 20px rgba(0, 255, 136, 1); }
}

@keyframes bounce {
    0% { transform: scale(0.8); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

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

@keyframes moneyGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(0, 255, 136, 0.5); }
    50% { text-shadow: 0 0 30px rgba(0, 255, 136, 1); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .process-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .step-text {
        font-size: 12px;
    }
    
    .step-dot {
        width: 50px;
        height: 50px;
    }
    
    .get-refund-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .refund-amount {
        font-size: 28px;
    }
    
    .money-icon {
        font-size: 36px;
    }
} 

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.trust-badge i:first-child {
    color: #3b82f6;
    font-size: 16px;
}

.trust-badge span {
    white-space: nowrap;
}

.info-icon {
    color: #94a3b8;
    font-size: 12px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.info-icon:hover {
    color: #3b82f6;
}

/* Mobile Responsive for Trust Badges */
@media (max-width: 768px) {
    .trust-badges {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .trust-badge {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
} 

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
} 

/* Neural Network Animation */
.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

.node {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, #3b82f6 20%, transparent 100%);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
    animation: nodePulse 4s ease-in-out infinite;
}

.node-1 { top: 20%; left: 15%; animation-delay: 0s; }
.node-2 { top: 40%; left: 35%; animation-delay: 0.5s; }
.node-3 { top: 60%; left: 25%; animation-delay: 1s; }
.node-4 { top: 30%; left: 60%; animation-delay: 1.5s; }
.node-5 { top: 70%; left: 50%; animation-delay: 2s; }
.node-6 { top: 50%; left: 80%; animation-delay: 2.5s; }

.connection {
    position: absolute;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    height: 2px;
    transform-origin: left;
    animation: connectionGlow 5s ease-in-out infinite;
}

.conn-1-2 { top: 23%; left: 18%; width: 20%; transform: rotate(25deg); animation-delay: 0s; }
.conn-1-3 { top: 27%; left: 18%; width: 15%; transform: rotate(70deg); animation-delay: 0.3s; }
.conn-2-4 { top: 43%; left: 38%; width: 25%; transform: rotate(-15deg); animation-delay: 0.6s; }
.conn-2-5 { top: 47%; left: 38%; width: 20%; transform: rotate(40deg); animation-delay: 0.9s; }
.conn-3-5 { top: 63%; left: 28%; width: 25%; transform: rotate(20deg); animation-delay: 1.2s; }
.conn-3-6 { top: 63%; left: 28%; width: 55%; transform: rotate(5deg); animation-delay: 1.5s; }
.conn-4-6 { top: 35%; left: 63%; width: 20%; transform: rotate(30deg); animation-delay: 1.8s; }
.conn-5-6 { top: 73%; left: 53%; width: 30%; transform: rotate(-15deg); animation-delay: 2.1s; }

.pulse {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 20px #3b82f6;
    animation: pulseTravel 6s linear infinite;
}

.pulse-1 { top: 20%; left: 15%; animation-delay: 0s; }
.pulse-2 { top: 40%; left: 35%; animation-delay: 2s; }
.pulse-3 { top: 60%; left: 25%; animation-delay: 4s; }

/* Animations */
@keyframes nodePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(59, 130, 246, 0.5); }
    50% { transform: scale(1.3); box-shadow: 0 0 50px rgba(59, 130, 246, 0.8); }
}

@keyframes connectionGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; box-shadow: 0 0 20px rgba(59, 130, 246, 0.5); }
}

@keyframes pulseTravel {
    0% { transform: translate(0, 0); opacity: 1; }
    100% { transform: translate(100%, 50%); opacity: 0; }
}

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

/* Calculator Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideIn 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.calculator-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.currency {
    position: absolute;
    left: 15px;
    color: #6b7280;
    font-weight: 600;
    z-index: 1;
}

.input-group input,
.form-group select {
    width: 100%;
    padding: 15px 15px 15px 35px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.input-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 14px;
    font-weight: 500;
}

.checkbox-item:hover {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
    background: white;
    flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: #3b82f6;
    border-color: #3b82f6;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.calculate-btn {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    margin-top: 20px;
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: slideIn 0.5s ease;
}

.success-message i {
    font-size: 18px;
}

/* Refund Result */
.refund-result {
    padding: 30px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-top: 1px solid #e5e7eb;
    margin-top: 20px;
    border-radius: 0 0 20px 20px;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.result-header i {
    color: #10b981;
    font-size: 24px;
}

.result-header h3 {
    margin: 0;
    color: #1f2937;
    font-size: 20px;
}

.result-amount {
    font-size: 48px;
    font-weight: 700;
    color: #10b981;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-range {
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 25px;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-50%);
}

.result-breakdown {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 16px;
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-item span:first-child {
    color: #6b7280;
    font-weight: 500;
}

.breakdown-item span:last-child {
    color: #1f2937;
    font-weight: 600;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 95vh;
    }
    
    .calculator-form {
        padding: 20px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .result-amount {
        font-size: 36px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .refund-result {
        padding: 20px;
    }
} 

/* Login Modal Styles */
.login-modal {
    max-width: 500px;
}

.login-form {
    padding: 40px;
}

.login-form .form-group {
    margin-bottom: 25px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 16px;
}

.login-form input {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.login-form input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.password-input {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input input {
    padding-right: 60px;
}

.toggle-password {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 8px;
    font-size: 18px;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: #3b82f6;
}

.captcha-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

.captcha-display {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    padding: 15px 25px;
    border-radius: 8px;
    border: 2px solid #d1d5db;
    font-weight: 600;
    color: #374151;
    font-size: 18px;
    min-width: 140px;
    text-align: center;
    user-select: none;
}

.captcha-display span {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.captcha-container input {
    flex: 1;
    min-width: 120px;
}

.refresh-captcha {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.refresh-captcha:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0;
}

.forgot-password {
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.login-btn:disabled {
    background: #9ca3af !important;
    cursor: not-allowed;
    transform: none;
    opacity: 0.6;
}

.login-btn:not(:disabled) {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.login-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Remove social login section */
.social-login {
    display: none;
}

.login-divider {
    display: none;
}

.signup-link {
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    margin-top: 20px;
}

.signup-link a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover {
    text-decoration: underline;
}

/* Login Error State */
.login-error {
    padding: 40px;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-top: 1px solid #fecaca;
    text-align: center;
    animation: slideIn 0.5s ease;
}

.error-icon {
    margin-bottom: 25px;
}

.error-icon i {
    font-size: 56px;
    color: #dc2626;
}

.error-content h3 {
    color: #dc2626;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
}

.error-content p {
    color: #7f1d1d;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 16px;
}

/* Modal Error Animation */
.modal-content.error {
    border: 3px solid #dc2626;
    animation: shake 0.6s ease;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .login-modal {
        margin: 5% auto;
        width: 95%;
    }
    
    .login-form {
        padding: 25px;
    }
    
    .login-form input {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .captcha-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .captcha-display {
        width: 100%;
        min-width: auto;
        padding: 12px 20px;
    }
    
    .form-options {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
} 

.preview-item i {
    color: #10b981;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.app-progress {
    text-align: center;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.2);
    height: 8px;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    height: 100%;
    width: 75%;
    border-radius: 4px;
}

.progress-fill.development {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    width: 45%;
}

.progress-text {
    font-size: 0.8rem;
    opacity: 0.8;
    color: #f59e0b;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: scrollTestimonials 60s linear infinite;
    width: max-content;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    min-width: 350px;
    max-width: 350px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.testimonial-rating i {
    color: #fbbf24;
    font-size: 16px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 16px;
    margin-bottom: 4px;
}

.author-title {
    color: #6b7280;
    font-size: 14px;
}

/* Animation for scrolling testimonials */
@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.testimonials-carousel:hover .testimonials-track {
    animation-play-state: paused;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 25px;
    }
    
    .testimonials-track {
        gap: 20px;
    }
    
    .testimonial-card p {
        font-size: 14px;
    }
    
    .author-name {
        font-size: 14px;
    }
    
    .author-title {
        font-size: 12px;
    }
}

/* Pricing Section */
.pricing {
    background: #f8fafc;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    color: #374151;
}

.toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    transition: .4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #3b82f6;
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.save-badge {
    background: #10b981;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid #3b82f6;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.pricing-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.price-period {
    color: #6b7280;
    font-size: 1rem;
}

.crypto-note {
    margin-bottom: 2rem;
    text-align: center;
    padding: 8px 12px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 8px;
    border: 1px solid #e0f2fe;
}

.crypto-note small {
    display: block;
    font-size: 12px;
    color: #0369a1;
    margin-bottom: 4px;
    font-weight: 600;
}

.crypto-disclaimer {
    font-size: 10px;
    color: #0284c7;
    font-style: italic;
}

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

.pricing-features li {
    padding: 8px 0;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features i {
    color: #10b981;
}

.payment-options {
    text-align: center;
    color: #374151;
}

.payment-options p {
    margin-bottom: 1rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 2rem;
    color: #6b7280;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-content .section-title {
    color: white;
}

.cta-content .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Help Widget */
.help-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.help-button {
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.help-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .mobile-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mobile-features {
        grid-template-columns: 1fr;
    }
    
    .mobile-cta {
        justify-content: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-card {
        position: static;
        margin: 2rem auto;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* High Contrast Mode */
body.high-contrast {
    background: #000;
    color: #fff;
}

body.high-contrast .header {
    background: #000;
    border-bottom: 2px solid #fff;
}

body.high-contrast .nav-link {
    color: #fff;
}

body.high-contrast .btn-outline {
    border-color: #fff;
    color: #fff;
}

/* Simple Mode */
body.simple-mode {
    background: #f5f5f5;
    color: #333;
}

body.simple-mode .hero {
    background: #fff;
}

body.simple-mode .hero-title {
    color: #333;
}

body.simple-mode .section-title {
    color: #333;
}

body.simple-mode .section-subtitle {
    color: #666;
}

/* Large Font Mode */
body.large-font {
    font-size: 18px;
}

body.large-font .hero-title {
    font-size: 4rem;
}

body.large-font .section-title {
    font-size: 3rem;
}

/* Screen Reader Announcements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Hero Visual - Process Animation */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

/* Process Animation */
.process-animation {
    background: #000;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.process-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.step.active {
    opacity: 1;
    transform: scale(1.1);
}

.step-dot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    transition: all 0.5s ease;
    position: relative;
}

.step.active .step-dot {
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
    animation: pulse 1s infinite;
}

.step-text {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.arrow {
    color: #00ff88;
    font-size: 24px;
    font-weight: bold;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.arrow.active {
    opacity: 1;
    animation: glow 1s infinite;
}

/* Get Refund Button */
.get-refund-btn {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin: 30px auto;
    max-width: 200px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    cursor: pointer;
}

.get-refund-btn.show {
    opacity: 1;
    transform: scale(1);
    animation: bounce 0.6s ease;
}

.get-refund-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
}

/* Money Animation */
.money-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.money-animation.show {
    opacity: 1;
    transform: translateY(0);
}

.money-icon {
    font-size: 48px;
    animation: moneyFloat 2s ease-in-out infinite;
}

.refund-amount {
    font-size: 36px;
    font-weight: bold;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    animation: moneyGlow 2s ease-in-out infinite;
}

.refund-text {
    color: #fff;
    font-size: 16px;
    opacity: 0.8;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 10px rgba(0, 255, 136, 0.5); }
    50% { text-shadow: 0 0 20px rgba(0, 255, 136, 1); }
}

@keyframes bounce {
    0% { transform: scale(0.8); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

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

@keyframes moneyGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(0, 255, 136, 0.5); }
    50% { text-shadow: 0 0 30px rgba(0, 255, 136, 1); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .process-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .step-text {
        font-size: 12px;
    }
    
    .step-dot {
        width: 50px;
        height: 50px;
    }
    
    .get-refund-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .refund-amount {
        font-size: 28px;
    }
    
    .money-icon {
        font-size: 36px;
    }
} 

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.trust-badge i:first-child {
    color: #3b82f6;
    font-size: 16px;
}

.trust-badge span {
    white-space: nowrap;
}

.info-icon {
    color: #94a3b8;
    font-size: 12px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.info-icon:hover {
    color: #3b82f6;
}

/* Mobile Responsive for Trust Badges */
@media (max-width: 768px) {
    .trust-badges {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .trust-badge {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
} 

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
} 

/* Neural Network Animation */
.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

.node {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, #3b82f6 20%, transparent 100%);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
    animation: nodePulse 4s ease-in-out infinite;
}

.node-1 { top: 20%; left: 15%; animation-delay: 0s; }
.node-2 { top: 40%; left: 35%; animation-delay: 0.5s; }
.node-3 { top: 60%; left: 25%; animation-delay: 1s; }
.node-4 { top: 30%; left: 60%; animation-delay: 1.5s; }
.node-5 { top: 70%; left: 50%; animation-delay: 2s; }
.node-6 { top: 50%; left: 80%; animation-delay: 2.5s; }

.connection {
    position: absolute;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    height: 2px;
    transform-origin: left;
    animation: connectionGlow 5s ease-in-out infinite;
}

.conn-1-2 { top: 23%; left: 18%; width: 20%; transform: rotate(25deg); animation-delay: 0s; }
.conn-1-3 { top: 27%; left: 18%; width: 15%; transform: rotate(70deg); animation-delay: 0.3s; }
.conn-2-4 { top: 43%; left: 38%; width: 25%; transform: rotate(-15deg); animation-delay: 0.6s; }
.conn-2-5 { top: 47%; left: 38%; width: 20%; transform: rotate(40deg); animation-delay: 0.9s; }
.conn-3-5 { top: 63%; left: 28%; width: 25%; transform: rotate(20deg); animation-delay: 1.2s; }
.conn-3-6 { top: 63%; left: 28%; width: 55%; transform: rotate(5deg); animation-delay: 1.5s; }
.conn-4-6 { top: 35%; left: 63%; width: 20%; transform: rotate(30deg); animation-delay: 1.8s; }
.conn-5-6 { top: 73%; left: 53%; width: 30%; transform: rotate(-15deg); animation-delay: 2.1s; }

.pulse {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 20px #3b82f6;
    animation: pulseTravel 6s linear infinite;
}

.pulse-1 { top: 20%; left: 15%; animation-delay: 0s; }
.pulse-2 { top: 40%; left: 35%; animation-delay: 2s; }
.pulse-3 { top: 60%; left: 25%; animation-delay: 4s; }

/* Animations */
@keyframes nodePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(59, 130, 246, 0.5); }
    50% { transform: scale(1.3); box-shadow: 0 0 50px rgba(59, 130, 246, 0.8); }
}

@keyframes connectionGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; box-shadow: 0 0 20px rgba(59, 130, 246, 0.5); }
}

@keyframes pulseTravel {
    0% { transform: translate(0, 0); opacity: 1; }
    100% { transform: translate(100%, 50%); opacity: 0; }
}

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

/* Calculator Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideIn 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.calculator-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.currency {
    position: absolute;
    left: 15px;
    color: #6b7280;
    font-weight: 600;
    z-index: 1;
}

.input-group input,
.form-group select {
    width: 100%;
    padding: 15px 15px 15px 35px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.input-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 14px;
    font-weight: 500;
}

.checkbox-item:hover {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
    background: white;
    flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: #3b82f6;
    border-color: #3b82f6;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.calculate-btn {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    margin-top: 20px;
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: slideIn 0.5s ease;
}

.success-message i {
    font-size: 18px;
}

/* Refund Result */
.refund-result {
    padding: 30px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-top: 1px solid #e5e7eb;
    margin-top: 20px;
    border-radius: 0 0 20px 20px;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.result-header i {
    color: #10b981;
    font-size: 24px;
}

.result-header h3 {
    margin: 0;
    color: #1f2937;
    font-size: 20px;
}

.result-amount {
    font-size: 48px;
    font-weight: 700;
    color: #10b981;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-range {
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 25px;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-50%);
}

.result-breakdown {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 16px;
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-item span:first-child {
    color: #6b7280;
    font-weight: 500;
}

.breakdown-item span:last-child {
    color: #1f2937;
    font-weight: 600;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 95vh;
    }
    
    .calculator-form {
        padding: 20px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .result-amount {
        font-size: 36px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .refund-result {
        padding: 20px;
    }
} 

/* Login Modal Styles */
.login-modal {
    max-width: 500px;
}

.login-form {
    padding: 40px;
}

.login-form .form-group {
    margin-bottom: 25px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 16px;
}

.login-form input {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.login-form input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.password-input {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input input {
    padding-right: 60px;
}

.toggle-password {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 8px;
    font-size: 18px;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: #3b82f6;
}

.captcha-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

.captcha-display {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    padding: 15px 25px;
    border-radius: 8px;
    border: 2px solid #d1d5db;
    font-weight: 600;
    color: #374151;
    font-size: 18px;
    min-width: 140px;
    text-align: center;
    user-select: none;
}

.captcha-display span {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.captcha-container input {
    flex: 1;
    min-width: 120px;
}

.refresh-captcha {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.refresh-captcha:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0;
}

.forgot-password {
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.login-btn:disabled {
    background: #9ca3af !important;
    cursor: not-allowed;
    transform: none;
    opacity: 0.6;
}

.login-btn:not(:disabled) {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.login-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Remove social login section */
.social-login {
    display: none;
}

.login-divider {
    display: none;
}

.signup-link {
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    margin-top: 20px;
}

.signup-link a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover {
    text-decoration: underline;
}

/* Login Error State */
.login-error {
    padding: 40px;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-top: 1px solid #fecaca;
    text-align: center;
    animation: slideIn 0.5s ease;
}

.error-icon {
    margin-bottom: 25px;
}

.error-icon i {
    font-size: 56px;
    color: #dc2626;
}

.error-content h3 {
    color: #dc2626;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
}

.error-content p {
    color: #7f1d1d;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 16px;
}

/* Modal Error Animation */
.modal-content.error {
    border: 3px solid #dc2626;
    animation: shake 0.6s ease;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .login-modal {
        margin: 5% auto;
        width: 95%;
    }
    
    .login-form {
        padding: 25px;
    }
    
    .login-form input {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .captcha-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .captcha-display {
        width: 100%;
        min-width: auto;
        padding: 12px 20px;
    }
    
    .form-options {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
} 

.preview-item i {
    color: #10b981;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.app-progress {
    text-align: center;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.2);
    height: 8px;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    height: 100%;
    width: 75%;
    border-radius: 4px;
}

.progress-fill.development {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    width: 45%;
}

.progress-text {
    font-size: 0.8rem;
    opacity: 0.8;
    color: #f59e0b;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: scrollTestimonials 60s linear infinite;
    width: max-content;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    min-width: 350px;
    max-width: 350px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.testimonial-rating i {
    color: #fbbf24;
    font-size: 16px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 16px;
    margin-bottom: 4px;
}

.author-title {
    color: #6b7280;
    font-size: 14px;
}

/* Animation for scrolling testimonials */
@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.testimonials-carousel:hover .testimonials-track {
    animation-play-state: paused;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 25px;
    }
    
    .testimonials-track {
        gap: 20px;
    }
    
    .testimonial-card p {
        font-size: 14px;
    }
    
    .author-name {
        font-size: 14px;
    }
    
    .author-title {
        font-size: 12px;
    }
}

/* Pricing Section */
.pricing {
    background: #f8fafc;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    color: #374151;
}

.toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    transition: .4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #3b82f6;
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.save-badge {
    background: #10b981;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid #3b82f6;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.pricing-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.price-period {
    color: #6b7280;
    font-size: 1rem;
}

.crypto-note {
    margin-bottom: 2rem;
    text-align: center;
    padding: 8px 12px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 8px;
    border: 1px solid #e0f2fe;
}

.crypto-note small {
    display: block;
    font-size: 12px;
    color: #0369a1;
    margin-bottom: 4px;
    font-weight: 600;
}

.crypto-disclaimer {
    font-size: 10px;
    color: #0284c7;
    font-style: italic;
}

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

.pricing-features li {
    padding: 8px 0;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features i {
    color: #10b981;
}

.payment-options {
    text-align: center;
    color: #374151;
}

.payment-options p {
    margin-bottom: 1rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 2rem;
    color: #6b7280;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-content .section-title {
    color: white;
}

.cta-content .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Help Widget */
.help-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.help-button {
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.help-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .mobile-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mobile-features {
        grid-template-columns: 1fr;
    }
    
    .mobile-cta {
        justify-content: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-card {
        position: static;
        margin: 2rem auto;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* High Contrast Mode */
body.high-contrast {
    background: #000;
    color: #fff;
}

body.high-contrast .header {
    background: #000;
    border-bottom: 2px solid #fff;
}

body.high-contrast .nav-link {
    color: #fff;
}

body.high-contrast .btn-outline {
    border-color: #fff;
    color: #fff;
}

/* Simple Mode */
body.simple-mode {
    background: #f5f5f5;
    color: #333;
}

body.simple-mode .hero {
    background: #fff;
}

body.simple-mode .hero-title {
    color: #333;
}

body.simple-mode .section-title {
    color: #333;
}

body.simple-mode .section-subtitle {
    color: #666;
}

/* Large Font Mode */
body.large-font {
    font-size: 18px;
}

body.large-font .hero-title {
    font-size: 4rem;
}

body.large-font .section-title {
    font-size: 3rem;
}

/* Screen Reader Announcements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Hero Visual - Process Animation */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

/* Process Animation */
.process-animation {
    background: #000;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.process-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.step.active {
    opacity: 1;
    transform: scale(1.1);
}

.step-dot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    transition: all 0.5s ease;
    position: relative;
}

.step.active .step-dot {
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
    animation: pulse 1s infinite;
}

.step-text {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.arrow {
    color: #00ff88;
    font-size: 24px;
    font-weight: bold;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.arrow.active {
    opacity: 1;
    animation: glow 1s infinite;
}

/* Get Refund Button */
.get-refund-btn {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin: 30px auto;
    max-width: 200px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    cursor: pointer;
}

.get-refund-btn.show {
    opacity: 1;
    transform: scale(1);
    animation: bounce 0.6s ease;
}

.get-refund-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
}

/* Money Animation */
.money-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.money-animation.show {
    opacity: 1;
    transform: translateY(0);
}

.money-icon {
    font-size: 48px;
    animation: moneyFloat 2s ease-in-out infinite;
}

.refund-amount {
    font-size: 36px;
    font-weight: bold;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    animation: moneyGlow 2s ease-in-out infinite;
}

.refund-text {
    color: #fff;
    font-size: 16px;
    opacity: 0.8;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 10px rgba(0, 255, 136, 0.5); }
    50% { text-shadow: 0 0 20px rgba(0, 255, 136, 1); }
}

@keyframes bounce {
    0% { transform: scale(0.8); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

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

@keyframes moneyGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(0, 255, 136, 0.5); }
    50% { text-shadow: 0 0 30px rgba(0, 255, 136, 1); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .process-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .step-text {
        font-size: 12px;
    }
    
    .step-dot {
        width: 50px;
        height: 50px;
    }
    
    .get-refund-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .refund-amount {
        font-size: 28px;
    }
    
    .money-icon {
        font-size: 36px;
    }
} 

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.trust-badge i:first-child {
    color: #3b82f6;
    font-size: 16px;
}

.trust-badge span {
    white-space: nowrap;
}

.info-icon {
    color: #94a3b8;
    font-size: 12px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.info-icon:hover {
    color: #3b82f6;
}

/* Mobile Responsive for Trust Badges */
@media (max-width: 768px) {
    .trust-badges {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .trust-badge {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
} 

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
} 

/* Neural Network Animation */
.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

.node {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, #3b82f6 20%, transparent 100%);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
    animation: nodePulse 4s ease-in-out infinite;
}

.node-1 { top: 20%; left: 15%; animation-delay: 0s; }
.node-2 { top: 40%; left: 35%; animation-delay: 0.5s; }
.node-3 { top: 60%; left: 25%; animation-delay: 1s; }
.node-4 { top: 30%; left: 60%; animation-delay: 1.5s; }
.node-5 { top: 70%; left: 50%; animation-delay: 2s; }
.node-6 { top: 50%; left: 80%; animation-delay: 2.5s; }

.connection {
    position: absolute;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    height: 2px;
    transform-origin: left;
    animation: connectionGlow 5s ease-in-out infinite;
}

.conn-1-2 { top: 23%; left: 18%; width: 20%; transform: rotate(25deg); animation-delay: 0s; }
.conn-1-3 { top: 27%; left: 18%; width: 15%; transform: rotate(70deg); animation-delay: 0.3s; }
.conn-2-4 { top: 43%; left: 38%; width: 25%; transform: rotate(-15deg); animation-delay: 0.6s; }
.conn-2-5 { top: 47%; left: 38%; width: 20%; transform: rotate(40deg); animation-delay: 0.9s; }
.conn-3-5 { top: 63%; left: 28%; width: 25%; transform: rotate(20deg); animation-delay: 1.2s; }
.conn-3-6 { top: 63%; left: 28%; width: 55%; transform: rotate(5deg); animation-delay: 1.5s; }
.conn-4-6 { top: 35%; left: 63%; width: 20%; transform: rotate(30deg); animation-delay: 1.8s; }
.conn-5-6 { top: 73%; left: 53%; width: 30%; transform: rotate(-15deg); animation-delay: 2.1s; }

.pulse {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 20px #3b82f6;
    animation: pulseTravel 6s linear infinite;
}

.pulse-1 { top: 20%; left: 15%; animation-delay: 0s; }
.pulse-2 { top: 40%; left: 35%; animation-delay: 2s; }
.pulse-3 { top: 60%; left: 25%; animation-delay: 4s; }

/* Animations */
@keyframes nodePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(59, 130, 246, 0.5); }
    50% { transform: scale(1.3); box-shadow: 0 0 50px rgba(59, 130, 246, 0.8); }
}

@keyframes connectionGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; box-shadow: 0 0 20px rgba(59, 130, 246, 0.5); }
}

@keyframes pulseTravel {
    0% { transform: translate(0, 0); opacity: 1; }
    100% { transform: translate(100%, 50%); opacity: 0; }
}

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

/* Calculator Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideIn 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.calculator-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.currency {
    position: absolute;
    left: 15px;
    color: #6b7280;
    font-weight: 600;
    z-index: 1;
}

.input-group input,
.form-group select {
    width: 100%;
    padding: 15px 15px 15px 35px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.input-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 14px;
    font-weight: 500;
}

.checkbox-item:hover {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
    background: white;
    flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: #3b82f6;
    border-color: #3b82f6;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.calculate-btn {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    margin-top: 20px;
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: slideIn 0.5s ease;
}

.success-message i {
    font-size: 18px;
}

/* Refund Result */
.refund-result {
    padding: 30px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-top: 1px solid #e5e7eb;
    margin-top: 20px;
    border-radius: 0 0 20px 20px;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.result-header i {
    color: #10b981;
    font-size: 24px;
}

.result-header h3 {
    margin: 0;
    color: #1f2937;
    font-size: 20px;
}

.result-amount {
    font-size: 48px;
    font-weight: 700;
    color: #10b981;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-range {
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 25px;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-50%);
}

.result-breakdown {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 16px;
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-item span:first-child {
    color: #6b7280;
    font-weight: 500;
}

.breakdown-item span:last-child {
    color: #1f2937;
    font-weight: 600;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 95vh;
    }
    
    .calculator-form {
        padding: 20px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .result-amount {
        font-size: 36px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .refund-result {
        padding: 20px;
    }
} 

/* Login Modal Styles */
.login-modal {
    max-width: 500px;
}

.login-form {
    padding: 40px;
}

.login-form .form-group {
    margin-bottom: 25px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 16px;
}

.login-form input {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.login-form input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.password-input {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input input {
    padding-right: 60px;
}

.toggle-password {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 8px;
    font-size: 18px;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: #3b82f6;
}

.captcha-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

.captcha-display {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    padding: 15px 25px;
    border-radius: 8px;
    border: 2px solid #d1d5db;
    font-weight: 600;
    color: #374151;
    font-size: 18px;
    min-width: 140px;
    text-align: center;
    user-select: none;
}

.captcha-display span {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.captcha-container input {
    flex: 1;
    min-width: 120px;
}

.refresh-captcha {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.refresh-captcha:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0;
}

.forgot-password {
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.login-btn:disabled {
    background: #9ca3af !important;
    cursor: not-allowed;
    transform: none;
    opacity: 0.6;
}

.login-btn:not(:disabled) {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.login-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Remove social login section */
.social-login {
    display: none;
}

.login-divider {
    display: none;
}

.signup-link {
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    margin-top: 20px;
}

.signup-link a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover {
    text-decoration: underline;
}

/* Login Error State */
.login-error {
    padding: 40px;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-top: 1px solid #fecaca;
    text-align: center;
    animation: slideIn 0.5s ease;
}

.error-icon {
    margin-bottom: 25px;
}

.error-icon i {
    font-size: 56px;
    color: #dc2626;
}

.error-content h3 {
    color: #dc2626;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
}

.error-content p {
    color: #7f1d1d;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 16px;
}

/* Modal Error Animation */
.modal-content.error {
    border: 3px solid #dc2626;
    animation: shake 0.6s ease;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .login-modal {
        margin: 5% auto;
        width: 95%;
    }
    
    .login-form {
        padding: 25px;
    }
    
    .login-form input {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .captcha-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .captcha-display {
        width: 100%;
        min-width: auto;
        padding: 12px 20px;
    }
    
    .form-options {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
} 

.preview-item i {
    color: #10b981;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.app-progress {
    text-align: center;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.2);
    height: 8px;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    height: 100%;
    width: 75%;
    border-radius: 4px;
}

.progress-fill.development {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    width: 45%;
}

.progress-text {
    font-size: 0.8rem;
    opacity: 0.8;
    color: #f59e0b;
}

.laptop-preview img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: laptopFloat 8s ease-in-out infinite;
}

@keyframes laptopFloat {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg);
    }
    50% {
        transform: translateY(-10px) rotateX(2deg);
    }
}

.laptop-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    animation: laptopFloat 8s ease-in-out infinite;
    /* Remove white background for browsers that support CSS mask */
    mask-image: url('image11.png');
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-image: url('image11.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    /* Fallback */
    mix-blend-mode: multiply;
}

@keyframes laptopFloat {
    0%, 100% {
        transform: translateY(0) rotateX(0deg);
    }
    50% {
        transform: translateY(-10px) rotateX(2deg);
    }
}

/* Address & Billing Address Styles */
.form-section-header {
    margin: 30px 0 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.form-section-header h4 {
    margin: 0 0 8px 0;
    color: #1e293b;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section-header h4 i {
    color: #3b82f6;
    font-size: 20px;
}

.section-description {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.billing-section {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #fef7f7, #fce8e8);
    border-radius: 15px;
    border: 2px solid #f3e8ff;
    position: relative;
}

.billing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 15px 15px 0 0;
}

.billing-header {
    margin-bottom: 20px;
}

.billing-header h5 {
    margin: 0 0 10px 0;
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.billing-header h5 i {
    color: #8b5cf6;
    font-size: 18px;
}

.billing-notice {
    background: rgba(139, 92, 246, 0.1);
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.billing-notice i {
    color: #8b5cf6;
    font-size: 16px;
    flex-shrink: 0;
}

.billing-notice span {
    color: #6b46c1;
    font-size: 14px;
    font-weight: 500;
}

/* Accepted Cards Styles */
.accepted-cards {
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.accepted-cards-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
}

.card-logos {
    display: flex;
    gap: 15px;
    align-items: center;
}

.card-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: white;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 600;
    min-width: 100px;
    justify-content: center;
}

.card-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-logo.visa {
    border-color: #1a1f71;
}

.card-logo.visa:hover {
    border-color: #1a1f71;
    background: #f0f4ff;
}

.card-logo.visa i {
    color: #1a1f71;
    font-size: 24px;
}

.card-logo.visa span {
    color: #1a1f71;
}

.card-logo.mastercard {
    border-color: #eb001b;
}

.card-logo.mastercard:hover {
    border-color: #eb001b;
    background: #fff5f5;
}

.card-logo.mastercard i {
    color: #eb001b;
    font-size: 24px;
}

.card-logo.mastercard span {
    color: #eb001b;
}