/* =========================
   Base
========================= */

:root {
    --primary: #00d4ff;
    --secondary: #7c3aed;

    --bg: #070b12;
    --bg-light: #0d1420;
    --card: #111827;

    --text: #ffffff;
    --muted: #9ca3af;
    --border: #263244;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

::selection {
    background: var(--primary);
    color: #000;
}


/* =========================
   Navbar
========================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    height: 58px;

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

    background: rgba(7, 11, 18, .90);
    border-bottom: 1px solid rgba(255,255,255,.07);

    backdrop-filter: blur(16px);
}

.navbar nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.navbar nav a {
    position: relative;

    color: #c7d0dc;
    font-size: 12px;

    white-space: nowrap;

    transition: color .25s ease;
}

.navbar nav a::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: -6px;

    width: 0;
    height: 2px;

    background: var(--primary);

    transition: width .25s ease;
}

.navbar nav a:hover {
    color: var(--primary);
}

.navbar nav a:hover::after {
    width: 100%;
}


/* =========================
   Hero
========================= */

.hero-pro {
    position: relative;
    min-height: 525px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    overflow: hidden;

    background: var(--bg);
}

.hero-pro-bg {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7,11,18,.93),
            rgba(7,11,18,.82),
            rgba(7,11,18,.94)
        ),
        url("images/22.jpg?v=12") center / cover no-repeat;

    opacity: .75;
}

.hero-pro-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(0,212,255,.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0,212,255,.045) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    opacity: .20;
}

.hero-pro-glow {
    position: absolute;

    width: 380px;
    height: 380px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: .11;
}

.hero-pro-glow-one {
    top: 5%;
    left: 4%;
    background: var(--primary);
}

.hero-pro-glow-two {
    right: 5%;
    bottom: 5%;
    background: var(--secondary);
}


/* =========================
   Hero Container
========================= */

.hero-pro-container {
    position: relative;
    z-index: 5;

    width: min(1180px, calc(100% - 50px));

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 40px;

    direction: ltr;
}


/* =========================
   Profile
========================= */

.hero-pro-profile-wrap {
    position: relative;

    width: 410px;
    height: 400px;

    margin: auto;

    direction: ltr;

    transform: translateY(-5px);
}

.hero-pro-profile {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 320px;
    height: 320px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    overflow: hidden;

    border: 2px solid rgba(0,212,255,.55);

    box-shadow:
        0 0 0 10px rgba(0,212,255,.035),
        0 0 60px rgba(0,212,255,.16),
        0 30px 80px rgba(0,0,0,.5);

    background: #0b111a;

    z-index: 4;
}

.hero-pro-profile::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(0,212,255,.15),
            transparent 40%,
            rgba(124,58,237,.12)
        );

    z-index: 2;

    pointer-events: none;
}

.hero-pro-profile img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================
   Orbits
========================= */

.profile-orbit {
    position: absolute;

    top: 50%;
    left: 50%;

    border-radius: 50%;

    transform: translate(-50%, -50%);

    pointer-events: none;

    z-index: 1;
}

.profile-orbit-one {
    width: 375px;
    height: 375px;

    border: 1px solid rgba(0,212,255,.18);

    border-top-color: rgba(0,212,255,.85);
    border-right-color: rgba(0,212,255,.35);

    animation: orbitRotateOne 14s linear infinite;
}

.profile-orbit-two {
    width: 415px;
    height: 415px;

    border: 1px solid rgba(124,58,237,.12);

    border-top-color: rgba(124,58,237,.65);
    border-left-color: rgba(0,212,255,.25);

    animation: orbitRotateTwo 20s linear infinite;
}

