/* =========================================================
   SYSTÈMES & TECHNOLOGIE
   Corporate Design System
========================================================= */


/* =========================================================
   1. VARIABLES
========================================================= */

:root {
    --st-primary: #1769ff;
    --st-primary-dark: #0b4ed0;
    --st-primary-soft: rgba(23, 105, 255, 0.10);

    --st-secondary: #00c2d7;
    --st-secondary-soft: rgba(0, 194, 215, 0.10);

    --st-dark: #0b1220;
    --st-dark-soft: #111c33;

    --st-text: #172033;
    --st-muted: #64748b;

    --st-border: #e3e9f2;

    --st-light: #f7f9fc;
    --st-light-blue: #f2f7ff;

    --st-white: #ffffff;

    --st-success: #16a34a;
    --st-warning: #f59e0b;
    --st-danger: #dc2626;

    --st-radius-sm: 10px;
    --st-radius-md: 16px;
    --st-radius-lg: 22px;
    --st-radius-xl: 30px;

    --st-shadow-sm:
        0 8px 24px rgba(15, 23, 42, 0.06);

    --st-shadow-md:
        0 20px 50px rgba(15, 23, 42, 0.10);

    --st-shadow-lg:
        0 32px 80px rgba(15, 23, 42, 0.16);

    --st-transition:
        all 0.25s ease;
}


/* =========================================================
   2. GLOBAL
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    color: var(--st-text);
    background-color: var(--st-white);

    font-family:
        "Inter",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: 1rem;
    line-height: 1.7;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    overflow: hidden;
}

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

a {
    color: var(--st-primary);
    text-decoration: none;
    transition: var(--st-transition);
}

a:hover {
    color: var(--st-primary-dark);
}

button,
input,
textarea,
select {
    font: inherit;
}

::selection {
    color: var(--st-white);
    background: var(--st-primary);
}


/* =========================================================
   3. TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;

    color: var(--st-dark);

    font-weight: 700;
    line-height: 1.2;
}

h1 {
    letter-spacing: -0.045em;
}

h2 {
    letter-spacing: -0.035em;
}

h3 {
    letter-spacing: -0.025em;
}

p {
    margin-bottom: 1rem;
}

.text-muted-custom {
    color: var(--st-muted) !important;
}


/* =========================================================
   4. SECTIONS
========================================================= */

.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 70px 0;
}

.section-padding-lg {
    padding: 130px 0;
}

.section-soft,
.bg-soft {
    background: var(--st-light);
}

.bg-blue-soft {
    background: var(--st-light-blue);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;

    color: var(--st-primary);

    font-size: 0.76rem;
    font-weight: 800;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-label::before {
    content: "";

    width: 28px;
    height: 2px;

    flex-shrink: 0;

    border-radius: 999px;

    background: var(--st-primary);
}

.section-title {
    max-width: 850px;

    margin-top: 0.9rem;

    font-size: clamp(2rem, 4vw, 3.15rem);
}

.section-description {
    max-width: 700px;

    color: var(--st-muted);

    font-size: 1.02rem;
    line-height: 1.8;
}


/* =========================================================
   5. BUTTONS
========================================================= */

.btn {
    border-radius: 11px;

    font-weight: 600;

    padding: 0.78rem 1.35rem;

    transition: var(--st-transition);
}

.btn-lg {
    padding: 0.95rem 1.55rem;

    font-size: 0.98rem;
}

.btn-primary {
    border-color: var(--st-primary);
    background: var(--st-primary);

    box-shadow:
        0 8px 22px rgba(23, 105, 255, 0.20);
}

.btn-primary:hover,
.btn-primary:focus {
    border-color: var(--st-primary-dark);
    background: var(--st-primary-dark);

    transform: translateY(-2px);

    box-shadow:
        0 14px 32px rgba(23, 105, 255, 0.28);
}

.btn-outline-dark {
    border-color: #cbd5e1;

    color: var(--st-dark);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
    border-color: var(--st-dark);

    background: var(--st-dark);
    color: var(--st-white);

    transform: translateY(-2px);
}

.btn-light:hover {
    transform: translateY(-2px);
}


/* =========================================================
   6. NAVBAR
========================================================= */

.navbar {
    min-height: 76px;

    padding-top: 0.85rem;
    padding-bottom: 0.85rem;

    background:
        rgba(11, 18, 32, 0.98) !important;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.06);
}

.navbar-brand {
    color: var(--st-white) !important;

    font-size: 1.22rem;
    font-weight: 800;

    letter-spacing: -0.025em;
}

.navbar-brand span {
    color: var(--st-secondary) !important;
}

.navbar-nav .nav-link {
    position: relative;

    margin: 0 0.2rem;

    padding-left: 0.7rem !important;
    padding-right: 0.7rem !important;

    color:
        rgba(255, 255, 255, 0.70) !important;

    font-size: 0.9rem;
    font-weight: 500;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--st-white) !important;
}

.navbar-nav .nav-link::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 0;
    height: 2px;

    transform: translateX(-50%);

    background: var(--st-secondary);

    transition: width 0.25s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 50%;
}

.navbar-toggler {
    border-color:
        rgba(255, 255, 255, 0.18);
}

.navbar-toggler:focus {
    box-shadow: none;
}


/* =========================================================
   7. HERO
========================================================= */

.hero-section {
    position: relative;

    padding: 60px 0 115px;

    background:
        radial-gradient(
            circle at 90% 18%,
            rgba(23, 105, 255, 0.15),
            transparent 31%
        ),
        radial-gradient(
            circle at 70% 80%,
            rgba(0, 194, 215, 0.08),
            transparent 29%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7faff 100%
        );
}

.hero-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(23, 105, 255, 0.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(23, 105, 255, 0.03) 1px,
            transparent 1px
        );

    background-size: 42px 42px;

    pointer-events: none;
}

.hero-section .container {
    position: relative;

    z-index: 1;
}

.min-vh-75 {
    min-height: 72vh;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;

    padding: 0.52rem 0.9rem;

    color: var(--st-primary);

    background: var(--st-primary-soft);

    border:
        1px solid rgba(23, 105, 255, 0.12);

    border-radius: 999px;

    font-size: 0.77rem;
    font-weight: 700;
}

.hero-label::before {
    content: "";

    width: 8px;
    height: 8px;

    flex-shrink: 0;

    background: var(--st-secondary);

    border-radius: 50%;

    box-shadow:
        0 0 0 5px rgba(0, 194, 215, 0.12);
}

.hero-title {
    max-width: 820px;

    margin-top: 1.45rem;

    font-size:
        clamp(2.6rem, 5vw, 4.9rem);

    line-height: 1.04;

    letter-spacing: -0.055em;
}

.hero-title span {
    color: var(--st-primary);
}

.hero-description {
    max-width: 710px;

    margin-top: 1.7rem;

    color: var(--st-muted);

    font-size: 1.08rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;

    margin-top: 2.2rem;
}


/* =========================================================
   8. HERO TECHNOLOGY CARD
========================================================= */

.hero-card,
.tech-panel {
    position: relative;

    overflow: hidden;

    min-height: 300px;

    padding: 2.35rem;

    color: var(--st-white);

    background:
        linear-gradient(
            145deg,
            #0b1220 0%,
            #12203b 100%
        );

    border:
        1px solid rgba(255, 255, 255, 0.06);

    border-radius: var(--st-radius-lg);

    box-shadow: var(--st-shadow-lg);
}

.hero-card::before,
.tech-panel::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -100px;
    top: -110px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(23, 105, 255, 0.42),
            transparent 68%
        );
}

.hero-card::after,
.tech-panel::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    left: -100px;
    bottom: -130px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 194, 215, 0.22),
            transparent 70%
        );
}

.tech-content {
    position: relative;

    z-index: 2;
}

.hero-card h3,
.hero-card h4,
.tech-panel h3,
.tech-panel h4 {
    position: relative;

    z-index: 2;

    color: var(--st-white);
}

