/* =========================================================
   DIGIVORX — HERO SECTION
   ========================================================= */


/* =========================================================
   01. GLOBAL RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #030711;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   02. HERO
   ========================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 48%,
            rgba(0, 91, 255, 0.13),
            transparent 28%
        ),
        radial-gradient(
            circle at 18% 75%,
            rgba(0, 72, 255, 0.06),
            transparent 30%
        ),
        #030711;
}


/* =========================================================
   03. HERO BACKGROUND GLOW
   ========================================================= */

.hero-glow {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
}

.hero-glow-left {
    width: 500px;
    height: 500px;
    left: -300px;
    top: 40%;
    background: rgba(0, 75, 255, 0.16);
}

.hero-glow-right {
    width: 600px;
    height: 600px;
    right: -250px;
    top: 15%;
    background: rgba(0, 102, 255, 0.12);
}


/* =========================================================
   04. NAVIGATION
   ========================================================= */

.navbar {
    position: relative;
    z-index: 10;

    width: min(1370px, calc(100% - 120px));
    height: 100px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Logo */

.brand-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo img {
    display: block;
    width: 205px;
    height: auto;
}


/* Navigation links */

.nav-links {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-left: auto;
    margin-right: 70px;
}

.nav-link {
    position: relative;

    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);

    padding: 10px 0;

    transition: color 0.25s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link.active {
    color: #ffffff;
}

.nav-link.active::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    background: #146bff;
}


/* Navigation CTA */

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-width: 172px;
    height: 52px;

    border-radius: 10px;

    background: #124cff;

    font-size: 16px;
    font-weight: 600;

    box-shadow:
        0 0 28px rgba(0, 76, 255, 0.28);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);

    box-shadow:
        0 0 38px rgba(0, 76, 255, 0.42);
}

.arrow {
    font-size: 19px;
    line-height: 1;
}


/* =========================================================
   05. HERO CONTENT
   ========================================================= */

.hero-content {
    position: relative;
    z-index: 2;

    width: min(1370px, calc(100% - 120px));

    min-height: 670px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    align-items: center;
}


/* =========================================================
   06. HERO COPY
   ========================================================= */

.hero-copy {
    position: relative;
    z-index: 4;

    padding-top: 10px;
    transform: translateY(-15px);
}


/* Badge */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    height: 40px;

    padding: 0 17px;

    border: 1px solid rgba(52, 125, 255, 0.38);

    border-radius: 999px;

    background:
        rgba(7, 20, 43, 0.72);

    color: #f1f5ff;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15px;

    box-shadow:
        inset 0 0 20px rgba(0, 91, 255, 0.04);
}

.badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #1683ff;

    font-size: 17px;
    font-weight: 700;
}


/* Main heading */

.hero-title {
    margin-top: 34px;

    font-size: clamp(58px, 5.2vw, 86px);

    line-height: 0.98;

    letter-spacing: -3.5px;

    font-weight: 800;

    text-transform: uppercase;
}

.hero-title span {
    display: block;
}

.hero-title strong {
    color: #146bff;
    font-weight: 800;

    text-shadow:
        0 0 32px rgba(20, 107, 255, 0.18);
}


/* Description */

.hero-description {
    max-width: 570px;

    margin-top: 24px;

    font-size: 20px;
    line-height: 1.55;

    color: rgba(255, 255, 255, 0.88);

    letter-spacing: -0.2px;
}

.hero-description strong {
    color: #ffffff;
    font-weight: 700;
}


/* =========================================================
   07. HERO BUTTONS
   ========================================================= */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 28px;

    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    height: 60px;

    padding: 0 30px;

    border-radius: 10px;

    font-size: 17px;
    font-weight: 600;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


/* Primary */

.button-primary {
    min-width: 193px;

    background: #124cff;

    box-shadow:
        0 0 30px rgba(0, 76, 255, 0.28);
}

.button-primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 0 40px rgba(0, 76, 255, 0.42);
}


/* Secondary */

.button-secondary {
    min-width: 198px;

    border: 1px solid rgba(180, 202, 245, 0.58);

    background: rgba(5, 12, 26, 0.45);

    color: #ffffff;
}

.button-secondary:hover {
    transform: translateY(-2px);

    border-color: rgba(20, 107, 255, 0.85);

    background: rgba(10, 30, 65, 0.55);
}

.button-arrow {
    font-size: 19px;
    line-height: 1;
}


/* =========================================================
   08. HERO VISUAL
   ========================================================= */

.hero-visual-wrapper {
    position: relative;

    height: 670px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: -145px;
    transform: translateY(25px);
}

.hero-visual-wrapper::before {
    content: "";

    position: absolute;

    width: 680px;
    height: 520px;

    right: 4%;
    top: 14%;

    background:
        radial-gradient(
            ellipse,
            rgba(0, 92, 255, 0.16),
            transparent 68%
        );

    filter: blur(25px);

    pointer-events: none;
}

.hero-visual {
    position: relative;
    z-index: 2;

    display: block;

    width: 116%;
    max-width: 930px;

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(0 20px 45px rgba(0, 0, 0, 0.45))
        drop-shadow(0 0 35px rgba(0, 81, 255, 0.10));

    transform: translate(30px, -40px);
}


/* =========================================================
   09. HERO VALUE STRIP
   ========================================================= */

.hero-values {
    position: relative;
    z-index: 5;

    width: min(1370px, calc(100% - 120px));

    margin: 0 auto;

    min-height: 92px;

    display: grid;

    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr;

    align-items: center;
}


/* Individual value */

.hero-value {
    display: flex;
    align-items: center;
    gap: 18px;

    min-width: 0;
}

.value-icon {
    flex-shrink: 0;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #087bff;

    font-size: 34px;
    font-weight: 400;

    text-shadow:
        0 0 18px rgba(0, 106, 255, 0.32);
}

.value-content h3 {
    font-size: 16px;
    line-height: 1.2;

    font-weight: 700;

    color: #ffffff;
}

.value-content p {
    margin-top: 7px;

    font-size: 14px;
    line-height: 1.3;

    color: rgba(255, 255, 255, 0.67);
}


/* Dividers */

.value-divider {
    width: 1px;
    height: 52px;

    background:
        rgba(255, 255, 255, 0.20);
}


/* =========================================================
   10. SCROLL INDICATOR
   ========================================================= */

.scroll-indicator {
    position: relative;
    z-index: 5;

    width: fit-content;

    margin: 24px auto 22px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 14px;
}

.mouse-icon {
    position: relative;

    width: 23px;
    height: 36px;

    border: 2px solid rgba(255, 255, 255, 0.88);

    border-radius: 14px;
}

.mouse-icon span {
    position: absolute;

    top: 6px;
    left: 50%;

    width: 3px;
    height: 7px;

    transform: translateX(-50%);

    border-radius: 3px;

    background: #ffffff;
}

.scroll-arrow {
    position: absolute;

    left: 50%;
    top: 43px;

    transform: translateX(-50%);

    font-size: 20px;

    color: #ffffff;
}


/* =========================================================
   11. RESPONSIVE — LARGE LAPTOPS
   ========================================================= */

@media (max-width: 1400px) {

    .navbar,
    .hero-content,
    .hero-values {
        width: min(1280px, calc(100% - 80px));
    }

    .nav-links {
        gap: 35px;
        margin-right: 45px;
    }

    .hero-title {
        font-size: clamp(54px, 5.4vw, 76px);
    }

    .hero-visual-wrapper {
        margin-right: -70px;
    }

    .hero-visual {
        max-width: 780px;
    }
}


/* =========================================================
   12. RESPONSIVE — TABLETS
   ========================================================= */

