/* ===================================
   - Primary Yellow: #E4FE45
   - Primary Orange: #FF562C
   - Black Background: #0D0D0D
   - Primary Black: #171717
   - White: #FFFFFF, #F3F3F3
   - Gray: rgba(243, 243, 243, 0.45)
   - Error Red: #F65A5A
   =================================== */

/* CSS Variables */
:root {
    --primary-yellow: #E4FE45;
    --primary-orange: #FF562C;
    --bg-black: #0D0D0D;
    --primary-black: #171717;
    --white: #FFFFFF;
    --white-soft: #F3F3F3;
    --gray: rgba(243, 243, 243, 0.45);
    --gray-solid: #6B6B6B;
    --error-red: #F65A5A;
    
    --font-primary: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    --font-weight-medium: 510;
    --font-size-heading: clamp(32px, 5vw, 62px);
    --font-size-body: 17px;
    
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.5);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-medium);
    line-height: 1.6;
    color: var(--white-soft);
    background-color: var(--bg-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(243, 243, 243, 0.08);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.logo-icon {
    width: 40px;
    height: 40px;
    /*background: var(--primary-yellow);*/
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-black);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    /*color: rgba(243, 243, 243, 0.7);*/
    font-size: 15px;
    font-weight: 500;
}

.nav-links a:hover {
    /*color: var(--white);*/
	color: grey:
}

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

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

.btn-primary:hover {
    background: #d4ee35;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(228, 254, 69, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(243, 243, 243, 0.2);
}

.btn-outline:hover {
    background: rgba(243, 243, 243, 0.08);
    border-color: rgba(243, 243, 243, 0.4);
}

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

.btn-block {
    width: 100%;
}

.btn-orange {
    background: var(--primary-orange);
    color: var(--white);
}

.btn-orange:hover {
    background: #e64d26;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 86, 44, 0.25);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    /*grid-template-columns: 1fr 1fr;*/
    gap: 60px;
    align-items: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(228, 254, 69, 0.1);
    border: 1px solid rgba(228, 254, 69, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-yellow);
    margin-bottom: 24px;
}

.hero-badge svg {
    fill: var(--primary-yellow);
    stroke: var(--primary-yellow);
}

.hero h1 {
    font-size: var(--font-size-heading);
    font-weight: var(--font-weight-medium);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.hero h1 .highlight {
    color: var(--primary-yellow);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(243, 243, 243, 0.7);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(243, 243, 243, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
}

.stat-label {
    font-size: 13px;
    color: rgba(243, 243, 243, 0.5);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(243, 243, 243, 0.1);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

.phone-mockup {
    width: 320px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.05);
}

.phone-screen {
    background: var(--white);
    border-radius: 32px;
    padding: 24px 20px;
    min-height: 520px;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.back-btn {
    width: 32px;
    height: 32px;
    background: var(--white-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-black);
}

.calc-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--primary-black);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--white);
}

.calc-badge svg {
    opacity: 0.7;
}

.app-title {
    font-size: 28px;
    font-weight: var(--font-weight-medium);
    color: var(--primary-black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.amount-display {
    font-size: 48px;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 20px;
}

.slider-container {
    margin-bottom: 24px;
}

.slider-track {
    position: relative;
    height: 8px;
    background: rgba(0,0,0,0.1);
    border-radius: 4px;
    margin-bottom: 8px;
}

.slider-fill {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--primary-yellow) 100%);
    border-radius: 4px;
}

.slider-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--primary-black);
    border-radius: 50%;
    border: 3px solid var(--primary-yellow);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--gray-solid);
}

.app-info-box {
    background: rgba(0,0,0,0.03);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}

.app-info-box h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 8px;
}

.app-info-box p {
    font-size: 12px;
    color: var(--gray-solid);
    line-height: 1.5;
}

.app-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary-yellow);
    color: var(--primary-black);
    font-weight: 600;
    font-size: 16px;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.app-btn:hover {
    background: #d4ee35;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--primary-black);
    border-radius: 16px;
    box-shadow: var(--shadow);
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 60px;
    right: -40px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 100px;
    left: -60px;
    animation-delay: 3s;
}

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

/* Hero Background Shapes */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-yellow);
    top: -200px;
    right: -100px;
    opacity: 0.15;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-orange);
    bottom: -100px;
    left: -100px;
    opacity: 0.2;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--primary-yellow);
    top: 50%;
    left: 30%;
    opacity: 0.1;
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(228, 254, 69, 0.1);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: var(--font-weight-medium);
    color: var(--white);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: rgba(243, 243, 243, 0.6);
}

/* ===================================
   How It Works Section
   =================================== */