@keyframes orbitRotateOne {

    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes orbitRotateTwo {

    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}


/* =========================
   Tech Lines
========================= */

.profile-tech-line {
    position: absolute;

    height: 1px;

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

    opacity: .35;

    z-index: 3;
}

.profile-tech-line-one {
    width: 145px;

    left: -5px;
    top: 125px;

    transform: rotate(-28deg);
}

.profile-tech-line-two {
    width: 135px;

    right: 0;
    bottom: 125px;

    transform: rotate(28deg);
}


/* =========================
   Badges
========================= */

.profile-badge {
    position: absolute;

    width: 130px;

    padding: 7px 9px;

    background: rgba(7,13,22,.90);

    border: 1px solid rgba(0,212,255,.22);

    border-radius: 10px;

    backdrop-filter: blur(12px);

    box-shadow:
        0 12px 28px rgba(0,0,0,.38);

    z-index: 8;

    direction: ltr;
    text-align: center;
}

.profile-badge strong {
    display: block;

    color: var(--primary);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: .3px;
    line-height: 1.5;

    white-space: nowrap;
}

.profile-badge span {
    display: block;

    margin-top: 2px;

    color: #7f8b9c;

    font-size: 8px;

    line-height: 1.4;

    white-space: nowrap;
}

.profile-badge-one {
    top: 80px;
    left: -70px;
}

.profile-badge-two {
    top: 300px;
    right: -70px;
}

.profile-badge-three {
    left: 50%;
    bottom: -4px;

    width: 160px;

    transform: translateX(-50%);
}


/* =========================
   System Status
========================= */

.profile-status {
    position: absolute;

    right: -30px;
    top: 25px;

    display: flex;
    align-items: center;

    gap: 7px;

    width: 140px;

    padding: 7px 9px;

    background: rgba(7,13,22,.90);

    border: 1px solid rgba(0,212,255,.16);

    border-radius: 10px;

    backdrop-filter: blur(10px);

    z-index: 11;

    direction: ltr;
}

.status-dot {
    width: 7px;
    height: 7px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #20e58a;

    box-shadow: 0 0 10px #20e58a;
}

.profile-status strong {
    display: block;

    color: #d7e0ea;

    font-size: 8px;

    line-height: 1.4;
}

.profile-status small {
    display: block;

    margin-top: 1px;

    color: #687487;

    font-size: 7px;

    line-height: 1.3;
}


/* =========================
   Hero Content
========================= */

.hero-pro-content {
    direction: rtl;

    max-width: 560px;

    text-align: right;
}

.hero-pro-label {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 10px;

    color: var(--primary);

    font-family: monospace;

    font-size: 11px;

    letter-spacing: 2px;

    direction: ltr;

    justify-content: flex-end;
}

.hero-pro-label span {
    width: 30px;
    height: 1px;

    background: var(--primary);
}

.hero-pro-content h1 {
    font-size: clamp(40px, 5vw, 60px);

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: -1px;
}

.hero-pro-content h2 {
    margin-top: 3px;

    color: #c9d3df;

    font-size: 18px;

    font-weight: 400;
}

.hero-pro-content h2 b {
    color: var(--primary);
}

.hero-pro-description {
    margin-top: 15px;

    max-width: 540px;

    color: #aeb8c6;

    font-size: 12px;

    line-height: 1.9;
}

.hero-pro-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 14px;

    direction: ltr;

    justify-content: flex-end;
}

.hero-pro-tags span {
    padding: 4px 9px;

    border: 1px solid rgba(0,212,255,.16);

    border-radius: 7px;

    color: #91a0b2;

    background: rgba(0,212,255,.035);

    font-family: monospace;

    font-size: 8px;

    letter-spacing: 1px;
}


/* =========================
   Hero Button
========================= */

.hero-pro-actions {
    display: flex;
    align-items: center;

    margin-top: 18px;
}

.hero-pro-button {
    display: inline-flex;

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

    gap: 10px;

    padding: 9px 17px;

    border-radius: 9px;

    color: #001015;

    background: linear-gradient(
        135deg,
        var(--primary),
        #4de5ff
    );

    font-size: 10px;

    font-weight: bold;

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

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


/* =========================
   Hero Bottom
========================= */

.hero-pro-bottom {
    position: absolute;

    bottom: 0;
    left: 0;
    right: 0;

    z-index: 6;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(255,255,255,.06);

    background: rgba(7,11,18,.55);

    backdrop-filter: blur(10px);
}

.hero-pro-bottom > div {
    padding: 9px 12px;

    border-left: 1px solid rgba(255,255,255,.05);

    text-align: center;
}

.hero-pro-bottom strong {
    display: block;

    color: var(--primary);

    font-family: monospace;

    font-size: 8px;

    letter-spacing: 1px;
}

.hero-pro-bottom span {
    display: block;

    color: #697587;

    font-size: 8px;
}


/* =========================
   Sections
========================= */

.section {
    width: min(1180px, calc(100% - 50px));

    margin: 0 auto;

    padding: 40px 0;
}


/* =========================
   Section Titles
========================= */

.section-title {
    display: flex;

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

    gap: 16px;

    margin-bottom: 22px;
}

.section-title-content {
    text-align: center;

    min-width: 125px;
}

.section-title span {
    display: block;

    margin-bottom: 1px;

    color: var(--primary);

    font-family: monospace;

    font-size: 8px;

    letter-spacing: 2px;
}

.section-title h2 {
    color: #f3f6fa;

    font-size: 24px;

    font-weight: 800;

    line-height: 1.5;
}

.section-title-line {
    width: 75px;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(0,212,255,.75)
    );

    opacity: .75;
}

