/* =====================================================
   ATISPOT DIGITAL AGENCY
   PREMIUM-STYLESHEET
   Version 2.0
===================================================== */


/* =====================================================
   RESET
===================================================== */

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    font-size:16px;
    line-height:1.7;
    color:#1d1d1d;
    background:#ffffff;
    overflow-x:hidden;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;

}

img{

    display:block;
    max-width:100%;
    height:auto;

}

a{

    text-decoration:none;
    color:inherit;
    transition:.3s ease;

}

ul{

    list-style:none;

}

button,
input,
textarea{

    font-family:inherit;

}

/* =====================================================
   ACCESSIBILITY
===================================================== */

:focus-visible{

    outline:3px solid rgba(108,77,255,.28);
    outline-offset:3px;

}

.skip-link{

    position:absolute;
    left:16px;
    top:-100px;
    z-index:100000;
    background:#111827;
    color:#ffffff;
    padding:12px 16px;
    border-radius:12px;
    font-weight:600;
    transition:top .2s ease;

}

.skip-link:focus{

    top:16px;

}


/* =====================================================
   ROOT
===================================================== */

:root{

    --primary:#6C4DFF;
    --primary-dark:#5634EC;
    --secondary:#3B82F6;
    --dark:#111827;
    --text:#555555;
    --light:#F8FAFF;
    --white:#FFFFFF;
    --border:#E7ECF3;
    --radius:24px;
    --shadow-small:0 10px 30px rgba(15,23,42,.06);
    --shadow-medium:0 20px 50px rgba(15,23,42,.08);
    --shadow-large:0 35px 80px rgba(15,23,42,.12);

}


/* =====================================================
   CONTAINER
===================================================== */

.container{

    width:min(90%,1240px);
    margin:0 auto;

}


/* =====================================================
   GLOBAL SECTIONS
===================================================== */

section{
    padding:88px 0;
}

.section-heading{
    max-width:820px;
    margin:0 auto 44px;
    text-align:center;
}

.section-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:9px 18px;
    margin-bottom:18px;
    border-radius:999px;
    background:rgba(108,77,255,.08);
    color:var(--primary);
    font-size:13px;
    font-weight:600;
    letter-spacing:.2px;
    box-shadow:none;
}

.section-heading h2{
    font-size:52px;
    line-height:1.14;
    margin-bottom:18px;
    color:var(--dark);
    letter-spacing:-0.02em;
}

.section-heading p{
    font-size:19px;
    line-height:1.8;
    color:var(--text);
    max-width:760px;
    margin:0 auto;
}


/* =====================================================
   TYPOGRAPHY
===================================================== */

h1{

    font-size:64px;
    line-height:1.1;
    font-weight:700;
    color:var(--dark);

}

h2{

    font-size:46px;
    line-height:1.2;
    font-weight:700;

}

h3{

    font-size:24px;
    line-height:1.35;
    font-weight:600;

}

p{

    color:var(--text);
    line-height:1.8;

}


/* =====================================================
   BUTTONS
===================================================== */

.btn-primary,
.btn-secondary,
.btn-header{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:16px 34px;
    border-radius:999px;
    font-weight:600;
    transition:.35s ease;
    cursor:pointer;

}

.btn-primary,
.btn-header{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#ffffff;
    border:none;
    box-shadow:0 12px 28px rgba(108,77,255,.22);
}

.btn-primary:hover,
.btn-header:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 36px rgba(108,77,255,.28);
}

.btn-secondary{

    background:#ffffff;
    color:var(--primary);
    border:2px solid var(--primary);

}

.btn-secondary:hover{

    background:var(--primary);
    color:#ffffff;

}

.hero-buttons{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:24px;
    flex-wrap:wrap;
    width:100%;
    margin:50px auto 0;

}


/* =====================================================
   PAGE HERO
===================================================== */

.page-hero{

    padding:100px 0 60px;
    background:var(--light);

}

.page-hero-content{

    max-width:760px;
    margin:0 auto;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;

}

.page-hero h1{

    margin:25px 0;

}

.page-hero p{

    font-size:20px;
    max-width:760px;
    margin:0 auto 40px;

}

/* =====================================================
   HEADER
===================================================== */

.header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(15,23,42,.06);
    transition:.35s ease;

}

.header.scrolled{

    background:rgba(255,255,255,.98);
    box-shadow:0 12px 35px rgba(15,23,42,.08);

}

.header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:78px;
}

/* =====================================================
   LOGO
===================================================== */

.logo{

    display:flex;
    align-items:center;

}

.logo img{
    height:46px;
    width:auto;
}

/* =====================================================
   NAVIGATION
===================================================== */

.navigation{

    display:flex;
    align-items:center;

}

