/* ==========================================
   GOOGLE FONT
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');


/* ==========================================
   THEME VARIABLES
========================================== */

:root{

    --bg:#f8fafc;
    --surface:#ffffff;
    --text:#0f172a;
    --muted:#64748b;

    --primary:#2563eb;
    --primary-dark:#1d4ed8;


    --border:#e2e8f0;

    --shadow:0 10px 35px rgba(15,23,42,.08);

    --radius:18px;

    --transition:.3s ease;

}


[data-theme="dark"]{

    --bg:#0f172a;
    --surface:#111827;
    --text:#f8fafc;
    --muted:#94a3b8;

    --primary:#2563eb;
    --primary-dark:#1d4ed8;

    --border:#1f2937;

    --shadow:0 15px 40px rgba(0,0,0,.45);

}


/* ==========================================
   GLOBAL
========================================== */

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;
    background:var(--bg);
    color:var(--text);

    transition:background .3s,color .3s;

    overflow-x:hidden;

}

section{

    padding:90px 0;

}

a{

    text-decoration:none;

}

img{

    max-width:100%;
    display:block;

}


/* ==========================================
   NAVBAR
========================================== */

.custom-navbar{

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(18px);

    border-bottom:1px solid var(--border);

    transition:var(--transition);

    padding:14px 0;

}

[data-theme="dark"] .custom-navbar{

    background:rgba(15,23,42,.92);

}


/* ==========================================
   LOGO
========================================== */

.logo-image{

    width:42px;
    height:42px;

    border-radius:50%;

    margin-right:12px;

}

.logo-text{

    font-size:1.45rem;

    font-weight:800;

    color:var(--text);

}


/* ==========================================
   NAV LINKS
========================================== */

.nav-link{

    color:var(--text) !important;

    font-weight:600;

    margin:0 8px;

    transition:var(--transition);

}

.nav-link:hover,

.nav-link.active{

    color:var(--primary) !important;

}


/* ==========================================
   BUTTONS
========================================== */

.btn-primary{

    background:var(--primary);

    border:none;

    color:#fff;

    border-radius:12px;

    padding:12px 26px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-2px);

}


.btn-outline-primary{

    border:2px solid var(--primary);

    color:var(--primary);

    border-radius:12px;

    padding:12px 26px;

    font-weight:600;

    transition:var(--transition);

}

.btn-outline-primary:hover{

    background:var(--primary);

    color:#fff;

}


/* ==========================================
   THEME BUTTON
========================================== */

.btn-theme{

    width:46px;

    height:46px;

    border:none;

    border-radius:50%;

    background:var(--surface);

    color:var(--primary);

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.btn-theme:hover{

    transform:rotate(20deg);

}
/* ==========================================
   HERO SECTION
========================================== */

.hero-section{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:130px;

    background:
    radial-gradient(circle at top right,
    rgba(56,189,248,.12),
    transparent 35%),

    radial-gradient(circle at bottom left,
    rgba(14,165,233,.10),
    transparent 35%);

}


/* ==========================================
   HERO BADGE
========================================== */

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:10px 18px;

    background:rgba(56,189,248,.12);

    color:var(--primary);

    border-radius:50px;

    font-size:.9rem;

    font-weight:600;

    margin-bottom:20px;

}

.hero-badge i{

    font-size:1rem;

}


/* ==========================================
   HERO TEXT
========================================== */

.hero-title{

    font-size:3.5rem;

    font-weight:800;

    line-height:1.2;

    margin-bottom:20px;

    color:var(--text);

}

.hero-title span{

    color:var(--primary);

}

.hero-description{

    color:var(--muted);

    font-size:1.08rem;

    line-height:1.8;

    max-width:600px;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

    margin-bottom:45px;

}


/* ==========================================
   HERO STATS
========================================== */

