﻿/* ===================================
INTER FONT
=================================== */

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter.ttf') format('truetype');
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Italic.ttf') format('truetype');
    font-style: italic;
    font-weight: 100 900;
    font-display: swap;
}

/* ===================================
CSS VARIABLES
=================================== */

:root {
    /* Colors */
    --color-white: #ffffff;
    --color-black: #111111;
    --color-text: #555555;
    --color-border: #e5e5e5;
    --color-background: #fafafa;
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    /* Layout */
    /*    --container-width: 1200px;*/
    /* Border Radius */
    /*    --radius-sm: 8px;*/
    --radius-md: 12px;
    --radius-lg: 18px;
    /* Transition */
    --transition: all .3s ease;
}

/* ===================================
RESET
=================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===================================
HTML
=================================== */

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

/* ===================================
BODY
=================================== */

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-white);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ===================================
GLOBAL ELEMENTS
=================================== */

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul,
ol {
    list-style: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

input,
textarea,
select {
    outline: none;
}

textarea {
    resize: vertical;
}


/* ===================================
CONTAINER
=================================== */

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.content-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

/* ===================================
SECTION
=================================== */

section {
    padding: 100px 0;
    scroll-margin-top: 30px;
}

/* ===================================
HEADINGS
=================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-black);
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

/* ===================================
WEBSITE LOADER
=================================== */

.site-loader {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.loader-circle {
    width: 55px;
    height: 55px;
    border: 4px solid #e5e5e5;
    border-top-color: var(--bs-cyan);
    border-radius: 50%;
    animation: loaderSpin 0.9s linear infinite;
}

.site-loader p {
    margin-top: 18px;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
}


@keyframes loaderSpin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* ===================================
HEADER
=================================== */

.site-header {
    /*    position: sticky;*/
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    /*    background: var(--bs-gray-100);*/
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    border-top: 1px solid #000;
}

.site-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-black);
    letter-spacing: -0.04em;
    font-family: "Caveat", cursive;
}

    .site-logo img {
        width: 70px;
        height: auto;
        display: block;
    }


.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    /*    border: 1px solid var(--color-border);*/
    border-radius: 50%;
    color: #000;
    font-size: 1.1rem;
    transition: var(--transition);
}

    .contact-icon:hover {
        /*        background: var(--color-black);*/
        color: var(--bs-cyan);
        /*        border-color: var(--color-black);*/
    }


/* ===================================
HERO
=================================== */

.hero-section {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 80px 0;
    background: radial-gradient(circle at top right, rgba(0, 166, 178, 0.2), transparent 40%), #111111;
}


.hero-tag {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    margin-bottom: 24px;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: var(--bs-cyan);
}

.hero-description {
    max-width: 620px;
    margin-bottom: 40px;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--bs-gray-500);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}


.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    min-width: 170px;
    height: 52px;
    padding: 0 28px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    color: #fff;
}

    .btn-primary:hover {
        background: #000;
        color: #fff;
    }



    .btn-secondary:hover {
        background: var(--color-background);
    }

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 120px;
}

.hero-content {
    flex: 1;
    max-width: 700px;
}