@media (max-width: 1100px) {

    .navbar,
    .hero-content,
    .hero-values {
        width: calc(100% - 50px);
    }

    .nav-links {
        gap: 22px;
        margin-right: 25px;
    }

    .nav-link {
        font-size: 14px;
    }

    .nav-cta {
        min-width: 145px;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        min-height: 620px;
    }

    .hero-title {
        font-size: clamp(48px, 5.8vw, 68px);
        letter-spacing: -2.5px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-visual-wrapper {
        height: 600px;
        margin-right: -30px;
    }

    .hero-visual {
        max-width: 680px;
    }

    .hero-values {
        grid-template-columns: 1fr 1fr;
        row-gap: 25px;
        padding: 20px 0;
    }

    .value-divider {
        display: none;
    }
}


/* =========================================================
   13. RESPONSIVE — MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 800px) {

    .hero {
        min-height: auto;
    }

    .navbar {
        width: calc(100% - 40px);
        height: 80px;
    }

    .brand-logo img {
        width: 155px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        min-width: 125px;
        height: 46px;

        font-size: 14px;
    }

    .hero-content {
        width: calc(100% - 40px);

        display: flex;
        flex-direction: column;

        min-height: auto;

        padding-top: 55px;
    }

    .hero-copy {
        width: 100%;
        text-align: left;
    }

    .hero-badge {
        font-size: 11px;
        height: 36px;
    }

    .hero-title {
        margin-top: 24px;

        font-size: clamp(45px, 13vw, 65px);

        letter-spacing: -2px;
    }

    .hero-description {
        margin-top: 24px;

        max-width: 100%;

        font-size: 17px;
    }

    .hero-buttons {
        flex-wrap: wrap;
        gap: 15px;

        margin-top: 30px;
    }

    .button {
        height: 54px;

        font-size: 15px;

        padding: 0 22px;
    }

    .button-primary,
    .button-secondary {
        min-width: 165px;
    }

    .hero-visual-wrapper {
        width: 100%;
        height: auto;

        min-height: 400px;

        margin: 10px 0 0;
    }

    .hero-visual {
        width: 115%;
        max-width: none;

        transform: translateX(3%);
    }

    .hero-values {
        width: calc(100% - 40px);

        display: flex;
        flex-direction: column;

        align-items: flex-start;

        gap: 24px;

        padding: 35px 0 20px;
    }

    .hero-value {
        width: 100%;
    }

    .value-content h3 {
        font-size: 15px;
    }

    .value-content p {
        font-size: 13px;
    }

    .scroll-indicator {
        margin-top: 30px;
        margin-bottom: 45px;
    }
}


/* =========================================================
   14. RESPONSIVE — SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .navbar {
        width: calc(100% - 28px);
    }

    .brand-logo img {
        width: 135px;
    }

    .nav-cta {
        min-width: 108px;
        height: 42px;

        font-size: 13px;
    }

    .hero-content {
        width: calc(100% - 28px);
        padding-top: 45px;
    }

    .hero-badge {
        max-width: 100%;
        padding: 0 12px;

        font-size: 9.5px;
    }

    .hero-title {
        font-size: 43px;
    }

    .hero-description {
        font-size: 16px;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
    }

    .hero-visual-wrapper {
        min-height: 300px;
    }

    .hero-visual {
        width: 130%;
        transform: translateX(-2%);
    }

    .hero-values {
        width: calc(100% - 28px);
    }
}
/* =========================================================
   DIGIVORX — SECTION 02
   WHAT IS DIGIVORX?
   ========================================================= */


/* =========================================================
   15. ABOUT SECTION
   ========================================================= */

.about-section {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 72% 42%,
            rgba(0, 74, 255, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 25% 80%,
            rgba(0, 68, 255, 0.045),
            transparent 30%
        ),
        #030711;

    padding: 115px 0 90px;
}


/* Subtle background texture */

.about-section::before {
    content: "";

    position: absolute;

    width: 850px;
    height: 850px;

    right: -250px;
    top: 40px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 91, 255, 0.08),
            transparent 68%
        );

    pointer-events: none;
}


/* Main container */

.about-container {
    position: relative;
    z-index: 2;

    width: min(1425px, calc(100% - 110px));

    margin: 0 auto;
}


/* =========================================================
   16. ABOUT MAIN LAYOUT
   ========================================================= */

.about-main {
    display: grid;

    grid-template-columns:
        minmax(0, 0.98fr)
        minmax(620px, 1.02fr);

    align-items: center;

    gap: 55px;
}


/* =========================================================
   17. ABOUT COPY
   ========================================================= */

.about-copy {
    position: relative;
    z-index: 3;
}


/* Section label */

.about-section-label {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 34px;

    color: #146bff;

    font-size: 16px;
    font-weight: 600;

    letter-spacing: 0.2px;
}


.about-number {
    font-weight: 700;
}


.about-label-line {
    width: 60px;
    height: 1px;

    background: #146bff;
}


.about-label-text {
    color: #146bff;

    font-size: 16px;
    font-weight: 600;
}


/* Main heading */

.about-title {
    max-width: 700px;

    font-size: clamp(47px, 4.2vw, 70px);

    line-height: 1.08;

    letter-spacing: -2.8px;

    font-weight: 700;

    color: #ffffff;
}


.about-title span {
    display: block;
}


.about-title strong {
    display: block;

    margin-top: 4px;

    color: #146bff;

    font-weight: 700;

    text-shadow:
        0 0 32px rgba(20, 107, 255, 0.16);
}


/* Description */

.about-description {
    max-width: 650px;

    margin-top: 32px;

    font-size: 20px;

    line-height: 1.62;

    letter-spacing: -0.15px;

    color: rgba(255, 255, 255, 0.84);
}


/* =========================================================
   18. ABOUT VALUES
   ========================================================= */

.about-values {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    margin-top: 38px;

    border-top: 1px solid rgba(255, 255, 255, 0.13);

    padding-top: 35px;
}


.about-value {
    min-width: 0;

    padding: 0 21px;

    border-right:
        1px solid rgba(255, 255, 255, 0.13);
}


.about-value:first-child {
    padding-left: 0;
}


.about-value:last-child {
    border-right: none;

    padding-right: 0;
}


.about-value-icon {
    position: relative;

    width: 48px;
    height: 48px;

    margin-bottom: 20px;

    display: none;

    align-items: center;
    justify-content: center;

    color: #146bff;

    font-size: 30px;

    text-shadow:
        0 0 18px rgba(0, 106, 255, 0.38);
}


.about-value h3 {
    margin-bottom: 12px;

    font-size: 16px;

    line-height: 1.25;

    font-weight: 700;

    color: #ffffff;
}