.hero-card p,
.tech-panel p {
    position: relative;

    z-index: 2;

    color: #aebacf;

    line-height: 1.75;
}

.hero-icon,
.tech-icon {
    position: relative;

    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin-bottom: 1.5rem;

    color: var(--st-white);

    background:
        linear-gradient(
            135deg,
            var(--st-primary),
            var(--st-secondary)
        );

    border-radius: 15px;

    font-size: 1.55rem;

    box-shadow:
        0 12px 30px rgba(23, 105, 255, 0.28);
}

.technology-list,
.tech-tags {
    position: relative;

    z-index: 2;

    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;

    margin-top: 1.5rem;
}

.technology-list span,
.tech-tags span {
    padding: 0.42rem 0.72rem;

    color: #dce5f3;

    background:
        rgba(255, 255, 255, 0.07);

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 999px;

    font-size: 0.75rem;
    font-weight: 600;
}


/* =========================================================
   9. STATISTICS
========================================================= */

.stats-section {
    position: relative;

    z-index: 5;

    margin-top: -28px;
}

.stats-wrapper,
.stats-box {
    overflow: hidden;

    background: var(--st-white);

    border:
        1px solid var(--st-border);

    border-radius: var(--st-radius-lg);

    box-shadow: var(--st-shadow-md);
}

.stat-item {
    position: relative;

    padding: 1.75rem 1rem;

    text-align: center;
}

.stat-number {
    color: var(--st-primary);

    font-size: 1.8rem;
    font-weight: 800;

    line-height: 1;
}

.stat-label {
    margin-top: 0.55rem;

    color: var(--st-muted);

    font-size: 0.82rem;
}


/* =========================================================
   10. SOLUTIONS
========================================================= */

.solution-card {
    position: relative;

    overflow: hidden;

    height: 100%;

    padding: 2rem;

    background: var(--st-white);

    border:
        1px solid var(--st-border);

    border-radius: var(--st-radius-lg);

    transition: var(--st-transition);
}

.solution-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    opacity: 0;

    background:
        linear-gradient(
            90deg,
            var(--st-primary),
            var(--st-secondary)
        );

    transition: opacity 0.25s ease;
}

.solution-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(23, 105, 255, 0.20);

    box-shadow: var(--st-shadow-md);
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 56px;
    height: 56px;

    margin-bottom: 1.4rem;

    color: var(--st-primary);

    background: var(--st-primary-soft);

    border-radius: 15px;

    font-size: 1.5rem;
}

.solution-card h4 {
    margin-bottom: 0.9rem;

    font-size: 1.2rem;
}

.solution-card p {
    min-height: 120px;

    color: var(--st-muted);

    font-size: 0.92rem;
    line-height: 1.75;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;

    margin-top: 0.4rem;

    color: var(--st-primary);

    font-size: 0.87rem;
    font-weight: 700;
}

.solution-link i {
    transition:
        transform 0.25s ease;
}

.solution-link:hover i {
    transform: translateX(4px);
}


/* =========================================================
   11. EXPERTISE
========================================================= */

.expertise-item,
.expertise-card {
    height: 100%;

    padding: 1.7rem;

    background: var(--st-white);

    border:
        1px solid var(--st-border);

    border-radius: var(--st-radius-md);

    transition: var(--st-transition);
}

.expertise-item:hover,
.expertise-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(23, 105, 255, 0.18);

    box-shadow: var(--st-shadow-sm);
}

.expertise-item > i,
.expertise-card > i,
.expertise-icon {
    color: var(--st-primary);

    font-size: 1.8rem;
}

.expertise-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    background: var(--st-primary-soft);

    border-radius: 14px;
}

.expertise-item h5,
.expertise-card h5 {
    margin-top: 1rem;

    font-size: 1rem;
}

.expertise-item p,
.expertise-card p {
    margin-bottom: 0;

    color: var(--st-muted);

    font-size: 0.9rem;
}


/* =========================================================
   12. SERVICES
========================================================= */

.service-card {
    height: 100%;

    padding: 2rem;

    background: var(--st-white);

    border:
        1px solid var(--st-border);

    border-radius: var(--st-radius-lg);

    transition: var(--st-transition);
}

.service-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--st-shadow-md);
}

.service-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 42px;
    height: 42px;

    padding: 0 0.8rem;

    margin-bottom: 1.2rem;

    color: var(--st-primary);

    background: var(--st-primary-soft);

    border-radius: 12px;

    font-size: 0.8rem;
    font-weight: 800;
}

.service-card h4 {
    font-size: 1.15rem;
}

.service-card p {
    color: var(--st-muted);

    font-size: 0.91rem;
}


/* =========================================================
   13. PROCESS / METHODOLOGY
========================================================= */

.process-step,
.process-card {
    position: relative;

    height: 100%;

    padding: 1.6rem;

    background: var(--st-white);

    border:
        1px solid var(--st-border);

    border-radius: var(--st-radius-md);

    transition: var(--st-transition);
}

.process-step:hover,
.process-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--st-shadow-sm);
}

.process-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    margin-bottom: 1rem;

    color: var(--st-white);

    background:
        linear-gradient(
            135deg,
            var(--st-primary),
            var(--st-secondary)
        );

    border-radius: 14px;
}

.process-step p,
.process-card p {
    margin-bottom: 0;

    color: var(--st-muted);

    font-size: 0.87rem;
}


/* =========================================================
   14. PROJECTS
========================================================= */

.project-card {
    position: relative;

    overflow: hidden;

    height: 100%;

    background: var(--st-white);

    border:
        1px solid var(--st-border);

    border-radius: var(--st-radius-lg);

    transition: var(--st-transition);
}

.project-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--st-shadow-md);
}

.project-card img {
    width: 100%;
    height: 230px;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}

.project-card:hover img {
    transform: scale(1.04);
}

.project-card-body {
    padding: 1.6rem;
}

.project-card p {
    color: var(--st-muted);
}


/* =========================================================
   15. FEATURE LIST
========================================================= */

.feature-list {
    margin: 0;
    padding: 0;

    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;

    margin-bottom: 1.3rem;
}

.feature-list i {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 32px;
    height: 32px;

    color: var(--st-primary);

    background: var(--st-primary-soft);

    border-radius: 50%;
}


/* =========================================================
   16. CTA
========================================================= */

.cta-section {
    position: relative;

    overflow: hidden;

    padding: 95px 0;

    color: var(--st-white);

    background:
        linear-gradient(
            135deg,
            #1769ff 0%,
            #0b4ed0 55%,
            #073c9e 100%
        );
}

.cta-section::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    right: -180px;
    top: -180px;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.16),
            transparent 70%
        );
}

.cta-section::after {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    left: -140px;
    bottom: -180px;

    background:
        radial-gradient(
            circle,
            rgba(0, 194, 215, 0.28),
            transparent 70%
        );
}

.cta-section .container {
    position: relative;

    z-index: 2;
}

.cta-section h2,
.cta-section h3 {
    color: var(--st-white);
}

.cta-section p {
    max-width: 760px;

    margin-left: auto;
    margin-right: auto;

    color:
        rgba(255, 255, 255, 0.84);
}


/* =========================================================
   17. FORMS
========================================================= */

.form-label {
    color: var(--st-dark);

    font-weight: 600;
}

.form-control,
.form-select {
    min-height: 50px;

    padding: 0.75rem 0.95rem;

    border:
        1px solid #dce3ec;

    border-radius: 12px;

    transition: var(--st-transition);
}

textarea.form-control {
    min-height: 140px;
}

.form-control:focus,
.form-select:focus {
    border-color:
        rgba(23, 105, 255, 0.55);

    box-shadow:
        0 0 0 0.2rem
        rgba(23, 105, 255, 0.10);
}


/* =========================================================
   18. ALERTS
========================================================= */

.alert {
    border: none;

    border-radius: 14px;

    box-shadow: var(--st-shadow-sm);
}


/* =========================================================
   19. FOOTER
========================================================= */

.site-footer,
footer.bg-dark {
    position: relative;

    background:
        linear-gradient(
            180deg,
            #0b1220 0%,
            #080d17 100%
        ) !important;
}

