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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f6f8fb;
    color:#101828;
}

a{
    text-decoration:none;
}

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

.container{
    width:min(1180px,92%);
    margin:auto;
}

/* HEADER */
.site-header{
    width:100%;
    background:#ffffff;
    border-bottom:1px solid #e5e7eb;
}

.header-wrapper{
    width:min(1180px,92%);
    height:120px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.brand,
.site-logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.brand img,
.site-logo img{
    width:54px;
    height:54px;
    border-radius:12px;
    object-fit:contain;
}

.site-logo-text{
    display:flex;
    flex-direction:column;
}

.logo-title{
    font-size:28px;
    font-weight:900;
    letter-spacing:2px;
    color:#0f172a;
    line-height:1;
}

.logo-subtitle{
    margin-top:5px;
    font-size:10px;
    font-weight:800;
    letter-spacing:2.8px;
    color:#64748b;
    text-transform:uppercase;
}

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

.nav a{
    position:relative;
    color:#0f172a;
    font-size:15px;
    font-weight:700;
    transition:.25s;
}

.nav a:hover,
.nav a.active{
    color:#14b8a6;
}

.nav a.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-18px;
    width:100%;
    height:3px;
    background:#14b8a6;
    border-radius:999px;
}

.header-button{
    background:linear-gradient(135deg,#14b8a6,#0ea5e9);
    color:#fff;
    padding:15px 28px;
    border-radius:999px;
    font-size:14px;
    font-weight:800;
    box-shadow:0 10px 25px rgba(20,184,166,.25);
    transition:.25s;
}

.header-button:hover{
    transform:translateY(-2px);
}

/* HERO */
.hero{
    padding:110px 0 90px;
    background:
        radial-gradient(circle at top right,rgba(20,184,166,.16),transparent 35%),
        linear-gradient(135deg,#ffffff 0%,#eef4fb 100%);
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:70px;
}

.hero-badge{
    display:inline-block;
    color:#0f766e;
    font-size:13px;
    font-weight:900;
    letter-spacing:.08em;
    margin-bottom:22px;
}

.hero h1{
    font-size:clamp(44px,6vw,76px);
    line-height:1.03;
    letter-spacing:-3px;
    color:#0f172a;
    margin-bottom:26px;
}

.hero h1 span{
    display:block;
}

.hero-content h1{
    min-height:210px;
    display:flex;
    align-items:center;
}

#typed-text{
    display:block;
    min-height:170px;
    line-height:1.1;
    padding-bottom:12px;
    overflow:visible;
    position:relative;
    background:linear-gradient(135deg,#14b8a6,#0ea5e9);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

#typed-text::after{
    content:"|";
    margin-left:4px;
    color:#14b8a6;
    animation:blink .8s infinite;
}

@keyframes blink{
    50%{ opacity:0; }
}

.hero p{
    color:#475467;
    font-size:18px;
    line-height:1.8;
    max-width:700px;
    margin-bottom:34px;
}

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

.btn-primary,
.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:52px;
    padding:0 26px;
    border-radius:999px;
    font-size:14px;
    font-weight:800;
}

.btn-primary{
    position:relative;
    overflow:hidden;
    background:#14b8a6;
    color:#fff;
    box-shadow:0 14px 30px rgba(20,184,166,.25);
}

.btn-primary::after{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:60%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,.35),transparent);
    transition:.6s;
}

.btn-primary:hover::after{
    left:120%;
}

.btn-secondary{
    background:#fff;
    color:#101828;
    border:1px solid #d0d5dd;
}

/* HERO CARD */
.hero-card{
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:32px;
    padding:34px;
    box-shadow:0 30px 80px rgba(15,23,42,.10);
    max-width:450px;
    width:100%;
    justify-self:center;
}

.card-header{
    color:#14b8a6;
    font-size:13px;
    font-weight:900;
    margin-bottom:14px;
}

.hero-card h3{
    font-size:30px;
    color:#101828;
    margin-bottom:24px;
}

.hero-card ul{
    list-style:none;
    display:grid;
    gap:14px;
    margin-bottom:28px;
}