.menu{

    display:flex;
    gap:38px;
    align-items:center;
    list-style:none;
    margin:0;
    padding:0;

}

.menu a{

    position:relative;
    font-size:16px;
    font-weight:500;
    color:var(--dark);
    text-decoration:none;
    transition:.3s;

}

.menu a:hover,
.menu a.active,
.menu a.active-section{

    color:var(--primary);

}

.menu a::after{

    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    border-radius:20px;
    background:linear-gradient(90deg,var(--primary),var(--secondary));
    transition:.3s;

}

.menu a:hover::after,
.menu a.active::after,
.menu a.active-section::after{

    width:100%;

}

/* =====================================================
   SERVICES DROPDOWN
===================================================== */

.menu-item-services{
    position:relative;
}

.services-menu-header{
    display:flex;
    align-items:center;
    gap:6px;
}

.services-submenu-toggle{
    display:none;
    width:28px;
    height:28px;
    padding:0;
    border:0;
    background:transparent;
    color:var(--dark);
    cursor:pointer;
}

.services-dropdown{
    position:absolute;
    top:calc(100% + 18px);
    left:50%;
    z-index:10000;

    width:360px;
    padding:14px;

    display:grid;
    gap:4px;

    background:#ffffff;
    border:1px solid rgba(15,23,42,.08);
    border-radius:20px;
    box-shadow:0 24px 60px rgba(15,23,42,.14);

    opacity:0;
    visibility:hidden;
    pointer-events:none;

    transform:translate(-50%, 10px);
    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .2s ease;
}

.services-dropdown::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:-20px;
    height:20px;
}

.menu-item-services:hover .services-dropdown,
.menu-item-services:focus-within .services-dropdown{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translate(-50%, 0);
}

.services-dropdown li{
    width:100%;
}

.services-dropdown a{
    display:block;
    width:100%;
    padding:12px 14px;
    border-radius:12px;

    font-size:15px;
    line-height:1.4;
    font-weight:500;
    color:var(--dark);

    white-space:normal;
}

.services-dropdown a::after{
    display:none;
}

.services-dropdown a:hover,
.services-dropdown a.active{
    color:var(--primary);
    background:rgba(108,77,255,.08);
}

/* =====================================================
   MOBILE SERVICES DROPDOWN
===================================================== */

@media(max-width:992px){

    .services-menu-header{
        width:100%;
        justify-content:space-between;
    }

    .services-menu-header > a{
        flex:1;
    }

    .services-submenu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
        flex:0 0 40px;
        width:40px;
        height:40px;
        font-size:22px;
        border-radius:10px;
    }

    .services-submenu-toggle:hover{
        background:rgba(108,77,255,.08);
        color:var(--primary);
    }

    .services-submenu-toggle span{
        display:block;
        transition:transform .25s ease;
    }

    .menu-item-services.submenu-open
    .services-submenu-toggle span{
        transform:rotate(180deg);
    }

    .services-dropdown{
        position:static;
        width:100%;
        padding:0 0 0 16px;
        margin:0;

        display:none;
        gap:4px;

        background:transparent;
        border:0;
        border-radius:0;
        box-shadow:none;

        opacity:1;
        visibility:visible;
        pointer-events:auto;
        transform:none;
        transition:none;
    }

    .menu-item-services:hover .services-dropdown,
    .menu-item-services:focus-within .services-dropdown{
        transform:none;
    }

    .menu-item-services.submenu-open .services-dropdown{
        display:grid;
        margin-top:10px;
    }

    .services-dropdown::before{
        display:none;
    }

    .services-dropdown a{
        padding:10px 12px;
        font-size:16px;
        color:var(--text);
    }

    .services-dropdown a:hover,
    .services-dropdown a.active{
        color:var(--primary);
        background:rgba(108,77,255,.06);
    }
}

/* =====================================================
   HEADER BUTTON
===================================================== */

.btn-header{

    padding:15px 30px;

}

/* =====================================================
   HAMBURGER
===================================================== */

.menu-toggle{
    display:none;
    width:48px;
    height:48px;
    border:none;
    background:none;
    cursor:pointer;
}

.menu-toggle span{
    display:block;
    width:28px;
    height:3px;
    margin:6px auto;
    border-radius:20px;
    background:#222;
    transition:.35s ease;
}

/* =====================================================
   MOBILE NAVIGATION
===================================================== */