.site-footer h4,
.site-footer h5,
.site-footer h6,
footer.bg-dark h4,
footer.bg-dark h5,
footer.bg-dark h6 {
    color: var(--st-white);
}

.site-footer p,
footer.bg-dark p {
    color:
        rgba(255, 255, 255, 0.55) !important;
}

.footer-links {
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a,
footer.bg-dark a {
    color:
        rgba(255, 255, 255, 0.56) !important;
}

.footer-links a:hover,
footer.bg-dark a:hover {
    color: var(--st-white) !important;
}

footer hr {
    opacity: 0.12;
}


/* =========================================================
   20. GENERIC CARDS
========================================================= */

.st-card {
    background: var(--st-white);

    border:
        1px solid var(--st-border);

    border-radius: var(--st-radius-lg);

    box-shadow: var(--st-shadow-sm);
}

.st-card-hover {
    transition: var(--st-transition);
}

.st-card-hover:hover {
    transform: translateY(-6px);

    box-shadow: var(--st-shadow-md);
}


/* =========================================================
   21. PAGE HEADER
========================================================= */

.page-header {
    position: relative;

    padding: 95px 0;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(23, 105, 255, 0.13),
            transparent 30%
        ),
        var(--st-light-blue);
}

.page-header h1 {
    font-size:
        clamp(2.4rem, 4vw, 4.2rem);
}

.page-header p {
    max-width: 720px;

    color: var(--st-muted);

    font-size: 1.1rem;
}


/* =========================================================
   22. UTILITIES
========================================================= */

.text-primary-custom {
    color: var(--st-primary) !important;
}

.bg-primary-soft {
    background:
        var(--st-primary-soft) !important;
}

.rounded-custom {
    border-radius:
        var(--st-radius-lg) !important;
}

.shadow-custom {
    box-shadow:
        var(--st-shadow-md) !important;
}


/* =========================================================
   23. RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {

    .hero-title {
        font-size: clamp(2.7rem, 5vw, 4rem);
    }

}


@media (max-width: 991.98px) {

    .section-padding {
        padding: 75px 0;
    }

    .section-padding-lg {
        padding: 90px 0;
    }

    .min-vh-75 {
        min-height: auto;
    }

    .hero-section {
        padding-top: 55px;
        padding-bottom: 80px;
    }

    .hero-card,
    .tech-panel {
        min-height: auto;

        margin-top: 1rem;
    }

    .stats-section {
        margin-top: 0;
    }

    .navbar-collapse {
        padding-top: 1rem;
    }

    .navbar-nav .nav-link {
        margin: 0;

        padding-top: 0.65rem !important;
        padding-bottom: 0.65rem !important;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

}


@media (max-width: 767.98px) {

    .section-padding {
        padding: 60px 0;
    }

    .hero-section {
        padding: 45px 0 65px;
    }

    .hero-title {
        font-size: 2.65rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-card,
    .tech-panel {
        padding: 1.7rem;
    }

    .solution-card,
    .service-card,
    .expertise-item,
    .expertise-card {
        padding: 1.5rem;
    }

    .solution-card p {
        min-height: auto;
    }

    .stat-item {
        padding: 1.35rem 0.75rem;
    }

    .cta-section {
        padding: 70px 0;
    }

}


@media (max-width: 575.98px) {

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .navbar-brand {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-card,
    .tech-panel {
        border-radius: 19px;
    }

}


/* =========================================================
   24. SOLUTIONS PAGE
========================================================= */

/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */

.solutions-hero {
    position: relative;
    overflow: hidden;

    padding: 100px 0 90px;

    background:
        radial-gradient(
            circle at 88% 20%,
            rgba(37, 99, 235, 0.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #eef5ff 100%
        );
}

.solutions-hero::before {
    content: "";

    position: absolute;
    top: -220px;
    right: -150px;

    width: 480px;
    height: 480px;

    border-radius: 50%;

    background: rgba(37, 99, 235, 0.06);

    pointer-events: none;
}

.solutions-hero .container {
    position: relative;
    z-index: 2;
}

.section-eyebrow {
    display: inline-block;

    margin-bottom: 1rem;

    color: var(--st-primary, #2563eb);

    font-size: 0.78rem;
    font-weight: 800;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.solutions-hero-title {
    max-width: 920px;

    margin: 0 0 1.5rem;

    color: #07152b;

    font-size: clamp(2.7rem, 5vw, 4.7rem);
    font-weight: 800;
    line-height: 1.05;

    letter-spacing: -0.045em;
}

.solutions-hero-text {
    max-width: 720px;

    margin: 0;

    color: #64748b;

    font-size: 1.12rem;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   HERO INFO CARD
--------------------------------------------------------- */

.solutions-hero-visual {
    display: flex;
    align-items: center;

    gap: 1.15rem;

    padding: 1.5rem;

    background: rgba(255, 255, 255, 0.88);

    border: 1px solid rgba(37, 99, 235, 0.12);

    border-radius: 22px;

    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.10);

    backdrop-filter: blur(14px);
}

.solutions-hero-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 64px;

    width: 64px;
    height: 64px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #0b53ce
        );

    color: #ffffff;

    font-size: 1.65rem;

    box-shadow:
        0 12px 25px rgba(37, 99, 235, 0.25);
}

.solutions-hero-visual strong {
    display: block;

    margin-bottom: 0.3rem;

    color: #0f172a;

    font-size: 1rem;
    font-weight: 750;
}

.solutions-hero-visual span {
    display: block;

    color: #64748b;

    font-size: 0.9rem;
    line-height: 1.5;
}


/* =========================================================
   SOLUTIONS CATALOG
========================================================= */

.solutions-catalog {
    padding: 90px 0;

    background: #ffffff;
}

.solutions-catalog .section-title {
    max-width: 820px;

    margin-bottom: 0;

    color: #07152b;

    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.12;

    letter-spacing: -0.035em;
}


/* ---------------------------------------------------------
   PRODUCT CARD
--------------------------------------------------------- */

.solution-product-card {
    display: flex;
    flex-direction: column;

    height: 100%;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e4eaf2;

    border-radius: 24px;

    box-shadow:
        0 8px 25px rgba(15, 23, 42, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.solution-product-card:hover {
    transform: translateY(-8px);

    border-color: rgba(37, 99, 235, 0.30);

    box-shadow:
        0 20px 45px rgba(15, 23, 42, 0.12);
}


/* ---------------------------------------------------------
   PRODUCT VISUAL
--------------------------------------------------------- */

.solution-product-cover,
.solution-product-image {
    position: relative;

    width: 100%;
    height: 190px;

    overflow: hidden;
}

.solution-product-cover {
    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(255, 255, 255, 0.20),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #2563eb 0%,
            #0a3d91 100%
        );

    color: #ffffff;
}

.solution-product-cover::after {
    content: "";

    position: absolute;
    right: -45px;
    bottom: -75px;

    width: 180px;
    height: 180px;

    border: 30px solid rgba(255, 255, 255, 0.07);

    border-radius: 50%;
}

.solution-product-cover i {
    position: relative;
    z-index: 2;

    font-size: 3.8rem;

    line-height: 1;
}

.solution-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.solution-product-card:hover
.solution-product-image img {
    transform: scale(1.06);
}


/* ---------------------------------------------------------
   PRODUCT BODY
--------------------------------------------------------- */

.solution-product-body {
    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 1.8rem;
}

.solution-product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    flex-wrap: wrap;

    gap: 0.55rem;

    margin-bottom: 1.15rem;
}


/* ---------------------------------------------------------
   BADGES
--------------------------------------------------------- */

.solution-category,
.solution-status {
    display: inline-flex;
    align-items: center;

    min-height: 28px;

    padding: 0.35rem 0.68rem;

    border-radius: 999px;

    font-size: 0.72rem;
    font-weight: 750;

    line-height: 1;
}

.solution-category {
    background: #eef4ff;

    color: #175cd3;
}

.solution-status {
    background: #f1f5f9;

    color: #475569;
}


/* ---------------------------------------------------------
   TITLE & DESCRIPTION
--------------------------------------------------------- */

.solution-product-title {
    margin: 0 0 0.8rem;

    color: #07152b;

    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: -0.025em;
}

.solution-product-description {
    flex: 1;

    margin: 0 0 1.5rem;

    color: #64748b;

    font-size: 0.96rem;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */

.solution-product-footer {
    margin-top: auto;

    padding-top: 1.15rem;

    border-top: 1px solid #edf0f5;
}

.solution-product-link {
    display: inline-flex;
    align-items: center;

    gap: 0.5rem;

    color: #2563eb;

    font-size: 0.94rem;
    font-weight: 750;

    text-decoration: none;

    transition: color 0.25s ease;
}

.solution-product-link i {
    font-size: 1rem;

    transition: transform 0.25s ease;
}

.solution-product-link:hover {
    color: #174cb8;
}

.solution-product-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   EMPTY STATE
========================================================= */

.empty-solutions {
    padding: 4rem 2rem;

    text-align: center;

    background: #f8fafc;

    border: 1px solid #e5eaf1;

    border-radius: 24px;
}

.empty-solutions i {
    display: block;

    margin-bottom: 1rem;

    color: #2563eb;

    font-size: 3rem;
}

.empty-solutions h3 {
    color: #0f172a;

    font-weight: 750;
}

.empty-solutions p {
    margin-bottom: 0;

    color: #64748b;
}


/* =========================================================
   SOLUTIONS CTA
========================================================= */

.solutions-cta {
    position: relative;

    overflow: hidden;

    padding: 90px 0;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(37, 99, 235, 0.35),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #061629 0%,
            #0a2e63 100%
        );

    color: #ffffff;
}

.solutions-cta::before {
    content: "";

    position: absolute;
    top: -160px;
    right: -100px;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    border: 70px solid rgba(255, 255, 255, 0.035);
}

.solutions-cta .container {
    position: relative;
    z-index: 2;
}

.solutions-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 4rem;
}