.hero-stats{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.stat-box{

    min-width:120px;

    padding:18px;

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:16px;

    box-shadow:var(--shadow);

    text-align:center;

}

.stat-box h3{

    color:var(--primary);

    font-size:1.8rem;

    font-weight:800;

    margin-bottom:5px;

}

.stat-box p{

    color:var(--muted);

    margin:0;

    font-size:.95rem;

}


/* ==========================================
   PHONE MOCKUP
========================================== */

.phone-wrapper{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.phone-glow{

    position:absolute;

    width:340px;

    height:340px;

    border-radius:50%;

    background:rgba(56,189,248,.25);

    filter:blur(80px);

    z-index:1;

}

.phone-frame{

    position:relative;

    width:320px;

    height:650px;

    background:#0f172a;

    border-radius:42px;

    padding:14px;

    border:5px solid #202938;

    box-shadow:
    0 30px 70px rgba(0,0,0,.35);

    z-index:2;

    animation:phoneFloat 4s ease-in-out infinite;

}

.phone-notch{

    width:120px;

    height:24px;

    background:#000;

    border-radius:0 0 20px 20px;

    position:absolute;

    top:0;

    left:50%;

    transform:translateX(-50%);

    z-index:5;

}

.phone-screen{

    width:100%;

    height:100%;

    border-radius:30px;

    overflow:hidden;

    background:var(--bg);

}


/* ==========================================
   MOBILE DASHBOARD
========================================== */

.mobile-topbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:16px;

    background:var(--surface);

    border-bottom:1px solid var(--border);

}

.mobile-menu-btn{

    border:none;

    background:none;

    color:var(--text);

    font-size:1.4rem;

}

.mobile-logo{

    display:flex;

    align-items:center;

    gap:8px;

    font-weight:700;

    color:var(--text);

}

.mobile-logo img{

    width:28px;

    height:28px;

}

.mobile-avatar{

    width:36px;

    height:36px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

}

.mobile-wallet{

    margin:18px;

    background:linear-gradient(135deg,#38bdf8,#0284c7);

    color:#fff;

    padding:16px;

    border-radius:16px;

    text-align:center;

    font-size:1.4rem;

    font-weight:700;

}

.mobile-welcome{

    padding:0 18px 18px;

}

.mobile-welcome h5{

    font-weight:700;

    color:var(--text);

}

.mobile-welcome p{

    color:var(--muted);

    margin:0;

}


/* ==========================================
   FLOAT ANIMATION
========================================== */

@keyframes phoneFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}
/* ==========================================
   MOBILE DASHBOARD STATS
========================================== */

.mobile-stats{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    padding:0 18px 18px;

}

.mobile-card{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:16px;

    padding:18px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.mobile-card:hover{

    transform:translateY(-4px);

    border-color:var(--primary);

}

.mobile-card i{

    font-size:1.5rem;

    color:var(--primary);

    margin-bottom:10px;

}

.mobile-card h6{

    font-size:1.4rem;

    font-weight:700;

    color:var(--text);

    margin-bottom:4px;

}

.mobile-card small{

    color:var(--muted);

    font-size:.85rem;

}

.preview-btn{

    width:calc(100% - 36px);

    margin:0 18px 18px;

    padding:14px;

    border:none;

    border-radius:14px;

    background:var(--primary);

    color:#fff;

    font-weight:700;

    transition:var(--transition);

}

.preview-btn:hover{

    background:var(--primary-dark);

}


/* ==========================================
   COMMON SECTION STYLES
========================================== */

.section-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:rgba(56,189,248,.12);

    color:var(--primary);

    font-size:.9rem;

    font-weight:700;

    margin-bottom:15px;

}

.section-title{

    font-size:2.5rem;

    font-weight:800;

    color:var(--text);

    margin-bottom:15px;

}

.section-subtitle{

    max-width:700px;

    margin:auto;

    color:var(--muted);

    font-size:1.05rem;

    line-height:1.8;

}


/* ==========================================
   FEATURE CARDS
========================================== */

.feature-card{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:20px;

    padding:35px 28px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.feature-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

}

.feature-icon{

    width:70px;

    height:70px;

    margin:auto auto 20px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(56,189,248,.12);

}

.feature-icon i{

    font-size:2rem;

    color:var(--primary);

}

.feature-card h4{

    color:var(--text);

    font-weight:700;

    margin-bottom:12px;

}

.feature-card p{

    color:var(--muted);

    margin:0;

    line-height:1.7;

}


/* ==========================================
   HOW IT WORKS
========================================== */

.step-card{

    position:relative;

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:20px;

    padding:30px 18px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.step-card:hover{

    transform:translateY(-6px);

    border-color:var(--primary);

}

.step-number{

    position:absolute;

    top:14px;

    right:14px;

    width:28px;

    height:28px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:.8rem;

    font-weight:700;

}

.step-card i{

    font-size:2rem;

    color:var(--primary);

    margin-bottom:15px;

}

.step-card h6{

    margin:0;

    font-weight:700;

    color:var(--text);

}


/* ==========================================
   COUNTRIES & SERVICES
========================================== */

.offer-card{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:22px;

    padding:35px;

    box-shadow:var(--shadow);

    height:100%;

}

.offer-card h3{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:1.5rem;

    font-weight:700;

    color:var(--text);

    margin-bottom:25px;

}

.offer-card i{

    color:var(--primary);

}

.offer-list{

    list-style:none;

    padding:0;

    margin:0;

}

.offer-list li{

    padding:10px 0;

    color:var(--muted);

    border-bottom:1px solid var(--border);

}

.offer-list li:last-child{

    border-bottom:none;

}
/* ==========================================
   CALL TO ACTION
========================================== */

.cta-section{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:#fff;

    text-align:center;

    border-radius:40px;

    margin:80px auto;

    width:min(1200px,95%);

    padding:80px 25px;

    box-shadow:0 25px 60px rgba(56,189,248,.30);

}

.cta-section .section-badge{

    background:rgba(255,255,255,.18);

    color:#fff;

}

.cta-section h2{

    font-weight:800;

    margin:20px 0;

}

.cta-section p{

    max-width:650px;

    margin:0 auto 35px;

    opacity:.92;

    color:#f8fafc;

}

.cta-section .btn-primary{

    background:#fff;

    color:var(--primary-dark);

}

.cta-section .btn-primary:hover{

    background:#f8fafc;

    color:var(--primary-dark);

}

.cta-section .btn-outline-primary{

    border:2px solid #fff;

    color:#fff;

}

.cta-section .btn-outline-primary:hover{

    background:#fff;

    color:var(--primary-dark);

}

/* ==========================================
   TELEGRAM SUPPORT BUTTON
========================================== */

.btn-telegram {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    border: none;
    color: #fff !important;
    font-weight: 500;
    padding: 0.65rem 1.2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-telegram:hover {
    background: linear-gradient(135deg, #0b5ed7 0%, #0949b0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
    color: #fff !important;
}

.btn-telegram:active {
    transform: translateY(0);
}

/* Dark mode */
[data-theme="dark"] .btn-telegram {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

[data-theme="dark"] .btn-telegram:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

/* ==========================================
   FOOTER
========================================== */

.footer{

    background:var(--surface);

    border-top:1px solid var(--border);

    padding:70px 0 30px;

}

.footer-logo{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:1.5rem;

    font-weight:800;

    color:var(--text);

}

.footer-logo img{

    width:45px;

    height:45px;

}

.footer-text{

    color:var(--muted);

    line-height:1.8;

}

.footer-title{

    color:var(--text);

    font-weight:700;

    margin-bottom:20px;

}

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:var(--muted);

    transition:.3s;

}

.footer-links a:hover{

    color:var(--primary);

    padding-left:6px;

}

.footer p{

    color:var(--muted);

}

.footer p i{

    color:var(--primary);

    margin-right:8px;

}

.footer p a{

    color:var(--muted);

}

.footer p a:hover{

    color:var(--primary);

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

    color:var(--muted);

}

.footer-bottom a{

    color:var(--muted);

    transition:.3s;

}

.footer-bottom a:hover{

    color:var(--primary);

}


/* ==========================================
   BACK TO TOP
========================================== */

.back-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:52px;

    height:52px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-size:1.2rem;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 12px 25px rgba(56,189,248,.35);

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:var(--transition);

    z-index:999;

}

.back-top.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.back-top:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

}


/* ==========================================
   SMALL ANIMATIONS
========================================== */

.feature-card,
.offer-card,
.step-card,
.stat-box,
.mobile-card{

    transition:all .3s ease;

}

.feature-card:hover,
.offer-card:hover,
.step-card:hover,
.stat-box:hover,
.mobile-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(56,189,248,.15);

}