/* ============================================
   PhishPDS Homepage Styles
   Modern, animated homepage with glassmorphism navbar
   ============================================ */

/* CSS Variables - Enterprise Professional Color Scheme */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #6366f1;
    --secondary-dark: #4f46e5;
    --accent-color: #8b5cf6;
    --success-color: #10b981;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #0a0e27;
    --bg-gradient-start: #0f172a;
    --bg-gradient-mid: #1e293b;
    --bg-gradient-end: #334155;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #6366f1 50%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #1e1b4b 50%, #312e81 75%, #1e293b 100%);
    --gradient-navbar: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.98) 100%);
}

/* Reset and Base Styles - Override Bootstrap */
* {
    box-sizing: border-box;
}

body.homepage * {
    box-sizing: border-box;
}

/* Override Bootstrap styles */
body.homepage {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    line-height: 1.6 !important;
    color: var(--text-primary) !important;
    overflow-x: hidden !important;
    background: #ffffff !important;
    margin: 0 !important;
    padding: 0 !important;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: #ffffff;
}

/* ============================================
   Navbar Styles - Glassmorphism Design
   ============================================ */

.navbar-home {
    position: fixed !important;
    top: 0.67rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 2rem) !important;
    max-width: 100% !important;
    z-index: 1000 !important;
    padding: 0.67rem 2rem !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(10px) saturate(120%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
    display: block !important;
    visibility: visible !important;
}

.navbar-home::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.3;
}

.navbar-home.scrolled {
    top: 0.5rem !important;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    border-color: rgba(71, 85, 105, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.8) inset !important;
    padding: 0.57rem 2rem !important;
}

.navbar-home.scrolled::before {
    opacity: 0.6;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.15));
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.47rem;
    text-decoration: none;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.87rem;
    font-weight: 800;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.02em;
}

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

.navbar-logo i {
    font-size: 1.07rem;
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.4));
}

.navbar-logo:hover i {
    transform: rotate(360deg) scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.6));
}

.logo-text {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #6366f1, #8b5cf6);
    transition: width 0.4s ease;
}

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

.navbar-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.34rem;
}

.navbar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.navbar-link {
    color: #475569 !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.57rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.34rem 0.64rem;
    border-radius: 7px;
    letter-spacing: 0.2px;
}

.navbar-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(71, 85, 105, 0.1);
    border-radius: 8px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(71, 85, 105, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-link:hover::after {
    opacity: 1;
    background: rgba(71, 85, 105, 0.15);
    border-color: rgba(71, 85, 105, 0.3);
}

.navbar-link:hover {
    color: #1e293b !important;
    transform: translateY(-1px);
}

.navbar-link span {
    position: relative;
    z-index: 1;
    color: inherit;
}

.navbar-link-login {
    margin-right: 0.5rem;
}

.navbar-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 50%, #8b5cf6 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.57rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
    border: none;
}

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

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

.navbar-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    color: white;
}

