/* =========================================
   KENMAX TECHNOLOGIES
   MAIN STYLESHEET
========================================= */


/* =========================================
   VARIABLES
========================================= */

:root {

    --primary: #2563eb;
    --primary-dark: #1d4ed8;

    --secondary: #06b6d4;

    --accent: #8b5cf6;

    --text: #111827;
    --text-light: #64748b;

    --background: #ffffff;
    --background-soft: #f8fafc;

    --card: #ffffff;

    --border: #e2e8f0;

    --header: rgba(255, 255, 255, 0.92);

    --shadow:
        0 20px 50px rgba(15, 23, 42, 0.08);

    --radius: 18px;

    --transition:
        all 0.3s ease;

}


/* =========================================
   DARK MODE
========================================= */

[data-theme="dark"] {

    --text: #f8fafc;

    --text-light: #94a3b8;

    --background: #0b1120;

    --background-soft: #111827;

    --card: #172033;

    --border: #263449;

    --header: rgba(11, 17, 32, 0.94);

    --shadow:
        0 20px 50px rgba(0, 0, 0, 0.3);

}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "Inter", sans-serif;

    color: var(--text);

    background: var(--background);

    line-height: 1.7;

    transition:
        background 0.3s ease,
        color 0.3s ease;

}


img {
    max-width: 100%;
    display: block;
}


a {
    text-decoration: none;
    color: inherit;
}


button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================
   CONTAINER
========================================= */

.container {

    width: min(1180px, 92%);

    margin: auto;

}


/* =========================================
   PRELOADER
========================================= */

#preloader {

    position: fixed;

    inset: 0;

    background: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 99999;

    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;

}


[data-theme="dark"] #preloader {

    background: #0b1120;

}


#preloader.hide {

    opacity: 0;

    visibility: hidden;

}


.preloader-content {

    text-align: center;

}


.preloader-logo {

    width: 110px;

    height: 110px;

    object-fit: contain;

    margin: auto;

    animation:
        preloaderPulse 1.5s infinite;

}


.loader-ring {

    width: 42px;

    height: 42px;

    border: 4px solid #e2e8f0;

    border-top-color: var(--primary);

    border-radius: 50%;

    margin: 20px auto 12px;

    animation:
        spin 0.8s linear infinite;

}


.preloader-content p {

    color: #64748b;

    font-size: 14px;

}


@keyframes spin {

    to {
        transform: rotate(360deg);
    }

}


@keyframes preloaderPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

}


/* =========================================
   NAVBAR
========================================= */

.site-header {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    z-index: 1000;

}


.navbar {

    background: var(--header);

    backdrop-filter: blur(15px);

    border-bottom:
        1px solid var(--border);

}


.nav-container {

    width: min(1180px, 92%);

    margin: auto;

    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.brand {

    display: flex;

    align-items: center;

    gap: 10px;

}


.brand img {

    width: 48px;

    height: 48px;

    object-fit: contain;

}


.brand-text {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.brand-name {

    font-family: "Poppins", sans-serif;

    font-size: 20px;

    font-weight: 800;

    letter-spacing: 1px;

}


.brand-text small {

    color: var(--primary);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-top: 4px;

}


.nav-menu {

    display: flex;

    align-items: center;

    gap: 8px;

}


.nav-link {

    padding: 10px 15px;

    color: var(--text-light);

    font-size: 14px;

    font-weight: 600;

    border-radius: 10px;

    transition: var(--transition);

}


.nav-link:hover {

    color: var(--primary);

    background:
        rgba(37, 99, 235, 0.08);

}


.nav-contact {

    color: white;

    background: var(--primary);

}


.nav-contact:hover {

    color: white;

    background: var(--primary-dark);

}


/* =========================================
   THEME BUTTON
========================================= */

.theme-toggle {

    border: 1px solid var(--border);

    background: var(--card);

    color: var(--text);

    width: 42px;

    height: 42px;

    border-radius: 50%;

    cursor: pointer;

    transition: var(--transition);

}


.theme-toggle:hover {

    color: var(--primary);

    transform: rotate(15deg);

}


/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu-btn {

    display: none;

    width: 42px;

    height: 42px;

    border: 0;

    background: transparent;

    cursor: pointer;

}


.mobile-menu-btn span {

    display: block;

    width: 24px;

    height: 2px;

    margin: 5px auto;

    background: var(--text);

}


/* =========================================
   HERO
========================================= */

.hero {

    min-height: 100vh;

    padding-top: 130px;

    display: flex;

    align-items: center;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(37, 99, 235, 0.12),
            transparent 35%
        );

}


.hero-background {

    position: absolute;

    inset: 0;

    pointer-events: none;

}


.hero-grid-pattern {

    position: absolute;

    inset: 0;

    opacity: 0.4;

    background-image:
        linear-gradient(
            var(--border) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            var(--border) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );

}


.hero-container {

    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    gap: 70px;

    align-items: center;

    position: relative;

}


.hero-content {

    position: relative;

    z-index: 2;

}


.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    border-radius: 50px;

    background:
        rgba(37, 99, 235, 0.09);

    color: var(--primary);

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 20px;

}


