/* =========================================================
   NEXORA — MODERN DARK IT COMPANY
   ========================================================= */

:root {
    --bg: #050509;
    --bg-soft: #090a10;
    --card: rgba(17, 18, 28, 0.72);

    --text: #f4f5f7;
    --muted: #9498a8;

    --line: rgba(255, 255, 255, 0.09);

    --purple: #8b5cf6;
    --blue: #3b82f6;
    --cyan: #22d3ee;
    --pink: #ec4899;

    --gradient:
        linear-gradient(
            120deg,
            #8b5cf6,
            #3b82f6,
            #22d3ee
        );

    --max-width: 1240px;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.background-grid {
    position: fixed;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 85%
        );

    z-index: -5;
}

.orb {
    position: fixed;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(120px);

    opacity: .12;

    pointer-events: none;

    z-index: -4;

    animation: orbFloat 15s ease-in-out infinite alternate;
}

.orb-1 {
    top: -200px;
    left: -150px;
    background: var(--purple);
}

.orb-2 {
    top: 35%;
    right: -250px;
    background: var(--blue);

    animation-delay: -5s;
}

.orb-3 {
    bottom: -300px;
    left: 35%;
    background: var(--cyan);

    animation-delay: -9s;
}

@keyframes orbFloat {

    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(80px, 50px) scale(1.15);
    }

}


/* =========================================================
   MOUSE GLOW
   ========================================================= */

.mouse-glow {
    position: fixed;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(99, 102, 241, .11),
            transparent 70%
        );

    transform: translate(-50%, -50%);

    pointer-events: none;

    z-index: 1;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.navbar {

    position: fixed;

    top: 0;
    left: 50%;

    transform: translateX(-50%);

    width: min(
        calc(100% - 40px),
        var(--max-width)
    );

    height: 76px;

    margin-top: 18px;

    padding: 0 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background:
        rgba(8, 9, 15, .72);

    backdrop-filter: blur(20px);

    border: 1px solid var(--line);

    border-radius: 18px;

    z-index: 100;
}

.logo {
    display: flex;

    align-items: center;

    gap: 10px;

    font-weight: 800;

    letter-spacing: .15em;

    font-size: 14px;
}

.logo-symbol {

    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background: var(--gradient);

    color: white;

    font-weight: 900;

    box-shadow:
        0 0 25px rgba(99,102,241,.35);
}

.nav-links {
    display: flex;
    gap: 34px;
}

.nav-links a {

    color: #a9acb9;

    font-size: 13px;

    transition: .25s ease;
}

.nav-links a:hover {
    color: white;
}

.nav-button {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 11px 17px;

    border-radius: 10px;

    background: white;

    color: #07070b;

    font-size: 12px;

    font-weight: 700;

    transition: .25s ease;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,.12);
}

.menu-button {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--line);

    background: transparent;

    border-radius: 10px;

    cursor: pointer;
}

.menu-button span {
    display: block;

    width: 18px;
    height: 2px;

    margin: 4px auto;

    background: white;
}

.mobile-menu {
    display: none;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {

    max-width: var(--max-width);

    min-height: 900px;

    margin: auto;

    padding:
        190px 20px
        100px;

    display: grid;

    grid-template-columns:
        1.05fr
        .95fr;

    align-items: center;

    gap: 40px;
}

.hero-content {
    max-width: 700px;
}

.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 12px;

    margin-bottom: 26px;

    border: 1px solid var(--line);

    border-radius: 50px;

    color: #aeb1c1;

    background: rgba(255,255,255,.025);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .15em;
}

.status-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #22c55e;

    box-shadow:
        0 0 12px #22c55e;

    animation: pulse 2s infinite;
}

@keyframes pulse {

    50% {
        opacity: .35;
        transform: scale(.7);
    }

}

.hero h1 {

    font-size:
        clamp(
            52px,
            7vw,
            88px
        );

    line-height: .96;

    letter-spacing: -.055em;

    font-weight: 800;

    max-width: 850px;
}