.hero-image {
    position: relative;
    flex: 0 0 420px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-bg {
    position: absolute;
    width: 450px;
    height: 500px;
    top: 50%;
    left: 49%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

    /*.hero-image-bg::before {
        content: "";
        position: absolute;
        width: 110px;
        height: 110px;
        background: #ffc107;
        top: 0;
        right: 0;*/
    /*        opacity: 0.18;*/
    /*animation: squareRotate 12s linear infinite;
    }*/


    .hero-image-bg::after {
        content: "";
        position: absolute;
        width: 90px;
        height: 90px;
        background: var(--bs-cyan);
        bottom: 0;
        left: 0;
        opacity: 0.18;
        animation: squareRotate 12s linear infinite;
    }


/*.image-placeholder {
width: 380px;
height: 480px;
border: 2px dashed var(--color-border);
border-radius: var(--radius-lg);
display: flex;
align-items: center;
justify-content: center;
color: #999999;
font-weight: 600;
}*/

.hero-image img {
    width: 380px;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
    /*        -webkit-mask-image: radial-gradient(circle, black 55%, transparent 100%);
        mask-image: radial-gradient(circle, black 55%, transparent 100%);*/
    position: relative;
    z-index: 1;
}


@keyframes squareRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ===================================
HERO TYPING WORD
=================================== */

#typing-text {
    display: inline-block;
    color: #fff;
}

.typing-word {
    color: #fff;
    font-weight: 300;
}

/* ===================================
HERO TYPING CURSOR
=================================== */

.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 0.9em;
    margin-left: 4px;
    background: #fff;
    animation: cursorBlink 0.8s infinite;
    vertical-align: middle;
}


@keyframes cursorBlink {

    50% {
        opacity: 0;
    }
}




/* ===================================
ABOUT
=================================== */

.about-section {
    padding: 90px 0;
}

.about-content {
    max-width: 760px;
}

.section-tag {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
}

.section-title {
    margin-bottom: 24px;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #000;
    /*    #dc3545*/
}

.section-description {
    max-width: 650px;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
}



/* ===================================
ABOUT ICON
=================================== */

.section-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--bs-gray-100);
    color: var(--bs-black);
    font-size: 1.2rem;
}

/* ===================================
ABOUT STATS
=================================== */

.about-stats {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-border);
}


.about-stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    padding-right: 50px;
}


    .about-stat-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 1px;
        height: 60px;
        background: var(--color-border);
    }


.about-stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 166, 178, 0.10);
    color: var(--bs-cyan);
    font-size: 1.2rem;
}


.about-stat-number {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-black);
}


.about-stat-label {
    margin: 6px 0 0;
    font-size: 0.9rem;
    color: var(--color-text);
}


/* ===================================
TECHNOLOGIES
=================================== */

.technologies-section {
    margin-top: 45px;
}


    .technologies-section .section-tag {
        margin-bottom: 25px;
    }


.technology-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}


.technology-card {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 58px;
    padding: 0 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-white);
    transition: var(--transition);
}


    .technology-card img {
        width: 28px;
        height: 28px;
        object-fit: contain;
    }


    .technology-card span {
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--color-black);
    }


/*    .technology-card:hover {
        border-color: var(--bs-cyan);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,166,178,0.12);
    }*/


/* ===================================
WORK
=================================== */

.work-section {
    padding: 90px 0;
}

.work-header {
    max-width: 700px;
    margin-bottom: 60px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 260px);
    justify-content: center;
    gap: 24px;
}

.work-card {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
    position: relative;
}

    .work-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--color-black);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s ease;
    }


.work-card-link {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 280px;
    padding: 24px;
    color: inherit;
    text-decoration: none;
}

.work-logo {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

    .work-logo img {
        max-width: 90px;
        max-height: 80px;
        width: auto;
        height: auto;
        object-fit: contain;
        transition: transform 0.35s ease;
    }


.work-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.work-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    letter-spacing: -0.02em;
    color: var(--color-black);
}

.work-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid var(--color-border);
}


.work-website {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-black);
    transition: color 0.35s ease;
}


/* ===================================
SERVICES
=================================== */

.services-section {
    padding: 90px 0;
}

.services-header {
    max-width: 700px;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 40px 32px;
    background: var(--color-white);
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
}

    .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--color-black);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s ease;
    }

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 32px;
    background: var(--bs-gray-100);
    border-radius: 18px;
    transition: transform 0.35s ease;
}

.service-title {
    margin-bottom: 16px;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--color-black);
}

.service-description {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--color-text);
}

.service-card {
    text-align: center;
}

/* ===================================
WHO WE HELP
=================================== */

.who-help-section {
    padding: 90px 0;
}