.solutions-cta h2 {
    max-width: 720px;

    margin-bottom: 1rem;

    color: #ffffff;

    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.12;

    letter-spacing: -0.035em;
}

.solutions-cta p {
    max-width: 680px;

    margin-bottom: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 1.05rem;
    line-height: 1.7;
}

.solutions-cta-action {
    flex-shrink: 0;
}

.solutions-cta .btn-light {
    padding: 0.9rem 1.5rem;

    border: 0;
    border-radius: 12px;

    color: #0b2c5e;

    font-weight: 750;

    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .solutions-hero {
        padding: 80px 0 75px;
    }

    .solutions-catalog {
        padding: 75px 0;
    }

    .solutions-cta-inner {
        flex-direction: column;
        align-items: flex-start;

        gap: 2rem;
    }

}


@media (max-width: 767.98px) {

    .solutions-hero {
        padding: 65px 0;
    }

    .solutions-hero-title {
        font-size: 2.6rem;
    }

    .solutions-catalog {
        padding: 60px 0;
    }

    .solution-product-cover,
    .solution-product-image {
        height: 175px;
    }

    .solution-product-body {
        padding: 1.5rem;
    }

    .solutions-cta {
        padding: 65px 0;
    }

}


@media (max-width: 575.98px) {

    .solutions-hero-title {
        font-size: 2.25rem;
    }

    .solutions-hero-text {
        font-size: 1rem;
    }

    .solution-product-meta {
        align-items: flex-start;
    }

    .solution-product-title {
        font-size: 1.45rem;
    }

    .solutions-cta-action,
    .solutions-cta-action .btn {
        width: 100%;
    }

}

/* =========================================================
   25. SOLUTION DETAIL PAGE
========================================================= */

.solution-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 95px;

    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(37, 99, 235, 0.20),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #eef5ff 100%
        );
}

.solution-detail-hero::before {
    content: "";
    position: absolute;
    top: -210px;
    right: -130px;

    width: 460px;
    height: 460px;

    border-radius: 50%;
    background: rgba(37, 99, 235, 0.06);
}

.solution-detail-hero .container {
    position: relative;
    z-index: 2;
}


/* META */

.solution-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 0.7rem;
    margin-bottom: 1.4rem;
}

.solution-detail-category,
.solution-detail-status {
    display: inline-flex;
    align-items: center;

    padding: 0.5rem 0.8rem;
    border-radius: 999px;

    font-size: 0.75rem;
    font-weight: 750;
}

.solution-detail-category {
    background: #eaf2ff;
    color: #175cd3;
}

.solution-detail-status {
    background: #eef2f6;
    color: #475569;
}


/* TITLE */

.solution-detail-title {
    max-width: 800px;
    margin: 0 0 1.4rem;

    color: #07152b;

    font-size: clamp(3rem, 6vw, 5.2rem);
    font-weight: 850;
    line-height: 1;

    letter-spacing: -0.05em;
}

.solution-detail-lead {
    max-width: 760px;
    margin-bottom: 2rem;

    color: #64748b;

    font-size: 1.18rem;
    line-height: 1.8;
}


/* ACTIONS */

.solution-detail-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 0.9rem;
}

.solution-detail-actions .btn {
    padding: 0.85rem 1.35rem;

    border-radius: 12px;

    font-size: 0.95rem;
    font-weight: 700;
}


/* VISUAL */

.solution-detail-visual,
.solution-detail-placeholder {
    overflow: hidden;

    min-height: 390px;

    border-radius: 28px;

    box-shadow:
        0 25px 55px rgba(15, 23, 42, 0.14);
}

.solution-detail-visual img {
    width: 100%;
    height: 100%;
    min-height: 390px;

    object-fit: cover;
}

.solution-detail-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(255, 255, 255, 0.20),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #2563eb,
            #0a3d91
        );

    color: #ffffff;
}

.solution-detail-placeholder::after {
    content: "";

    position: absolute;
    right: -90px;
    bottom: -100px;

    width: 260px;
    height: 260px;

    border:
        40px solid rgba(255, 255, 255, 0.06);

    border-radius: 50%;
}

.solution-detail-placeholder i {
    position: relative;
    z-index: 2;

    font-size: 6rem;
}


/* =========================================================
   DETAIL CONTENT
========================================================= */

.solution-detail-content {
    padding: 95px 0;

    background: #ffffff;
}

.solution-detail-heading {
    max-width: 760px;

    margin-bottom: 1.8rem;

    color: #07152b;

    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;

    letter-spacing: -0.035em;
}

.solution-detail-description {
    max-width: 800px;

    color: #475569;

    font-size: 1.03rem;
    line-height: 1.9;
}

.solution-detail-description p:last-child {
    margin-bottom: 0;
}


/* INFO CARD */

.solution-detail-card {
    position: sticky;
    top: 110px;

    padding: 1.8rem;

    background: #f8fafc;

    border: 1px solid #e5eaf1;
    border-radius: 22px;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.05);
}

.solution-detail-card h3 {
    margin-bottom: 1.5rem;

    color: #0f172a;

    font-size: 1.2rem;
    font-weight: 800;
}

.solution-detail-info {
    display: flex;
    flex-direction: column;
}

.solution-detail-info-item {
    display: flex;
    flex-direction: column;

    gap: 0.25rem;

    padding: 1rem 0;

    border-bottom: 1px solid #e6eaf0;
}

.solution-detail-info-item:first-child {
    padding-top: 0;
}

.solution-detail-info-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.solution-detail-info-item span {
    color: #94a3b8;

    font-size: 0.78rem;
    font-weight: 650;

    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.solution-detail-info-item strong {
    color: #0f172a;

    font-size: 0.95rem;
}


/* =========================================================
   DETAIL CTA
========================================================= */

.solution-detail-cta {
    position: relative;
    overflow: hidden;

    padding: 90px 0;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(37, 99, 235, 0.35),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #061629 0%,
            #0a2e63 100%
        );

    color: #ffffff;
}