.hero-card li{
    color:#334155;
    font-size:15px;
    font-weight:700;
}

.status{
    display:inline-flex;
    padding:10px 16px;
    border-radius:999px;
    background:#ecfdf5;
    color:#0f766e;
    font-size:13px;
    font-weight:900;
}

/* STATS */
.stats-section{
    margin-top:-35px;
    position:relative;
    z-index:5;
    padding-bottom:70px;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.stat-box{
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:24px;
    padding:26px;
    box-shadow:0 18px 50px rgba(15,23,42,.08);
}

.stat-box h3{
    color:#0f172a;
    font-size:28px;
    margin-bottom:8px;
}

.stat-box span{
    color:#64748b;
    font-weight:700;
}

/* SECTION TITLES */
.section-title{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.section-title span{
    color:#14b8a6;
    font-size:13px;
    font-weight:900;
    letter-spacing:.1em;
}

.section-title h2{
    margin-top:12px;
    margin-bottom:18px;
    font-size:48px;
    color:#0f172a;
}

.section-title p{
    color:#64748b;
    line-height:1.8;
}

/* SERVICES */
.services-section{
    padding:100px 0;
}

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

.service-card{
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:24px;
    padding:32px;
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(15,23,42,.08);
}

.service-icon{
    font-size:42px;
    margin-bottom:18px;
}

.service-card h3{
    font-size:22px;
    color:#0f172a;
    margin-bottom:14px;
}

.service-card p{
    color:#64748b;
    line-height:1.8;
}

.project-button{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:48px;
    margin-top:18px;
    border-radius:12px;
    background:#14b8a6;
    color:#fff;
    font-weight:700;
    transition:.3s;
}

.project-button:hover{
    background:#0ea5a0;
}

.project-button.disabled{
    background:#e5e7eb;
    color:#64748b;
    cursor:not-allowed;
}

/* TECH STACK */
.tech-section{
    padding:100px 0;
    background:#ffffff;
}

.tech-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.tech-card{
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:20px;
    height:100px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:800;
    color:#0f172a;
    transition:.3s;
}

.tech-card:hover{
    transform:translateY(-5px);
    border-color:#14b8a6;
    box-shadow:0 15px 35px rgba(20,184,166,.12);
}

/* ABOUT */
.about-section{
    padding:100px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:60px;
    align-items:center;
}

.about-badge{
    color:#14b8a6;
    font-size:13px;
    font-weight:900;
    letter-spacing:.1em;
}

.about-content h2{
    margin:15px 0 25px;
    font-size:52px;
    line-height:1.1;
    color:#0f172a;
}

.about-content p{
    color:#64748b;
    line-height:1.9;
    margin-bottom:20px;
}

.about-highlights{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:35px;
}

.about-item{
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:20px;
}

.about-item strong{
    display:block;
    margin-bottom:6px;
    color:#0f172a;
}

.about-item span{
    color:#64748b;
    font-size:14px;
}

.about-card{
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:28px;
    padding:35px;
    box-shadow:0 20px 50px rgba(15,23,42,.08);
}

.about-card h3{
    margin-bottom:25px;
    color:#0f172a;
}

.about-card ul{
    list-style:none;
}

.about-card li{
    padding:10px 0;
    color:#475467;
    border-bottom:1px solid #f1f5f9;
}

.about-card li:last-child{
    border-bottom:none;
}

/* CONTACT */
.contact-section{
    padding:100px 0;
    background:#ffffff;
}

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

.contact-card{
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:24px;
    padding:32px;
    text-align:center;
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(15,23,42,.08);
}

.contact-icon{
    font-size:42px;
    margin-bottom:18px;
}

.contact-card h3{
    color:#0f172a;
    margin-bottom:10px;
}

.contact-card p{
    color:#64748b;
}

/* PROJECT REQUEST */
.project-request-section{
    padding:100px 0;
}

.project-request-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 50px;
}

.project-request-header span{
    color:#14b8a6;
    font-size:13px;
    font-weight:900;
    letter-spacing:.1em;
}

.project-request-header h1{
    font-size:56px;
    margin:18px 0;
    color:#0f172a;
}

.project-request-header p{
    color:#64748b;
    line-height:1.8;
}

.project-request-card{
    max-width:900px;
    margin:auto;
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:28px;
    padding:40px;
    box-shadow:0 20px 60px rgba(15,23,42,.08);
}

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

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

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:700;
    color:#334155;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #dbe1ea;
    border-radius:14px;
    font-size:15px;
    outline:none;
    transition:.25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#14b8a6;
}