@media (max-width:992px){

    .menu-toggle{
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        z-index:10001;
    }

    .btn-header{
        display:none;
    }

    .navigation{
        position:fixed;
        top:78px;
        left:0;
        width:100%;
        background:#ffffff;
        border-top:1px solid rgba(15,23,42,.08);
        box-shadow:0 20px 50px rgba(15,23,42,.10);
        padding:30px;
        transform:translateY(-120%);
        opacity:0;
        visibility:hidden;
        transition:.35s ease;
    }

    .navigation.active{
        transform:translateY(0);
        opacity:1;
        visibility:visible;
    }

    .menu{
        flex-direction:column;
        align-items:flex-start;
        gap:24px;
        width:100%;
    }

    .menu li{
        width:100%;
    }

    .menu a{
        display:block;
        width:100%;
        font-size:18px;
        padding:8px 0;
    }

    .menu a::after{
        display:none;
    }

    .menu-toggle.active span:nth-child(1){
        transform:translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2){
        opacity:0;
    }

    .menu-toggle.active span:nth-child(3){
        transform:translateY(-9px) rotate(-45deg);
    }

    body.menu-open{
        overflow:hidden;
    }
}

@media (max-width:768px){

    .header .container{
        height:76px;
    }

.logo img{
    height:46px;
    width:auto;
}

    .navigation{
        top:76px;
        padding:24px;
    }
}
/* =====================================================
   HOME HERO
===================================================== */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:
        linear-gradient(rgba(15,23,42,.72),rgba(15,23,42,.72)),
        url("../images/hero.webp");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top right, rgba(108,77,255,.22), transparent 45%);
    pointer-events:none;
}

.hero-overlay{
    width:100%;
    padding:150px 0 95px;
    background:linear-gradient(
        90deg,
        rgba(17,17,30,.88) 0%,
        rgba(17,17,30,.72) 45%,
        rgba(17,17,30,.40) 100%
    );
}

.hero-content{
    max-width:760px;
    color:#ffffff;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 20px;
    margin-bottom:28px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.18);
    color:#ffffff;
    font-size:14px;
    font-weight:600;
    backdrop-filter:blur(12px);
}

.hero h1{
    color:#ffffff;
    margin-bottom:30px;
    font-size:72px;
    line-height:1.05;
}

.hero p{
    color:rgba(255,255,255,.88);
    font-size:19px;
    line-height:1.85;
    max-width:660px;
    margin-bottom:38px;
}

.hero .hero-buttons{
    justify-content:flex-start;
    margin-bottom:48px;
}

.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:16px 28px;
    max-width:760px;
}

.hero-features span{
    display:flex;
    align-items:center;
    gap:10px;
    color:rgba(255,255,255,.94);
    font-weight:500;
    font-size:15px;
}

.hero-features span::before{
    content:"✓";
    width:26px;
    height:26px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.15);
    color:#ffffff;
    font-size:13px;
}

.hero-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image img{
    width:100%;
    max-width:620px;
    animation:heroFloat 6s ease-in-out infinite;
}

/* =====================================================
   HERO ANIMATION
===================================================== */

@keyframes heroFloat{
    0%{ transform:translateY(0px); }
    50%{ transform:translateY(-12px); }
    100%{ transform:translateY(0px); }
}

/* =====================================================
   HERO RESPONSIVE
===================================================== */

@media(max-width:992px){

    .hero{
        min-height:auto;
    }

    .hero-overlay{
        padding:150px 0 90px;
    }

    .hero h1{
        font-size:52px;
    }

    .hero p{
        font-size:18px;
    }
}

@media(max-width:768px){

    .hero{
        text-align:center;
    }

    .hero-content{
        margin:0 auto;
    }

    .hero h1{
        font-size:40px;
    }

    .hero p{
        font-size:17px;
    }

    .hero .hero-buttons{
        justify-content:center;
        flex-direction:column;
        align-items:center;
    }

    .hero .hero-buttons .btn-primary,
    .hero .hero-buttons .btn-secondary{
        width:100%;
        max-width:320px;
    }

    .hero-features{
        justify-content:center;
    }
}
/* =====================================================
   SERVICES
===================================================== */

.services{
    background:var(--white);
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:28px;
}

.service-card{
    position:relative;
    background:var(--white);
    border:1px solid rgba(108,77,255,.08);
    border-radius:28px;
    padding:34px 34px 32px;
    overflow:hidden;
    transition:.3s ease;
    box-shadow:0 12px 35px rgba(15,23,42,.06);
}

.service-card::before{
    content:"";
    position:absolute;
    inset:0 auto 0 0;
    width:100%;
    height:1px;
    background:linear-gradient(90deg, rgba(108,77,255,.18), rgba(59,130,246,.08));
}

.service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(15,23,42,.10);
    border-color:rgba(108,77,255,.16);
}

.service-icon{
    width:64px;
    height:64px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    font-size:28px;
    box-shadow:0 14px 30px rgba(108,77,255,.20);
}

.service-card h3{
    margin-bottom:14px;
    font-size:32px;
    line-height:1.2;
    color:var(--dark);
}