.section-title-line:last-child {
    background: linear-gradient(
        90deg,
        rgba(0,212,255,.75),
        transparent
    );
}


/* =========================
   About
========================= */

.about-card {
    position: relative;

    width: min(980px, 100%);

    margin: 0 auto;

    padding: 25px 48px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(0,212,255,.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(124,58,237,.06),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            rgba(17,24,39,.98),
            rgba(8,14,24,.98)
        );

    border: 1px solid rgba(0,212,255,.18);

    border-radius: 16px;

    overflow: hidden;

    box-shadow:
        0 20px 55px rgba(0,0,0,.22),
        inset 0 1px 0 rgba(255,255,255,.035);
}

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

    position: absolute;

    top: 0;
    right: 0;

    width: 4px;
    height: 100%;

    background:
        linear-gradient(
            to bottom,
            var(--primary),
            var(--secondary)
        );
}

.about-text {
    position: relative;

    width: 100%;

    text-align: right;

    z-index: 3;

    padding-right: 8px;
}

.about-text p {
    position: relative;

    color: #c0cad7;

    font-size: 12px;

    font-weight: 500;

    line-height: 2;

    padding-right: 18px;
}

.about-text p::before {
    content: "";

    position: absolute;

    right: 0;
    top: 10px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--primary);

    box-shadow:
        0 0 10px rgba(0,212,255,.7);
}

.about-text p + p {
    margin-top: 11px;
}


/* =========================
   Services
========================= */

.services-section {
    padding-top: 18px;
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;
}

.service-card {
    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: var(--card);

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

    border-radius: 14px;

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

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

    border-color: rgba(0,212,255,.35);

    box-shadow:
        0 15px 35px rgba(0,0,0,.25);
}


/* =========================
   Service Images
========================= */

.service-image {
    width: 100%;

    height: 145px;

    overflow: hidden;

    background: #0a1019;

    display: flex;

    align-items: center;

    justify-content: center;
}

.service-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    padding: 0;

    transition: transform .4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.025);
}

.service-content {
    padding: 11px 14px 14px;

    text-align: right;
}

.service-content h3 {
    margin-bottom: 5px;

    color: #f4f7fb;

    font-size: 13px;

    line-height: 1.6;
}

.service-content p {
    color: #8995a6;

    font-size: 9px;

    line-height: 1.8;

    text-align: justify;
}


/* =========================
   Cooperation
========================= */

.cooperation-section {
    padding-top: 18px;
}

.cooperation-card {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    direction: ltr;

    overflow: hidden;

    background: var(--card);

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

    border-radius: 16px;
}

.cooperation-image {
    min-height: 260px;

    overflow: hidden;
}

.cooperation-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.cooperation-content {
    padding: 25px 30px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    direction: rtl;

    text-align: right;
}

.cooperation-content h3 {
    margin-bottom: 7px;

    color: #ffffff;

    font-size: 19px;
}

.cooperation-intro {
    color: #aab5c3;

    font-size: 11px;

    line-height: 1.9;
}

.cooperation-features {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 8px;

    margin: 14px 0;
}

.cooperation-feature {
    padding: 10px;

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

    border: 1px solid rgba(255,255,255,.06);

    border-radius: 10px;

    cursor: pointer;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.cooperation-feature:hover {
    border-color: rgba(0,212,255,.28);

    background: rgba(0,212,255,.045);

    transform: translateY(-2px);
}

.cooperation-feature.active {
    background: rgba(0,212,255,.09);

    border-color: rgba(0,212,255,.55);
}

.cooperation-feature strong {
    display: block;

    margin-bottom: 3px;

    color: var(--primary);

    font-size: 10px;
}

.cooperation-feature span {
    display: block;

    color: #7f8b9c;

    font-size: 8px;

    line-height: 1.6;
}

.cooperation-text {
    color: #9ba7b6;

    font-size: 10px;

    line-height: 1.9;
}


/* =========================
   Contact
========================= */

.contact-section {
    padding-top: 18px;

    padding-bottom: 35px;
}

.contact-card {
    position: relative;

    max-width: 700px;

    margin: auto;

    padding: 28px 34px;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(0,212,255,.07),
            transparent 45%
        ),
        linear-gradient(
            135deg,
            rgba(17,24,39,.98),
            rgba(8,14,24,.98)
        );

    border: 1px solid rgba(0,212,255,.18);

    border-radius: 16px;

    box-shadow:
        0 20px 55px rgba(0,0,0,.25),
        inset 0 1px 0 rgba(255,255,255,.035);
}