.solution-detail-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 4rem;
}

.solution-detail-cta h2 {
    max-width: 720px;
    margin-bottom: 1rem;

    color: #ffffff;

    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 800;
    line-height: 1.15;

    letter-spacing: -0.035em;
}

.solution-detail-cta p {
    max-width: 680px;

    margin-bottom: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 1.04rem;
    line-height: 1.75;
}

.solution-detail-cta-action {
    flex-shrink: 0;
}

.solution-detail-cta .btn-light {
    padding: 0.9rem 1.5rem;

    border: 0;
    border-radius: 12px;

    color: #0b2c5e;

    font-weight: 750;
}


/* =========================================================
   SOLUTION DETAIL RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .solution-detail-hero {
        padding: 80px 0;
    }

    .solution-detail-content {
        padding: 75px 0;
    }

    .solution-detail-card {
        position: static;
    }

    .solution-detail-cta-inner {
        flex-direction: column;
        align-items: flex-start;

        gap: 2rem;
    }
}

@media (max-width: 767.98px) {

    .solution-detail-hero {
        padding: 65px 0;
    }

    .solution-detail-title {
        font-size: 2.7rem;
    }

    .solution-detail-visual,
    .solution-detail-placeholder,
    .solution-detail-visual img {
        min-height: 300px;
    }

    .solution-detail-content {
        padding: 60px 0;
    }

    .solution-detail-cta {
        padding: 65px 0;
    }
}

@media (max-width: 575.98px) {

    .solution-detail-title {
        font-size: 2.35rem;
    }

    .solution-detail-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .solution-detail-actions .btn,
    .solution-detail-cta-action,
    .solution-detail-cta-action .btn {
        width: 100%;
    }
}

/* =========================================================
   26. SERVICES PAGE
========================================================= */

/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */

.services-hero {
    position: relative;
    overflow: hidden;

    padding: 105px 0 95px;

    background:
        radial-gradient(
            circle at 82% 22%,
            rgba(37, 99, 235, 0.16),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #edf4ff 100%
        );
}

.services-hero::before {
    content: "";

    position: absolute;
    top: -230px;
    right: -150px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(37, 99, 235, 0.055);

    pointer-events: none;
}

.services-hero::after {
    content: "";

    position: absolute;
    left: -120px;
    bottom: -250px;

    width: 430px;
    height: 430px;

    border:
        70px solid rgba(37, 99, 235, 0.035);

    border-radius: 50%;

    pointer-events: none;
}

.services-hero .container {
    position: relative;
    z-index: 2;
}

.services-hero-content {
    max-width: 900px;
}

.services-hero-title {
    max-width: 950px;

    margin: 0 0 1.5rem;

    color: #07152b;

    font-size: clamp(
        2.8rem,
        5vw,
        4.7rem
    );

    font-weight: 850;
    line-height: 1.06;

    letter-spacing: -0.045em;
}

.services-hero-text {
    max-width: 760px;

    margin: 0;

    color: #64748b;

    font-size: 1.15rem;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   SERVICES CATALOG
--------------------------------------------------------- */

.services-catalog {
    position: relative;

    padding: 95px 0 105px;

    background: #ffffff;
}

.services-intro {
    margin-bottom: 3.5rem;
}

.services-intro-title {
    max-width: 780px;

    margin: 0;

    color: #07152b;

    font-size: clamp(
        2rem,
        4vw,
        3.1rem
    );

    font-weight: 800;
    line-height: 1.15;

    letter-spacing: -0.035em;
}

.services-intro-text {
    max-width: 620px;

    margin: 0;

    color: #64748b;

    line-height: 1.75;
}


/* ---------------------------------------------------------
   SERVICE CARD
--------------------------------------------------------- */

.service-product-card {
    position: relative;

    display: flex;
    flex-direction: column;

    height: 100%;
    min-height: 365px;

    padding: 2rem;

    overflow: hidden;

    background: #ffffff;

    border:
        1px solid #e4eaf2;

    border-radius: 24px;

    box-shadow:
        0 8px 30px rgba(15, 23, 42, 0.055);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.service-product-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #2563eb,
            #38bdf8
        );

    opacity: 0;

    transition: opacity 0.3s ease;
}

.service-product-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(37, 99, 235, 0.22);

    box-shadow:
        0 22px 50px rgba(15, 23, 42, 0.11);
}

.service-product-card:hover::before {
    opacity: 1;
}


/* ---------------------------------------------------------
   SERVICE ICON
--------------------------------------------------------- */

.service-product-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;

    margin-bottom: 1.7rem;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #eaf2ff,
            #f3f8ff
        );

    color: #1769ff;

    font-size: 1.65rem;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.service-product-card:hover
.service-product-icon {
    transform:
        translateY(-3px)
        rotate(-2deg);

    background:
        linear-gradient(
            135deg,
            #1769ff,
            #0b4fc6
        );

    color: #ffffff;
}


/* ---------------------------------------------------------
   CATEGORY
--------------------------------------------------------- */

.service-product-category {
    display: inline-flex;
    align-items: center;

    align-self: flex-start;

    margin-bottom: 0.9rem;

    padding: 0.42rem 0.7rem;

    border-radius: 999px;

    background: #eef4ff;

    color: #1769ff;

    font-size: 0.72rem;
    font-weight: 750;
}


/* ---------------------------------------------------------
   TITLE & TEXT
--------------------------------------------------------- */

.service-product-title {
    margin-bottom: 0.9rem;

    color: #07152b;

    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.25;

    letter-spacing: -0.025em;
}

.service-product-description {
    flex: 1;

    margin-bottom: 1.6rem;

    color: #64748b;

    font-size: 0.96rem;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   LINK
--------------------------------------------------------- */

.service-product-link {
    display: inline-flex;
    align-items: center;

    align-self: flex-start;

    gap: 0.5rem;

    padding-top: 1.15rem;

    border-top:
        1px solid #edf0f4;

    width: 100%;

    color: #1769ff;

    font-size: 0.92rem;
    font-weight: 700;

    text-decoration: none;
}

.service-product-link i {
    transition:
        transform 0.25s ease;
}

.service-product-link:hover {
    color: #0b4fc6;
}

.service-product-link:hover i {
    transform: translateX(5px);
}


/* ---------------------------------------------------------
   FEATURED SERVICE
--------------------------------------------------------- */

.service-product-card.is-featured {
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(255, 255, 255, 0.13),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            #0b1f3a,
            #0d3978
        );

    border-color: transparent;

    color: #ffffff;
}

.service-product-card.is-featured
.service-product-icon {
    background:
        rgba(255, 255, 255, 0.12);

    color: #ffffff;
}

.service-product-card.is-featured
.service-product-category {
    background:
        rgba(255, 255, 255, 0.12);

    color: #bfdbfe;
}

.service-product-card.is-featured
.service-product-title {
    color: #ffffff;
}

.service-product-card.is-featured
.service-product-description {
    color:
        rgba(255, 255, 255, 0.70);
}

.service-product-card.is-featured
.service-product-link {
    border-color:
        rgba(255, 255, 255, 0.12);

    color: #ffffff;
}


/* ---------------------------------------------------------
   SERVICES EMPTY STATE
--------------------------------------------------------- */

.services-empty {
    padding: 5rem 2rem;

    text-align: center;

    background: #f8fbff;

    border:
        1px solid #e5ebf3;

    border-radius: 26px;
}

.services-empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 72px;
    height: 72px;

    margin: 0 auto 1.5rem;

    border-radius: 20px;

    background: #eaf2ff;

    color: #1769ff;

    font-size: 1.8rem;
}

.services-empty h3 {
    color: #07152b;

    font-weight: 800;
}

.services-empty p {
    max-width: 500px;

    margin:
        0.75rem auto 0;

    color: #64748b;
}


/* =========================================================
   SERVICES CTA
========================================================= */

.services-cta {
    position: relative;
    overflow: hidden;

    padding: 90px 0;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(37, 99, 235, 0.35),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #061629,
            #0a2e63
        );

    color: #ffffff;
}