.who-help-header {
    max-width: 700px;
    margin-bottom: 60px;
}

.who-help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.who-help-card {
    display: flex;
    flex-direction: column;
    padding: 36px 28px;
    background: var(--color-white);
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    transition: all 0.35s ease;
}

.who-help-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: var(--bs-gray-100);
    border-radius: 18px;
    font-size: 1.5rem;
    color: var(--bs-cyan);
}

.who-help-card {
    text-align: center;
}

.who-help-title {
    margin-bottom: 14px;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-black);
}

.who-help-description {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text);
}


/* ===================================
PROCESS
=================================== */

.process-section {
    padding: 90px 0;
}

.process-header {
    max-width: 700px;
    margin-bottom: 70px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.process-item {
    position: relative;
    padding-right: 20px;
}


.process-number {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    color: rgba(15, 23, 42, 0.18);
    transition: all 0.5s ease;
}

.process-title {
    margin-bottom: 16px;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-black);
}

.process-description {
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
}

/* ===================================
PROCESS CARD DESIGN
=================================== */

.process-card {
    position: relative;
    padding: 32px 28px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    overflow: hidden;
    opacity: 0.45;
    transform: translateY(0);
    transition: all 0.5s ease;
}


    /* Two color top border */

    .process-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient( to right, var(--color-black) 70%, var(--bs-cyan) 30% );
    }


    /* Active card */

    .process-card.active {
        opacity: 1;
        transform: translateY(-10px);
        box-shadow: 0 3px 8px rgba(0,184,217,0.10);
    }


/* Process icon */

.process-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 1.5rem;
    transition: all 0.5s ease;
}


.process-card.active .process-icon {
    background: rgba(0, 184, 217, 0.12);
    color: #14B8A6;
    /*    box-shadow: 0 8px 20px rgba(0,184,217,0.18);*/
}

.process-card.active .process-number {
    color: #14B8A6;
    transform: scale(1.05);
}





/* ===================================
CONTACT
=================================== */

.contact-section {
    padding: 80px 0 100px;
}

.contact-header {
    max-width: 700px;
    margin-bottom: 70px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
}

.contact-info p {
    margin-bottom: 40px;
    line-height: 1.8;
    color: var(--color-text);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .contact-list li {
        margin-bottom: 28px;
        font-size: 1rem;
        line-height: 1.8;
        color: var(--color-text);
    }

    .contact-list strong {
        display: block;
        margin-bottom: 6px;
        color: var(--color-black);
    }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 22px;
    font-family: inherit;
    font-size: 1rem;
    border: 1px solid #dddddd;
    border-radius: 14px;
    background: #ffffff;
    color: var(--color-black);
    outline: none;
    transition: all 0.3s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
}

    .form-group input:focus,
    .form-group textarea:focus {
        border-color: var(--color-black);
    }


.form-error {
    margin-bottom: 20px;
    color: #dc3545;
    font-size: 0.95rem;
    font-style: italic;
}

/* Terms & Conditions */

.terms-checkbox {
    margin-top: -4px;
}

    .terms-checkbox label {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0;
        font-size: 0.9rem;
        line-height: 1.5;
        color: var(--color-text);
        cursor: pointer;
    }

    .terms-checkbox input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin: 0;
        flex-shrink: 0;
        accent-color: var(--bs-cyan);
        cursor: pointer;
    }

    .terms-checkbox a {
        color: var(--color-black);
        text-decoration: underline;
        text-underline-offset: 2px;
    }

        .terms-checkbox a:hover {
            color: var(--bs-cyan);
        }

/* ===================================
FOOTER
=================================== */

.footer {
    background-color: #000;
    padding: 70px 0 30px;
    border-top: 1px solid var(--color-border);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Footer Brand */

.footer-logo {
    width: 80px;
    height: auto;
    margin-bottom: 24px;
}

.footer-name {
    margin-bottom: 8px;
    font-size: 1.8rem;
    color: #fff;
}

.footer-role {
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--color-text);
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
    /*    border: 1px solid var(--color-border);
    border-radius: 50%;*/
    color: #0A66C2;
    font-size: 1.2rem;
}