.about-value p {
    max-width: 145px;

    font-size: 14px;

    line-height: 1.65;

    color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   19. VALUE ICONS
   ========================================================= */

.icon-target {
    position: relative;

    width: 34px;
    height: 34px;

    border: 3px solid #146bff;

    border-radius: 50%;
}


.icon-target::before {
    content: "";

    position: absolute;

    inset: 7px;

    border: 2px solid #146bff;

    border-radius: 50%;
}


.icon-target::after {
    content: "";

    position: absolute;

    width: 15px;
    height: 3px;

    right: -7px;
    top: 4px;

    background: #146bff;

    transform: rotate(-45deg);

    transform-origin: left center;
}


.icon-chart {
    position: relative;

    width: 35px;
    height: 32px;

    border-bottom: 3px solid #146bff;
    border-left: 3px solid #146bff;
}


.icon-chart::before {
    content: "";

    position: absolute;

    width: 28px;
    height: 24px;

    left: 3px;
    top: 3px;

    border-top: 3px solid #146bff;
    border-right: 3px solid #146bff;

    transform:
        skewY(-35deg)
        rotate(-8deg);
}


.icon-chart::after {
    content: "";

    position: absolute;

    width: 6px;
    height: 6px;

    right: -2px;
    top: 0;

    border-top: 3px solid #146bff;
    border-right: 3px solid #146bff;
}


.icon-cart {
    position: relative;

    width: 34px;
    height: 24px;

    border: 3px solid #146bff;

    border-top: none;

    transform: skewX(-8deg);
}


.icon-cart::before {
    content: "";

    position: absolute;

    width: 8px;
    height: 3px;

    left: -9px;
    top: -7px;

    background: #146bff;
}


.icon-cart::after {
    content: "••";

    position: absolute;

    left: 3px;
    bottom: -16px;

    color: #146bff;

    font-size: 18px;

    letter-spacing: 10px;
}


.icon-person {
    position: relative;

    width: 38px;
    height: 38px;
}


.icon-person::before {
    content: "";

    position: absolute;

    width: 17px;
    height: 17px;

    top: 0;
    left: 10px;

    border: 3px solid #146bff;

    border-radius: 50%;
}


.icon-person::after {
    content: "";

    position: absolute;

    width: 30px;
    height: 16px;

    left: 3px;
    bottom: 0;

    border: 3px solid #146bff;

    border-bottom: none;

    border-radius: 18px 18px 0 0;
}


/* =========================================================
   20. GROWTH SYSTEM
   ========================================================= */

.growth-system {
    position: relative;

    min-height: 680px;

    display: flex;

    align-items: center;
    justify-content: center;

    top: 70px;
}


.growth-orbit {
    position: relative;

    width: 690px;
    height: 690px;

    max-width: 100%;
}


/* Outer orbit */

.growth-ring {
    position: absolute;

    width: 455px;
    height: 455px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border: 2px solid rgba(20, 107, 255, 0.9);

    border-radius: 50%;

    box-shadow:
        0 0 35px rgba(20, 107, 255, 0.08);
}


.growth-ring::before,
.growth-ring::after {
    content: "";

    position: absolute;

    inset: -35px;

    border-radius: 50%;

    border:
        1px dashed rgba(20, 107, 255, 0.14);
}


.growth-ring::after {
    inset: -65px;

    border:
        1px dotted rgba(20, 107, 255, 0.10);
}


/* Inner ring */

.growth-ring-inner {
    width: 270px;
    height: 270px;

    border:
        2px solid rgba(20, 107, 255, 0.72);

    box-shadow:
        0 0 30px rgba(20, 107, 255, 0.08);
}


.growth-ring-inner::before,
.growth-ring-inner::after {
    display: none;
}


/* =========================================================
   21. GROWTH CENTER
   ========================================================= */

.growth-center {
    position: absolute;

    width: 205px;
    height: 205px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 50% 42%,
            rgba(15, 49, 115, 0.52),
            rgba(3, 13, 31, 0.82) 62%,
            rgba(3, 7, 17, 0.95) 100%
        );

    border:
        1px solid rgba(30, 115, 255, 0.55);

    box-shadow:
        inset 0 0 45px rgba(0, 77, 255, 0.13),
        0 0 45px rgba(0, 85, 255, 0.12);
}


.growth-logo-mark {
    position: relative;

    width: 105px;
    height: 76px;
}


.growth-logo-bar {
    position: absolute;

    left: 10px;
    top: 12px;

    width: 28px;
    height: 52px;

    background:
        linear-gradient(
            90deg,
            #146bff,
            #087bff
        );

    transform:
        skewX(-24deg);
}


.growth-logo-shape {
    position: absolute;

    right: 5px;
    top: 7px;

    width: 68px;
    height: 62px;

    border:
        16px solid #146bff;

    border-left: none;

    border-radius:
        0 40px 40px 0;

    transform: skewX(-8deg);

    filter:
        drop-shadow(
            0 0 12px rgba(20, 107, 255, 0.25)
        );
}


/* =========================================================
   22. ORBIT ARROWS
   ========================================================= */

.orbit-arrow {
    position: absolute;

    z-index: 5;

    color: #146bff;

    font-size: 30px;

    font-weight: 400;

    text-shadow:
        0 0 16px rgba(20, 107, 255, 0.4);
}


.orbit-arrow-top {
    left: 50%;
    top: 67px;

    transform:
        translateX(-50%)
        rotate(-20deg);
}


.orbit-arrow-right {
    right: 66px;
    top: 50%;

    transform:
        translateY(-50%)
        rotate(18deg);
}


.orbit-arrow-bottom {
    left: 50%;
    bottom: 66px;

    transform:
        translateX(-50%)
        rotate(155deg);
}


.orbit-arrow-left {
    left: 65px;
    top: 50%;

    transform:
        translateY(-50%)
        rotate(198deg);
}


/* =========================================================
   23. GROWTH CARDS
   ========================================================= */

.growth-card {
    position: absolute;

    z-index: 4;

    width: 212px;
    min-height: 202px;

    padding: 21px 22px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    border:
        1px solid rgba(124, 159, 220, 0.34);

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(17, 27, 46, 0.88),
            rgba(5, 13, 28, 0.92)
        );

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.28),
        inset 0 0 30px rgba(25, 89, 180, 0.035);

    backdrop-filter: blur(12px);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.growth-card:hover {
    border-color:
        rgba(20, 107, 255, 0.62);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.34),
        0 0 25px rgba(20, 107, 255, 0.08);
}


.growth-card-icon {
    width: 53px;
    height: 53px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 12px;

    border:
        1px solid rgba(50, 118, 255, 0.56);

    border-radius: 50%;

    color: #146bff;

    font-size: 25px;

    background:
        rgba(3, 12, 30, 0.72);

    box-shadow:
        inset 0 0 18px rgba(0, 79, 255, 0.08),
        0 0 15px rgba(0, 75, 255, 0.05);
}


.growth-card h3 {
    margin-bottom: 8px;

    font-size: 19px;

    line-height: 1.15;

    font-weight: 700;

    color: #ffffff;
}


.growth-card p {
    max-width: 175px;

    font-size: 15px;

    line-height: 1.48;

    color: rgba(255, 255, 255, 0.83);
}


/* Individual positions */

.growth-card-acquire {
    left: 50%;
    top: 0;

    transform: translateX(-50%);
}


.growth-card-convert {
    right: 0;
    top: 50%;

    transform: translateY(-50%);
}


.growth-card-scale {
    left: 50%;
    bottom: 0;

    transform: translateX(-50%);
}


.growth-card-analyze {
    left: 0;
    top: 50%;

    transform: translateY(-50%);
}


/* =========================================================
   24. MISSION STRIP
   ========================================================= */

.about-mission {
    position: relative;

    min-height: 180px;

    margin-top: 82px;

    padding: 0 30px;

    display: grid;

    grid-template-columns:
        2.1fr
        1px
        1fr
        1px
        1fr
        1px
        1fr
        1px
        1fr;

    align-items: center;

    border:
        1px solid rgba(119, 154, 215, 0.38);

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(10, 21, 42, 0.70),
            rgba(3, 10, 23, 0.84)
        );

    box-shadow:
        inset 0 0 40px rgba(0, 73, 180, 0.035);
}


/* Mission statement */

.mission-statement {
    display: flex;

    align-items: center;

    gap: 25px;

    padding-right: 35px;
}


.mission-quote {
    font-size: 100px;

    line-height: 0.65;

    font-weight: 800;

    color: #146bff;

    transform: translateY(12px);
}


.mission-copy p {
    margin-bottom: 12px;

    font-size: 17px;

    color: rgba(255, 255, 255, 0.90);
}


.mission-copy h3 {
    font-size: 22px;

    line-height: 1.35;

    font-weight: 700;

    color: #ffffff;
}


.mission-copy strong {
    color: #146bff;
}


/* Mission dividers */

.mission-divider {
    width: 1px;
    height: 70px;

    background:
        rgba(255, 255, 255, 0.13);
}


/* Mission points */

.mission-point {
    height: 100%;

    padding: 25px 20px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;
}


.mission-icon {
    display: none;
}


.mission-point h4 {
    margin-bottom: 9px;

    font-size: 15px;

    font-weight: 700;

    color: #ffffff;
}


.mission-point p {
    max-width: 145px;

    font-size: 13px;

    line-height: 1.5;

    color: rgba(255, 255, 255, 0.67);
}


/* =========================================================
   25. ABOUT RESPONSIVE — LARGE LAPTOP
   ========================================================= */

@media (max-width: 1400px) {

    .about-container {
        width: min(1280px, calc(100% - 80px));
    }

    .about-main {
        grid-template-columns:
            minmax(0, 0.95fr)
            minmax(560px, 1.05fr);

        gap: 30px;
    }

    .growth-orbit {
        width: 620px;
        height: 620px;
    }

    .growth-ring {
        width: 415px;
        height: 415px;
    }

    .growth-ring-inner {
        width: 250px;
        height: 250px;
    }

    .growth-card {
        width: 195px;
        min-height: 195px;
    }
}