.services-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 4rem;
}

.services-cta h2 {
    max-width: 720px;

    margin-bottom: 1rem;

    color: #ffffff;

    font-size: clamp(
        2rem,
        4vw,
        3.1rem
    );

    font-weight: 800;
    line-height: 1.15;

    letter-spacing: -0.035em;
}

.services-cta p {
    max-width: 680px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 1.04rem;
    line-height: 1.75;
}

.services-cta-action {
    flex-shrink: 0;
}


/* =========================================================
   SERVICES RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .services-hero {
        padding: 80px 0;
    }

    .services-catalog {
        padding: 75px 0;
    }

    .services-intro-text {
        margin-top: 1rem;
    }

    .services-cta-inner {
        flex-direction: column;
        align-items: flex-start;

        gap: 2rem;
    }
}


@media (max-width: 767.98px) {

    .services-hero {
        padding: 65px 0;
    }

    .services-hero-title {
        font-size: 2.65rem;
    }

    .services-catalog {
        padding: 60px 0;
    }

    .service-product-card {
        min-height: auto;

        padding: 1.6rem;
    }

    .services-cta {
        padding: 65px 0;
    }
}


@media (max-width: 575.98px) {

    .services-hero-title {
        font-size: 2.25rem;
    }

    .services-hero-text {
        font-size: 1rem;
    }

    .services-cta-action,
    .services-cta-action .btn {
        width: 100%;
    }
}

/* =========================================================
   27. SERVICE DETAIL PAGE
========================================================= */

.service-detail-hero {
    position: relative;
    overflow: hidden;

    padding: 100px 0 95px;

    background:
        radial-gradient(
            circle at 88% 20%,
            rgba(37, 99, 235, 0.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #edf4ff 100%
        );
}

.service-detail-hero::before {
    content: "";

    position: absolute;
    top: -220px;
    right: -150px;

    width: 480px;
    height: 480px;

    border-radius: 50%;

    background: rgba(37, 99, 235, 0.06);
}

.service-detail-hero .container {
    position: relative;
    z-index: 2;
}

.service-detail-title {
    max-width: 850px;

    margin: 0 0 1.4rem;

    color: #07152b;

    font-size: clamp(
        2.8rem,
        5vw,
        4.8rem
    );

    font-weight: 850;
    line-height: 1.05;

    letter-spacing: -0.045em;
}

.service-detail-lead {
    max-width: 760px;

    margin-bottom: 2rem;

    color: #64748b;

    font-size: 1.15rem;
    line-height: 1.8;
}

.service-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.service-detail-actions .btn {
    padding: 0.85rem 1.35rem;

    border-radius: 12px;

    font-size: 0.95rem;
    font-weight: 700;
}


/* ---------------------------------------------------------
   VISUAL
--------------------------------------------------------- */

.service-detail-visual,
.service-detail-placeholder {
    min-height: 380px;

    overflow: hidden;

    border-radius: 28px;

    box-shadow:
        0 25px 55px rgba(15, 23, 42, 0.14);
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    min-height: 380px;

    object-fit: cover;
}

.service-detail-placeholder {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(255, 255, 255, 0.20),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #2563eb,
            #0a3d91
        );

    color: #ffffff;
}

.service-detail-placeholder::after {
    content: "";

    position: absolute;
    right: -90px;
    bottom: -110px;

    width: 270px;
    height: 270px;

    border:
        42px solid rgba(255, 255, 255, 0.06);

    border-radius: 50%;
}

.service-detail-placeholder i {
    position: relative;
    z-index: 2;

    font-size: 6rem;
}


/* =========================================================
   CONTENT
========================================================= */

.service-detail-content {
    padding: 95px 0;

    background: #ffffff;
}

.service-detail-heading {
    max-width: 760px;

    margin-bottom: 1.8rem;

    color: #07152b;

    font-size: clamp(
        2rem,
        4vw,
        3.1rem
    );

    font-weight: 800;
    line-height: 1.15;

    letter-spacing: -0.035em;
}

.service-detail-description {
    max-width: 800px;

    color: #475569;

    font-size: 1.03rem;
    line-height: 1.9;
}

.service-detail-description p:last-child {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   INFO CARD
--------------------------------------------------------- */

.service-detail-card {
    position: sticky;
    top: 110px;

    padding: 1.8rem;

    background: #f8fafc;

    border:
        1px solid #e5eaf1;

    border-radius: 22px;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.05);
}

.service-detail-card h3 {
    margin-bottom: 1.5rem;

    color: #0f172a;

    font-size: 1.2rem;
    font-weight: 800;
}

.service-detail-info {
    display: flex;
    flex-direction: column;
}

.service-detail-info-item {
    display: flex;
    flex-direction: column;

    gap: 0.25rem;

    padding: 1rem 0;

    border-bottom:
        1px solid #e6eaf0;
}

.service-detail-info-item:first-child {
    padding-top: 0;
}

.service-detail-info-item:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}

.service-detail-info-item span {
    color: #94a3b8;

    font-size: 0.76rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.service-detail-info-item strong {
    color: #0f172a;

    font-size: 0.95rem;
}


/* =========================================================
   METHODOLOGY
========================================================= */

.service-detail-steps {
    padding: 95px 0;

    background: #f8fafc;
}

.service-detail-steps-title {
    margin-bottom: 1rem;

    color: #07152b;

    font-size: clamp(
        2rem,
        4vw,
        3.1rem
    );

    font-weight: 800;

    letter-spacing: -0.035em;
}

.service-detail-steps-text {
    max-width: 650px;

    margin: 0 auto;

    color: #64748b;

    line-height: 1.7;
}

.service-step-card {
    height: 100%;

    padding: 1.8rem;

    background: #ffffff;

    border:
        1px solid #e5eaf1;

    border-radius: 22px;

    box-shadow:
        0 8px 24px rgba(15, 23, 42, 0.04);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.service-step-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.09);
}

.service-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    margin-bottom: 1.3rem;

    border-radius: 14px;

    background: #eaf2ff;

    color: #1769ff;

    font-size: 0.82rem;
    font-weight: 800;
}

.service-step-card h3 {
    margin-bottom: 0.8rem;

    color: #07152b;

    font-size: 1.15rem;
    font-weight: 800;
}

.service-step-card p {
    margin: 0;

    color: #64748b;

    font-size: 0.94rem;
    line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.service-detail-cta {
    padding: 90px 0;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(37, 99, 235, 0.35),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #061629,
            #0a2e63
        );

    color: #ffffff;
}

.service-detail-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 4rem;
}

.service-detail-cta h2 {
    max-width: 720px;

    margin-bottom: 1rem;

    color: #ffffff;

    font-size: clamp(
        2rem,
        4vw,
        3.1rem
    );

    font-weight: 800;
    line-height: 1.15;

    letter-spacing: -0.035em;
}

.service-detail-cta p {
    max-width: 680px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 1.04rem;
    line-height: 1.75;
}

.service-detail-cta-action {
    flex-shrink: 0;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .service-detail-hero {
        padding: 80px 0;
    }

    .service-detail-content,
    .service-detail-steps {
        padding: 75px 0;
    }

    .service-detail-card {
        position: static;
    }

    .service-detail-cta-inner {
        flex-direction: column;
        align-items: flex-start;

        gap: 2rem;
    }
}

@media (max-width: 767.98px) {

    .service-detail-hero {
        padding: 65px 0;
    }

    .service-detail-title {
        font-size: 2.65rem;
    }

    .service-detail-visual,
    .service-detail-placeholder,
    .service-detail-visual img {
        min-height: 300px;
    }

    .service-detail-content,
    .service-detail-steps {
        padding: 60px 0;
    }

    .service-detail-cta {
        padding: 65px 0;
    }
}

@media (max-width: 575.98px) {

    .service-detail-title {
        font-size: 2.3rem;
    }

    .service-detail-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .service-detail-actions .btn,
    .service-detail-cta-action,
    .service-detail-cta-action .btn {
        width: 100%;
    }
}