.gradient-text {

    background:
        linear-gradient(
            100deg,
            #a78bfa,
            #60a5fa,
            #22d3ee,
            #a78bfa
        );

    background-size: 300%;

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

    animation: gradientMove 6s ease infinite;
}

@keyframes gradientMove {

    0% {
        background-position: 0%;
    }

    50% {
        background-position: 100%;
    }

    100% {
        background-position: 0%;
    }

}

.hero-description {

    margin-top: 30px;

    max-width: 620px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;
}

.hero-actions {

    display: flex;

    gap: 12px;

    margin-top: 38px;
}

.primary-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 16px;

    padding: 14px 20px;

    border-radius: 12px;

    background: var(--gradient);

    color: white;

    font-size: 13px;

    font-weight: 700;

    box-shadow:
        0 15px 45px rgba(99,102,241,.2);

    transition: .3s ease;
}

.primary-button:hover {

    transform:
        translateY(-4px)
        scale(1.02);

    box-shadow:
        0 20px 60px rgba(99,102,241,.35);
}

.secondary-button {

    display: inline-flex;

    align-items: center;

    padding: 14px 20px;

    border: 1px solid var(--line);

    border-radius: 12px;

    color: #b5b7c4;

    font-size: 13px;

    transition: .3s ease;
}

.secondary-button:hover {

    border-color:
        rgba(255,255,255,.25);

    color: white;

    background:
        rgba(255,255,255,.04);
}

.hero-trust {

    display: flex;

    gap: 40px;

    margin-top: 60px;
}

.hero-trust div {

    display: flex;

    flex-direction: column;

    gap: 5px;
}

.hero-trust strong {

    font-size: 22px;

    letter-spacing: -.03em;
}

.hero-trust span {

    color: #6f7281;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: .12em;
}


/* =========================================================
   AI HERO VISUAL
   ========================================================= */

.hero-visual {

    position: relative;

    height: 600px;

    display: grid;

    place-items: center;
}

.ai-core {

    position: relative;

    width: 240px;
    height: 240px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(99,102,241,.25),
            rgba(17,18,28,.6) 60%,
            transparent 70%
        );

    box-shadow:
        0 0 100px rgba(99,102,241,.2);
}

.core-ring {

    position: absolute;

    border-radius: 50%;

    border: 1px solid
        rgba(139,92,246,.3);
}

.ring-one {

    inset: -35px;

    animation:
        spin 18s linear infinite;
}

.ring-two {

    inset: -70px;

    border-color:
        rgba(34,211,238,.15);

    animation:
        spinReverse 25s linear infinite;
}

@keyframes spin {

    to {
        transform: rotate(360deg);
    }

}

@keyframes spinReverse {

    to {
        transform: rotate(-360deg);
    }

}

.core-center {

    width: 110px;
    height: 110px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 25%,
            #8b5cf6,
            #312e81 60%,
            #111827
        );

    box-shadow:
        0 0 70px rgba(139,92,246,.5);

    animation: corePulse 3s infinite;
}

@keyframes corePulse {

    50% {
        transform: scale(1.05);

        box-shadow:
            0 0 100px rgba(139,92,246,.65);
    }

}

.core-center span {

    font-size: 32px;

    font-weight: 900;
}

.core-center small {

    color: #d8d5ff;

    font-size: 7px;

    letter-spacing: .3em;
}

.ai-orbit {

    position: absolute;

    border-radius: 50%;

    border: 1px dashed
        rgba(255,255,255,.08);

    pointer-events: none;
}

.orbit-a {

    width: 420px;
    height: 420px;

    transform:
        rotateX(65deg)
        rotateZ(20deg);
}

.orbit-b {

    width: 500px;
    height: 300px;

    transform:
        rotateY(65deg)
        rotateZ(-20deg);
}

.orbit-c {

    width: 330px;
    height: 520px;

    transform:
        rotateY(65deg);
}