/* =========================================================
   26. ABOUT RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .about-section {
        padding-top: 90px;
    }

    .about-container {
        width: calc(100% - 50px);
    }

    .about-main {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .about-copy {
        max-width: 850px;
    }

    .about-title {
        max-width: 800px;
    }

    .about-description {
        max-width: 760px;
    }

    .about-values {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        row-gap: 35px;
    }

    .about-value:nth-child(2) {
        border-right: none;
    }

    .about-value:nth-child(3),
    .about-value:nth-child(4) {
        padding-top: 25px;
    }

    .growth-system {
        min-height: 650px;
    }

    .growth-orbit {
        width: 640px;
        height: 640px;
    }

    .about-mission {
        grid-template-columns:
            1fr 1px 1fr 1px 1fr;

        row-gap: 0;

        padding: 20px;
    }

    .mission-statement {
        grid-column: 1 / -1;

        padding: 15px 10px 25px;

        justify-content: center;
    }

    .about-mission .mission-divider:nth-of-type(1) {
        display: none;
    }

    .about-mission .mission-divider:nth-of-type(2) {
        display: none;
    }

    .about-mission .mission-point:nth-of-type(2) {
        display: none;
    }
}


/* =========================================================
   27. ABOUT RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 800px) {

    .about-section {
        padding: 75px 0 65px;
    }

    .about-container {
        width: calc(100% - 40px);
    }

    .about-section-label {
        margin-bottom: 27px;

        font-size: 13px;
    }

    .about-label-line {
        width: 42px;
    }

    .about-label-text {
        font-size: 13px;
    }

    .about-title {
        font-size: clamp(38px, 10vw, 55px);

        letter-spacing: -1.8px;
    }

    .about-description {
        margin-top: 25px;

        font-size: 17px;

        line-height: 1.6;
    }

    .about-values {
        grid-template-columns: 1fr;

        margin-top: 35px;

        padding-top: 30px;

        gap: 0;
    }

    .about-value,
    .about-value:first-child,
    .about-value:last-child {
        padding: 25px 0;

        border-right: none;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.12);
    }

    .about-value:first-child {
        padding-top: 0;
    }

    .about-value:last-child {
        border-bottom: none;
    }

    .about-value p {
        max-width: 320px;
    }


    /* Growth system */

    .growth-system {
        min-height: 650px;

        overflow: visible;
    }

    .growth-orbit {
        width: 100%;
        height: 620px;
    }

    .growth-ring {
        width: 285px;
        height: 285px;
    }

    .growth-ring-inner {
        width: 180px;
        height: 180px;
    }

    .growth-center {
        width: 145px;
        height: 145px;
    }

    .growth-logo-mark {
        transform: scale(0.72);
    }

    .growth-card {
        width: 155px;
        min-height: 165px;

        padding: 16px 13px;

        border-radius: 14px;
    }

    .growth-card-icon {
        width: 42px;
        height: 42px;

        margin-bottom: 9px;

        font-size: 20px;
    }

    .growth-card h3 {
        font-size: 15px;
    }

    .growth-card p {
        font-size: 12px;

        line-height: 1.42;
    }

    .growth-card-acquire {
        top: 0;
    }

    .growth-card-convert {
        right: -3px;
    }

    .growth-card-scale {
        bottom: 0;
    }

    .growth-card-analyze {
        left: -3px;
    }

    .orbit-arrow {
        font-size: 22px;
    }

    .orbit-arrow-top {
        top: 85px;
    }

    .orbit-arrow-right {
        right: 68px;
    }

    .orbit-arrow-bottom {
        bottom: 84px;
    }

    .orbit-arrow-left {
        left: 68px;
    }


    /* Mission */

    .about-mission {
        display: flex;

        flex-direction: column;

        margin-top: 50px;

        padding: 30px 20px;
    }

    .mission-statement {
        width: 100%;

        padding: 0 0 30px;

        justify-content: flex-start;

        gap: 15px;
    }

    .mission-quote {
        font-size: 70px;
    }

    .mission-copy p {
        font-size: 15px;
    }

    .mission-copy h3 {
        font-size: 19px;
    }

    .mission-divider {
        width: 100%;
        height: 1px;
    }

    .mission-point {
        width: 100%;

        padding: 25px 10px;
    }

    .mission-point p {
        max-width: 240px;
    }
}


/* =========================================================
   28. ABOUT RESPONSIVE — SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .about-container {
        width: calc(100% - 28px);
    }

    .about-section {
        padding-top: 65px;
    }

    .about-title {
        font-size: 38px;

        letter-spacing: -1.4px;
    }

    .about-description {
        font-size: 16px;
    }

    .growth-system {
        min-height: 570px;
    }

    .growth-orbit {
        height: 555px;
    }

    .growth-ring {
        width: 245px;
        height: 245px;
    }

    .growth-ring-inner {
        width: 155px;
        height: 155px;
    }

    .growth-center {
        width: 125px;
        height: 125px;
    }

    .growth-card {
        width: 130px;
        min-height: 145px;

        padding: 13px 9px;
    }

    .growth-card-icon {
        width: 36px;
        height: 36px;

        font-size: 17px;
    }

    .growth-card h3 {
        font-size: 13px;
    }

    .growth-card p {
        font-size: 10.5px;
    }

    .growth-card-convert {
        right: -5px;
    }

    .growth-card-analyze {
        left: -5px;
    }

    .orbit-arrow {
        font-size: 18px;
    }

    .orbit-arrow-right {
        right: 52px;
    }

    .orbit-arrow-left {
        left: 52px;
    }

    .mission-copy h3 {
        font-size: 17px;
    }

    .mission-point h4 {
        font-size: 14px;
    }
}
/* =========================================================
   SECTION 03 — SERVICES
   ========================================================= */

.services-section {
    position: relative;
    width: 100%;
    padding: 120px 0 100px;

    background: #030711;
}


.services-container {
    width: min(1440px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================================
   SERVICES HEADER
   ========================================================= */

.services-header {
    text-align: center;
    margin-bottom: 52px;
}


.services-title {
    margin: 0;

    font-size: clamp(52px, 5vw, 82px);
    line-height: 0.98;
    letter-spacing: -2.8px;
    font-weight: 800;
    text-transform: uppercase;
}


.services-title span {
    display: block;
    color: #ffffff;
}


.services-title strong {
    display: block;
    color: #146bff;
    font-weight: 800;
}


.services-subtitle {
    margin-top: 22px;

    font-size: 19px;
    line-height: 1.5;
    font-weight: 400;

    color: rgba(255, 255, 255, 0.82);
}


/* =========================================================
   SERVICE GRID
   ========================================================= */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 16px;
}


/* =========================================================
   SERVICE CARD
   ========================================================= */

.service-card {
    position: relative;

    min-width: 0;
    min-height: 505px;

    padding: 24px 24px 22px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    border:
        1px solid rgba(119, 154, 215, 0.42);

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            rgba(8, 18, 36, 0.88),
            rgba(2, 9, 21, 0.94)
        );

    box-shadow:
        inset 0 0 35px rgba(0, 73, 180, 0.035);

    overflow: hidden;
}


.service-card:hover {
    border-color:
        rgba(20, 107, 255, 0.62);

    box-shadow:
        inset 0 0 35px rgba(0, 73, 180, 0.045),
        0 0 28px rgba(20, 107, 255, 0.06);
}


/* =========================================================
   SERVICE NUMBER
   ========================================================= */

.service-number {
    align-self: flex-start;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 50%;

    background: #146bff;

    color: #ffffff;

    font-size: 15px;
    line-height: 1;
    font-weight: 700;

    box-shadow:
        0 0 18px rgba(20, 107, 255, 0.28);
}


/* =========================================================
   SERVICE TITLE
   ========================================================= */

.service-card h3 {
    margin: 0 0 11px;

    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;

    color: #ffffff;
}


/* =========================================================
   SERVICE DESCRIPTION
   ========================================================= */

.service-description {
    max-width: 285px;

    margin: 0 auto;

    font-size: 15px;
    line-height: 1.55;

    color: rgba(255, 255, 255, 0.84);
}


/* =========================================================
   SERVICE IMAGE
   ========================================================= */

.service-visual {
    width: 100%;
    height: 165px;

    margin-top: 20px;
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}


.service-visual img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
}


/* =========================================================
   SERVICE CHECKLIST
   ========================================================= */