.service-card p{
    margin-bottom:22px;
    font-size:17px;
    line-height:1.75;
    color:var(--text);
}

.service-card .blog-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:16px;
    font-weight:600;
    color:var(--primary);
}

.services-button{
    text-align:center;
    margin-top:56px;
}
.service-card{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    min-height:320px;
    text-decoration:none;
}

.service-card .service-link{
    margin-top:auto;
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:16px;
    font-weight:600;
    color:var(--primary);
    transition:.3s ease;
}

.service-card:hover .service-link{
    color:var(--secondary);
    transform:translateX(4px);
}
/* =====================================================
   TECHNOLOGIES
===================================================== */

.technologies{
    background:var(--light);
}

.technology-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:24px;
    max-width:1080px;
    margin:0 auto;
}

.technology-card{
    background:#fff;
    border-radius:26px;
    padding:30px 30px 28px;
    border:1px solid rgba(108,77,255,.08);
    transition:.3s ease;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
}

.technology-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(15,23,42,.08);
    border-color:rgba(108,77,255,.16);
}

.technology-card h3{
    margin-bottom:12px;
    font-size:22px;
    color:var(--dark);
}

.technology-card p{
    font-size:16px;
    line-height:1.75;
}
.technology-card{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    min-height:220px;
}

.technology-card .service-icon{
    width:54px;
    height:54px;
    border-radius:16px;
    margin-bottom:18px;
    font-size:24px;
    box-shadow:0 10px 24px rgba(108,77,255,.16);
}

.technology-card h3{
    margin-bottom:10px;
}

.technology-card p{
    margin-bottom:0;
}
/* =====================================================
   WHY ATISPOT
===================================================== */

.why-atispot{
    background:#ffffff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:24px;
    max-width:1080px;
    margin:0 auto;
}

.why-card{
    background:#fff;
    border-radius:26px;
    padding:30px 30px 28px;
    border:1px solid rgba(108,77,255,.08);
    transition:.3s ease;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
}

.why-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(15,23,42,.08);
    border-color:rgba(108,77,255,.16);
}

.why-card h3{
    margin-bottom:12px;
    font-size:22px;
    line-height:1.3;
    color:var(--dark);
}

.why-card p{
    font-size:16px;
    line-height:1.75;
    color:var(--text);
}
.why-card{
    position:relative;
    min-height:190px;
}

.why-card::before{
    content:"";
    width:44px;
    height:4px;
    border-radius:999px;
    background:linear-gradient(90deg,var(--primary),var(--secondary));
    display:block;
    margin-bottom:18px;
}

.why-card p{
    margin-bottom:0;
}
/* =====================================================
   ABOUT
===================================================== */

.about-intro{
    background:#ffffff;
}

.about-grid{
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:70px;
    align-items:center;
}

.about-text h3{
    font-size:34px;
    margin-bottom:25px;
}

.about-text p{
    margin-bottom:24px;
}

.about-highlights{
    display:grid;
    gap:22px;
}

.about-card{
    background:#fff;
    border-radius:24px;
    padding:30px;
    border:1px solid var(--border);
    transition:.35s ease;
    box-shadow:var(--shadow-small);
}

.about-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-medium);
}
/* =====================================================
   STATISTIKEN
===================================================== */

.stats{
    background:var(--light);
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-card{
    background:#fff;
    padding:40px;
    text-align:center;
    border-radius:24px;
    border:1px solid var(--border);
    transition:.35s ease;
    box-shadow:var(--shadow-small);
}

.stat-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-medium);
}

.stat-card h3{
    font-size:42px;
    color:var(--primary);
    margin-bottom:12px;
}
/* =====================================================
   WORKFLOW
===================================================== */

.workflow{
    background:var(--light);
}

.workflow-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.workflow-card{
    background:#fff;
    border-radius:28px;
    padding:45px 35px;
    text-align:center;
    border:1px solid var(--border);
    transition:.35s ease;
    box-shadow:var(--shadow-small);
}

.workflow-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-large);
}

.workflow-card span{
    display:inline-flex;
    width:58px;
    height:58px;
    border-radius:50%;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    font-weight:700;
    font-size:20px;
}

.workflow-card h3{
    margin-bottom:18px;
}
/* =====================================================
   RESPONSIVE LAYOUT
======================================================= */

@media(max-width:992px){

    .services-grid,

    .technology-grid,

    .workflow-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .why-grid,

    .about-grid{

        grid-template-columns:1fr;

    }

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .services-grid,

    .technology-grid,

    .workflow-grid,

    .stats-grid{

        grid-template-columns:1fr;

    }

    .service-card,

    .technology-card,

    .why-card,

    .workflow-card,

    .stat-card{

        padding: 30px;

    }

}
/* =====================================================
   CONTACT
===================================================== */