.floating-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 16px;

    border-radius: 14px;

    background:
        rgba(14,15,23,.8);

    border:
        1px solid
        rgba(255,255,255,.1);

    backdrop-filter: blur(20px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.25);

    animation:
        cardFloat 5s ease-in-out infinite alternate;
}

.floating-card strong {

    display: block;

    font-size: 11px;
}

.floating-card small {

    display: block;

    margin-top: 4px;

    color: #737789;

    font-size: 9px;
}

.floating-icon {

    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    border-radius: 9px;

    background:
        rgba(139,92,246,.13);

    color: #a78bfa;
}

.card-ai {
    top: 90px;
    right: 10px;
}

.card-api {
    bottom: 130px;
    left: 10px;

    animation-delay: -2s;
}

.card-auto {
    bottom: 50px;
    right: 60px;

    animation-delay: -4s;
}

@keyframes cardFloat {

    to {
        transform:
            translateY(-15px);
    }

}


/* =========================================================
   MARQUEE
   ========================================================= */

.marquee-section {

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    overflow: hidden;

    background:
        rgba(255,255,255,.015);
}

.marquee {

    padding: 22px 0;

    white-space: nowrap;
}

.marquee-content {

    display: inline-flex;

    align-items: center;

    gap: 35px;

    animation:
        marquee 30s linear infinite;
}

.marquee span {

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .18em;

    color: #6f7280;
}

.marquee i {

    color: #8b5cf6;

    font-style: normal;
}

@keyframes marquee {

    to {
        transform:
            translateX(-50%);
    }

}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {

    max-width: var(--max-width);

    margin: auto;

    padding:
        150px 20px;
}

.section-heading {

    display: grid;

    grid-template-columns:
        1fr
        .6fr;

    gap: 60px;

    align-items: end;

    margin-bottom: 70px;
}

.section-label {

    display: block;

    margin-bottom: 18px;

    color: #74788a;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .18em;
}

.section-heading h2,
.tech-content h2 {

    font-size:
        clamp(
            42px,
            5vw,
            65px
        );

    line-height: 1;

    letter-spacing: -.05em;
}

.section-heading > p,
.tech-content > p {

    color: var(--muted);

    line-height: 1.8;

    font-size: 15px;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;
}

.service-card {

    position: relative;

    min-height: 270px;

    padding: 27px;

    overflow: hidden;

    border:
        1px solid var(--line);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.012)
        );

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}

.service-card::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(139,92,246,.14),
            transparent 40%
        );

    opacity: 0;

    transition: .4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(139,92,246,.3);

    box-shadow:
        0 30px 70px
        rgba(0,0,0,.25);
}

.service-card.featured {

    background:
        linear-gradient(
            145deg,
            rgba(139,92,246,.15),
            rgba(59,130,246,.035)
        );
}

.service-number {

    position: absolute;

    top: 22px;
    right: 24px;

    color: #444753;

    font-size: 10px;

    font-weight: 700;
}

.service-icon {

    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    margin-bottom: 45px;

    border-radius: 13px;

    background:
        rgba(139,92,246,.09);

    border:
        1px solid
        rgba(139,92,246,.15);

    color: #a78bfa;

    font-size: 21px;

    transition: .4s ease;
}

.service-card:hover .service-icon {

    transform:
        rotate(8deg)
        scale(1.08);

    background:
        rgba(139,92,246,.17);

    box-shadow:
        0 0 30px
        rgba(139,92,246,.12);
}

.service-card h3 {

    font-size: 18px;

    letter-spacing: -.02em;

    margin-bottom: 12px;
}

.service-card p {

    color: #777b8c;

    font-size: 12px;

    line-height: 1.7;

    max-width: 320px;
}

.service-arrow {

    position: absolute;

    bottom: 24px;
    right: 25px;

    color: #656979;

    transition: .3s ease;
}

.service-card:hover .service-arrow {

    color: white;

    transform:
        translate(4px, -4px);
}

.ai-card .service-icon {
    color: #22d3ee;

    background:
        rgba(34,211,238,.07);

    border-color:
        rgba(34,211,238,.13);
}