.service-list {
    width: 100%;

    margin: auto 0 0;
    padding: 0;

    list-style: none;

    display: flex;
    flex-direction: column;

    gap: 11px;

    text-align: left;
}


.service-list li {
    display: flex;
    align-items: center;

    gap: 10px;

    font-size: 14px;
    line-height: 1.35;

    color: rgba(255, 255, 255, 0.92);
}


.service-check {
    flex: 0 0 auto;

    width: 18px;
    height: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #146bff;

    color: #ffffff;

    font-size: 12px;
    line-height: 1;
    font-weight: 700;

    box-shadow:
        0 0 10px rgba(20, 107, 255, 0.28);
}


/* =========================================================
   FULL-FUNNEL APPROACH
   ========================================================= */

.funnel-section {
    width: 100%;

    margin-top: 22px;

    min-height: 172px;

    padding: 25px 30px;

    display: grid;

    grid-template-columns:
        260px
        1fr;

    align-items: center;

    border:
        1px solid rgba(119, 154, 215, 0.42);

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(10, 21, 42, 0.72),
            rgba(3, 10, 23, 0.88)
        );

    box-shadow:
        inset 0 0 40px rgba(0, 73, 180, 0.035);
}


/* =========================================================
   FUNNEL INTRO
   ========================================================= */

.funnel-intro {
    padding-right: 25px;
}


.funnel-intro h3 {
    margin: 0 0 12px;

    font-size: 19px;
    line-height: 1.2;
    font-weight: 700;

    color: #146bff;
}


.funnel-intro p {
    max-width: 220px;

    margin: 0;

    font-size: 15px;
    line-height: 1.55;

    color: rgba(255, 255, 255, 0.88);
}


/* =========================================================
   FUNNEL FLOW
   ========================================================= */

.funnel-flow {
    min-width: 0;

    display: grid;

    grid-template-columns:
        1fr
        45px
        1fr
        45px
        1fr
        45px
        1fr
        45px
        1fr;

    align-items: center;
}


/* =========================================================
   FUNNEL STEP
   ========================================================= */

.funnel-step {
    min-width: 0;

    min-height: 120px;

    padding: 8px 8px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}


.funnel-icon {
    width: 45px;
    height: 45px;

    margin-bottom: 9px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.funnel-icon svg {
    width: 42px;
    height: 42px;

    fill: none;

    stroke: #146bff;

    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;

    filter:
        drop-shadow(
            0 0 7px rgba(20, 107, 255, 0.24)
        );
}


.funnel-step h4 {
    margin: 0 0 7px;

    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;

    color: #ffffff;
}


.funnel-step p {
    max-width: 145px;

    margin: 0;

    font-size: 13px;
    line-height: 1.45;

    color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   FUNNEL ARROWS
   ========================================================= */

.funnel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    color: #146bff;

    font-size: 29px;
    line-height: 1;
    font-weight: 300;

    text-shadow:
        0 0 12px rgba(20, 107, 255, 0.35);
}


/* =========================================================
   SERVICES RESPONSIVE — LAPTOP
   ========================================================= */

@media (max-width: 1200px) {

    .services-container {
        width: calc(100% - 50px);
    }


    .services-grid {
        gap: 14px;
    }


    .service-card {
        padding: 22px 18px 20px;
    }


    .service-card h3 {
        font-size: 18px;
    }


    .service-description {
        font-size: 14px;
    }


    .service-visual {
        height: 150px;
    }


    .service-list li {
        font-size: 13px;
    }


    .funnel-section {
        grid-template-columns: 220px 1fr;

        padding: 22px;
    }


    .funnel-flow {
        grid-template-columns:
            1fr
            30px
            1fr
            30px
            1fr
            30px
            1fr
            30px
            1fr;
    }

}


/* =========================================================
   SERVICES RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 950px) {

    .services-section {
        padding: 90px 0 80px;
    }


    .services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }


    .service-card {
        min-height: 520px;
    }


    .service-visual {
        height: 175px;
    }


    .funnel-section {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .funnel-intro {
        padding-right: 0;

        text-align: center;
    }


    .funnel-intro p {
        margin: 0 auto;
    }

}


/* =========================================================
   SERVICES RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .services-section {
        padding: 75px 0 65px;
    }


    .services-container {
        width: calc(100% - 32px);
    }


    .services-header {
        margin-bottom: 38px;
    }


    .services-title {
        font-size: clamp(40px, 11vw, 58px);

        letter-spacing: -1.8px;
    }


    .services-subtitle {
        margin-top: 18px;

        font-size: 16px;
        line-height: 1.55;
    }


    .services-subtitle br {
        display: none;
    }


    .services-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .service-card {
        min-height: 500px;

        padding: 22px 20px;
    }


    .service-number {
        margin-bottom: 17px;
    }


    .service-card h3 {
        font-size: 20px;
    }


    .service-description {
        max-width: 300px;

        font-size: 15px;
    }


    .service-visual {
        height: 190px;

        margin-top: 20px;
    }


    .service-list {
        gap: 11px;
    }


    .service-list li {
        font-size: 14px;
    }


    .funnel-section {
        margin-top: 18px;

        padding: 25px 18px;
    }


    .funnel-flow {
        grid-template-columns: 1fr;

        gap: 8px;
    }


    .funnel-arrow {
        transform: rotate(90deg);

        height: 20px;
    }


    .funnel-step {
        min-height: 105px;
    }

}
/* =========================================================
   SECTION 04 — PORTFOLIO
   ========================================================= */

.portfolio-section {
    position: relative;

    width: 100%;

    padding: 125px 0 120px;

    background:
        radial-gradient(
            circle at 50% 58%,
            rgba(20, 107, 255, 0.055),
            transparent 42%
        ),
        #020611;

    overflow: hidden;
}


.portfolio-container {
    width: min(1200px, calc(100% - 80px));

    margin: 0 auto;

    position: relative;
}


/* =========================================================
   PORTFOLIO HEADER
   ========================================================= */

.portfolio-header {
    position: relative;

    text-align: center;

    margin-bottom: 42px;
}


.portfolio-title {
    margin: 0;

    font-size: clamp(54px, 6vw, 88px);

    line-height: 0.94;

    letter-spacing: -3.5px;

    font-weight: 800;

    text-transform: uppercase;
}


.portfolio-title span {
    display: block;

    color: #ffffff;
}


.portfolio-title strong {
    display: block;

    color: #146bff;

    font-weight: 800;
}


.portfolio-subtitle {
    max-width: 820px;

    margin: 26px auto 0;

    color: rgba(255, 255, 255, 0.84);

    font-size: 18px;

    line-height: 1.6;

    font-weight: 400;
}


/* =========================================================
   DECORATIVE ACCENT STROKES
   ========================================================= */

.portfolio-accent {
    position: absolute;

    top: 50%;

    width: 62px;

    height: 82px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 13px;

    transform: translateY(-58%);
}


.portfolio-accent span {
    display: block;

    width: 40px;

    height: 4px;

    border-radius: 999px;

    background: #146bff;

    box-shadow:
        0 0 10px rgba(20, 107, 255, 0.42);
}


.portfolio-accent-left {
    left: -5px;

    align-items: flex-end;
}


.portfolio-accent-left span:nth-child(1) {
    transform: rotate(32deg);
}


.portfolio-accent-left span:nth-child(2) {
    transform: rotate(8deg);
}


.portfolio-accent-left span:nth-child(3) {
    transform: rotate(-16deg);
}


.portfolio-accent-right {
    right: -5px;

    align-items: flex-start;
}


.portfolio-accent-right span:nth-child(1) {
    transform: rotate(-32deg);
}


.portfolio-accent-right span:nth-child(2) {
    transform: rotate(-8deg);
}


.portfolio-accent-right span:nth-child(3) {
    transform: rotate(16deg);
}


/* =========================================================
   PORTFOLIO ACCESS CARD
   ========================================================= */

.portfolio-access-card {
    position: relative;

    width: min(880px, 100%);

    min-height: 490px;

    margin: 0 auto;

    padding: 48px 40px 38px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border: 1px solid #146bff;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 50% 42%,
            rgba(20, 107, 255, 0.08),
            transparent 48%
        ),
        linear-gradient(
            145deg,
            rgba(5, 13, 30, 0.94),
            rgba(2, 7, 18, 0.98)
        );

    box-shadow:
        0 0 25px rgba(20, 107, 255, 0.16),
        0 0 70px rgba(20, 107, 255, 0.08),
        inset 0 0 45px rgba(20, 107, 255, 0.025);
}