.footer-description {
    max-width: 320px;
    margin: 0;
    line-height: 1.7;
    color: var(--bs-gray-500);
}

/* Footer Contact */

.footer-contact {
    border-left: 1px solid var(--color-border);
    padding-left: 60px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

    .footer-contact-item i {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border: 1px solid var(--bs-cyan);
        border-radius: 50%;
        color: var(--bs-cyan);
        font-size: 1.1rem;
    }

    .footer-contact-item strong {
        display: block;
        margin-bottom: 4px;
        color: var(--bs-cyan);
    }

    .footer-contact-item a {
        color: var(--bs-gray-500);
    }

/* ===================================
FOOTER BROCHURE BUTTON
=================================== */

.footer-brochure-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: fit-content;
    height: 52px;
    padding: 0 28px;
    margin-top: 10px;
    border: 1px solid rgba(0, 166, 178, 0.8);
    border-radius: 14px;
    color: #000;
    font-size: 0.95rem;
    font-weight: 600;
    /*    transition: var(--transition);*/
    background: linear-gradient(135deg, #00d1dc 0%, #008c99 100%);
    box-shadow: 0 10px 30px rgba(0, 166, 178, 0.25);
}


    .footer-brochure-btn i {
        font-size: 1.1rem;
    }


    .footer-brochure-btn:hover {
        background: linear-gradient(135deg, #00e6f2 0%, #00a6b2 100%);
        color: #000;
        box-shadow: 0 15px 35px rgba(0, 166, 178, 0.4);
        /*        transform: translateY(-2px);*/
    }

/* Footer Bottom */

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .footer-bottom p {
        margin: 0;
        color: var(--color-text);
        font-size: 0.9rem;
    }

    .footer-bottom a {
        color: var(--color-text);
        font-size: 0.9rem;
        text-decoration: none;
    }

/*    .footer-social i {
        color: #0A66C2;
    }*/

/*.footer-social:hover {*/
/*        background: var(--color-black);*/
/*color: #ffc107;*/
/*        border-color: var(--color-black);*/
/*}*/

/* ===================================
SUCCESS MESSAGE POPUP
=================================== */

.success-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}


.success-popup {
    width: 350px;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}


    .success-popup i {
        font-size: 45px;
        color: #198754;
        margin-bottom: 15px;
    }


    .success-popup p {
        margin: 0;
        color: #111111;
        font-size: 1rem;
        font-weight: 600;
    }

/* ===================================
SUCCESS ICON
=================================== */

.success-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #198754;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
}

/* Maintenance Page */