.hero h1 {

    font-family: "Poppins", sans-serif;

    font-size: clamp(42px, 5vw, 70px);

    line-height: 1.08;

    letter-spacing: -2px;

    margin-bottom: 25px;

}


.hero h1 span,
.section-heading h2 span,
.contact-info h2 span,
.page-hero h1 span {

    color: var(--primary);

}


.hero p {

    max-width: 650px;

    color: var(--text-light);

    font-size: 17px;

    margin-bottom: 30px;

}


.hero-buttons {

    display: flex;

    gap: 14px;

    flex-wrap: wrap;

}


/* =========================================
   BUTTONS
========================================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 22px;

    border-radius: 10px;

    border: 1px solid transparent;

    font-weight: 700;

    font-size: 14px;

    cursor: pointer;

    transition: var(--transition);

}


.btn-primary {

    color: white;

    background: var(--primary);

}


.btn-primary:hover {

    background: var(--primary-dark);

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px
        rgba(37, 99, 235, 0.25);

}


.btn-outline {

    border-color: var(--border);

    color: var(--text);

    background: var(--card);

}


.btn-outline:hover {

    border-color: var(--primary);

    color: var(--primary);

}


.btn-light {

    background: white;

    color: var(--primary);

}


.hero-contact {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

    margin-top: 30px;

}


.hero-contact div {

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 13px;

    color: var(--text-light);

}


.hero-contact i {

    color: var(--primary);

}


/* =========================================
   HERO CODE CARD
========================================= */

.hero-visual {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.code-card {

    width: min(470px, 100%);

    background: #111827;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 35px 80px
        rgba(15, 23, 42, 0.25);

    transform: rotate(2deg);

}


.code-header {

    height: 45px;

    background: #1e293b;

    display: flex;

    align-items: center;

    gap: 7px;

    padding-left: 18px;

}


.code-header span {

    width: 11px;

    height: 11px;

    border-radius: 50%;

    background: #64748b;

}


.code-body {

    padding: 30px;

}


.code-body pre {

    color: #e2e8f0;

    font-family: monospace;

    font-size: 14px;

    line-height: 2;

}


.code-purple {
    color: #c084fc;
}


.code-blue {
    color: #60a5fa;
}


.code-yellow {
    color: #facc15;
}


.code-green {
    color: #4ade80;
}


/* =========================================
   FLOATING CARDS
========================================= */

.floating-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 12px;

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: 14px;

    padding: 13px 16px;

    box-shadow: var(--shadow);

    animation:
        float 4s ease-in-out infinite;

}


.floating-card i {

    color: var(--primary);

    font-size: 20px;

}


.floating-card strong {

    display: block;

    font-size: 12px;

}


.floating-card small {

    display: block;

    color: var(--text-light);

    font-size: 10px;

}


.floating-card-one {

    top: 55px;

    left: 0;

}


.floating-card-two {

    bottom: 55px;

    right: 0;

    animation-delay: 1s;

}


@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


/* =========================================
   STATS
========================================= */

.stats-section {

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

    background: var(--background-soft);

}


.stats-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.stat {

    padding: 30px 20px;

    text-align: center;

    border-right: 1px solid var(--border);

}


.stat:last-child {

    border-right: none;

}


.stat strong {

    display: block;

    font-family: "Poppins";

    font-size: 25px;

}