.portfolio-access-card::before {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    pointer-events: none;

    box-shadow:
        0 0 35px rgba(20, 107, 255, 0.10);
}


/* =========================================================
   FOLDER ICON
   ========================================================= */

.portfolio-folder-icon {
    width: 118px;
    height: 118px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border: 1px solid rgba(20, 107, 255, 0.85);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(20, 107, 255, 0.09),
            rgba(2, 8, 20, 0.45)
        );

    box-shadow:
        0 0 18px rgba(20, 107, 255, 0.18),
        inset 0 0 20px rgba(20, 107, 255, 0.04);
}


.portfolio-folder-icon svg {
    width: 58px;
    height: 58px;

    fill: none;

    stroke: #146bff;

    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;

    filter:
        drop-shadow(
            0 0 8px rgba(20, 107, 255, 0.42)
        );
}


/* =========================================================
   ACCESS CARD HEADING
   ========================================================= */

.portfolio-access-card h3 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(27px, 3vw, 38px);

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -0.8px;

    text-transform: uppercase;
}


/* =========================================================
   ACCESS CARD DESCRIPTION
   ========================================================= */

.portfolio-access-card > p {
    margin: 17px 0 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 18px;

    line-height: 1.6;
}


/* =========================================================
   PORTFOLIO BUTTON
   ========================================================= */

.portfolio-button {
    width: min(510px, 100%);

    min-height: 78px;

    margin-top: 30px;

    padding: 0 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 17px;

    border: 0;

    border-radius: 17px;

    background:
        linear-gradient(
            135deg,
            #146bff,
            #0b45f5
        );

    color: #ffffff;

    text-decoration: none;

    font-size: 18px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: 0.2px;

    box-shadow:
        0 0 20px rgba(20, 107, 255, 0.32),
        0 0 42px rgba(20, 107, 255, 0.14);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.portfolio-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 0 25px rgba(20, 107, 255, 0.45),
        0 0 55px rgba(20, 107, 255, 0.20);
}


.portfolio-button-icon {
    width: 39px;
    height: 39px;

    flex: 0 0 auto;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 2px solid rgba(255, 255, 255, 0.95);

    border-radius: 5px;
}