.how-it-works {
    background: linear-gradient(180deg, var(--bg-black) 0%, var(--primary-black) 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.step-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(228, 254, 69, 0.2);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    background: rgba(228, 254, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-yellow);
}

.step-icon {
    width: 64px;
    height: 64px;
    /*background: linear-gradient(135deg, rgba(228, 254, 69, 0.2) 0%, rgba(255, 86, 44, 0.1) 100%);*/
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.step-icon svg {
    stroke: var(--primary-yellow);
}

.step-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    color: rgba(243, 243, 243, 0.6);
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(243, 243, 243, 0.7);
}

/* Important Notice */
.important-notice {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 86, 44, 0.08);
    border: 1px solid rgba(255, 86, 44, 0.2);
    border-radius: var(--border-radius);
}

.notice-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 86, 44, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice-icon svg {
    stroke: var(--primary-orange);
}

.notice-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 8px;
}

.notice-content p {
    font-size: 14px;
    color: rgba(243, 243, 243, 0.7);
    line-height: 1.6;
}

/* ===================================
   Features Section
   =================================== */
.features {
    background: var(--primary-black);
}

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

.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.feature-card.featured {
    background: linear-gradient(135deg, rgba(228, 254, 69, 0.08) 0%, rgba(255, 86, 44, 0.05) 100%);
    border-color: rgba(228, 254, 69, 0.2);
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    background: var(--primary-orange);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: rgba(228, 254, 69, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon svg {
    stroke: var(--primary-yellow);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: rgba(243, 243, 243, 0.6);
    line-height: 1.6;
}

/* ===================================
   Calculator Section
   =================================== */
.calculator-section {
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--bg-black) 100%);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.calculator-card {
    background: var(--primary-black);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 32px;
}

.calc-group {
    margin-bottom: 28px;
}

.calc-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: rgba(243, 243, 243, 0.7);
    margin-bottom: 12px;
}

.amount-input-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
}

.currency {
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
}

.amount-value {
    font-size: 48px;
    font-weight: 600;
    color: var(--white);
}

/* Slider Styles */
.slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    cursor: pointer;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--primary-black);
    border: 3px solid var(--primary-yellow);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.slider-orange::-webkit-slider-thumb {
    border-color: var(--primary-orange);
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--primary-black);
    border: 3px solid var(--primary-yellow);
    border-radius: 50%;
    cursor: pointer;
}

.slider-orange::-moz-range-thumb {
    border-color: var(--primary-orange);
}

.slider-range {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: rgba(243, 243, 243, 0.5);
}

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

.input-with-unit {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 14px 16px;
}

.input-with-unit input {
    flex: 1;
    background: none;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

.input-with-unit .unit {
    color: rgba(243, 243, 243, 0.5);
    font-size: 14px;
}

.rate-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
}

.rate-value {
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
}

.rate-percent {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-orange);
}

select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--white);
    font-size: 15px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
}

select option {
    background: var(--primary-black);
    color: var(--white);
}

/* Results Card */
.results-card {
    background: linear-gradient(135deg, rgba(228, 254, 69, 0.08) 0%, rgba(255, 86, 44, 0.05) 100%);
    border: 1px solid rgba(228, 254, 69, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    height: fit-content;
}

.results-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.result-item:last-of-type {
    border-bottom: none;
}

.result-label {
    font-size: 14px;
    color: rgba(243, 243, 243, 0.7);
}

.result-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.result-value.highlight {
    color: var(--primary-yellow);
}

.result-disclaimer {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-sm);
}

.result-disclaimer svg {
    flex-shrink: 0;
    stroke: rgba(243, 243, 243, 0.5);
}

.result-disclaimer p {
    font-size: 12px;
    color: rgba(243, 243, 243, 0.5);
    line-height: 1.5;
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    background: var(--bg-black);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    color: var(--white);
    text-align: left;
}

.faq-question span {
    font-size: 18px;
    font-weight: 500;
    padding-right: 24px;
}

.faq-question svg {
    flex-shrink: 0;
    stroke: rgba(243, 243, 243, 0.5);
    transition: var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
    stroke: var(--primary-yellow);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding-bottom: 24px;
    font-size: 15px;
    color: rgba(243, 243, 243, 0.6);
    line-height: 1.7;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-black) 0%, rgba(228, 254, 69, 0.05) 100%);
    padding: 80px 0;
}

.cta-section .container {
    /*display: grid;*/
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: var(--font-weight-medium);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(243, 243, 243, 0.6);
    margin-bottom: 32px;
}