.contact-heading {
    display: flex;

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

    margin-bottom: 12px;
}

.contact-heading h3 {
    margin: 0;

    color: #ffffff;

    font-size: 19px;

    font-weight: 800;

    white-space: nowrap;
}

.contact-card > p {
    max-width: 560px;

    margin: 0 auto 19px;

    color: #b8c3d0;

    font-size: 11.5px;

    line-height: 2;

    font-weight: 500;
}

.contact-links {
    display: flex;

    justify-content: center;

    align-items: stretch;

    gap: 12px;

    flex-wrap: wrap;
}

.contact-item {
    min-width: 220px;

    padding: 12px 20px;

    border-radius: 11px;

    border: 1px solid rgba(0,212,255,.18);

    background:
        linear-gradient(
            135deg,
            rgba(0,212,255,.07),
            rgba(0,212,255,.025)
        );

    transition:
        background .25s ease,
        transform .25s ease,
        border-color .25s ease;
}

.contact-item:hover {
    background: rgba(0,212,255,.09);

    border-color: rgba(0,212,255,.35);

    transform: translateY(-2px);
}

.contact-item span {
    display: block;

    margin-bottom: 2px;

    color: #7e8a9c;

    font-size: 8px;

    font-weight: 500;
}

.contact-item strong {
    display: block;

    margin-top: 2px;

    color: #e8faff;

    font-size: 14px;

    font-weight: 700;

    line-height: 1.5;

    font-family:
        "Segoe UI",
        Tahoma,
        Arial,
        sans-serif;

    letter-spacing: .35px;

    direction: ltr;
}

.contact-item:hover strong {
    color: var(--primary);
}

.contact-item.phone {
    direction: ltr;
}

.contact-item.email {
    direction: ltr;
}


/* =========================
   Footer
========================= */

footer {
    padding: 15px;

    border-top: 1px solid rgba(255,255,255,.06);

    text-align: center;

    background: #05080d;
}

footer p {
    color: #687487;

    font-size: 8px;
}


/* =========================
   Tablet
========================= */

@media (max-width: 1000px) {

    .hero-pro {
        min-height: 680px;
    }

    .hero-pro-container {
        grid-template-columns: 1fr;

        gap: 0;

        padding: 30px 0 100px;
    }

    .hero-pro-profile-wrap {
        width: 360px;
        height: 350px;

        transform: translateY(-5px);
    }

    .hero-pro-profile {
        width: 290px;
        height: 290px;
    }

    .profile-orbit-one {
        width: 345px;
        height: 345px;
    }

    .profile-orbit-two {
        width: 380px;
        height: 380px;
    }

    .profile-badge-one {
        top: 50px;
        left: -5px;
    }

    .profile-badge-two {
        top: auto;
        right: -5px;
        bottom: 55px;
    }

    .profile-badge-three {
        bottom: -3px;
    }

    .profile-status {
        top: 5px;
        right: -5px;
    }

    .hero-pro-content {
        max-width: 700px;

        margin: auto;

        text-align: center;
    }

    .hero-pro-label {
        justify-content: center;
    }

    .hero-pro-tags {
        justify-content: center;
    }

    .hero-pro-actions {
        justify-content: center;
    }

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

    .cooperation-card {
        grid-template-columns: 1fr;
    }

    .cooperation-image {
        min-height: 230px;
    }

    .cooperation-content {
        padding: 25px;
    }
}


/* =========================
   Mobile
========================= */