.portfolio-button-icon svg {
    width: 25px;
    height: 25px;

    fill: none;

    stroke: #ffffff;

    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   PRIVATE PORTFOLIO LABEL
   ========================================================= */

.portfolio-private {
    margin-top: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    color: rgba(183, 193, 214, 0.78);

    font-size: 16px;

    line-height: 1.3;
}


.portfolio-private svg {
    width: 22px;
    height: 22px;

    flex: 0 0 auto;

    fill: none;

    stroke: rgba(183, 193, 214, 0.82);

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   PORTFOLIO RESPONSIVE — LAPTOP
   ========================================================= */

@media (max-width: 1200px) {

    .portfolio-container {
        width: calc(100% - 50px);
    }


    .portfolio-accent-left {
        left: 0;
    }


    .portfolio-accent-right {
        right: 0;
    }

}


/* =========================================================
   PORTFOLIO RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 900px) {

    .portfolio-section {
        padding: 95px 0 90px;
    }


    .portfolio-title {
        font-size: clamp(48px, 8vw, 72px);

        letter-spacing: -2.5px;
    }


    .portfolio-subtitle {
        font-size: 17px;
    }


    .portfolio-access-card {
        min-height: 450px;

        padding: 42px 30px 35px;

        border-radius: 25px;
    }


    .portfolio-folder-icon {
        width: 105px;
        height: 105px;
    }


    .portfolio-accent {
        display: none;
    }

}


/* =========================================================
   PORTFOLIO RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .portfolio-section {
        padding: 75px 0 70px;
    }


    .portfolio-container {
        width: calc(100% - 32px);
    }


    .portfolio-header {
        margin-bottom: 32px;
    }


    .portfolio-title {
        font-size: clamp(40px, 11vw, 58px);

        line-height: 0.98;

        letter-spacing: -1.8px;
    }


    .portfolio-subtitle {
        margin-top: 20px;

        font-size: 16px;

        line-height: 1.55;
    }


    .portfolio-subtitle br {
        display: none;
    }


    .portfolio-access-card {
        min-height: 420px;

        padding: 35px 18px 30px;

        border-radius: 22px;
    }


    .portfolio-folder-icon {
        width: 88px;
        height: 88px;

        margin-bottom: 22px;
    }


    .portfolio-folder-icon svg {
        width: 45px;
        height: 45px;
    }


    .portfolio-access-card h3 {
        font-size: 25px;

        letter-spacing: -0.5px;
    }


    .portfolio-access-card > p {
        margin-top: 14px;

        font-size: 16px;

        line-height: 1.55;
    }


    .portfolio-button {
        min-height: 68px;

        margin-top: 25px;

        padding: 0 18px;

        gap: 12px;

        border-radius: 14px;

        font-size: 14px;
    }


    .portfolio-button-icon {
        width: 34px;
        height: 34px;
    }


    .portfolio-button-icon svg {
        width: 21px;
        height: 21px;
    }


    .portfolio-private {
        margin-top: 23px;

        font-size: 14px;
    }


    .portfolio-private svg {
        width: 19px;
        height: 19px;
    }

}


/* =========================================================
   PORTFOLIO RESPONSIVE — SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .portfolio-container {
        width: calc(100% - 28px);
    }


    .portfolio-title {
        font-size: 38px;

        letter-spacing: -1.4px;
    }


    .portfolio-access-card {
        padding-left: 15px;
        padding-right: 15px;
    }


    .portfolio-access-card h3 {
        font-size: 22px;
    }


    .portfolio-access-card > p {
        font-size: 15px;
    }


    .portfolio-button {
        min-height: 64px;

        font-size: 12.5px;

        letter-spacing: 0;
    }

}
/* =========================================================
   SECTION 05 — CONTACT / CTA
========================================================= */

.contact-section {
    position: relative;
    width: 100%;
    padding: 115px 0 100px;
    background: #030711;
    overflow: hidden;
}


/* =========================================================
   CONTACT CONTAINER
========================================================= */

.contact-container {
    position: relative;
    z-index: 2;

    width: min(1440px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================================
   CONTACT HEADER
========================================================= */

.contact-header {
    text-align: center;
    margin-bottom: 58px;
}

.contact-title {
    margin: 0;

    font-size: clamp(52px, 5vw, 82px);
    line-height: 0.98;
    letter-spacing: -2.8px;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-title span {
    display: block;
    color: #ffffff;
}

.contact-title strong {
    display: block;
    color: #146bff;
    font-weight: 800;
}

.contact-subtitle {
    margin-top: 24px;

    font-size: 19px;
    line-height: 1.55;

    color: rgba(255, 255, 255, 0.84);
}


/* =========================================================
   CONTACT GRID
========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 28px;
}


/* =========================================================
   LEFT INFORMATION CARD
========================================================= */

.contact-info-card {
    position: relative;

    min-height: 610px;

    padding: 38px 44px 32px;

    border: 1px solid rgba(119, 154, 215, 0.42);
    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(8, 18, 36, 0.88),
            rgba(2, 9, 21, 0.94)
        );

    box-shadow:
        inset 0 0 40px rgba(0, 73, 180, 0.035);
}


/* =========================================================
   INTRO
========================================================= */

.contact-intro {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.contact-main-icon {
    flex: 0 0 auto;

    width: 105px;
    height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(20, 107, 255, 0.55);
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(20, 107, 255, 0.12),
            rgba(2, 9, 21, 0.35) 65%
        );

    box-shadow:
        0 0 30px rgba(20, 107, 255, 0.10);
}

.contact-main-icon svg {
    width: 54px;
    height: 54px;

    fill: none;
    stroke: #146bff;

    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;

    filter:
        drop-shadow(
            0 0 8px rgba(20, 107, 255, 0.35)
        );
}

.contact-intro-copy {
    min-width: 0;
}

.contact-intro-copy h3 {
    margin: 2px 0 5px;

    font-size: 31px;
    line-height: 1.1;
    font-weight: 700;

    color: #ffffff;
}

.contact-intro-copy h4 {
    margin: 0;

    font-size: 28px;
    line-height: 1.15;
    font-weight: 600;

    color: #146bff;
}

.contact-intro-copy p {
    margin-top: 15px;

    max-width: 570px;

    font-size: 17px;
    line-height: 1.55;

    color: rgba(255, 255, 255, 0.78);
}

.contact-intro-copy strong {
    color: #ffffff;
}


/* =========================================================
   DIVIDER
========================================================= */

.contact-divider {
    width: 100%;
    height: 1px;

    margin: 32px 0 27px;

    background: rgba(255, 255, 255, 0.12);
}


/* =========================================================
   BENEFITS
========================================================= */

.contact-benefit {
    display: grid;

    grid-template-columns: 74px 1fr;

    align-items: center;

    gap: 18px;

    min-height: 92px;
}

.contact-benefit-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(20, 107, 255, 0.55);
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(20, 107, 255, 0.10),
            rgba(2, 9, 21, 0.35) 68%
        );
}

.contact-benefit-icon svg {
    width: 34px;
    height: 34px;

    fill: none;
    stroke: #146bff;

    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-benefit h4 {
    margin: 0 0 5px;

    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;

    color: #ffffff;
}

.contact-benefit p {
    margin: 0;

    font-size: 15px;
    line-height: 1.5;

    color: rgba(255, 255, 255, 0.70);
}


/* =========================================================
   PRIVACY
========================================================= */

.contact-privacy {
    margin-top: 25px;

    min-height: 68px;

    padding: 0 22px;

    display: flex;
    align-items: center;

    gap: 15px;

    border-radius: 10px;

    background: rgba(9, 18, 33, 0.72);
}

.contact-privacy svg {
    flex: 0 0 auto;

    width: 29px;
    height: 29px;

    fill: none;
    stroke: rgba(255, 255, 255, 0.86);

    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-privacy span {
    font-size: 15px;
    line-height: 1.4;

    color: rgba(255, 255, 255, 0.75);
}


/* =========================================================
   RIGHT FORM CARD
========================================================= */

.contact-form-card {
    position: relative;

    min-height: 610px;

    padding: 31px 35px 28px;

    border: 1px solid #146bff;
    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(8, 18, 36, 0.88),
            rgba(2, 9, 21, 0.94)
        );

    box-shadow:
        0 0 35px rgba(20, 107, 255, 0.10),
        inset 0 0 40px rgba(0, 73, 180, 0.035);
}


/* =========================================================
   FORM HEADER
========================================================= */

.contact-form-header h3 {
    margin: 0;

    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;

    color: #ffffff;
}

.contact-form-header p {
    margin-top: 7px;

    font-size: 17px;
    line-height: 1.45;

    color: rgba(255, 255, 255, 0.70);
}


/* =========================================================
   FORM
========================================================= */

.contact-form {
    margin-top: 26px;

    display: flex;
    flex-direction: column;

    gap: 11px;
}

.contact-form-row {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 11px;
}


/* =========================================================
   FORM FIELD
========================================================= */

.contact-field {
    position: relative;

    min-height: 59px;
}

.contact-field-full {
    width: 100%;
}

.contact-field input,
.contact-field textarea {
    width: 100%;

    border: 1px solid rgba(119, 154, 215, 0.32);
    border-radius: 9px;

    outline: none;

    background: rgba(7, 14, 27, 0.92);

    color: #ffffff;

    font-family: inherit;
    font-size: 16px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-field input {
    height: 59px;

    padding: 0 18px 0 61px;
}

.contact-field textarea {
    min-height: 118px;

    padding: 17px 18px 17px 61px;

    resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.64);
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #146bff;

    box-shadow:
        0 0 0 3px rgba(20, 107, 255, 0.10);
}


/* =========================================================
   INPUT ICON
========================================================= */

.contact-input-icon {
    position: absolute;

    left: 20px;
    top: 50%;

    width: 25px;
    height: 25px;

    transform: translateY(-50%);

    z-index: 2;

    pointer-events: none;
}

.contact-message-field .contact-input-icon {
    top: 25px;

    transform: none;
}

.contact-input-icon svg {
    width: 25px;
    height: 25px;

    fill: none;

    stroke: rgba(255, 255, 255, 0.78);

    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit-button {
    width: 100%;
    height: 60px;

    margin-top: 7px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border: none;
    border-radius: 9px;

    background: #124cff;

    color: #ffffff;

    font-family: inherit;
    font-size: 19px;
    font-weight: 600;

    cursor: pointer;

    box-shadow:
        0 0 30px rgba(0, 76, 255, 0.25);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.contact-submit-button:hover {
    transform: translateY(-2px);

    background: #146bff;

    box-shadow:
        0 0 40px rgba(0, 76, 255, 0.38);
}

.contact-submit-button:disabled {
    opacity: 0.65;
    cursor: wait;
    transform: none;
}

.contact-submit-arrow {
    font-size: 23px;
    line-height: 1;
}


/* =========================================================
   THANK YOU MODAL
========================================================= */

.thank-you-modal {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.thank-you-modal.active {
    visibility: visible;
    opacity: 1;
}

.thank-you-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.78);

    backdrop-filter: blur(7px);
}

.thank-you-box {
    position: relative;

    z-index: 2;

    width: min(470px, 100%);

    padding: 45px 38px 38px;

    text-align: center;

    border: 1px solid #146bff;
    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #081224,
            #030711
        );

    box-shadow:
        0 0 55px rgba(20, 107, 255, 0.20);
}

.thank-you-close {
    position: absolute;

    top: 13px;
    right: 17px;

    width: 34px;
    height: 34px;

    border: none;
    background: transparent;

    color: rgba(255, 255, 255, 0.65);

    font-size: 28px;
    line-height: 1;

    cursor: pointer;
}

.thank-you-close:hover {
    color: #ffffff;
}

.thank-you-icon {
    width: 72px;
    height: 72px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #00e5a0;
    border-radius: 50%;

    box-shadow:
        0 0 25px rgba(0, 229, 160, 0.12);
}

.thank-you-icon svg {
    width: 42px;
    height: 42px;

    fill: none;
    stroke: #00e5a0;

    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.thank-you-box h3 {
    margin: 0;

    font-size: 31px;
    line-height: 1.2;

    color: #ffffff;
}

.thank-you-box p {
    margin: 12px auto 25px;

    max-width: 350px;

    font-size: 16px;
    line-height: 1.55;

    color: rgba(255, 255, 255, 0.72);
}

.thank-you-button {
    min-width: 130px;
    height: 46px;

    padding: 0 25px;

    border: none;
    border-radius: 8px;

    background: #124cff;

    color: #ffffff;

    font-family: inherit;
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;
}


/* =========================================================
   CONTACT RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card,
    .contact-form-card {
        min-height: auto;
    }

}


/* =========================================================
   CONTACT RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 650px) {

    .contact-section {
        padding: 75px 0 65px;
    }

    .contact-container {
        width: calc(100% - 32px);
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .contact-title {
        font-size: clamp(40px, 11vw, 58px);
        letter-spacing: -1.8px;
    }

    .contact-subtitle {
        margin-top: 18px;
        font-size: 16px;
    }

    .contact-subtitle br {
        display: none;
    }

    .contact-grid {
        gap: 18px;
    }

    .contact-info-card {
        padding: 28px 22px 24px;
    }

    .contact-intro {
        gap: 16px;
    }

    .contact-main-icon {
        width: 75px;
        height: 75px;
    }

    .contact-main-icon svg {
        width: 40px;
        height: 40px;
    }

    .contact-intro-copy h3 {
        font-size: 23px;
    }

    .contact-intro-copy h4 {
        font-size: 21px;
    }

    .contact-intro-copy p {
        font-size: 15px;
    }

    .contact-benefit {
        grid-template-columns: 58px 1fr;
        gap: 14px;
    }

    .contact-benefit-icon {
        width: 52px;
        height: 52px;
    }

    .contact-benefit-icon svg {
        width: 29px;
        height: 29px;
    }

    .contact-benefit h4 {
        font-size: 16px;
    }

    .contact-benefit p {
        font-size: 14px;
    }

    .contact-form-card {
        padding: 27px 20px 22px;
    }

    .contact-form-header h3 {
        font-size: 26px;
    }

    .contact-form-header p {
        font-size: 15px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .contact-submit-button {
        font-size: 17px;
    }

    .thank-you-box {
        padding: 40px 25px 30px;
    }

}


/* =========================================================
   CONTACT RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .contact-container {
        width: calc(100% - 28px);
    }

    .contact-intro {
        flex-direction: column;
    }

    .contact-main-icon {
        width: 70px;
        height: 70px;
    }

    .contact-privacy {
        padding: 15px;
    }

}
/* =========================================================
   SECTION 06 — FOOTER
========================================================= */

.site-footer {
    width: 100%;
    background: #030914;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/* =========================================================
   FOOTER MAIN
========================================================= */

.footer-main {
    width: min(1440px, calc(100% - 160px));
    margin: 0 auto;
    padding: 80px 0 60px;

    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 90px;
}


/* =========================================================
   BRAND BLOCK
========================================================= */

.footer-brand {
    padding-right: 70px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}


/* LOGO */

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 16px;

    text-decoration: none;
    color: #ffffff;
}


.footer-logo img {
    width: 110px;
    height: 110px;
    object-fit: contain;
}


/* DESCRIPTION */

.footer-description {
    margin: 28px 0 0;

    max-width: 350px;

    font-size: 20px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.footer-contact {
    margin-top: 28px;

    display: flex;
    flex-direction: column;
    gap: 18px;
}


.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;

    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;

    font-size: 17px;
    line-height: 1.5;
}


.footer-contact-icon {
    width: 24px;
    min-width: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1478ff;
    font-size: 19px;
}


.footer-contact-item:hover {
    color: #ffffff;
}


/* =========================================================
   FOOTER CTA
========================================================= */

.footer-growth-button {
    width: 100%;
    max-width: 315px;

    margin-top: 36px;

    padding: 17px 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: 1px solid rgba(20, 107, 255, 0.8);
    border-radius: 12px;

    background: rgba(7, 18, 36, 0.7);

    color: #ffffff;
    text-decoration: none;

    font-size: 19px;
    font-weight: 600;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}


.footer-growth-arrow {
    color: #1478ff;
    font-size: 30px;
    line-height: 1;
}


.footer-growth-button:hover {
    border-color: #1478ff;

    box-shadow:
        0 0 20px rgba(20, 120, 255, 0.2);

    transform: translateY(-2px);
}


/* =========================================================
   FOOTER LINK AREA
========================================================= */

.footer-links-area {
    display: grid;
    grid-template-columns:
        minmax(150px, 0.8fr)
        minmax(250px, 1.2fr)
        minmax(220px, 1fr);

    gap: 60px;
}


.footer-column h3 {
    margin: 0 0 32px;

    color: #1478ff;

    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.3px;
}


/*
   No decorative dash is used under
   Quick Links / Services / Industries.
*/


.footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;

    display: flex;
    flex-direction: column;
    gap: 24px;
}


.footer-column li {
    margin: 0;
    padding: 0;
}


.footer-column a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;

    font-size: 18px;
    line-height: 1.4;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.footer-column a:hover {
    color: #1478ff;
}


/* =========================================================
   VALUE STRIP
========================================================= */

.footer-values {
    width: min(1440px, calc(100% - 160px));
    margin: 0 auto;

    padding: 36px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    display: grid;
    grid-template-columns: repeat(5, 1fr);
}


.footer-value {
    min-width: 0;

    padding: 0 28px;

    display: flex;
    align-items: center;
    gap: 20px;

    border-right: 1px solid rgba(255, 255, 255, 0.14);
}


.footer-value:first-child {
    padding-left: 0;
}


.footer-value:last-child {
    padding-right: 0;
    border-right: none;
}


/* VALUE ICON */

.footer-value-icon {
    flex: 0 0 70px;

    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(20, 107, 255, 0.65);
    border-radius: 15px;

    background: rgba(7, 18, 36, 0.8);

    color: #1478ff;

    font-size: 29px;

    box-shadow:
        0 0 18px rgba(20, 107, 255, 0.08);
}


.footer-value-content h4 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 18px;
    font-weight: 600;
}


.footer-value-content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 16px;
    line-height: 1.6;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    min-height: 105px;

    padding:
        0 max(80px, calc((100% - 1440px) / 2));

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    display: grid;
    grid-template-columns: 1fr auto 1fr;

    align-items: center;
    gap: 30px;
}


/* COPYRIGHT */

.footer-copyright {
    color: rgba(255, 255, 255, 0.82);

    font-size: 17px;
}


/* LEGAL */

.footer-legal {
    display: flex;
    align-items: center;
    gap: 24px;
}


.footer-legal a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;

    font-size: 17px;

    transition: color 0.2s ease;
}