/* Offer Card */
.offer-card {
    background: var(--primary-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    max-width: 320px;
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.lender-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-orange);
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.offer-details {
    margin-bottom: 20px;
}

.offer-details .detail {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.offer-details .label {
    font-size: 13px;
    color: rgba(243, 243, 243, 0.5);
}

.offer-details .value {
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
}

.approval-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: rgba(228, 254, 69, 0.1);
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-yellow);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--bg-black);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand p {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(243, 243, 243, 0.5);
    line-height: 1.6;
    max-width: 320px;
}

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

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(243, 243, 243, 0.6);
}

.footer-column ul li a:hover {
    color: var(--primary-yellow);
}

.footer-column ul li span {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: rgba(243, 243, 243, 0.6);
}

.footer-column ul li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-disclaimer {
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius);
    margin-bottom: 32px;
}

.footer-disclaimer p {
    font-size: 12px;
    color: rgba(243, 243, 243, 0.4);
    line-height: 1.7;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(243, 243, 243, 0.4);
}

/* ===================================
   Contact Page Styles
   =================================== */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, var(--bg-black) 0%, var(--primary-black) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: var(--font-weight-medium);
    color: var(--white);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: rgba(243, 243, 243, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 15px;
    color: rgba(243, 243, 243, 0.6);
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    gap: 16px;
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: rgba(228, 254, 69, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon svg {
    stroke: var(--primary-yellow);
}

.contact-method-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-method-content p,
.contact-method-content a {
    font-size: 14px;
    color: rgba(243, 243, 243, 0.6);
}

.contact-method-content a:hover {
    color: var(--primary-yellow);
}

/* Contact Form */
.contact-form {
    background: var(--primary-black);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 40px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: rgba(243, 243, 243, 0.8);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--white);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-yellow);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(243, 243, 243, 0.3);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

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

.form-status {
    padding: 14px 16px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
}

.form-status.success {
    background: rgba(228, 254, 69, 0.1);
    border: 1px solid rgba(228, 254, 69, 0.3);
    color: var(--primary-yellow);
    display: block;
}

.form-status.error {
    background: rgba(246, 90, 90, 0.1);
    border: 1px solid rgba(246, 90, 90, 0.3);
    color: var(--error-red);
    display: block;
}

/* ===================================
   Legal Pages Styles
   =================================== */
.legal-section {
    padding: 60px 0 100px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-meta {
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-meta p {
    font-size: 14px;
    color: var(--primary-orange);
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin: 48px 0 20px;
}

.legal-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 32px 0 16px;
}

.legal-content p {
    font-size: 15px;
    color: rgba(243, 243, 243, 0.7);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 24px 24px;
}

.legal-content ul li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    color: rgba(243, 243, 243, 0.7);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary-orange);
    border-radius: 50%;
}

.legal-content a {
    color: var(--primary-yellow);
}

.legal-content a:hover {
    text-decoration: underline;
}

/* ===================================
   Responsive Styles
   =================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-subtitle {
        margin: 0 auto 32px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cta-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-visual {
        display: flex;
        justify-content: center;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-brand p {
        margin: 20px auto 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg-black);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .calc-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .important-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .notice-icon {
        margin: 0 auto;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .amount-value {
        font-size: 36px;
    }
    
    .contact-form {
        padding: 24px;
    }
}







.counter {
    display: inline-block;
}


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

.counter.animated {
    animation: countUp 0.5s ease-out forwards;
}


.hero-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(228, 254, 69, 0.1) 0%,
        rgba(255, 86, 44, 0.05) 25%,
        transparent 50%
    );
    animation: gradient-shift 8s infinite linear;
    z-index: 0;
    pointer-events: none;
}

.hero-stats .stat {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.hero-stats .stat:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}


@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .hero-stats .stat {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
}







/* ===================================
   FAQ Accordion Fixes
   =================================== */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    color: var(--white);
    text-align: left;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 500;
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-right: 24px;
}

.faq-number {
    color: var(--primary-yellow);
    font-weight: 700;
    font-size: 16px;
    min-width: 30px;
}

.faq-question svg {
    flex-shrink: 0;
    stroke: rgba(243, 243, 243, 0.5);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
    stroke: var(--primary-yellow);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(-10px);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

.faq-answer-content {
    padding: 0 0 32px 64px;
    font-size: 16px;
    color: rgba(243, 243, 243, 0.6);
    line-height: 1.7;
    animation: fadeInUp 0.5s ease forwards;
}

/* Animation for FAQ answer */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px 0;
        font-size: 16px;
    }
    
    .faq-question-content {
        gap: 16px;
    }
    
    .faq-number {
        font-size: 14px;
        min-width: 25px;
    }
    
    .faq-answer-content {
        padding: 0 0 20px 40px;
        font-size: 15px;
    }
    
    .faq-question svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        font-size: 15px;
        padding: 16px 0;
    }
    
    .faq-question-content {
        gap: 12px;
    }
    
    .faq-answer-content {
        padding: 0 0 16px 0;
        margin-left: 40px;
    }
}