.contact-section{
    position:relative;
    background:var(--light);
    overflow:hidden;
}

.contact-section::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    top:-180px;
    left:-180px;
    border-radius:50%;
    background:radial-gradient(rgba(108,77,255,.12),transparent 70%);
}

.contact-section::after{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    right:-180px;
    bottom:-180px;
    border-radius:50%;
    background:radial-gradient(rgba(59,130,246,.10),transparent 70%);
}

.contact-card{
    position:relative;
    z-index:2;
    max-width:1100px;
    margin:60px auto 0;
    background:#ffffff;
    border-radius:32px;
    padding:60px;
    border:1px solid var(--border);
    box-shadow:var(--shadow-large);
}

/* =====================================================
   CONTACT FORM
===================================================== */

.contact-form{
    width:100%;
}

.form-row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-bottom:28px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    font-size:17px;
    font-weight:600;
    color:var(--dark);
    margin-bottom:12px;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:18px 22px;
    border:1px solid var(--border);
    border-radius:18px;
    background:#ffffff;
    font-size:16px;
    transition:.35s ease;
}

.form-group textarea{
    min-height:190px;
    resize:vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color:#8a8fa4;
}

.form-group input:hover,
.form-group textarea:hover{
    border-color:var(--primary);
}

.form-group input:focus,
.form-group textarea:focus{
    outline:none;
    border-color:var(--primary);
    box-shadow:0 0 0 5px rgba(108,77,255,.12);
}

/* =====================================================
   CHECKBOX
===================================================== */

.checkbox-wrapper{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin:35px 0;
}

.checkbox-wrapper input{
    width:22px;
    height:22px;
    accent-color:var(--primary);
    cursor:pointer;
    margin-top:3px;
}

.checkbox-wrapper label{
    font-size:15px;
    line-height:1.8;
}

.checkbox-wrapper a{
    color:var(--primary);
    font-weight:600;
}

.checkbox-wrapper a:hover{
    text-decoration:underline;
}

/* =====================================================
   CONTACT SUBMIT
===================================================== */

.contact-submit{
    width:100%;
    border:none;
    border-radius:18px;
    padding:20px;
    cursor:pointer;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#ffffff;
    font-size:19px;
    font-weight:700;
    transition:.35s ease;
    box-shadow:0 18px 35px rgba(108,77,255,.28);
}

.contact-submit:hover{
    transform:translateY(-4px);
    box-shadow:0 28px 55px rgba(108,77,255,.35);
}

/* =====================================================
   CONTACT INFO
===================================================== */

.contact-info-section{
    background:#ffffff;
}

.contact-info-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.info-card{
    position:relative;
    background:#ffffff;
    border-radius:28px;
    padding:40px 30px;
    text-align:center;
    border:1px solid var(--border);
    transition:.35s ease;
    box-shadow:var(--shadow-small);
    overflow:hidden;
}

.info-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,var(--primary),var(--secondary));
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s ease;
}

.info-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-medium);
}

.info-card:hover::before{
    transform:scaleX(1);
}

.info-icon{
    width:74px;
    height:74px;
    margin:0 auto 24px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#ffffff;
    font-size:34px;
}

.info-card h3{
    margin-bottom:16px;
}

/* =====================================================
   CONTACT MAP
===================================================== */

.contact-map{
    background:var(--light);
}

.map-wrapper{
    margin-top:60px;
    border-radius:30px;
    overflow:hidden;
    border:1px solid var(--border);
    box-shadow:var(--shadow-medium);
}

.map-wrapper iframe{
    width:100%;
    height:520px;
    border:0;
    display:block;
}

/* =====================================================
   CONTACT + FAQ RESPONSIVE
===================================================== */

@media(max-width:992px){
    .form-row{
        grid-template-columns:1fr;
    }

    .contact-info-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .contact-card{
        padding:30px 24px;
        border-radius:24px;
    }

    .contact-info-grid{
        grid-template-columns:1fr;
    }

    .map-wrapper iframe{
        height:340px;
    }
}

/* =====================================================
   FAQ
===================================================== */

.faq-section{
    background:var(--light);
}

.faq-wrapper{
    max-width:950px;
    margin:60px auto 0;
}

.faq-item{
    background:#ffffff;
    border:1px solid var(--border);
    border-radius:24px;
    margin-bottom:22px;
    overflow:hidden;
    box-shadow:var(--shadow-small);
    transition:.35s ease;
}

.faq-item:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-medium);
}

.faq-item summary{
    position:relative;
    list-style:none;
    cursor:pointer;
    padding:28px 75px 28px 32px;
    font-size:20px;
    font-weight:600;
    color:var(--dark);
    transition:.3s ease;
}