.footer-legal a:hover {
    color: #1478ff;
}


.footer-legal span {
    color: rgba(255, 255, 255, 0.45);
}


/* SOCIAL */

.footer-social {
    justify-self: end;

    display: flex;
    align-items: center;
    gap: 16px;
}


.footer-social > span {
    margin-right: 4px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 17px;
}


.footer-social a {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;

    color: #1478ff;
    text-decoration: none;

    font-size: 20px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}


.footer-social a:hover {
    border-color: #1478ff;

    box-shadow:
        0 0 18px rgba(20, 120, 255, 0.2);

    transform: translateY(-2px);
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {

    .footer-main,
    .footer-values {
        width: min(100% - 60px, 900px);
    }


    .footer-main {
        grid-template-columns: 1fr;
        gap: 60px;
    }


    .footer-brand {
        padding-right: 0;
        padding-bottom: 50px;

        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }


    .footer-links-area {
        grid-template-columns:
            repeat(3, 1fr);

        gap: 35px;
    }


    .footer-values {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .footer-value {
        padding: 25px 20px;

        border-right: 1px solid rgba(255, 255, 255, 0.14);
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }


    .footer-value:nth-child(2n) {
        border-right: none;
    }


    .footer-value:nth-last-child(-n + 2) {
        border-bottom: none;
    }


    .footer-bottom {
        padding: 30px;

        grid-template-columns: 1fr;
        justify-items: center;

        text-align: center;
    }


    .footer-social {
        justify-self: center;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 700px) {

    .footer-main,
    .footer-values {
        width: calc(100% - 36px);
    }


    .footer-main {
        padding: 60px 0 45px;
    }


   .footer-logo img {
    width: 80px;
    height: 80px;
}


    .footer-description {
        font-size: 17px;
    }


    .footer-contact-item {
        font-size: 16px;
    }


    .footer-links-area {
        grid-template-columns: 1fr;
        gap: 42px;
    }


    .footer-column h3 {
        margin-bottom: 22px;
    }


    .footer-column ul {
        gap: 17px;
    }


    .footer-column a {
        font-size: 16px;
    }


    .footer-values {
        grid-template-columns: 1fr;
        padding: 20px 0;
    }


    .footer-value,
    .footer-value:first-child,
    .footer-value:last-child {
        padding: 24px 0;

        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }


    .footer-value:last-child {
        border-bottom: none;
    }


    .footer-value-icon {
        flex-basis: 58px;

        width: 58px;
        height: 58px;

        font-size: 24px;
    }


    .footer-value-content h4 {
        font-size: 17px;
    }


    .footer-value-content p {
        font-size: 14px;
    }


    .footer-bottom {
        padding: 30px 18px;
    }


    .footer-copyright,
    .footer-legal a,
    .footer-social > span {
        font-size: 14px;
    }


    .footer-legal {
        gap: 14px;
    }


    .footer-social {
        flex-wrap: wrap;
        justify-content: center;
    }


    .footer-social a {
        width: 46px;
        height: 46px;
    }

}
/* =========================================================
   FOOTER — CENTER LARGE DIGIVORX LOGO
========================================================= */

.footer-logo-centered {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
}

.footer-logo-centered img {
    width: 220px;
    height: auto;
    display: block;
}