.navbar-btn-primary span {
    position: relative;
    z-index: 2;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: #475569;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar-home:not(.scrolled) .navbar-toggle span {
    background: #475569;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navbar */
@media (max-width: 768px) {
    .navbar-home {
        top: 0.5rem !important;
        width: calc(100% - 1rem) !important;
        padding: 0.57rem 1rem !important;
        border-radius: 50px !important;
    }
    
    .navbar-home.scrolled {
        top: 0.34rem !important;
        padding: 0.5rem 1rem !important;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-container {
        grid-template-columns: 1fr auto auto;
    }
    
    .navbar-menu {
        position: fixed;
        top: 3.69rem;
        left: 0.5rem;
        right: 0.5rem;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(24px) saturate(180%);
        -webkit-backdrop-filter: blur(24px) saturate(180%);
        border: 1px solid rgba(71, 85, 105, 0.2);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        transform: translateY(-13px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 50px;
        box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .navbar-actions {
        display: none;
    }
    
    .navbar-link {
        width: 100%;
        text-align: center;
        padding: 0.57rem 0.67rem;
        color: #475569 !important;
    }
    
    .navbar-btn-primary {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
    
    .navbar-btn-primary {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
    background: linear-gradient(180deg, #f0f4ff 0%, #e0e7ff 30%, #dbeafe 60%, #c7d2fe 100%) !important;
    padding-top: 54px !important;
    margin: 0 !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(99, 102, 241, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(139, 92, 246, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 55%),
        radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
    animation: gradientShift 20s ease infinite;
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 30%, transparent 70%, rgba(199, 210, 254, 0.1) 100%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, transparent 20%, transparent 80%, rgba(199, 210, 254, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% { 
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    33% { 
        opacity: 0.9;
        transform: scale(1.05) rotate(2deg);
    }
    66% { 
        opacity: 0.85;
        transform: scale(1.08) rotate(-2deg);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.25;
    background: 
        url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><circle cx="40" cy="40" r="1.5" fill="white" opacity="0.4"/></svg>') repeat,
        url('data:image/svg+xml,<svg width="160" height="160" xmlns="http://www.w3.org/2000/svg"><circle cx="80" cy="80" r="1" fill="white" opacity="0.25"/></svg>') repeat,
        url('data:image/svg+xml,<svg width="240" height="240" xmlns="http://www.w3.org/2000/svg"><circle cx="120" cy="120" r="0.8" fill="white" opacity="0.15"/></svg>') repeat;
    animation: float 35s infinite linear, drift 45s infinite ease-in-out;
    background-size: 80px 80px, 160px 160px, 240px 240px;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    opacity: 0.6;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(59, 130, 246, 0.8);
    border-radius: 50%;
    animation: particleFloat 25s infinite ease-in-out;
    box-shadow: 0 0 6px rgba(59, 130, 246, 0.6);
}

.hero-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    box-shadow: 
        0 0 6px rgba(59, 130, 246, 0.6),
        200px 300px 0 0 rgba(99, 102, 241, 0.5),
        400px 100px 0 0 rgba(139, 92, 246, 0.4),
        600px 500px 0 0 rgba(59, 130, 246, 0.6),
        800px 200px 0 0 rgba(99, 102, 241, 0.4);
}

.hero-particles::after {
    top: 60%;
    right: 15%;
    animation-delay: 12s;
    background: rgba(139, 92, 246, 0.8);
    box-shadow: 
        0 0 6px rgba(139, 92, 246, 0.6),
        -150px 200px 0 0 rgba(99, 102, 241, 0.5),
        -350px 400px 0 0 rgba(59, 130, 246, 0.4),
        -550px 100px 0 0 rgba(139, 92, 246, 0.6),
        -750px 300px 0 0 rgba(99, 102, 241, 0.4);
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translate(30px, -50px) scale(1.2);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-20px, 30px) scale(0.9);
        opacity: 0.5;
    }
    75% { 
        transform: translate(40px, 20px) scale(1.1);
        opacity: 0.7;
    }
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-30px, 30px) rotate(-5deg); }
    75% { transform: translate(30px, 30px) rotate(3deg); }
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-120px) rotate(360deg); }
}

.hero-content {
    max-width: 804px;
    margin: 0 auto;
    padding: 0 1.34rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.34rem;
    padding: 0.3rem 0.74rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 85, 105, 0.2);
    border-radius: 34px;
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.badge-icon {
    color: #4ade80;
    font-size: 0.57rem;
    animation: pulseIcon 2s ease infinite;
}

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

.badge-text {
    color: #475569;
    font-size: 0.54rem;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.hero-title {
    font-size: 2.35rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: none;
    letter-spacing: -0.03em;
    position: relative;
}

.title-line-1,
.title-line-2 {
    display: block;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-line-1 {
    animation: slideInLeft 1s ease 0.4s both;
}

.title-line-2 {
    animation: slideInRight 1s ease 0.6s both;
    margin-top: 0.2rem;
}

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

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

.hero-subtitle {
    font-size: 0.74rem;
    color: #475569;
    margin-bottom: 1.34rem;
    line-height: 1.6;
    max-width: 469px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.8s both;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.34rem;
    margin-bottom: 1.34rem;
    padding: 1rem 0;
    animation: fadeInUp 1s ease 1s both;
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-item .stat-value {
    font-size: 1.68rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.4rem;
    text-shadow: none;
}

.hero-stat-item .stat-label {
    font-size: 0.54rem;
    color: #475569 !important;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-shadow: none;
    line-height: 1.3;
}

.hero-stat-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, transparent, rgba(71, 85, 105, 0.3), transparent);
}

.hero-buttons {
    display: flex;
    gap: 0.67rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.2s both;
    margin-bottom: 1.34rem;
}

.hero-trust-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.34rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.4s both;
    padding-top: 1rem;
    border-top: 1px solid rgba(71, 85, 105, 0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #475569;
    font-size: 0.57rem;
    font-weight: 500;
}

.trust-item i {
    color: #4ade80;
    font-size: 0.64rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 1.34rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    animation: fadeInUp 1s ease 1.6s both, bounce 2s ease infinite;
    z-index: 2;
}

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

.scroll-mouse {
    width: 16px;
    height: 27px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
    0% { 
        top: 8px;
        opacity: 1;
    }
    100% { 
        top: 30px;
        opacity: 0;
    }
}

.scroll-text {
    font-size: 0.5rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.btn-hero {
    position: relative;
    overflow: hidden;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.64rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    z-index: 2;
}

.btn-text {
    letter-spacing: 0.3px;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-icon-left {
    margin-right: 0;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    color: #667eea;
    padding: 0.6rem 1.34rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border: none;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

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

.btn-hero-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    color: #5568d3;
}

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

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #475569;
    border: 2px solid rgba(71, 85, 105, 0.3);
    padding: 0.6rem 1.34rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

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

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-hero-secondary:hover .btn-icon-left {
    transform: scale(1.1);
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 1.88rem;
    }
    
    .title-line-1,
    .title-line-2 {
        font-size: 1.68rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-value {
        font-size: 1.34rem;
    }
    
    .hero-trust-indicators {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.47rem;
    }
    
    .title-line-1,
    .title-line-2 {
        font-size: 1.34rem;
        display: block;
    }
    
    .hero-subtitle {
        font-size: 0.67rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0.8rem 0;
    }
    
    .hero-stat-divider {
        width: 34px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    }
    
    .stat-value {
        font-size: 1.68rem;
    }
    
    .stat-label {
        font-size: 0.57rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 268px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn-hero {
        width: 100%;
        padding: 0.67rem 1.34rem;
        font-size: 0.67rem;
    }
    
    .hero-trust-indicators {
        flex-direction: column;
        gap: 0.67rem;
        text-align: center;
    }
    
    .hero-badge {
        padding: 0.34rem 0.8rem;
        font-size: 0.57rem;
    }
    
    .hero-scroll-indicator {
        bottom: 1.34rem;
    }
}

/* ============================================
   Features Section
   ============================================ */

.features-section {
    padding: 2.68rem 0 !important;
    background: var(--bg-white) !important;
    margin: 0 !important;
}

.section-container {
    max-width: 804px;
    margin: 0 auto;
    padding: 0 1.34rem;
}

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

.section-title {
    font-size: 1.34rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.54rem;
}

.section-subtitle {
    font-size: 0.67rem;
    color: var(--text-secondary);
    max-width: 402px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(188px, 1fr));
    gap: 1rem;
    margin-top: 1.34rem;
}

.feature-card {
    background: white;
    padding: 1.34rem;
    border-radius: 11px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: fadeInUp 0.6s ease;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.2);
}

.feature-icon {
    width: 47px;
    height: 47px;
    margin: 0 auto 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 13px;
    color: white;
    font-size: 1.34rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 30px;
    background: var(--gradient-primary);
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.feature-card:hover .feature-icon::after {
    opacity: 0.6;
}

.feature-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.54rem;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   Overview Section
   ============================================ */

.overview-section {
    padding: 4rem 0 !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    margin: 0 !important;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
    gap: 1.34rem;
    margin-top: 2rem;
}

.stat-card {
    background: white;
    padding: 1.34rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.stat-card.animate {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
   About/Branding Section
   ============================================ */

.about-section {
    padding: 6rem 0 !important;
    background: var(--bg-white) !important;
    margin: 0 !important;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    opacity: 0;
    transform: translateX(-30px);
}

.about-text.animate {
    opacity: 1;
    transform: translateX(0);
    animation: fadeInLeft 0.8s ease;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-image {
    opacity: 0;
    transform: translateX(30px);
}

.about-image.animate {
    opacity: 1;
    transform: translateX(0);
    animation: fadeInRight 0.8s ease;
}

.about-visual {
    width: 100%;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-text,
    .about-image {
        transform: translateY(30px);
    }
    
    .about-text.animate,
    .about-image.animate {
        transform: translateY(0);
        animation: fadeInUp 0.8s ease;
    }
}

/* ============================================
   Contact Section
   ============================================ */

.contact-section {
    padding: 4rem 0 !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    margin: 0 !important;
}

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 13px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
}

.contact-card.animate {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 13px;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.contact-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-info {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

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

.contact-link:hover i {
    transform: translateX(4px);
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: white;
    padding: 4rem 0 1.5rem 0;
    position: relative;
    overflow: hidden;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.34rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    opacity: 1;
    transform: translateY(0);
}

.footer-brand.animate {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-logo i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
}

.footer-logo-text {
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    opacity: 1;
    transform: translateY(0);
}

.footer-links-section.animate {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease 0.2s both;
}

.footer-column-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: white;
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 2rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.footer-copyright strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.footer-powered {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-badge {
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    backdrop-filter: blur(10px);
}

@media (max-width: 968px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-links-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links-section {
        grid-template-columns: 1fr;
    }
    
    .footer-badges {
        justify-content: center;
    }
}

/* ============================================
   Animations
   ============================================ */

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

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

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

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

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