.project-submit-btn{
    width:100%;
    height:56px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#14b8a6,#0ea5e9);
    color:#ffffff;
    font-size:16px;
    font-weight:800;
    cursor:pointer;
}

.success-alert{
    background:#ecfdf5;
    border:1px solid #10b981;
    color:#065f46;
    padding:16px 20px;
    border-radius:14px;
    margin-bottom:25px;
    font-weight:700;
}

/* PROCESS */
.process-section .container{
    width:min(1400px,95%);
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(250px,1fr));
    gap:40px;
    margin-top:60px;
}

.process-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
}

.process-card:hover{
    transform:translateY(-5px);
}

.process-card span{
    display:inline-flex;
    width:50px;
    height:50px;
    border-radius:14px;
    background:#14b8a6;
    color:#fff;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:18px;
    margin-bottom:20px;
}

.process-card h3{
    margin-bottom:12px;
    color:#0f172a;
}

.process-card p{
    color:#64748b;
    line-height:1.7;
}

/* WHY */
.why-section{
    padding-top:120px;
    padding-bottom:100px;
    background:#f6f8fb;
}

/* FINAL CTA */
.final-cta-section{
    padding:120px 0;
    margin-top:100px;
    background:linear-gradient(135deg,#0f172a,#134e4a);
}

.final-cta-card{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.final-cta-card h2{
    font-size:54px;
    color:#ffffff;
    margin-bottom:20px;
}

.final-cta-card p{
    color:#cbd5e1;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

/* CONTENT PAGES */
.page-section{
    padding:100px 0;
}

.page-section h1{
    font-size:48px;
    color:#0f172a;
    margin-bottom:24px;
}

.page-section h2{
    font-size:26px;
    color:#0f172a;
    margin-top:34px;
    margin-bottom:14px;
}

.page-section p{
    color:#64748b;
    line-height:1.9;
    margin-bottom:16px;
}

/* SCROLL TOP BUTTON */
#scrollTopBtn{
    position:fixed;
    right:30px;
    bottom:30px;
    width:56px;
    height:56px;
    border:none;
    border-radius:50%;
    background:linear-gradient(135deg,#14b8a6,#0ea5e9);
    color:#fff;
    font-size:24px;
    font-weight:900;
    cursor:pointer;
    box-shadow:0 12px 30px rgba(20,184,166,.35);
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.3s;
    z-index:9999;
}

#scrollTopBtn.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

#scrollTopBtn:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 40px rgba(20,184,166,.45);
}

/* JS REVEAL ANIMATION */
.reveal{
    opacity:0;
    transform:translateY(35px);
    transition:.7s ease;
}

.reveal.show{
    opacity:1;
    transform:translateY(0);
}

/* PAGE LOADER */
#page-loader{
    position:fixed;
    inset:0;
    background:transparent;
    backdrop-filter:none;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
    transition:opacity .6s ease, visibility .6s ease;
}

#page-loader.hide{
    opacity:0;
    visibility:hidden;
}

.loader-box{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:18px;
}

.loader-box img{
    width:90px;
    height:90px;
    border-radius:22px;
    position:relative;
    animation:heartbeat 8.6s ease-in-out forwards;
}

.loader-box span{
    color:#ffffff;
    font-size:24px;
    font-weight:900;
    letter-spacing:4px;
}

@keyframes heartbeat{
    0%{ transform:scale(1); }
    10%{ transform:scale(1.18); }
    20%{ transform:scale(1); }
    30%{ transform:scale(1.18); }
    40%{ transform:scale(1); }
    50%{ transform:scale(1.18); }
    60%{ transform:scale(1); }
    100%{ transform:scale(1); opacity:1; }
}