.faq-item summary:hover{
    color:var(--primary);
}

.faq-item summary::-webkit-details-marker{
    display:none;
}

.faq-item summary::after{
    content:"+";
    position:absolute;
    right:30px;
    top:50%;
    transform:translateY(-50%);
    width:36px;
    height:36px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#EEF3FF;
    color:var(--primary);
    font-size:26px;
    font-weight:400;
    transition:.35s ease;
}

.faq-item[open] summary::after{
    content:"−";
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#ffffff;
}

.faq-item p{
    padding:0 32px 30px;
    font-size:16px;
    line-height:1.9;
    color:var(--text);
}

@media(max-width:768px){
    .faq-item summary{
        font-size:17px;
        padding:22px 60px 22px 22px;
    }

    .faq-item p{
        padding:0 22px 24px;
    }
}
/* =====================================================
   BLOG FILTER
===================================================== */

.blog-filter{
    background:var(--light);
}

.blog-search{
    max-width:620px;
    margin:45px auto;
}

.blog-search input{
    width:100%;
    padding:18px 24px;
    border:1px solid var(--border);
    border-radius:999px;
    background:#ffffff;
    font-size:17px;
    transition:.35s ease;
}

.blog-search input:focus{
    outline:none;
    border-color:var(--primary);
    box-shadow:0 0 0 5px rgba(108,77,255,.12);
}

.blog-categories{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
}

.blog-category{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 22px;
    border-radius:999px;
    background:#ffffff;
    border:1px solid var(--border);
    font-size:15px;
    font-weight:600;
    transition:.35s ease;
}

.blog-category:hover,
.blog-category.active{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#ffffff;
    border-color:transparent;
}

/* =====================================================
   FEATURED BLOG
===================================================== */

.featured-blog{
    background:#ffffff;
}

.featured-card{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:60px;
    align-items:center;
    background:#ffffff;
    border:1px solid var(--border);
    border-radius:32px;
    overflow:hidden;
    box-shadow:var(--shadow-large);
    transition:.35s ease;
}

.featured-card:hover{
    transform:translateY(-8px);
    box-shadow:0 45px 90px rgba(15,23,42,.14);
}

.featured-image{
    height:100%;
}

.featured-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.featured-content{
    padding:60px;
}

.blog-badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:999px;
    background:#EEF3FF;
    color:var(--primary);
    font-size:14px;
    font-weight:600;
    margin-bottom:22px;
}

.featured-content h2{
    margin-bottom:24px;
}

.featured-content p{
    margin-bottom:30px;
}

.blog-meta{
    display:flex;
    flex-wrap:wrap;
    gap:22px;
    margin-bottom:35px;
    color:#777;
    font-size:15px;
}

/* =====================================================
   BLOG GRID
===================================================== */

.blog-posts{
    background:var(--light);
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:60px;
}

.blog-card{
    background:#ffffff;
    border-radius:28px;
    overflow:hidden;
    border:1px solid var(--border);
    transition:.35s ease;
    box-shadow:var(--shadow-small);
}

.blog-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-large);
}

.blog-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.blog-card-content{
    padding:30px;
}

.blog-card .blog-category{
    display:inline-flex;
    margin-bottom:18px;
}

.blog-card h3{
    margin-bottom:18px;
    font-size:24px;
    line-height:1.4;
}

.blog-card p{
    margin-bottom:24px;
}

.blog-link{
    color:var(--primary);
    font-weight:600;
    transition:.3s ease;
}

.blog-link:hover{
    color:var(--secondary);
    padding-left:8px;
}

/* =====================================================
   NEWSLETTER
===================================================== */

.newsletter-section{
    background:#ffffff;
}

.newsletter-card{
    max-width:900px;
    margin:0 auto;
    padding:70px;
    text-align:center;
    border-radius:32px;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#ffffff;
    box-shadow:var(--shadow-large);
}

.newsletter-card h2{
    color:#ffffff;
    margin:25px 0;
}

.newsletter-card p{
    color:rgba(255,255,255,.92);
    max-width:650px;
    margin:0 auto 35px;
}

.newsletter-form{
    display:flex;
    gap:18px;
    justify-content:center;
    flex-wrap:wrap;
}

.newsletter-form input{
    flex:1;
    min-width:260px;
    max-width:500px;
    padding:18px 22px;
    border:none;
    border-radius:999px;
    font-size:16px;
}

.newsletter-form input:focus{
    outline:none;
}

.newsletter-form .btn-primary{
    background:#ffffff;
    color:var(--primary);
}

.newsletter-form .btn-primary:hover{
    background:#f5f5ff;
}

