:root {
    --primary: #0084ff;
    --primary-light: #4da6ff;
    --primary-dark: #0056b3;
    --secondary: #00c3ff;
    --bg-dark: #0a0e17;
    --bg-darker: #06090f;
    --bg-card: rgba(20, 26, 38, 0.6);
    --text-main: #f0f4f8;
    --text-muted: #9ba4b5;
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --gradient-glow: linear-gradient(135deg, rgba(0, 132, 255, 0.2), rgba(0, 195, 255, 0.2));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 100px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.align-center {
    align-items: center;
}

.bg-alt {
    background-color: var(--bg-darker);
    position: relative;
}

/* Components */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gradient-text {
    background: linear-gradient(90deg, #00c3ff, #0084ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.highlight {
    color: var(--secondary);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 132, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 12px 25px rgba(0, 132, 255, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary-light);
    background: rgba(0, 132, 255, 0.05);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 195, 255, 0.1);
    color: var(--secondary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Animations */
@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

.animate-blob {
    animation: blob 10s infinite alternate ease-in-out;
}

.hover-lift {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 132, 255, 0.2);
    border-color: rgba(0, 195, 255, 0.3);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(6, 9, 15, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.logo span {
    color: var(--primary);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary);
}

@media (max-width: 768px) {

    .nav-links,
    .nav-btn {
        display: none;
    }
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.15), rgba(0, 132, 255, 0.15));
    filter: blur(80px);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: -1;
}

.hero-bg.bg-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(0, 132, 255, 0.1));
    bottom: -50px;
    left: -100px;
    top: auto;
    animation-delay: 2s;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 900px;
    padding: 60px !important;
}

.hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero .subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge .icon {
    color: var(--secondary);
    font-style: normal;
    font-weight: bold;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Section */
.about h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.about p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 20px;
}

.about .strong-text {
    color: var(--text-main);
    font-weight: 500;
    border-left: 3px solid var(--primary);
    padding-left: 20px;
    margin-top: 30px;
}

.custom-list {
    list-style: none;
    margin-top: 20px;
}

.custom-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.custom-list li:before {
    content: "➜";
    color: var(--primary);
    margin-right: 12px;
    font-size: 14px;
}

.custom-list li:last-child {
    border-bottom: none;
}

.decorative-card {
    position: relative;
    z-index: 1;
}

.decorative-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary), transparent, var(--secondary));
    z-index: -1;
    border-radius: 26px;
    opacity: 0.3;
}

.card-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

/* Services */
.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 18px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 24px;
    background: var(--gradient-glow);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.clean-list {
    list-style: none;
}

.clean-list li {
    color: var(--text-muted);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
}

.clean-list li::before {
    content: "•";
    color: var(--secondary);
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 20px;
}

/* Features & Countries */
.features h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.f-icon {
    font-size: 28px;
    background: rgba(255, 255, 255, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 15px;
}

.country-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.country-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.country-pill:hover {
    background: rgba(0, 195, 255, 0.1);
    border-color: rgba(0, 195, 255, 0.3);
    transform: translateY(-2px);
}

.mini-tag {
    font-size: 11px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    color: var(--text-muted);
}

/* Process Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    top: 0;
    bottom: 0;
    left: 40px;
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.t-num {
    position: absolute;
    left: 16px;
    top: 10px;
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 132, 255, 0.4);
}

.t-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.t-content p {
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .timeline::before {
        left: 50%;
        margin-left: -1px;
    }

    .timeline-item {
        width: 50%;
        padding-left: 0;
        padding-right: 50px;
    }

    .timeline-item:nth-child(even) {
        margin-left: 50%;
        padding-left: 50px;
        padding-right: 0;
    }

    .t-num {
        left: auto;
        right: -25px;
    }

    .timeline-item:nth-child(even) .t-num {
        right: auto;
        left: -25px;
    }
}

/* CTA & Contact */
.cta-card {
    text-align: center;
    padding: 80px 40px !important;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 132, 255, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-link {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    transition: all 0.3s auto;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-light);
}

.mt-4 {
    margin-top: 30px;
}

.mt-5 {
    margin-top: 60px;
}

.info-box {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.info-box h4 {
    margin-bottom: 15px;
    color: var(--text-main);
}

.info-box p {
    color: var(--text-muted);
    font-size: 14px;
}

.disclaimer h4 {
    color: #ff6b6b;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    text-align: center;
    background: var(--bg-darker);
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--primary);
    font-weight: 400;
}

footer p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Animation Classes */
.scroll-reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.scroll-reveal.up {
    transform: translateY(50px);
}

.scroll-reveal.left {
    transform: translateX(-50px);
}

.scroll-reveal.right {
    transform: translateX(50px);
}

.flex-delay-1 {
    transition-delay: 0.1s;
}

.flex-delay-2 {
    transition-delay: 0.2s;
}

.flex-delay-3 {
    transition-delay: 0.3s;
}

/* --- Mobile Responsiveness Fine-Tuning --- */
@media (max-width: 768px) {

    /* Layout Adjustments */
    .section-padding {
        padding: 60px 0;
    }

    .grid-2 {
        gap: 30px;
    }

    /* Hero Adjustments */
    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-text {
        padding: 30px 20px !important;
        border-radius: 16px;
    }

    .hero h1 {
        font-size: clamp(32px, 8vw, 42px);
        line-height: 1.1;
        margin-bottom: 16px;
    }

    .hero .subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .hero-badges {
        gap: 10px;
        margin-bottom: 30px;
    }

    .badge {
        padding: 6px 12px;
        font-size: 13px;
    }

    .hero-actions {
        gap: 15px;
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    /* Section Headers & Typography */
    .about h2,
    .section-header h2,
    .features h2,
    .cta-content h2 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    /* Cards & Panels */
    .glass-panel {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .glass-card {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .cta-card {
        padding: 50px 20px !important;
    }

    .decorative-card {
        margin-top: 20px;
    }

    /* Timeline Fixes */
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 60px;
        margin-bottom: 30px;
    }

    .t-num {
        left: 0;
        width: 40px;
        height: 40px;
        font-size: 18px;
        top: 0;
    }

    .t-content h4 {
        font-size: 18px;
    }

    /* Contact Section */
    .contact-info {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .contact-link {
        padding: 12px 16px;
        font-size: 14px;
        text-align: center;
    }

    /* Small Elements */
    .btn-lg {
        padding: 14px 20px;
        font-size: 15px;
    }

    .f-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
        border-radius: 12px;
    }

    .feature-item p,
    .custom-list li,
    .clean-list li {
        font-size: 14px;
    }

    .card-icon {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .country-pill {
        padding: 10px 18px;
        font-size: 14px;
    }
}