@media (max-width: 650px) {

    .navbar {
        height: 54px;

        overflow-x: auto;

        justify-content: flex-start;

        scrollbar-width: none;
    }

    .navbar::-webkit-scrollbar {
        display: none;
    }

    .navbar nav {
        width: max-content;

        padding: 0 14px;

        gap: 17px;
    }

    .navbar nav a {
        font-size: 9px;
    }


    /* Hero */

    .hero-pro {
        min-height: 650px;
    }

    .hero-pro-container {
        width: calc(100% - 24px);

        padding: 18px 0 95px;
    }

    .hero-pro-profile-wrap {
        width: 290px;
        height: 300px;

        transform: none;
    }

    .hero-pro-profile {
        width: 245px;
        height: 245px;
    }

    .profile-orbit-one {
        width: 275px;
        height: 275px;
    }

    .profile-orbit-two {
        width: 300px;
        height: 300px;
    }


    /* Badges */

    .profile-badge {
        width: 92px;

        padding: 5px 5px;

        border-radius: 8px;
    }

    .profile-badge strong {
        font-size: 6.5px;

        letter-spacing: .1px;
    }

    .profile-badge span {
        font-size: 5.8px;
    }

    .profile-badge-one {
        left: -2px;
        top: 42px;
    }

    .profile-badge-two {
        right: -2px;
        top: auto;
        bottom: 50px;
    }

    .profile-badge-three {
        width: 125px;

        left: 50%;
        bottom: -2px;

        transform: translateX(-50%);
    }


    /* Status */

    .profile-status {
        left: 50%;
        right: auto;

        top: 0;

        width: auto;

        min-width: 115px;

        padding: 4px 6px;

        gap: 5px;

        border-radius: 7px;

        transform: translateX(-50%);
    }

    .profile-status strong {
        font-size: 6.5px;
    }

    .profile-status small {
        font-size: 5.5px;
    }

    .status-dot {
        width: 5px;
        height: 5px;
    }


    /* Hero Text */

    .hero-pro-content {
        width: 100%;
    }

    .hero-pro-label {
        font-size: 9px;

        margin-bottom: 7px;
    }

    .hero-pro-content h1 {
        font-size: 30px;

        line-height: 1.1;
    }

    .hero-pro-content h2 {
        font-size: 13px;
    }

    .hero-pro-description {
        margin-top: 10px;

        font-size: 10px;

        line-height: 1.9;
    }

    .hero-pro-tags {
        gap: 4px;

        margin-top: 10px;
    }

    .hero-pro-tags span {
        padding: 3px 6px;

        font-size: 6.5px;
    }

    .hero-pro-actions {
        margin-top: 13px;
    }

    .hero-pro-button {
        padding: 8px 14px;

        font-size: 9px;
    }


    /* Hero Bottom */

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

    .hero-pro-bottom > div {
        padding: 7px 5px;
    }

    .hero-pro-bottom strong {
        font-size: 6.5px;
    }

    .hero-pro-bottom span {
        font-size: 6.5px;
    }


    /* Sections */

    .section {
        width: calc(100% - 24px);

        padding: 32px 0;
    }

    .section-title {
        gap: 9px;

        margin-bottom: 17px;
    }

    .section-title-content {
        min-width: 105px;
    }

    .section-title span {
        font-size: 7px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .section-title-line {
        width: 35px;
    }


    /* About */

    .about-card {
        padding: 18px 15px;

        border-radius: 13px;
    }

    .about-text {
        padding-right: 3px;
    }

    .about-text p {
        font-size: 10.5px;

        line-height: 1.95;

        padding-right: 14px;
    }

    .about-text p::before {
        width: 4px;
        height: 4px;

        top: 8px;
    }

    .about-text p + p {
        margin-top: 9px;
    }


    /* Services */

    .services-section {
        padding-top: 12px;
    }

    .services-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .service-image {
        height: 145px;
    }

    .service-content {
        padding: 10px 12px 12px;
    }

    .service-content h3 {
        font-size: 12px;

        margin-bottom: 4px;
    }

    .service-content p {
        font-size: 8.5px;

        line-height: 1.8;
    }


    /* Cooperation */

    .cooperation-section {
        padding-top: 12px;
    }

    .cooperation-image {
        height: 180px;
        min-height: 180px;
    }

    .cooperation-content {
        padding: 18px 14px;
    }

    .cooperation-content h3 {
        font-size: 15px;
    }

    .cooperation-intro {
        font-size: 9px;

        line-height: 1.8;
    }

    .cooperation-features {
        grid-template-columns: 1fr;

        gap: 6px;

        margin: 11px 0;
    }

    .cooperation-feature {
        padding: 8px;
    }

    .cooperation-feature strong {
        font-size: 9px;
    }

    .cooperation-feature span {
        font-size: 7.5px;
    }

    .cooperation-text {
        font-size: 8.5px;

        line-height: 1.8;
    }


    /* Contact */

    .contact-section {
        padding-top: 12px;

        padding-bottom: 28px;
    }

    .contact-card {
        padding: 22px 13px;

        border-radius: 13px;
    }

    .contact-heading {
        margin-bottom: 8px;
    }

    .contact-heading h3 {
        font-size: 15px;
    }

    .contact-card > p {
        font-size: 9px;

        line-height: 1.9;

        margin-bottom: 13px;
    }

    .contact-links {
        flex-direction: column;

        gap: 7px;
    }

    .contact-item {
        width: 100%;

        min-width: 0;

        padding: 10px;
    }

    .contact-item span {
        font-size: 7px;
    }

    .contact-item strong {
        font-size: 12px;

        letter-spacing: .25px;
    }


    /* Footer */

    footer {
        padding: 14px;
    }

    footer p {
        font-size: 7px;
    }

}