/* SCROLL PROGRESS BAR */
#progress-bar{
    position:fixed;
    top:0;
    left:0;
    width:0;
    height:4px;
    background:linear-gradient(90deg,#14b8a6,#0ea5e9,#14b8a6);
    background-size:200% 100%;
    animation:progressGlow 2s linear infinite;
    z-index:999999;
}

@keyframes progressGlow{
    0%{ background-position:0% 50%; }
    100%{ background-position:200% 50%; }
}

/* FOOTER */
.site-footer{
    background:#ffffff;
    border-top:1px solid #e5e7eb;
    margin-top:80px;
}

.footer-container{
    max-width:1200px;
    margin:0 auto;
    padding:60px 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
}

.footer-brand h3{
    font-size:30px;
    font-weight:900;
    margin-bottom:15px;
    color:#0f172a;
}

.footer-brand p{
    color:#64748b;
    line-height:1.8;
    max-width:320px;
}

.footer-contact{
    margin-top:20px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.footer-contact span{
    color:#475569;
    font-size:14px;
}

.footer-column h4{
    font-size:18px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.footer-column a{
    display:block;
    margin-bottom:12px;
    color:#64748b;
    font-size:15px;
    transition:.3s;
}

.footer-column a:hover{
    color:#14b8a6;
    transform:translateX(4px);
}

.footer-bottom{
    border-top:1px solid #e5e7eb;
    padding:20px;
}

.footer-bottom-inner{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.footer-copy{
    color:#64748b;
    font-size:14px;
}

.footer-links{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.footer-links a{
    color:#0f172a;
    font-size:14px;
    font-weight:700;
    transition:.3s;
}

.footer-links a:hover{
    color:#14b8a6;
}

.footer-stack{
    color:#64748b;
    font-size:14px;
    font-weight:600;
}

/* RESPONSIVE */
@media(max-width:992px){
    .services-grid,
    .tech-grid,
    .contact-grid,
    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }

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

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

@media(max-width:768px){
    .header-wrapper{
        height:auto;
        padding:20px 0;
        flex-direction:column;
        gap:20px;
    }

    .nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
    }

    .hero{
        padding:70px 0;
    }

    .hero h1{
        font-size:42px;
        letter-spacing:-1px;
    }

    .hero-content h1{
        min-height:150px;
    }

    #typed-text{
        min-height:120px;
    }

    .project-request-header h1,
    .section-title h2,
    .about-content h2,
    .final-cta-card h2,
    .page-section h1{
        font-size:34px;
    }

    .services-grid,
    .tech-grid,
    .contact-grid,
    .stats-grid,
    .process-grid,
    .form-grid,
    .about-highlights{
        grid-template-columns:1fr;
    }

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

    .footer-brand p{
        max-width:100%;
    }

    .footer-contact{
        align-items:center;
    }

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

    .footer-links{
        justify-content:center;
    }
}

.products-slider::-webkit-scrollbar{
    display:none;
}

.products-slider .service-card{
    min-width:320px;
    flex-shrink:0;
}

.slider-btn:hover{
    background:#14b8a6;
    color:#fff;
}

/* PRODUCTS SLIDER FIX */

.products-slider-wrapper{
    width:100%;
    display:flex;
    align-items:center;
    gap:16px;
}

.products-slider{
    width:100%;
    display:flex;
    flex-direction:row;
    gap:24px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    padding:10px 4px 20px;
}

.products-slider::-webkit-scrollbar{
    display:none;
}

.products-slider .service-card{
    min-width:280px;
    max-width:280px;
    flex:0 0 280px;
}

.slider-btn{
    width:48px;
    height:48px;
    min-width:48px;
    border:none;
    border-radius:50%;
    background:#ffffff;
    color:#0f172a;
    font-size:22px;
    font-weight:800;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(15,23,42,.12);
    transition:.3s;
}

.slider-btn:hover{
    background:#14b8a6;
    color:#ffffff;
}

.prev-btn,
.next-btn{
    flex-shrink:0;
}

.slider-btn{
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#0f172a;
    font-size:24px;
    font-weight:900;
    cursor:pointer;
}