.automation-card .service-icon {
    color: #60a5fa;

    background:
        rgba(59,130,246,.07);
}


/* =========================================================
   TECHNOLOGY
   ========================================================= */

.technology-section {

    position: relative;

    padding:
        150px 20px;

    border-top:
        1px solid var(--line);

    border-bottom:
        1px solid var(--line);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.012),
            transparent
        );
}

.tech-container {

    max-width: var(--max-width);

    margin: auto;

    display: grid;

    grid-template-columns:
        .85fr
        1fr;

    gap: 100px;

    align-items: center;
}

.tech-content > p {

    max-width: 520px;

    margin-top: 28px;
}

.tech-list {

    margin-top: 45px;

    border-top:
        1px solid var(--line);
}

.tech-list div {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 18px 0;

    border-bottom:
        1px solid var(--line);
}

.tech-list span {

    color: #555968;

    font-size: 10px;
}

.tech-list strong {

    font-size: 13px;
}


/* =========================================================
   ARCHITECTURE VISUAL
   ========================================================= */

.architecture-visual {

    position: relative;

    height: 500px;

    display: grid;

    place-items: center;
}

.architecture-node {

    position: absolute;

    width: 100px;
    height: 100px;

    display: grid;

    place-items: center;

    border-radius: 20px;

    background:
        rgba(15,16,25,.9);

    border:
        1px solid
        rgba(139,92,246,.2);

    color: #9da1b0;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .12em;

    box-shadow:
        0 20px 60px
        rgba(0,0,0,.3);
}

.node-center {

    width: 140px;
    height: 140px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(139,92,246,.28),
            rgba(15,16,25,.9)
        );

    color: white;

    font-size: 25px;

    box-shadow:
        0 0 80px
        rgba(139,92,246,.22);

    z-index: 3;
}

.node-top {
    top: 20px;
}

.node-bottom {
    bottom: 20px;
}

.node-left {
    left: 20px;
}

.node-right {
    right: 20px;
}

.architecture-line {

    position: absolute;

    height: 1px;

    width: 180px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(139,92,246,.6),
            transparent
        );

    transform-origin: center;
}

.line-1 {
    transform: rotate(90deg);
}

.line-2 {
    transform: rotate(25deg);
}

.line-3 {
    transform: rotate(-25deg);
}


/* =========================================================
   TEAM
   ========================================================= */

.team-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}

.team-card {

    position: relative;

    padding: 35px;

    min-height: 450px;

    border:
        1px solid var(--line);

    border-radius: 24px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.04),
            rgba(255,255,255,.01)
        );

    transition: .4s ease;
}

.team-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(139,92,246,.3);
}

.team-avatar {

    position: relative;

    width: 150px;
    height: 150px;

    margin-bottom: 35px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            #312e81,
            #111827 60%,
            #050509
        );

    border:
        1px solid
        rgba(139,92,246,.25);

    box-shadow:
        0 0 60px
        rgba(139,92,246,.15);
}

.team-avatar span {

    position: relative;

    z-index: 2;

    font-size: 34px;

    font-weight: 900;

    background:
        linear-gradient(
            135deg,
            #fff,
            #8b5cf6
        );

    -webkit-background-clip: text;

    color: transparent;
}

.avatar-grid {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.08) 1px,
            transparent 1px
        );

    background-size: 15px 15px;

    opacity: .4;
}

.team-role {

    color: #777b8c;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .18em;
}

.team-info h3 {

    margin-top: 10px;

    font-size: 27px;

    letter-spacing: -.03em;
}

.team-info p {

    max-width: 500px;

    margin-top: 14px;

    color: #777b8c;

    font-size: 13px;

    line-height: 1.8;
}

.team-tech {

    position: absolute;

    bottom: 30px;

    left: 35px;

    display: flex;

    gap: 7px;

    flex-wrap: wrap;
}

.team-tech span {

    padding: 7px 10px;

    border-radius: 7px;

    border:
        1px solid var(--line);

    color: #7f8291;

    font-size: 9px;
}


