/* ===== RESET & BASE ===== */

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');



*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #0f2137;
    --navy-light: #102e90;
    --navy-dark: #091520;
    --emerald: #3A66FA;
    --emerald-light: #6386f8;
    --emerald-glow: 0 0 30px rgba(57, 89, 235, 0.3);
    --bg-light: #f5f6f8;
    --text-dark: #0f2137;
    --text-light: #e8ecf1;
    --text-muted: #7a8a9e;
    --border-light: #e2e6ec;
    --border-dark: rgba(45, 212, 160, 0.12);
    --card-shadow: 0 4px 24px -4px rgba(15, 33, 55, 0.08);
    --card-shadow-hover: 0 12px 40px -8px rgba(15, 33, 55, 0.15);
    --radius: 0.75rem;
    --radius-xl: 1rem;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Source Sans 3", sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: "Lato", sans-serif;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Lato", sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-xl);
    transition: all var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--emerald-light);
    box-shadow: var(--emerald-glow);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

.btn-outline:hover {
    border-color: var(--emerald);
    color: var(--emerald);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

/* ===== TEXT UTILITIES ===== */
.text-emerald {
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #0c1739;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 58, 92, 0.3);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    color: var(--text-light);
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.brand-sub {
    color: var(--emerald);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: rgba(232, 236, 241, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--emerald);
}

.btn-nav-cta {
    background: var(--emerald) !important;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: var(--radius) !important;
    font-weight: 600 !important;
}

.btn-nav-cta:hover {
    background: var(--emerald-light) !important;
    box-shadow: var(--emerald-glow);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: all var(--transition);
}

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

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

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

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(45, 212, 160, 0.15);
    animation: floatParticle 6s ease-in-out infinite;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-30px);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 212, 160, 0.1);
    border: 1px solid rgba(45, 212, 160, 0.2);
    border-radius: 9999px;
    padding: 8px 20px;
    margin-bottom: 2rem;
    margin-top: 30px;
}

.hero-badge span {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(232, 236, 241, 0.55);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(232, 236, 241, 0.35);
    font-size: 0.875rem;
}

.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-light), transparent);
    z-index: 2;
}

/* ===== SECTIONS ===== */
.section {
    padding: 6rem 0;
}

.section-light {
    background: var(--bg-light);
}

.section-dark {
    background: var(--navy);
    color: var(--text-light);
}

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

.section-tag {
    color: var(--emerald);
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-top: 0.75rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.section-dark .section-header p {
    color: rgba(232, 236, 241, 0.5);
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.service-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid rgba(226, 230, 236, 0.5);
    box-shadow: var(--card-shadow);
    transition: all var(--transition);
}

.service-card:hover {
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(45, 212, 160, 0.3);
    transform: translateY(-2px);
}

.service-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #2d72d4;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #4785db;
    transform: translateY(-2px);
}

.service-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: "Lato", sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(45, 212, 160, 0.1);
    color: var(--emerald);
    padding: 4px 12px;
    border-radius: 9999px;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 212, 160, 0.08);
    color: #3A66FA;
    margin-bottom: 1.5rem;
    transition: box-shadow var(--transition);
}

.service-card:hover .service-icon {
    box-shadow: #3A66FA;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: rgba(232, 236, 241, 0.65);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.tag {
    background: rgba(26, 58, 92, 0.5);
    border: 1px solid rgba(45, 212, 160, 0.2);
    color: var(--emerald);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-family: "Lato", sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.stat-card {
    background: rgba(26, 58, 92, 0.35);
    border: 1px solid rgba(45, 212, 160, 0.1);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    transition: border-color var(--transition);
}

.stat-card:hover {
    border-color: rgba(45, 212, 160, 0.3);
}

.stat-card svg {
    margin: 0 auto 0.75rem;
}

.stat-value {
    font-family: "Lato", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: rgba(232, 236, 241, 0.45);
    font-size: 0.8rem;
}

/* ===== STEPS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(45, 212, 160, 0.3), transparent);
}

.step-card {
    text-align: center;
    position: relative;
}

.step-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    background: rgba(45, 212, 160, 0.08);
    color: var(--emerald);
    margin-bottom: 1.5rem;
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--emerald);
    color: var(--navy-dark);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Lato", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-xl);
    background: rgba(26, 58, 92, 0.5);
    border: 1px solid rgba(45, 212, 160, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-label {
    display: block;
    color: rgba(232, 236, 241, 0.4);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: "Lato", sans-serif;
    margin-bottom: 4px;
}

.contact-value {
    display: block;
    color: var(--text-light);
    font-weight: 500;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(26, 58, 92, 0.35);
    border: 1px solid rgba(45, 212, 160, 0.1);
    border-radius: var(--radius-xl);
    padding: 16px 20px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color var(--transition);
    outline: none;
    resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(232, 236, 241, 0.25);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(45, 212, 160, 0.4);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-dark);
    color: rgba(232, 236, 241, 0.5);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-links h4 {
    color: var(--text-light);
    font-family: "Lato", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--emerald);
}

.footer-bottom {
    border-top: 1px solid rgba(232, 236, 241, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.75rem;
}

.footer-icp {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
}

/* ===== ANIMATIONS ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-grid::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 1.5rem;
        border-top: 1px solid rgba(26, 58, 92, 0.3);
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section {
        padding: 4rem 0;
    }
}