.stat span {

    color: var(--text-light);

    font-size: 12px;

}


/* =========================================
   SECTIONS
========================================= */

.section {

    padding: 100px 0;

}


.section-heading {

    max-width: 700px;

    text-align: center;

    margin: 0 auto 55px;

}


.section-label {

    display: inline-block;

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 10px;

}


.section-heading h2 {

    font-family: "Poppins";

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.2;

    margin-bottom: 15px;

}


.section-heading p {

    color: var(--text-light);

}


/* =========================================
   SERVICES
========================================= */

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


.services-large {

    grid-template-columns:
        repeat(3, 1fr);

}


.service-card {

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    padding: 30px;

    transition: var(--transition);

}


.service-card:hover {

    transform: translateY(-7px);

    border-color:
        rgba(37, 99, 235, 0.3);

    box-shadow: var(--shadow);

}


.service-icon {

    width: 54px;

    height: 54px;

    display: grid;

    place-items: center;

    border-radius: 14px;

    background:
        rgba(37, 99, 235, 0.1);

    color: var(--primary);

    font-size: 22px;

    margin-bottom: 20px;

}


.service-card h3 {

    font-family: "Poppins";

    font-size: 19px;

    margin-bottom: 10px;

}


.service-card p {

    color: var(--text-light);

    font-size: 14px;

    margin-bottom: 20px;

}


.service-card a {

    color: var(--primary);

    font-size: 13px;

    font-weight: 700;

}


.service-card ul {

    padding-left: 18px;

    color: var(--text-light);

}


.service-card li {

    margin: 8px 0;

    font-size: 13px;

}


/* =========================================
   PAGE HERO
========================================= */

.page-hero {

    position: relative;

    padding: 180px 0 100px;

    text-align: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(37, 99, 235, 0.12),
            transparent 55%
        );

}


.page-hero-background {

    position: absolute;

    inset: 0;

    pointer-events: none;

    z-index: 0;

}


.page-hero-grid-pattern {

    position: absolute;

    inset: 0;

    opacity: 0.4;

    background-image:
        linear-gradient(
            var(--border) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            var(--border) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image:
        radial-gradient(
            circle at center,
            black 40%,
            transparent 80%
        );

    -webkit-mask-image:
        radial-gradient(
            circle at center,
            black 40%,
            transparent 80%
        );

}


.page-hero-container {

    position: relative;

    z-index: 1;

}


.page-hero-content {

    max-width: 780px;

    margin: 0 auto;

}


.page-hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    border-radius: 50px;

    background:
        rgba(37, 99, 235, 0.09);

    color: var(--primary);

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 20px;

}


.page-hero h1 {

    font-family: "Poppins";

    font-size: clamp(40px, 5vw, 60px);

    line-height: 1.1;

    letter-spacing: -1px;

    margin-bottom: 20px;

}


.page-hero p {

    color: var(--text-light);

    max-width: 650px;

    margin: auto;

}


.page-hero-buttons {

    margin-top: 30px;

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 14px;

}


/* =========================================
   ABOUT
========================================= */

.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}


.about-grid h2 {

    font-family: "Poppins";

    font-size: 42px;

    line-height: 1.2;

    margin-bottom: 20px;

}


.about-grid p {

    color: var(--text-light);

    margin-bottom: 15px;

}


.about-features {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;

}


.feature-box {

    padding: 25px;

    border: 1px solid var(--border);

    border-radius: 15px;

    background: var(--card);

}


.feature-box i {

    color: var(--primary);

    font-size: 25px;

    margin-bottom: 15px;

}


.feature-box h3 {

    font-size: 16px;

    margin-bottom: 6px;

}


.feature-box p {

    font-size: 13px;

}


/* =========================================
   PROJECTS
========================================= */

.projects-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


.project-card {

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    background: var(--card);

}


.project-image {

    height: 240px;

    display: grid;

    place-items: center;

    font-size: 55px;

    color: white;

}


.project-one {

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #06b6d4
        );

}


.project-two {

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #2563eb
        );

}


.project-three {

    background:
        linear-gradient(
            135deg,
            #0891b2,
            #0f766e
        );

}


.project-content {

    padding: 25px;

}


.project-content span {

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

}


