/* Main layout and landing styles */
:root {
    --primary-color: #FF6B35;
    --secondary-color: #1A1A2E;
    --accent-color: #16213E;
    --text-light: #E0E1DD;
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    --gradient-secondary: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-variant-numeric: tabular-nums;
    font-feature-settings: 'tnum' 1, 'lnum' 1;
    overflow: visible !important;
    background: #ffffff;
    color: #1a1a1a;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100vh;
}

html,
body {
    scrollbar-width: none !important;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none !important;
    width: 0;
    height: 0;
}

main,
main > * {
    max-width: 100% !important;
    width: 100% !important;
    overflow-x: hidden !important;
}

.container,
.container-fluid,
.row {
    max-width: 100% !important;
    width: 100% !important;
    overflow-x: hidden !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: #ffffff;
    overflow: hidden;
    pointer-events: none;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" style="stop-color:%23FF6B35;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%23FF6B35;stop-opacity:0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)" class="floating-circle"><animateTransform attributeName="transform" type="translate" values="0,0;50,30;0,0" dur="6s" repeatCount="indefinite"/></circle><circle cx="800" cy="400" r="150" fill="url(%23a)" class="floating-circle"><animateTransform attributeName="transform" type="translate" values="0,0;-30,50;0,0" dur="8s" repeatCount="indefinite"/></circle><circle cx="500" cy="700" r="80" fill="url(%23a)" class="floating-circle"><animateTransform attributeName="transform" type="translate" values="0,0;40,-20;0,0" dur="7s" repeatCount="indefinite"/></circle></svg>') no-repeat;
    background-size: cover;
    opacity: 0.3;
    animation: float 10s ease-in-out infinite;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0;
    overflow-x: hidden !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.hero-title {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: #FF6B35;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1.2rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.stats-section {
    padding: 100px 0;
    background: #ffffff;
    backdrop-filter: blur(10px);
}

.stat-card {
    background: #f8f9fa;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #FF6B35;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #4a4a4a;
    opacity: 0.9;
}

.features-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    color: #FF6B35;
    margin-bottom: 50px;
}

.feature-card {
    background: #ffffff;
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    border: 2px solid #e5e5e5;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: var(--gradient-primary);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.feature-description {
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.how-it-works {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.03);
}

.step-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    position: relative;
    z-index: 2;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0.3;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.step-description {
    line-height: 1.5;
    opacity: 0.8;
}

.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon points="0,0 1000,0 1000,800 0,1000" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat;
    z-index: 1;
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 2;
    background-size: cover;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    opacity: 0.9;
}

.scroll-hint .icon {
    display: inline-block;
    font-size: 1.25rem;
}

.scroll-hint:hover {
    color: #fff;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}