/* =====================================================
   BLOG & NEWSLETTER RESPONSIVE
===================================================== */

@media(max-width:1100px){
    .featured-card{
        grid-template-columns:1fr;
    }

    .featured-content{
        padding:45px;
    }

    .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .featured-content{
        padding:30px;
    }

    .blog-grid{
        grid-template-columns:1fr;
    }

    .newsletter-card{
        padding:45px 25px;
    }

    .newsletter-form{
        flex-direction:column;
    }

    .newsletter-form input,
    .newsletter-form .btn-primary{
        width:100%;
        max-width:100%;
    }

    .blog-search{
        margin:35px auto;
    }

    .blog-categories{
        gap:12px;
    }
}

/* =====================================================
   CTA
===================================================== */

.cta{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#ffffff;
}

.cta-content{
    max-width:900px;
    margin:0 auto;
    text-align:center;
}

.cta h2{
    color:#ffffff;
    margin-bottom:25px;
}

.cta p{
    color:rgba(255,255,255,.92);
    max-width:700px;
    margin:0 auto 40px;
    font-size:18px;
}

.cta .btn-primary{
    background:#ffffff;
    color:var(--primary);
}

.cta .btn-primary:hover{
    background:#f5f5ff;
}
/* =====================================================
   PAGE AND CTA BUTTON ALIGNMENT
===================================================== */