.project-content h3 {

    font-family: "Poppins";

    margin: 5px 0;

}


.project-content p {

    color: var(--text-light);

    font-size: 13px;

}


/* =========================================
   CTA
========================================= */

.cta-section {

    padding: 0 0 100px;

}


.cta-box {

    padding: 55px;

    border-radius: 25px;

    color: white;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #1d4ed8,
            #7c3aed
        );

}


.cta-box span {

    opacity: 0.8;

    font-size: 13px;

}


.cta-box h2 {

    font-family: "Poppins";

    font-size: 32px;

    margin: 5px 0;

}


.cta-box p {

    opacity: 0.85;

}


/* =========================================
   CONTACT
========================================= */

.contact-grid {

    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 70px;

}


.contact-info h2 {

    font-family: "Poppins";

    font-size: 40px;

    line-height: 1.2;

    margin-bottom: 20px;

}


.contact-info > p {

    color: var(--text-light);

    margin-bottom: 30px;

}


.contact-item {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 15px 0;

    border-bottom: 1px solid var(--border);

}


.contact-icon {

    width: 45px;

    height: 45px;

    border-radius: 12px;

    display: grid;

    place-items: center;

    background:
        rgba(37, 99, 235, 0.1);

    color: var(--primary);

}


.contact-item small {

    display: block;

    color: var(--text-light);

    font-size: 11px;

}


.contact-item strong {

    font-size: 14px;

}


.contact-form-wrapper {

    padding: 35px;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    background: var(--card);

    box-shadow: var(--shadow);

}


.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;

}


.form-group {

    margin-bottom: 20px;

}


.form-group label {

    display: block;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 7px;

}


.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: var(--background);

    color: var(--text);

    padding: 13px 15px;

    outline: none;

    transition: var(--transition);

}


.form-group textarea {

    resize: vertical;

}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color: var(--primary);

    box-shadow:
        0 0 0 3px
        rgba(37, 99, 235, 0.1);

}


/* =========================================
   FOOTER
========================================= */

.footer {

    background: var(--background-soft);

    border-top: 1px solid var(--border);

    padding: 70px 0 20px;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1.3fr;

    gap: 40px;

}


.footer-brand > p {

    color: var(--text-light);

    font-size: 13px;

    max-width: 320px;

    margin-top: 18px;

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.footer-column h3 {

    font-family: "Poppins";

    font-size: 15px;

    margin-bottom: 8px;

}


.footer-column a,
.footer-column span {

    color: var(--text-light);

    font-size: 13px;

}


.footer-column a:hover {

    color: var(--primary);

}


.footer-column i {

    width: 20px;

    color: var(--primary);

}


.social-links {

    display: flex;

    gap: 8px;

    margin-top: 12px;

}


.social-links a {

    width: 36px;

    height: 36px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--card);

    border: 1px solid var(--border);

}


.footer-bottom {

    border-top: 1px solid var(--border);

    margin-top: 50px;

    padding-top: 20px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: var(--text-light);

    font-size: 11px;

}


/* =========================================
   WHATSAPP
========================================= */

.whatsapp-button {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 56px;

    height: 56px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #25d366;

    color: white;

    font-size: 26px;

    z-index: 999;

    box-shadow:
        0 10px 25px
        rgba(0, 0, 0, 0.2);

    transition: var(--transition);

}


.whatsapp-button:hover {

    transform: scale(1.08);

}


/* =========================================
   404
========================================= */

.error-page {

    min-height: 80vh;

    display: grid;

    place-items: center;

    text-align: center;

}


.error-code {

    font-family: "Poppins";

    font-size: 130px;

    font-weight: 800;

    color: var(--primary);

    line-height: 1;

}


.error-page h1 {

    font-family: "Poppins";

    margin: 20px 0 10px;

}