/* ===================================
   Trust Indicators Section - Enhanced
   =================================== */
.trust-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-black) 0%, rgba(23, 23, 23, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-yellow) 20%, 
        var(--primary-orange) 50%, 
        var(--primary-yellow) 80%, 
        transparent 100%);
    opacity: 0.3;
}

.trust-section .container {
    position: relative;
    z-index: 2;
}

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


.trust-indicator {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(228, 254, 69, 0.2) 20%, 
        rgba(255, 86, 44, 0.4) 50%, 
        rgba(228, 254, 69, 0.2) 80%, 
        transparent 100%);
    transform: translateY(-50%);
    z-index: 1;
    animation: trustIndicatorPulse 4s ease-in-out infinite;
}

@keyframes trustIndicatorPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.trust-item {
    position: relative;
    text-align: center;
    padding: 40px 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(228, 254, 69, 0.05) 0%, 
        rgba(255, 86, 44, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: inherit;
}

.trust-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(228, 254, 69, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(228, 254, 69, 0.1),
        inset 0 0 30px rgba(228, 254, 69, 0.05);
}

.trust-item:hover::before {
    opacity: 1;
}

.trust-item:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, 
        rgba(228, 254, 69, 0.2) 0%, 
        rgba(255, 86, 44, 0.1) 100%);
    box-shadow: 0 10px 30px rgba(228, 254, 69, 0.2);
}


.trust-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--primary-yellow), 
        var(--primary-orange), 
        var(--primary-yellow));
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.trust-item:hover::after {
    opacity: 0.3;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    50% {
        background-position: 100% 50%;
        filter: hue-rotate(90deg);
    }
    100% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: rgba(228, 254, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.trust-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, 
        var(--primary-yellow), 
        var(--primary-orange));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.trust-item:hover .trust-icon::before {
    opacity: 0.3;
    animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.05);
    }
}

.trust-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--primary-yellow);
    stroke-width: 1.5;
    transition: all 0.3s ease;
}

.trust-item:hover .trust-icon svg {
    stroke: var(--white);
    filter: drop-shadow(0 0 8px rgba(228, 254, 69, 0.6));
}

.trust-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.trust-item h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-yellow) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-item:hover h3::after {
    opacity: 1;
    animation: lineExpand 1.5s ease-in-out infinite;
}

@keyframes lineExpand {
    0%, 100% {
        width: 40px;
        opacity: 0.7;
    }
    50% {
        width: 60px;
        opacity: 1;
    }
}

.trust-item p {
    font-size: 15px;
    color: rgba(243, 243, 243, 0.7);
    line-height: 1.6;
    position: relative;
}


.trust-floating-element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-yellow);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.trust-floating-element:nth-child(1) {
    top: 20px;
    left: 20px;
    animation: floatAround 8s ease-in-out infinite;
}

.trust-floating-element:nth-child(2) {
    bottom: 20px;
    right: 20px;
    animation: floatAround 10s ease-in-out infinite reverse;
}

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


.trust-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(228, 254, 69, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-item:hover .trust-number {
    opacity: 1;
}


@media (max-width: 1024px) {
    .trust-grid {
        gap: 20px;
    }
    
    .trust-item {
        padding: 30px 20px;
    }
    
    .trust-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .trust-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .trust-item h3 {
        font-size: 20px;
    }
    
    .trust-item p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .trust-section {
        padding: 60px 0;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .trust-indicator {
        display: none;
    }
    
    .trust-item {
        padding: 35px 25px;
    }
    
    .trust-item:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
  
    @keyframes mobileSlideUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .trust-item {
        animation: mobileSlideUp 0.6s ease-out forwards;
        animation-delay: calc(var(--item-index, 0) * 0.1s);
        opacity: 0;
    }
    

    .trust-section::after {
        content: '';
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background: linear-gradient(90deg, 
            var(--primary-yellow), 
            var(--primary-orange));
        border-radius: 2px;
        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    .trust-item {
        padding: 30px 20px;
    }
    
    .trust-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .trust-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .trust-item h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .trust-item p {
        font-size: 13px;
    }
}


[data-theme="light"] .trust-section {
    background: linear-gradient(180deg, #f8f9fa 0%, rgba(248, 249, 250, 0.8) 100%);
}

[data-theme="light"] .trust-item {
    /*background: rgba(255, 255, 255, 0.9);*/
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .trust-item:hover {
    border-color: var(--primary-yellow);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(228, 254, 69, 0.2);
}

[data-theme="light"] .trust-item h3 {
    color: var(--primary-black);
}

[data-theme="light"] .trust-item p {
    color: rgba(23, 23, 23, 0.7);
}







.trust-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}