/* =========================================================
   28. PROJECTS / REALISATIONS
========================================================= */

.projects-hero {
    position: relative;
    overflow: hidden;

    padding: 105px 0 95px;

    background:
        radial-gradient(
            circle at 88% 20%,
            rgba(37, 99, 235, 0.16),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #edf4ff 100%
        );
}

.projects-hero::before {
    content: "";

    position: absolute;
    top: -200px;
    right: -140px;

    width: 460px;
    height: 460px;

    border-radius: 50%;

    background:
        rgba(37, 99, 235, 0.05);
}

.projects-hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
}

.projects-hero-title {
    margin: 0 0 1.5rem;

    color: #07152b;

    font-size: clamp(
        2.8rem,
        5vw,
        4.8rem
    );

    font-weight: 850;
    line-height: 1.05;

    letter-spacing: -0.045em;
}

.projects-hero-text {
    max-width: 760px;

    margin: 0;

    color: #64748b;

    font-size: 1.15rem;
    line-height: 1.8;
}


/* =========================================================
   CATALOG
========================================================= */

.projects-catalog {
    padding: 95px 0 105px;

    background: #ffffff;
}

.projects-intro {
    margin-bottom: 3.5rem;
}

.projects-intro-title {
    max-width: 700px;

    margin: 0;

    color: #07152b;

    font-size: clamp(
        2rem,
        4vw,
        3.2rem
    );

    font-weight: 800;
    line-height: 1.15;

    letter-spacing: -0.035em;
}

.projects-intro-text {
    margin: 0;

    color: #64748b;

    font-size: 1rem;
    line-height: 1.8;
}


/* =========================================================
   PROJECT CARD
========================================================= */

.project-card {
    position: relative;

    display: flex;
    flex-direction: column;

    height: 100%;
    min-height: 390px;

    padding: 2rem;

    overflow: hidden;

    background: #ffffff;

    border:
        1px solid #e5eaf1;

    border-radius: 26px;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.project-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #2563eb,
            #0ea5e9
        );

    opacity: 0;

    transition:
        opacity 0.3s ease;
}

.project-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(37, 99, 235, 0.25);

    box-shadow:
        0 24px 50px rgba(15, 23, 42, 0.10);
}

.project-card:hover::before {
    opacity: 1;
}

.project-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 1rem;

    margin-bottom: 2rem;
}

.project-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;

    flex-shrink: 0;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #eaf2ff,
            #f4f8ff
        );

    color: #2563eb;

    font-size: 1.75rem;
}

.project-card-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;

    gap: 0.5rem;
}

.project-category,
.project-status {
    display: inline-flex;

    padding: 0.4rem 0.75rem;

    border-radius: 999px;

    font-size: 0.72rem;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.045em;
}

.project-category {
    background: #eef4ff;

    color: #2563eb;
}

.project-status {
    background: #ecfdf5;

    color: #047857;
}

.project-card-title {
    margin-bottom: 1rem;

    color: #07152b;

    font-size: 1.65rem;
    font-weight: 800;

    letter-spacing: -0.025em;
}

.project-card-description {
    margin-bottom: 1.4rem;

    color: #64748b;

    line-height: 1.75;
}

.project-technologies {
    margin-top: auto;
    margin-bottom: 1.6rem;

    padding-top: 1.2rem;

    border-top:
        1px solid #edf0f4;
}

.project-technologies span {
    color: #64748b;

    font-size: 0.82rem;
    font-weight: 600;
}

.project-card-footer {
    margin-top: auto;
}

.project-card-link {
    display: inline-flex;
    align-items: center;

    gap: 0.55rem;

    color: #2563eb;

    font-weight: 750;

    text-decoration: none;

    transition:
        gap 0.25s ease;
}

.project-card-link:hover {
    gap: 0.8rem;

    color: #1d4ed8;
}


/* =========================================================
   FEATURED
========================================================= */

.project-card.is-featured {
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(59, 130, 246, 0.22),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #081a32,
            #0b2954
        );

    border-color:
        rgba(255, 255, 255, 0.08);
}

.project-card.is-featured .project-card-title {
    color: #ffffff;
}

.project-card.is-featured .project-card-description,
.project-card.is-featured .project-technologies span {
    color:
        rgba(255, 255, 255, 0.70);
}

.project-card.is-featured .project-card-icon {
    background:
        rgba(255, 255, 255, 0.10);

    color: #ffffff;
}

.project-card.is-featured .project-category {
    background:
        rgba(59, 130, 246, 0.18);

    color: #bfdbfe;
}

.project-card.is-featured .project-status {
    background:
        rgba(16, 185, 129, 0.16);

    color: #a7f3d0;
}

.project-card.is-featured .project-technologies {
    border-color:
        rgba(255, 255, 255, 0.10);
}

.project-card.is-featured .project-card-link {
    color: #ffffff;
}


/* =========================================================
   EMPTY
========================================================= */

.projects-empty {
    padding: 4rem 2rem;

    text-align: center;

    background: #f8fafc;

    border-radius: 24px;
}

.projects-empty-icon {
    margin-bottom: 1rem;

    color: #2563eb;

    font-size: 2.5rem;
}


/* =========================================================
   CTA
========================================================= */

.projects-cta {
    padding: 90px 0;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(37, 99, 235, 0.35),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #061629,
            #0a2e63
        );

    color: #ffffff;
}

.projects-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 4rem;
}

.projects-cta h2 {
    max-width: 720px;

    margin-bottom: 1rem;

    color: #ffffff;

    font-size: clamp(
        2rem,
        4vw,
        3.1rem
    );

    font-weight: 800;
    line-height: 1.15;

    letter-spacing: -0.035em;
}

.projects-cta p {
    max-width: 680px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 1.04rem;
    line-height: 1.75;
}

.projects-cta-action {
    flex-shrink: 0;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .projects-hero {
        padding: 80px 0;
    }

    .projects-catalog {
        padding: 75px 0;
    }

    .projects-cta-inner {
        flex-direction: column;
        align-items: flex-start;

        gap: 2rem;
    }
}

@media (max-width: 767.98px) {

    .projects-hero {
        padding: 65px 0;
    }

    .projects-hero-title {
        font-size: 2.65rem;
    }

    .projects-catalog {
        padding: 60px 0;
    }

    .projects-cta {
        padding: 65px 0;
    }
}

@media (max-width: 575.98px) {

    .projects-hero-title {
        font-size: 2.3rem;
    }

    .project-card {
        padding: 1.5rem;
    }

    .project-card-top {
        flex-direction: column;
    }

    .project-card-badges {
        justify-content: flex-start;
    }

    .projects-cta-action,
    .projects-cta-action .btn {
        width: 100%;
    }
}
/* =========================================================
   30. ABOUT PAGE
========================================================= */

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0;

    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(37, 99, 235, .18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #edf4ff 100%
        );
}

.about-hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -130px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(37, 99, 235, .05);
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-title {
    max-width: 850px;
    margin-bottom: 1.4rem;

    color: #07152b;

    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: -.045em;
}

.about-hero-text {
    max-width: 730px;
    margin-bottom: 2rem;

    color: #64748b;

    font-size: 1.15rem;
    line-height: 1.8;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
}

.about-hero-actions .btn {
    border-radius: 12px;
    font-weight: 700;
}


/* HERO VISUAL */

.about-hero-visual {
    padding: 2rem;

    background:
        linear-gradient(
            145deg,
            #07182f,
            #0b3470
        );

    border-radius: 30px;

    box-shadow:
        0 25px 60px rgba(15, 23, 42, .16);
}

.about-hero-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 76px;
    height: 76px;

    margin-bottom: 2rem;

    background: rgba(255,255,255,.10);

    border-radius: 22px;

    color: #fff;
    font-size: 2.2rem;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-hero-stat {
    padding: 1.25rem;

    background: rgba(255,255,255,.07);

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
}

.about-hero-stat strong {
    display: block;

    margin-bottom: .35rem;

    color: #fff;

    font-size: 1.05rem;
    font-weight: 800;
}