.maintenance-container {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

    .maintenance-container h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .maintenance-container p {
        font-size: 16px;
        margin-bottom: 10px;
    }

/* =========================================================
   PRIVACY POLICY PAGE
   ========================================================= */

.privacy-page section {
    padding: 0;
}

.privacy-page {
    min-height: 100vh;
    background: #ffffff;
    padding: 80px 20px 60px;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-header {
    margin-bottom: 42px;
}

    .privacy-header h1 {
        margin: 0 0 10px;
        font-size: 42px;
        font-weight: 600;
        line-height: 1.2;
        color: var(--color-black);
    }

    .privacy-header p {
        margin: 0;
        font-size: 14px;
        color: var(--color-text);
    }

.privacy-section {
    margin-bottom: 32px;
}

    .privacy-section h2 {
        margin: 0 0 12px;
        font-size: 21px;
        font-weight: 600;
        line-height: 1.4;
        color: var(--color-black);
    }

    .privacy-section p {
        margin: 0 0 12px;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.75;
        color: var(--color-text);
    }

        .privacy-section p:last-child {
            margin-bottom: 0;
        }

    .privacy-section ul {
        margin: 0 0 12px;
        padding-left: 20px;
    }

    .privacy-section li {
        margin-bottom: 5px;
        font-size: 15px;
        line-height: 1.7;
        color: var(--color-text);
    }

        .privacy-section li:last-child {
            margin-bottom: 0;
        }

    .privacy-section strong {
        font-weight: 600;
        color: var(--color-black);
    }

.privacy-back {
    margin-top: 45px;
    padding-top: 22px;
    border-top: 1px solid var(--color-border);
}

    .privacy-back a {
        font-size: 14px;
        font-weight: 500;
        color: var(--bs-cyan);
        text-decoration: none;
        transition: opacity 0.3s ease;
    }

        .privacy-back a:hover {
            color: var(--bs-cyan);
            opacity: 0.65;
        }

.footer-bottom a + a::before {
    content: "|";
    margin: 0 12px;
}

/* ===================================
RESPONSIVE
=================================== */

/* ===================================
iPad Pro (992px - 1024px)
=================================== */

@media (min-width: 992px) and (max-width: 1024px) {

    /* Global */

    section {
        padding: 90px 0;
    }

    .container,
    .content-container {
        padding: 0 32px;
    }

    /* Hero */

    .hero-section {
        min-height: auto;
    }


    .hero-wrapper {
        justify-content: center;
        gap: 70px;
        align-items: center;
    }

    .hero-content {
        max-width: 560px;
    }

    .hero-image {
        flex: 0 0 340px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .image-placeholder {
        width: 320px;
        height: 420px;
    }

    /* Work */

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* Services */

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* Process */

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

    /* Contact */

    .contact-content {
        grid-template-columns: 340px 1fr;
        gap: 48px;
        align-items: start;
    }

    /* -------------------------------
Footer
-------------------------------- */

    .footer {
        padding: 65px 0 30px;
    }


    .footer-container {
        gap: 45px;
    }


    .footer-contact {
        padding-left: 35px;
    }


    .footer-name {
        font-size: 1.65rem;
    }


    .footer-description {
        max-width: 290px;
    }


    .footer-brochure-btn {
        height: 48px;
        padding: 0 24px;
    }

    .footer-bottom {
        padding-top: 25px;
    }
}

/* ===================================
TABLET @media (min-width: 577px) and (max-width: 991px)
=================================== */

@media (min-width: 577px) and (max-width: 991px) {

    /* -------------------------------
Global
-------------------------------- */

    section {
        padding: 80px 0;
    }

    .container,
    .content-container {
        padding: 0 32px;
    }

    /* -------------------------------
Header
-------------------------------- */

    .site-navbar {
        height: 76px;
    }

    /* -------------------------------
Hero
-------------------------------- */

    .hero-section {
        min-height: auto;
        padding: 80px 0;
    }

    .hero-wrapper {
        flex-direction: column-reverse;
        gap: 60px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        flex: none;
    }

    .image-placeholder {
        width: 340px;
        height: 430px;
    }

    /* -------------------------------
About
-------------------------------- */

    .about-section {
        padding: 80px 0 50px;
    }

    /* -------------------------------
About Stats
-------------------------------- */

    .about-stats {
        gap: 35px;
        margin-top: 40px;
    }

    .about-stat-item {
        padding-right: 35px;
    }


    /* -------------------------------
Technologies
-------------------------------- */

    .technology-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* -------------------------------
Technologies Spacing
-------------------------------- */

    .technologies-section {
        margin-top: 30px;
    }

    /* -------------------------------
Work
-------------------------------- */

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-content: unset;
        gap: 24px;
    }

    /* -------------------------------
Services
-------------------------------- */

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .service-card {
        padding: 32px 28px;
    }

    /* -------------------------------
Who We Help
-------------------------------- */

    .who-help-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .who-help-card {
        padding: 32px 28px;
    }

    /* -------------------------------
Process
-------------------------------- */

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }


    .process-card {
        padding: 30px 24px;
    }


    .process-number {
        top: 16px;
        right: 20px;
        font-size: 3.2rem;
    }

    .process-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* -------------------------------
Contact
-------------------------------- */

    .contact-section {
        padding: 120px 0 80px;
    }

    /* -------------------------------
Footer
-------------------------------- */

    .footer {
        padding: 60px 0 30px;
    }


    .footer-container {
        gap: 35px;
    }


    .footer-logo {
        width: 65px;
    }


    .footer-name {
        font-size: 1.5rem;
    }


    .footer-description {
        max-width: 260px;
    }


    .footer-contact {
        padding-left: 30px;
    }


    .footer-contact-item {
        margin-bottom: 22px;
    }


    .footer-brochure-btn {
        height: 46px;
        padding: 0 22px;
        font-size: 0.85rem;
    }

    .footer-bottom {
        margin-top: 35px;
        padding-top: 15px;
        text-align: center;
    }

    /* =========================================================
   PRIVACY POLICY PAGE - TABLET
   ========================================================= */

    .privacy-page {
        padding: 70px 30px 50px;
    }

    .privacy-container {
        max-width: 850px;
    }

    .privacy-header {
        margin-bottom: 38px;
    }

        .privacy-header h1 {
            font-size: 38px;
        }

    .privacy-section {
        margin-bottom: 30px;
    }

        .privacy-section h2 {
            font-size: 20px;
        }
}

/* ===================================
MOBILE (<=576px)
=================================== */

@media (max-width: 576px) {

    /* -------------------------------
Global
-------------------------------- */

    html {
        font-size: 15px;
    }

    section {
        padding: 70px 0;
        scroll-margin-top: 20px;
    }

    .container {
        padding: 0 20px;
    }

    /* -------------------------------
Header
-------------------------------- */

    .site-navbar {
        height: 70px;
    }

    .site-logo {
        font-size: 1.35rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* -------------------------------
Hero
-------------------------------- */

    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-wrapper {
        flex-direction: column-reverse;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-tag {
        margin-bottom: 16px;
        font-size: .8rem;
    }

    .hero-title {
        margin-bottom: 20px;
        font-size: 2.5rem;
        line-height: 1.15;
    }

    .hero-description {
        margin: 0 auto 32px;
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-actions {
        flex-direction: column;
        gap: 14px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        min-width: 100%;
    }

    .hero-image {
        flex: none;
    }

        .hero-image img {
            width: 320px;
            height: 400px;
        }

    .image-placeholder {
        width: 100%;
        max-width: 280px;
        height: 340px;
    }

    .hero-image-bg {
        width: 360px;
        height: 420px;
    }

        .hero-image-bg::before {
            width: 60px;
            height: 55px;
            top: -40px;
            right: -20px;
        }

        .hero-image-bg::after {
            width: 45px;
            height: 45px;
            bottom: -30px;
            left: -10px;
        }

    /* -------------------------------
About
-------------------------------- */

    .about-section {
        padding: 90px 0 70px;
    }

    .section-tag {
        margin-bottom: 16px;
        font-size: .8rem;
    }

    .section-title {
        margin-bottom: 18px;
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* -------------------------------
About Stats
-------------------------------- */

    .about-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        margin-top: 35px;
    }


    .about-stat-item {
        padding-right: 0;
    }


        .about-stat-item:not(:last-child)::after {
            display: none;
        }


    /* -------------------------------
Technologies
-------------------------------- */

    .technologies-section {
        margin-top: 30px;
    }


    .technology-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* -------------------------------
Work
-------------------------------- */

    .work-section {
        padding: 70px 0;
    }

    .work-header {
        margin-bottom: 40px;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .work-card-link {
        min-height: 240px;
        padding: 22px;
    }

    .work-logo {
        margin-bottom: 24px;
    }

    .work-title {
        font-size: 1.15rem;
    }

    .work-footer {
        margin-top: 24px;
    }

    /* -------------------------------
Services
-------------------------------- */

    .services-section {
        padding: 70px 0;
    }

    .services-header {
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 24px;
    }

    .service-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
    }

    .service-title {
        font-size: 1.2rem;
    }

    /* -------------------------------
Who We Help
-------------------------------- */

    .who-help-section {
        padding: 70px 0;
    }

    .who-help-header {
        margin-bottom: 40px;
    }

    .who-help-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .who-help-card {
        padding: 30px 24px;
    }

    .who-help-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 20px;
    }

    .who-help-title {
        font-size: 1.15rem;
    }

    .who-help-description {
        font-size: 0.95rem;
    }

    /* -------------------------------
Process
-------------------------------- */

    .process-section {
        padding: 70px 0;
    }


    .process-header {
        margin-bottom: 40px;
    }


    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }


    .process-card {
        width: 100%;
        padding: 28px 22px;
    }


    .process-item {
        text-align: left;
    }


    .process-number {
        top: 14px;
        right: 18px;
        font-size: 2.8rem;
    }


    .process-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 20px;
    }


    .process-title {
        font-size: 1.15rem;
    }

    .process-card.active {
        transform: translateY(-5px);
    }

    /* -------------------------------
Contact
-------------------------------- */

    .contact-section {
        padding: 70px 0;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h3 {
        margin-bottom: 16px;
        font-size: 1.6rem;
    }

    .contact-info p {
        margin-bottom: 30px;
    }

    .contact-list li {
        margin-bottom: 20px;
    }

    .contact-form {
        gap: 18px;
    }

    .form-group input,
    .form-group textarea {
        padding: 16px 18px;
        font-size: .95rem;
    }

    .form-group textarea {
        min-height: 160px;
    }

    /* -------------------------------
Footer
-------------------------------- */

    /* -------------------------------
Footer
-------------------------------- */

    .footer {
        padding: 40px 0 25px;
    }


    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }


    /* Brand */

    .footer-logo {
        width: 60px;
        margin: 0 auto 15px;
    }


    .footer-name {
        font-size: 1.35rem;
    }


    .footer-role {
        margin-bottom: 14px;
    }


    .footer-social {
        margin: 0 auto 18px;
    }


    .footer-description {
        max-width: 260px;
        margin: 0 auto;
    }


    /* Contact */

    .footer-contact {
        border-left: none;
        border-top: 1px solid var(--color-border);
        padding-left: 0;
        padding-top: 25px;
    }


    .footer-contact-item {
        justify-content: flex-start;
        gap: 15px;
        margin-bottom: 20px;
        text-align: left;
    }


        .footer-contact-item i {
            flex-shrink: 0;
        }


    .footer-brochure-btn {
        width: 230px;
        margin: 10px auto 0;
        height: 48px;
        padding: 0 22px;
        white-space: nowrap;
        gap: 12px;
    }


        .footer-brochure-btn span {
            white-space: nowrap;
        }


    /* Bottom */

    .footer-bottom {
        margin-top: 35px;
        padding-top: 15px;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }

        .footer-bottom p {
            white-space: nowrap;
        }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        white-space: normal;
    }

        .footer-links a + a::before {
            content: none;
            margin: 0;
        }

    /* Privacy Policy - Mobile */
    .privacy-page {
        padding: 50px 20px 40px;
    }

    .privacy-container {
        max-width: 100%;
    }

    .privacy-header {
        margin-bottom: 30px;
    }

        .privacy-header h1 {
            font-size: 32px;
        }

    .privacy-section {
        margin-bottom: 26px;
    }

        .privacy-section h2 {
            font-size: 18px;
        }

        .privacy-section p,
        .privacy-section li {
            font-size: 15px;
            line-height: 1.7;
        }

    .privacy-back {
        margin-top: 35px;
    }
}