.page-hero .hero-buttons,
.cta .hero-buttons {
    justify-content: center;
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* =====================================================
   FOOTER
===================================================== */

.footer{
    background:#0F172A;
    color:#ffffff;
    padding:90px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;
    margin-bottom:60px;
}

.footer-logo{
    max-width:170px;
    margin-bottom:22px;
}

.footer h3{
    color:#ffffff;
    margin-bottom:18px;
    font-size:20px;
}

.footer p,
.footer li,
.footer a{
    color:rgba(255,255,255,.74);
    line-height:1.85;
}

.footer ul{
    display:grid;
    gap:14px;
}

.footer a:hover{
    color:#ffffff;
}

.footer-bottom{
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,.12);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.footer-bottom p{
    color:rgba(255,255,255,.60);
    font-size:15px;
}

.footer-legal{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

/* =====================================================
   GLOBAL ANIMATIONS
===================================================== */

.fade-up{
    animation:fadeUp .8s ease forwards;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.fade-in{
    animation:fadeIn .8s ease forwards;
}

@keyframes fadeIn{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}

.scale-up{
    animation:scaleUp .5s ease forwards;
}

@keyframes scaleUp{
    from{
        opacity:0;
        transform:scale(.96);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}


/* =====================================================
   SCROLLBAR
===================================================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#eef2ff;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(var(--primary),var(--secondary));
    border-radius:100px;
}

::-webkit-scrollbar-thumb:hover{
    background:var(--primary-dark);
}

/* =====================================================
   SELECTION
===================================================== */

::selection{
    background:var(--primary);
    color:#ffffff;
}

/* =====================================================
   GLOBAL RESPONSIVE
===================================================== */

@media(max-width:1200px){

    .container{
        width:min(92%,1100px);
    }
}

@media(max-width:992px){

    section{
        padding:90px 0;
    }

    h1{
        font-size:50px;
    }

    h2{
        font-size:38px;
    }

    .section-heading{
        margin-bottom:55px;
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    section{
        padding:70px 0;
    }

    h1{
        font-size:38px;
    }

    h2{
        font-size:30px;
    }

    h3{
        font-size:22px;
    }

    .section-heading p{
        font-size:17px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

    .btn-primary,
    .btn-secondary,
    .btn-header{
        width:100%;
        justify-content:center;
    }
}

@media(max-width:480px){

    .container{
        width:92%;
    }

    h1{
        font-size:34px;
    }

    h2{
        font-size:28px;
    }

    p{
        font-size:16px;
    }
}
/* =====================================================
   CONTACT FORM – FUNCTIONAL ENHANCEMENTS
===================================================== */

.form-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.form-response {
    width: 100%;
    margin-bottom: 24px;
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    line-height: 1.6;
}

.form-response[hidden] {
    display: none;
}

.form-response.is-success {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.25);
    color: #166534;
}

.form-response.is-error {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.25);
    color: #991b1b;
}

.contact-submit:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}
/* =====================================================
   MOBILE FIXES – WIDTH AND HEADINGS
===================================================== */

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

main,
.hero,
.hero-overlay,
.page-hero{
    width:100%;
    max-width:100%;
    margin-left:0;
    margin-right:0;
    overflow-x:hidden;
}

/* Prevents content from exceeding the viewport width */
.container,
.hero-content,
.page-hero-content,
.section-heading{
    max-width:100%;
}

/* Handle long words safely */
h1,
h2,
h3{
    max-width:100%;
    overflow-wrap:break-word;
    word-break:normal;
    hyphens:none;
    -webkit-hyphens:none;
}

/* Special heading on the web design page */
.web-solutions-heading{
    max-width:1120px;
    margin-left:auto;
    margin-right:auto;
    overflow-wrap:normal;
    word-break:keep-all;
    hyphens:manual;
    -webkit-hyphens:manual;
}

.web-solutions-heading .heading-line{
    display:block;
}

.web-solutions-heading .heading-line-middle{
    white-space:nowrap;
}

@media(max-width:768px){

    .hero-overlay{
        width:100%;
        padding-left:0;
        padding-right:0;
    }

    .hero-content{
        width:100%;
        max-width:100%;
        padding-left:0;
        padding-right:0;
    }

    .hero h1{
        width:100%;
        max-width:100%;
        font-size:clamp(34px, 9vw, 40px);
        line-height:1.12;
        overflow-wrap:break-word;
        word-break:normal;
        hyphens:none;
        -webkit-hyphens:none;
    }

    .page-hero h1{
        width:100%;
        max-width:100%;
        font-size:clamp(32px, 8.5vw, 38px);
        line-height:1.14;
        overflow-wrap:break-word;
        word-break:normal;
        hyphens:none;
        -webkit-hyphens:none;
    }

    .section-heading h2{
        width:100%;
        max-width:100%;
        font-size:clamp(29px, 8vw, 36px);
        line-height:1.16;
    }

    .web-solutions-heading{
        width:100%;
        max-width:100%;
        font-size:clamp(28px, 7.6vw, 35px);
        line-height:1.16;
        overflow-wrap:normal;
        word-break:keep-all;
        hyphens:manual;
        -webkit-hyphens:manual;
    }

}

@media(max-width:480px){

    .hero h1{
        font-size:clamp(31px, 8.8vw, 36px);
        line-height:1.14;
    }

    .page-hero h1{
        font-size:clamp(29px, 8.2vw, 34px);
    }

    .section-heading h2{
        font-size:clamp(27px, 7.8vw, 32px);
    }

    .web-solutions-heading{
        font-size:clamp(26px, 7.4vw, 31px);
        line-height:1.18;
    }

}

/* =====================================================
   MOBILE HEADING CORRECTIONS
===================================================== */

@media (max-width: 768px) {

    /*
     * Card headings use a smaller mobile type size so long service names
     * remain inside the card without affecting the desktop layout.
     */
    .service-card h3,
    .technology-card h3,
    .why-card h3,
    .about-card h3,
    .workflow-card h3,
    .info-card h3 {
        width: 100%;
        max-width: 100%;
        font-size: clamp(22px, 5.8vw, 26px);
        line-height: 1.2;
        white-space: normal;
        word-break: normal;
        overflow-wrap: normal;
        hyphens: none;
        -webkit-hyphens: none;
    }

    .service-card,
    .technology-card,
    .why-card,
    .about-card,
    .workflow-card,
    .info-card {
        min-width: 0;
    }

    /*
     * This heading contains a manually inserted soft hyphen in the HTML.
     * The browser may only break at that defined position.
     */
    .web-solutions-heading {
        width: 100%;
        max-width: 100%;
        font-size: clamp(24px, 6.4vw, 29px);
        line-height: 1.16;
        word-break: normal;
        overflow-wrap: normal;
        hyphens: manual;
        -webkit-hyphens: manual;
    }

    .web-solutions-heading .heading-line {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    .web-solutions-heading .heading-line-middle {
        white-space: nowrap;
    }

    /*
     * Larger content headings on the About page need a slightly smaller
     * mobile type size to keep complete words within the viewport.
     */
    .about-text h2,
    .about-text h3 {
        width: 100%;
        max-width: 100%;
        font-size: clamp(24px, 6.2vw, 28px);
        line-height: 1.2;
        white-space: normal;
        word-break: normal;
        overflow-wrap: normal;
        hyphens: none;
        -webkit-hyphens: none;
    }
}

@media (max-width: 480px) {

    .service-card h3,
    .technology-card h3,
    .why-card h3,
    .about-card h3,
    .workflow-card h3,
    .info-card h3 {
        font-size: clamp(21px, 5.9vw, 24px);
    }

    .web-solutions-heading {
        font-size: clamp(23px, 6.2vw, 27px);
        line-height: 1.18;
    }

    .about-text h2,
    .about-text h3 {
        font-size: clamp(23px, 6vw, 26px);
    }
}
/* ===== FAQ ===== */

.faq-page-hero{
    padding:80px 0 55px;
}

.faq-section-first{
    padding-top:20px;
}