.about-hero-stat span {
    color: rgba(255,255,255,.62);

    font-size: .85rem;
    line-height: 1.5;
}


/* INTRO */

.about-intro {
    padding: 100px 0;
    background: #fff;
}

.about-section-title {
    max-width: 700px;

    margin: 0;

    color: #07152b;

    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.035em;
}

.about-text {
    color: #475569;

    font-size: 1.03rem;
    line-height: 1.9;
}

.about-text p:last-child {
    margin-bottom: 0;
}


/* VALUES */

.about-values {
    padding: 95px 0;

    background: #f8fafc;
}

.about-values-heading {
    max-width: 720px;

    margin: 0 auto 3.5rem;
}

.about-values-heading h2 {
    margin-bottom: 1rem;

    color: #07152b;

    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -.035em;
}

.about-values-heading p {
    color: #64748b;
    line-height: 1.8;
}

.about-value-card {
    height: 100%;

    padding: 1.8rem;

    background: #fff;

    border: 1px solid #e5eaf1;
    border-radius: 22px;

    box-shadow:
        0 8px 24px rgba(15,23,42,.04);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.about-value-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(15,23,42,.09);
}

.about-value-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    margin-bottom: 1.2rem;

    background: #eaf2ff;

    border-radius: 16px;

    color: #2563eb;

    font-size: 1.4rem;
}

.about-value-card h3 {
    margin-bottom: .75rem;

    color: #07152b;

    font-size: 1.15rem;
    font-weight: 800;
}

.about-value-card p {
    margin: 0;

    color: #64748b;

    font-size: .94rem;
    line-height: 1.7;
}


/* EXPERTISE */

.about-expertise {
    padding: 100px 0;

    background: #fff;
}

.about-expertise-text {
    max-width: 650px;
    margin-top: 1.5rem;

    color: #64748b;

    line-height: 1.85;
}

.about-expertise-list {
    display: flex;
    flex-direction: column;

    gap: 1rem;
}

.about-expertise-item {
    display: grid;
    grid-template-columns: 58px 1fr;

    gap: 1.2rem;

    padding: 1.25rem;

    background: #f8fafc;

    border: 1px solid #e5eaf1;
    border-radius: 18px;
}

.about-expertise-item > i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    background: #eaf2ff;

    border-radius: 15px;

    color: #2563eb;

    font-size: 1.3rem;
}

.about-expertise-item h3 {
    margin-bottom: .3rem;

    color: #07152b;

    font-size: 1rem;
    font-weight: 800;
}

.about-expertise-item p {
    margin: 0;

    color: #64748b;

    font-size: .9rem;
    line-height: 1.6;
}


/* CTA */

.about-cta {
    padding: 90px 0;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(37,99,235,.35),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #061629,
            #0a2e63
        );

    color: #fff;
}

.about-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 4rem;
}

.about-cta h2 {
    max-width: 720px;

    margin-bottom: 1rem;

    color: #fff;

    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.035em;
}

.about-cta p {
    max-width: 680px;

    margin: 0;

    color: rgba(255,255,255,.72);

    line-height: 1.75;
}

.about-cta-action {
    flex-shrink: 0;
}


/* RESPONSIVE */

@media (max-width: 991.98px) {

    .about-hero {
        padding: 80px 0;
    }

    .about-intro,
    .about-values,
    .about-expertise {
        padding: 75px 0;
    }

    .about-cta-inner {
        flex-direction: column;
        align-items: flex-start;

        gap: 2rem;
    }
}

@media (max-width: 767.98px) {

    .about-hero {
        padding: 65px 0;
    }

    .about-hero-title {
        font-size: 2.65rem;
    }

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

    .about-intro,
    .about-values,
    .about-expertise {
        padding: 60px 0;
    }

    .about-cta {
        padding: 65px 0;
    }

    .about-hero-actions {
        flex-direction: column;
    }

    .about-hero-actions .btn,
    .about-cta-action,
    .about-cta-action .btn {
        width: 100%;
    }
}

/* =========================================================
   31. CONTACT PAGE
========================================================= */

.contact-hero {
    position: relative;
    overflow: hidden;

    padding: 100px 0 90px;

    background:
        radial-gradient(
            circle at 88% 20%,
            rgba(37, 99, 235, 0.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #edf4ff 100%
        );
}

.contact-hero::before {
    content: "";

    position: absolute;
    top: -180px;
    right: -140px;

    width: 460px;
    height: 460px;

    border-radius: 50%;

    background: rgba(37, 99, 235, 0.05);
}

.contact-hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
}

.contact-hero-title {
    margin-bottom: 1.4rem;

    color: #07152b;

    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 850;
    line-height: 1.05;

    letter-spacing: -0.045em;
}

.contact-hero-text {
    max-width: 760px;

    margin: 0;

    color: #64748b;

    font-size: 1.15rem;
    line-height: 1.8;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    padding: 95px 0 105px;

    background: #ffffff;
}

.contact-form-card {
    padding: 2.3rem;

    background: #ffffff;

    border: 1px solid #e5eaf1;
    border-radius: 26px;

    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.07);
}

.contact-form-card h2 {
    max-width: 650px;

    margin-bottom: 2rem;

    color: #07152b;

    font-size: clamp(1.9rem, 3vw, 2.7rem);
    font-weight: 800;
    line-height: 1.15;

    letter-spacing: -0.03em;
}

.contact-form-card .form-label {
    margin-bottom: 0.55rem;

    color: #334155;

    font-size: 0.9rem;
    font-weight: 700;
}

.contact-form-card .form-control {
    min-height: 52px;

    padding: 0.85rem 1rem;

    border: 1px solid #dbe2ea;
    border-radius: 12px;

    color: #0f172a;

    background: #ffffff;

    box-shadow: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-form-card textarea.form-control {
    min-height: 165px;

    resize: vertical;
}

.contact-form-card .form-control:focus {
    border-color: #2563eb;

    box-shadow:
        0 0 0 4px rgba(37, 99, 235, 0.10);
}

.contact-form-card .form-control::placeholder {
    color: #94a3b8;
}

.contact-field-error {
    margin-top: 0.4rem;

    color: #dc2626;

    font-size: 0.82rem;
    font-weight: 600;
}

.contact-submit {
    padding: 0.9rem 1.4rem;

    border-radius: 12px;

    font-weight: 750;
}


/* =========================================================
   CONTACT INFO CARD
========================================================= */

.contact-info-card {
    position: sticky;
    top: 110px;

    padding: 2.3rem;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(59, 130, 246, 0.25),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #07182f,
            #0b3470
        );

    border-radius: 26px;

    color: #ffffff;

    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.16);
}

.contact-info-card h2 {
    margin-bottom: 1rem;

    color: #ffffff;

    font-size: 2rem;
    font-weight: 800;

    letter-spacing: -0.03em;
}

.contact-info-intro {
    margin-bottom: 2rem;

    color: rgba(255, 255, 255, 0.70);

    line-height: 1.75;
}

.contact-info-list {
    display: flex;
    flex-direction: column;

    gap: 1rem;
}

.contact-info-item {
    display: grid;
    grid-template-columns: 52px 1fr;

    gap: 1rem;

    padding: 1rem;

    background: rgba(255, 255, 255, 0.07);

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.contact-info-item > i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    background: rgba(255, 255, 255, 0.10);

    border-radius: 14px;

    color: #ffffff;

    font-size: 1.2rem;
}

.contact-info-item span {
    display: block;

    margin-bottom: 0.2rem;

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.72rem;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-info-item strong {
    color: #ffffff;

    font-size: 0.95rem;
    line-height: 1.5;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .contact-hero {
        padding: 80px 0;
    }

    .contact-section {
        padding: 75px 0;
    }

    .contact-info-card {
        position: static;
    }
}

@media (max-width: 767.98px) {

    .contact-hero {
        padding: 65px 0;
    }

    .contact-hero-title {
        font-size: 2.65rem;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-submit {
        width: 100%;
    }
}