:root {
    --blue: #1A6FD4;
    --blue-dark: #0D4FA0;
    --blue-light: #4A9AE8;
    --blue-pale: #E8F2FD;
    --pink: #F0B8D8;
    --teal: #A8E6D8;
    --gray: #6B7280;
    --gray-light: #F3F4F6;
    --gray-dark: #1F2937;
    --white: #ffffff;
    --text: #111827;
    --text-muted: #6B7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: #0a0a0a;
    overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 6%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ─── CLEAN PREMIUM LOGO ONLY ─── */

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: translateY(-1px);
}

/* Logo Container */
.logo-flame {
    width: 300px;
    height: 60px;
    position: relative;
}

/* Glow Effect */


/* Logo Image */
.logo-flame img {
    width: 100%;
    height: 100%;
    object-fit: contain;

    position: relative;
    z-index: 2;

    filter:
        drop-shadow(0 0 12px rgba(74, 154, 232, 0.35)) brightness(1.08);

    transition: all 0.35s ease;
}

/* Hover Animation */



.nav-brand {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
}

.nav-brand span {
    color: var(--blue-light);
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: white;
}

.nav-cta {
    background: var(--blue);
    color: white !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 500 !important;
    transition: background 0.2s !important;
}

.nav-cta:hover {
    background: var(--blue-dark) !important;
    color: white !important;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    padding: 120px 6% 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 75% 50%, rgba(26, 111, 212, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 70%, rgba(168, 230, 216, 0.08) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 111, 212, 0.15);
    border: 1px solid rgba(26, 111, 212, 0.3);
    color: var(--blue-light);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-light);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero h3 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(40px, 4vw, 50px);
    font-weight: 800;
    /* line-height: 1.05; */
    color: white;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero h3 .highlight {
    background: linear-gradient(135deg, var(--blue-light), #7FC8F8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--blue);
    color: white;
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.hero-stats {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0.9;
}

.stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 24px;
    text-align: center;
    backdrop-filter: blur(8px);
    min-width: 140px;
}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: white;
    display: block;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
    letter-spacing: 0.5px;
}

/* ─── SECTION BASE ─── */
section {
    padding: 100px 6%;
}

.section-tag {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

/* ─── ABOUT ─── */
.about {
    background: white;
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-card-main {
    background: var(--gray-dark);
    border-radius: 24px;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-card-main::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 111, 212, 0.3) 0%, transparent 70%);
}

.about-card-main h3 {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.about-card-main p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.about-card-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--blue);
    color: white;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 20px 40px rgba(26, 111, 212, 0.3);
}

.float-num {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 800;
}

.float-label {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 2px;
}

.about-text .section-title {
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.chip {
    background: var(--blue-pale);
    color: var(--blue-dark);
    border-radius: 100px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 500;
}

/* ─── SERVICES ─── */
.services {
    background: #0a0a0a;
}

.services-header {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.services-header .section-title {
    color: white;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 36px 32px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover {
    background: rgba(26, 111, 212, 0.07);
    border-color: rgba(26, 111, 212, 0.25);
    transform: translateY(-4px);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(26, 111, 212, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
}

.service-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.75;
}

.service-list {
    margin-top: 20px;
    list-style: none;
}

.service-list li {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    padding: 5px 0;
    padding-left: 16px;
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue-light);
}

/* ─── WHY US ─── */
.why {
    background: white;
}

.why-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-inner .section-title {
    color: var(--gray-dark);
    margin-bottom: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.why-card {
    background: var(--gray-light);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s;
}

.why-card:hover {
    background: var(--blue-pale);
    transform: translateY(-3px);
}

.why-num {
    font-family: 'Syne', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--blue);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.why-card h4 {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ─── PROCESS ─── */
.process {
    background: #0a0a0a;
}

.process-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.process-inner .section-title {
    color: white;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    gap: 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 28px;
    right: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--blue), transparent);
    opacity: 0.3;
}

.process-step {
    flex: 1;
    padding: 0 16px;
    text-align: center;
    position: relative;
}

.step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(26, 111, 212, 0.15);
    border: 1px solid rgba(26, 111, 212, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--blue-light);
    position: relative;
    z-index: 2;
}

.process-step h4 {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
}

/* ─── CONTACT ─── */
.contact {
    background: white;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-title {
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.contact-info>p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item h5 {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-item a,
.contact-item p {
    color: var(--gray-dark);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--blue);
}

.contact-form {
    background: var(--gray-dark);
    border-radius: 24px;
    padding: 40px;
}

.contact-form h3 {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 16px;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(26, 111, 212, 0.5);
    background: rgba(26, 111, 212, 0.06);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group select option {
    background: #1F2937;
    color: white;
}

.form-submit {
    width: 100%;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

.form-submit:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

/* ─── FOOTER ─── */
footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 60px 6% 36px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    line-height: 1.8;
    margin-top: 16px;
}

.footer-brand img{
    width: 100%;
    height: auto;
}

.footer-col h5 {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
}

.footer-bottom a {
    color: var(--blue-light);
    text-decoration: none;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.7s ease forwards;
}

.fade-up-2 {
    animation-delay: 0.15s;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-duration: 0.7s;
    animation-name: fadeUp;
}

.fade-up-3 {
    animation-delay: 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-duration: 0.7s;
    animation-name: fadeUp;
}

.fade-up-4 {
    animation-delay: 0.45s;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-duration: 0.7s;
    animation-name: fadeUp;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {

    .about-inner,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-stats {
        display: none;
    }

    .process-steps {
        flex-direction: column;
        gap: 32px;
    }

    .process-steps::before {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
    }

    section {
        padding: 70px 5%;
    }

    .hero {
        padding: 100px 5% 60px;
    }

    footer {
        padding: 48px 5% 28px;
    }
}