/* =========================================================
   CTA
   ========================================================= */

.cta-section {

    position: relative;

    max-width:
        var(--max-width);

    min-height: 600px;

    margin: 100px auto;

    padding: 100px 20px;

    display: grid;

    place-items: center;

    text-align: center;

    overflow: hidden;

    border:
        1px solid var(--line);

    border-radius: 35px;

    background:
        radial-gradient(
            circle at center,
            rgba(99,102,241,.13),
            transparent 55%
        );
}

.cta-glow {

    position: absolute;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(139,92,246,.15),
            transparent 65%
        );

    animation:
        ctaPulse 5s ease-in-out infinite;
}

@keyframes ctaPulse {

    50% {
        transform: scale(1.2);
        opacity: .5;
    }

}

.cta-content {

    position: relative;

    z-index: 2;
}

.cta-content h2 {

    font-size:
        clamp(
            48px,
            7vw,
            82px
        );

    line-height: .95;

    letter-spacing: -.06em;
}

.cta-content p {

    margin:
        30px auto;

    max-width: 520px;

    color: var(--muted);

    line-height: 1.7;
}

.primary-button.large {

    padding:
        17px 25px;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {

    max-width: var(--max-width);

    margin: auto;

    padding:
        40px 20px
        30px;
}

.footer-main {

    display: flex;

    justify-content: space-between;

    gap: 30px;

    padding-bottom: 50px;

    border-bottom:
        1px solid var(--line);
}

.footer-brand p {

    margin-top: 15px;

    color: #666a79;

    font-size: 12px;
}

.footer-links {

    display: flex;

    gap: 30px;

    align-items: center;
}

.footer-links a {

    color: #777b89;

    font-size: 11px;

    transition: .25s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {

    display: flex;

    justify-content: space-between;

    padding-top: 25px;

    color: #555866;

    font-size: 9px;

    letter-spacing: .08em;
}

.footer-bottom b {
    color: #8b5cf6;
}


/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.active {

    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .hero {

        grid-template-columns: 1fr;

        padding-top: 160px;

        text-align: center;
    }

    .hero-content {
        margin: auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        height: 500px;
    }

    .section-heading {

        grid-template-columns: 1fr;

        gap: 25px;
    }

    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .tech-container {

        grid-template-columns: 1fr;

        gap: 60px;
    }

}


@media (max-width: 700px) {

    .navbar {

        width:
            calc(100% - 24px);

        margin-top: 10px;
    }

    .nav-links,
    .nav-button {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .mobile-menu {

        position: fixed;

        top: 90px;
        left: 12px;
        right: 12px;

        padding: 20px;

        display: none;

        flex-direction: column;

        gap: 5px;

        background:
            rgba(10,11,17,.96);

        border:
            1px solid var(--line);

        border-radius: 16px;

        backdrop-filter: blur(20px);

        z-index: 99;
    }

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {

        padding: 15px;

        color: #a6a9b6;

        border-radius: 10px;
    }

    .mobile-menu a:hover {
        background:
            rgba(255,255,255,.05);

        color: white;
    }

    .hero {

        min-height: auto;

        padding:
            140px 20px
            70px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {

        flex-direction: column;

        align-items: stretch;
    }

    .hero-trust {

        gap: 20px;

        flex-wrap: wrap;
    }

    .hero-visual {

        height: 400px;

        transform:
            scale(.72);
    }

    .section {

        padding:
            100px 20px;
    }

    .services-grid,
    .team-grid {

        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 250px;
    }

    .technology-section {

        padding:
            100px 20px;
    }

    .architecture-visual {
        transform: scale(.75);
    }

    .team-card {
        min-height: 430px;
    }

    .cta-section {

        margin:
            60px 12px;

        min-height: 500px;

        border-radius: 25px;
    }

    .footer-main {

        flex-direction: column;
    }

    .footer-links {

        flex-wrap: wrap;
    }

    .footer-bottom {

        flex-direction: column;

        gap: 15px;
    }

}