.error-page p {

    color: var(--text-light);

    margin-bottom: 25px;

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .hero-container {

        grid-template-columns: 1fr;

        text-align: center;

    }


    .hero-content {

        display: flex;

        flex-direction: column;

        align-items: center;

    }


    .hero-visual {

        min-height: 420px;

    }


    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .services-large {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 768px) {

    .mobile-menu-btn {

        display: block;

    }


    .nav-menu {

        position: absolute;

        top: 78px;

        left: 0;

        right: 0;

        display: none;

        flex-direction: column;

        align-items: stretch;

        padding: 20px;

        background: var(--background);

        border-bottom: 1px solid var(--border);

        box-shadow: var(--shadow);

    }


    .nav-menu.active {

        display: flex;

    }


    .nav-link {

        text-align: center;

    }


    .theme-toggle {

        margin: 5px auto;

    }


    .stats-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .stat:nth-child(2) {

        border-right: none;

    }


    .stat:nth-child(3),
    .stat:nth-child(4) {

        border-top: 1px solid var(--border);

    }


    .about-grid,
    .contact-grid {

        grid-template-columns: 1fr;

    }


    .projects-grid {

        grid-template-columns: 1fr;

    }


    .about-features {

        grid-template-columns: 1fr 1fr;

    }


    .cta-box {

        flex-direction: column;

        align-items: flex-start;

        padding: 35px;

    }

}


@media (max-width: 600px) {

    .hero {

        padding-top: 120px;

    }


    .hero h1 {

        font-size: 40px;

        letter-spacing: -1px;

    }


    .hero p {

        font-size: 15px;

    }


    .hero-contact {

        flex-direction: column;

        align-items: center;

    }


    .hero-visual {

        min-height: 350px;

    }


    .code-card {

        transform: none;

    }


    .code-body {

        padding: 20px;

    }


    .code-body pre {

        font-size: 11px;

    }


    .floating-card {

        display: none;

    }


    .services-grid,
    .services-large {

        grid-template-columns: 1fr;

    }


    .stats-grid {

        grid-template-columns: 1fr;

    }


    .stat {

        border-right: none;

        border-bottom: 1px solid var(--border);

    }


    .stat:last-child {

        border-bottom: none;

    }


    .about-grid h2,
    .contact-info h2 {

        font-size: 32px;

    }


    .about-features {

        grid-template-columns: 1fr;

    }


    .form-row {

        grid-template-columns: 1fr;

    }


    .contact-form-wrapper {

        padding: 22px;

    }


    .footer-grid {

        grid-template-columns: 1fr;

    }


    .footer-bottom {

        flex-direction: column;

        text-align: center;

    }


    .error-code {

        font-size: 90px;

    }

}


/* =========================================================
   PAGE HERO — additional badge styling
========================================================= */

.page-hero-badge i {
    font-size: 12px;
}


/* =========================================================
   SECTION ALT — alternate section background
========================================================= */

.section-alt {
    background: var(--background-soft);
}


/* =========================================================
   PROCESS GRID — "Our Approach" steps
========================================================= */

.process-grid {

    margin-top: 3.5rem;

    display: grid;

    gap: 1.25rem;

    grid-template-columns: 1fr;

}


@media (min-width: 640px) {

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (min-width: 1024px) {

    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}


.process-step {

    position: relative;

    padding: 1.75rem;

    border-radius: var(--radius);

    border: 1px solid var(--border);

    background: var(--card);

    overflow: hidden;

    transition: var(--transition);

}


.process-step:hover {

    transform: translateY(-6px);

    border-color: rgba(37, 99, 235, 0.3);

    box-shadow: var(--shadow);

}


.process-number {

    position: absolute;

    top: 1rem;

    right: 1.25rem;

    font-family: "Poppins", sans-serif;

    font-size: 3rem;

    font-weight: 800;

    line-height: 1;

    color: var(--border);

    opacity: 0.5;

    pointer-events: none;

}


.process-icon {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 3.5rem;

    height: 3.5rem;

    border-radius: 14px;

    background: rgba(37, 99, 235, 0.1);

    color: var(--primary);

    font-size: 1.25rem;

}


.process-step h3 {

    position: relative;

    margin-top: 1.75rem;

    font-family: "Poppins", sans-serif;

    font-size: 1.25rem;

    font-weight: 700;

    color: var(--text);

}


.process-step p {

    position: relative;

    margin-top: 0.75rem;

    font-size: 0.9rem;

    line-height: 1.6;

    color: var(--text-light);

}


/* =========================================================
   SERVICE DETAIL — large feature sections
========================================================= */

.service-detail {

    display: grid;

    grid-template-columns: 1fr;

    border-radius: var(--radius);

    border: 1px solid var(--border);

    background: var(--card);

    overflow: hidden;

    box-shadow: var(--shadow);

}


@media (min-width: 1024px) {

    .service-detail {
        grid-template-columns: 4fr 8fr;
    }

    .service-detail-reverse {
        grid-template-columns: 8fr 4fr;
    }

    .service-detail-reverse .service-detail-visual {
        order: 2;
    }

    .service-detail-reverse .service-detail-content {
        order: 1;
    }

}


.service-detail-visual {

    position: relative;

    min-height: 300px;

    padding: 2rem;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #1e3a8a 0%,
            #0e7490 100%
        );

}


.service-detail-visual-blue {

    background:
        linear-gradient(
            135deg,
            #172554 0%,
            #1e40af 55%,
            #0e7490 100%
        );

}


.service-detail-visual-indigo {

    background:
        linear-gradient(
            135deg,
            #1e1b4b 0%,
            #4338ca 55%,
            #7e22ce 100%
        );

}


.service-detail-visual-emerald {

    background:
        linear-gradient(
            135deg,
            #022c22 0%,
            #0f766e 55%,
            #0891b2 100%
        );

}


.service-detail-badge {

    display: inline-block;

    padding: 0.4rem 1rem;

    border-radius: 999px;

    border: 1px solid rgba(255, 255, 255, 0.25);

    background: rgba(255, 255, 255, 0.1);

    font-size: 0.7rem;

    font-weight: 700;

    letter-spacing: 0.15em;

    text-transform: uppercase;

    backdrop-filter: blur(6px);

}


.service-detail-icon {

    margin-top: 2rem;

    font-size: 4rem;

    color: rgba(255, 255, 255, 0.9);

}


.service-detail-category {

    margin-top: 1.25rem;

    font-size: 0.8rem;

    font-weight: 600;

    letter-spacing: 0.2em;

    text-transform: uppercase;

    opacity: 0.85;

}


.service-detail-tagline {

    margin-top: 2rem;

    max-width: 220px;

    padding-top: 1.25rem;

    border-top: 1px solid rgba(255, 255, 255, 0.15);

    font-size: 0.85rem;

    line-height: 1.5;

    opacity: 0.85;

}


.service-detail-content {

    padding: 2rem;

}


@media (min-width: 640px) {

    .service-detail-content {
        padding: 2.5rem;
    }

}


@media (min-width: 1024px) {

    .service-detail-content {
        padding: 3rem;
    }

}


.service-detail-content h2 {

    margin-top: 0.75rem;

    font-family: "Poppins", sans-serif;

    font-size: clamp(1.75rem, 3vw, 2.25rem);

    font-weight: 800;

    letter-spacing: -0.01em;

    color: var(--text);

}


.service-detail-content > p {

    margin-top: 1.25rem;

    font-size: 1rem;

    line-height: 1.7;

    color: var(--text-light);

}


.service-detail-heading {

    display: flex;

    align-items: center;

    gap: 0.75rem;

    margin-top: 2.5rem;

    font-family: "Poppins", sans-serif;

    font-size: 1.125rem;

    font-weight: 700;

    color: var(--text);

}


.service-detail-heading-icon {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 2.25rem;

    height: 2.25rem;

    border-radius: 12px;

    font-size: 0.9rem;

    flex-shrink: 0;

}


.service-detail-heading-icon-red {
    background: rgba(225, 29, 72, 0.12);
    color: #e11d48;
}


.service-detail-heading-icon-amber {
    background: rgba(217, 119, 6, 0.12);
    color: #d97706;
}


.service-detail-heading-icon-blue {
    background: rgba(37, 99, 235, 0.12);
    color: var(--primary);
}


.service-detail-heading-icon-indigo {
    background: rgba(79, 70, 229, 0.12);
    color: #4f46e5;
}


.service-detail-heading-icon-emerald {
    background: rgba(5, 150, 105, 0.12);
    color: #059669;
}


.service-detail-heading + p {

    margin-top: 1rem;

    font-size: 1rem;

    line-height: 1.7;

    color: var(--text-light);

}


/* =========================================================
   WORKFLOW LIST — steps inside a service detail
========================================================= */

.workflow-list {

    margin-top: 1.5rem;

    display: flex;

    flex-direction: column;

    gap: 1rem;

}


.workflow-step {

    display: flex;

    gap: 1rem;

    padding: 1rem;

    border-radius: 14px;

    border: 1px solid var(--border);

    background: var(--background);

}


.workflow-number {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 2.25rem;

    height: 2.25rem;

    flex-shrink: 0;

    border-radius: 999px;

    background: var(--primary);

    color: #ffffff;

    font-size: 0.75rem;

    font-weight: 700;

}


.workflow-step strong {

    display: block;

    font-size: 0.9rem;

    font-weight: 700;

    color: var(--text);

}


.workflow-step p {

    margin-top: 0.25rem;

    font-size: 0.85rem;

    line-height: 1.55;

    color: var(--text-light);

}


/* =========================================================
   FEATURE LIST — checklist inside a service detail
========================================================= */

.feature-list {

    margin-top: 1.25rem;

    display: grid;

    grid-template-columns: 1fr;

    gap: 0.75rem;

    list-style: none;

    padding: 0;

}


@media (min-width: 640px) {

    .feature-list {
        grid-template-columns: repeat(2, 1fr);
    }

}


.feature-list li {

    display: flex;

    align-items: center;

    gap: 0.5rem;

    font-size: 0.9rem;

    color: var(--text-light);

}


.feature-list li i {

    color: #10b981;

}


/* =========================================================
   MODULE GRID — modules / journey steps
========================================================= */

.module-grid {

    margin-top: 1.5rem;

    display: grid;

    grid-template-columns: 1fr;

    gap: 1rem;

}


@media (min-width: 640px) {

    .module-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


.module-card {

    padding: 1.25rem;

    border-radius: 14px;

    border: 1px solid var(--border);

    background: var(--background);

}


.module-card i {

    font-size: 1.25rem;

    color: var(--accent);

}


.module-card h4 {

    margin-top: 0.75rem;

    font-family: "Poppins", sans-serif;

    font-size: 1rem;

    font-weight: 700;

    color: var(--text);

}


.module-card p {

    margin-top: 0.5rem;

    font-size: 0.85rem;

    line-height: 1.55;

    color: var(--text-light);

}


.module-number {

    display: inline-block;

    font-size: 0.75rem;

    font-weight: 700;

    color: #059669;

}


/* =========================================================
   SOLUTIONS GRID — "Other Possibilities"
========================================================= */

.solutions-grid {

    margin-top: 3.5rem;

    display: grid;

    grid-template-columns: 1fr;

    gap: 1.25rem;

}


@media (min-width: 640px) {

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (min-width: 1024px) {

    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


.solution-card {

    padding: 1.75rem;

    border-radius: var(--radius);

    border: 1px solid var(--border);

    background: var(--card);

    transition: var(--transition);

}


.solution-card:hover {

    transform: translateY(-6px);

    border-color: rgba(37, 99, 235, 0.3);

    box-shadow: var(--shadow);

}


.solution-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 3.5rem;

    height: 3.5rem;

    border-radius: 14px;

    font-size: 1.25rem;

}


.solution-icon-rose    { background: rgba(225, 29, 72, 0.12);  color: #e11d48; }
.solution-icon-blue    { background: rgba(37, 99, 235, 0.12);  color: var(--primary); }
.solution-icon-amber   { background: rgba(217, 119, 6, 0.12);  color: #d97706; }
.solution-icon-orange  { background: rgba(234, 88, 12, 0.12);  color: #ea580c; }
.solution-icon-violet  { background: rgba(124, 58, 237, 0.12); color: #7c3aed; }
.solution-icon-cyan    { background: rgba(8, 145, 178, 0.12);  color: #0891b2; }


.solution-category {

    display: block;

    margin-top: 1.5rem;

    font-size: 0.7rem;

    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    color: var(--text-light);

}


.solution-card h3 {

    margin-top: 0.5rem;

    font-family: "Poppins", sans-serif;

    font-size: 1.25rem;

    font-weight: 700;

    color: var(--text);

}


.solution-card p {

    margin-top: 0.75rem;

    font-size: 0.9rem;

    line-height: 1.6;

    color: var(--text-light);

}