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

h1,
h1 span {
    font-family: "Montserrat", sans-serif !important;
}

h1 span,
h1.outline,
.hero h1 span,
.outline {
    color: #d72125 !important;
    -webkit-text-fill-color: #d72125 !important;
    -webkit-text-stroke: 0 !important;
}

h2 {
    font-family: "Montserrat", sans-serif !important;
}

h1 {
    font-size: clamp(44px, 5.2vw, 82px) !important;
    font-weight: 700 !important;
    line-height: 1.05 !important;
}

h3,
h4,
h5,
h6,
p,
span,
a,
button,
input,
textarea,
label,
small,
li {
    font-family: "Montserrat", sans-serif !important;
}

body {
    background: radial-gradient(circle at top, #0b0b0b, #000);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* =========================
   THREE.JS CANVAS – ISOLATED
========================= */
#canvas-container {
    position: fixed;
    inset: 0;
    z-index: -100;
    pointer-events: none;

    transform: translateZ(0);
    will-change: transform;
}

/* =========================
   MAIN CONTENT LAYER
========================= */
main {
    position: relative;
    z-index: 10;
    transform: translateZ(0);
}

/* =========================
   NAVBAR
========================= */
nav.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5% 8%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
}

.header .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 1;
    transition: color 0.3s ease;
}

.header .nav-links a:hover {
    color: #d72125;
}

/* =========================
   HERO
========================= */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    z-index: 5;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 120px;
    line-height: 0.9;
}

h2 {
    font-size: 56px;
}

.outline {
    color: #d72125;
    -webkit-text-stroke: 0;
}

.hero-subtitle {
    font-size: 40px;
    margin: 20px 0;
    font-weight: 500;
    text-transform: uppercase;
}

.hero p {
    font-size: 22px;
    opacity: 0.85;
    max-width: 900px;
}

/* =========================
   GROWTH ARCHITECTURE (LOCKED)
========================= */
#ga-section {
    text-align: initial;
}

#growth-architecture {
    padding: 90px 6%;
    position: relative;
    z-index: 50;

    isolation: isolate;
    transform: translateZ(0);
}

.ga-title {
    text-align: center;
    font-size: 56px;
    margin-bottom: 70px;
}

.ga-title span {
    color: #d72125;
}

.ga-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.ga-card {
    position: relative;
    padding: 40px 30px;
    border-radius: 20px;
    background: linear-gradient(160deg, rgba(30, 30, 30, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1;
}

.ga-card::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(215, 33, 37, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease;
}

.ga-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #d72125, #ff416c);
    transition: width 0.5s ease;
}

.ga-card:hover {
    transform: translateY(-10px);
    border-color: rgba(215, 33, 37, 0.3);
    box-shadow: 0 20px 40px rgba(215, 33, 37, 0.1), 0 0 20px rgba(215, 33, 37, 0.05);
}

.ga-card:hover::before {
    opacity: 1;
    transform: scale(1.5);
}

.ga-card:hover::after {
    width: 100%;
}

.ga-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.ga-card p {
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.7;
    font-weight: 400;
}

/* =========================
   CASE VAULT
========================= */
.section {
    padding: 120px 10%;
}

.section-title {
    text-align: center;
    font-size: 56px;
    letter-spacing: 5px;
}

.section-title span {
    color: #d72125;
}



.case-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.case-box {
    width: calc(25% - 23px);
    min-width: 260px;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.case-box:hover {
    transform: translateY(-10px);
    border-color: rgba(215, 33, 37, 0.5);
    box-shadow: 0 15px 35px rgba(215, 33, 37, 0.15);
}

.case-logo {
    height: 160px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.case-box h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #fff;
}

.btn-case {
    display: inline-block;
    padding: 12px 25px;
    background: rgba(215, 33, 37, 0.15);
    color: #fff;
    border: 1px solid rgba(215, 33, 37, 0.3);
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-case:hover {
    background: #d72125;
    color: #fff;
}

/* RESET & FOUNDATION */
.kinetic-stack * {
    box-sizing: border-box;
}

.kinetic-stack {
    background-color: #050505;
    color: #ffffff;
    padding: 100px 0;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.stack-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%;
}

/* HEADER */
.stack-header {
    margin-bottom: 60px;
    border-left: 3px solid #d72125;
    padding-left: 20px;
}

.system-tag {
    font-family: "Montserrat", sans-serif;
    color: #d72125;
    font-size: 13px;
    letter-spacing: 3px;
    display: block;
}

.main-title {
    font-size: 56px;
    font-weight: 900;
    margin: 5px 0;
    text-transform: uppercase;
}

.main-title span {
    color: #fff;
    -webkit-text-stroke: 0;
}

/* THE GRID */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Force 3 columns */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.grid-cell {
    position: relative;
    min-height: 280px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.5s ease;
    background: #050505;
    overflow: hidden;
}

/* LARGE BACKGROUND NUMBERS */
.cell-bg-num {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 180px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    pointer-events: none;
    transition: 0.5s ease;
}

.grid-cell h3 {
    font-size: 22px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.grid-cell p {
    font-size: 14px;
    color: #888;
    margin: 0;
    opacity: 0.6;
    transition: 0.4s ease;
    z-index: 2;
}

/* HOVER EFFECTS */
.grid-cell:hover {
    background: #0a0a0a;
}

.grid-cell:hover .cell-bg-num {
    color: rgba(215, 33, 37, 0.08);
    transform: scale(1.1);
}

.grid-cell:hover h3 {
    color: #d72125;
}

.grid-cell:hover p {
    opacity: 1;
    color: #fff;
}

/* CORE HIGHLIGHT (05) */
.core-cell {
    background: rgba(215, 33, 37, 0.03);
    border: 1px solid rgba(215, 33, 37, 0.3);
}

.core-label {
    background: #d72125;
    font-size: 10px;
    padding: 2px 8px;
    font-weight: 900;
    display: inline-block;
    margin-bottom: 10px;
}

/* RESPONSIVE FIXES */
@media (max-width: 1024px) {
    .grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-layout {
        grid-template-columns: 1fr;
    }

    .grid-cell {
        min-height: 200px;
        padding: 30px;
    }
}

/* --- CONTAINER STABILITY --- */
.orbital-system {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
}

.orbital-container {
    position: relative;
    width: 900px;
    /* Fixed width for calculation */
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- NEURAL SVG (The Lines) --- */
.neural-paths {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.stream-lines line {
    stroke: rgba(215, 33, 37, 0.2);
    stroke-width: 1.5;
    stroke-dasharray: 20, 100;
    animation: pulseData 4s linear infinite;
}

@keyframes pulseData {
    0% {
        stroke-dashoffset: 240;
        opacity: 0.2;
    }

    50% {
        opacity: 1;
        stroke: #d72125;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0.2;
    }
}

/* --- CENTER CORE (The Heart) --- */
.core-hub {
    position: absolute;
    z-index: 10;
    width: 220px;
    height: 220px;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #d72125;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(215, 33, 37, 0.4), inset 0 0 20px rgba(215, 33, 37, 0.2);
    backdrop-filter: blur(10px);
}

.core-scanner {
    position: absolute;
    width: 125%;
    height: 125%;
    border: 1px dashed rgba(215, 33, 37, 0.4);
    border-radius: 50%;
    animation: rotateScanner 12s linear infinite;
}

@keyframes rotateScanner {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.core-info h3 {
    color: #d72125;
    font-size: 24px;
    font-weight: 900;
    margin: 5px 0;
}

.core-info small {
    font-family: "Montserrat", sans-serif;
    color: #888;
    letter-spacing: 2px;
}

/* --- THE SATELLITE NODES --- */
.sat-node {
    position: absolute;
    z-index: 15;
    /* Background fully removed to show wireframe */
    background: transparent;
    /* Removing the blur that creates the 'milky' black effect */
    backdrop-filter: none;
    /* Keep only the red side-line for structure */
    border: none;
    border-left: 3px solid #d72125;
    padding: 10px 15px;
    min-width: 180px;
    transition: all 0.3s ease;
}

/* Precise Clockwise Positioning */
.n1 {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.n2 {
    top: 20%;
    right: 5%;
}

.n3 {
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
}

.n9 {
    bottom: 20%;
    right: 5%;
}

.n8 {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.n7 {
    bottom: 20%;
    left: 5%;
}

.n4 {
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
}

.n6 {
    top: 20%;
    left: 5%;
}

.sat-node:hover {
    /* Slight glow on hover so user knows it's interactive */
    background: rgba(215, 33, 37, 0.05);
    transform: translateY(-5px) scale(1.05) !important;
}

.sat-node span {
    font-family: "Montserrat", sans-serif;
    color: #d72125;
    font-size: 11px;
    display: block;
}

.sat-node h4 {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* --- HEADING ANIMATION --- */
.seo-heading {
    margin-bottom: 20px;
    z-index: 100;
}

/* --- CONTAINER --- */
.orbital-container {
    position: relative;
    width: 900px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

/* --- THE NEURAL FLOW --- */
.neural-paths {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.stream-lines line {
    /* Pure red with full opacity for maximum visibility */
    stroke: #d72125;
    stroke-width: 2.5;
    /* Thicker line */
    stroke-dasharray: none;
    /* Making lines solid for a 'darker' look */
    opacity: 1;
    filter: drop-shadow(0 0 5px rgba(215, 33, 37, 0.5));
    /* Adds a glow effect */
}

@keyframes flowData {
    from {
        stroke-dashoffset: 300;
    }

    to {
        stroke-dashoffset: 0;
    }
}

/* --- NODES (REFINED) --- */
.sat-node {
    position: absolute;
    z-index: 15;
    background: rgba(10, 10, 10, 0.75);
    /* Deep black-glass */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid #d72125;
    padding: 14px 22px;
    min-width: 200px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(12px);
    /* Premium blur effect */
}

.sat-node h4 {
    color: #fff;
    font-size: 15px;
    /* Clean, professional size */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

.sat-node span {
    color: #d72125;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: bold;
    display: block;
    margin-bottom: 3px;
}

.sat-node:hover {
    background: rgba(215, 33, 37, 0.12);
    border-color: rgba(215, 33, 37, 0.5);
    transform: translateY(-5px) scale(1.03) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* --- THE CORE (GLOWING REACTOR) --- */
.core-hub {
    background: rgba(5, 5, 5, 0.95);
    border: 1px solid #d72125;
    box-shadow: 0 0 40px rgba(215, 33, 37, 0.4), inset 0 0 20px rgba(215, 33, 37, 0.2);
}

.core-scanner {
    border: 1px dashed rgba(215, 33, 37, 0.3);
}

/* =========================
   AUDIT POPUP
========================= */
.audit-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(12px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.audit-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.audit-popup {
    width: min(100%, 560px);
    padding: 32px 28px 22px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.62);
    position: relative;
}

.audit-popup h3 {
    margin: 0 0 16px;
    font-size: clamp(24px, 2.2vw, 34px);
    line-height: 1.1;
    letter-spacing: .8px;
    text-align: center;
}

.audit-popup h3 span {
    color: #d72125;
}

.audit-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 30px;
    line-height: 1;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

#auditForm input,
#auditForm textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 13px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(5, 5, 5, 0.48);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    outline: none;
}

#auditForm input::placeholder,
#auditForm textarea::placeholder {
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .3px;
}

#auditForm input:focus,
#auditForm textarea:focus {
    border-color: rgba(255, 52, 52, 0.75);
    box-shadow: 0 0 0 2px rgba(255, 42, 42, 0.15);
}

#auditForm textarea {
    min-height: 122px;
    resize: none;
}

.audit-submit {
    width: 100%;
    border: 0;
    border-radius: 12px;
    padding: 13px;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, #d72125, #9f1111);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    letter-spacing: .8px;
}

.audit-response {
    min-height: 18px;
    margin: 10px 0 0;
    font-size: 13px;
    letter-spacing: .2px;
}

.audit-response.pending {
    color: #d9d9d9;
}

.audit-response.success {
    color: #4cff9d;
}

.audit-response.error {
    color: #ff6363;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 560px) {
    .audit-popup {
        padding: 28px 18px 18px;
        border-radius: 16px;
    }

    .audit-popup h3 {
        font-size: 22px;
        padding-right: 22px;
        text-align: left;
    }
}

/* ===== FULL MODULE RESPONSIVE LAYER ===== */
.navbar .logo img {
    display: block;
    height: 76px !important;
    width: auto;
}

.navbar nav {
    display: flex;
    align-items: center;
    gap: 14px;
}

.navbar nav a {
    margin-right: 0;
}

@media (max-width: 1100px) {
    .navbar {
        width: min(96%, 1200px);
        padding: 12px 20px;
        border-radius: 24px;
    }

    .hero {
        padding: 120px 6% 40px;
        min-height: 100vh;
        height: auto;
    }

    .hero h1 {
        font-size: clamp(52px, 9vw, 86px);
    }

    .hero-subtitle {
        font-size: clamp(24px, 4.2vw, 34px);
    }

    .hero p {
        font-size: 18px;
        max-width: 760px;
    }

    .ga-title,
    .section-title,
    h2 {
        font-size: clamp(34px, 6vw, 52px);
    }

    .orbital-system {
        height: auto;
        min-height: 720px;
        padding: 60px 0;
    }

    .orbital-container {
        width: min(100%, 760px);
        height: 520px;
        transform: scale(0.92);
    }

    .core-hub {
        width: 190px;
        height: 190px;
    }

    .glass-card iframe {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 10px;
        border-radius: 16px;
        padding: 10px 14px;
        flex-wrap: wrap;
        row-gap: 8px;
    }

    .navbar .logo img {
        height: 76px !important;
    }

    .navbar nav {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        gap: 12px;
        padding-bottom: 2px;
    }

    .navbar nav a {
        font-size: 12px;
        opacity: 0.95;
    }

    .nav-btn {
        padding: 9px 12px;
        font-size: 11px;
        border-radius: 12px;
        white-space: nowrap;
    }

    .hero {
        padding: 130px 16px 35px;
    }

    .hero h1 {
        font-size: clamp(42px, 12vw, 62px);
        line-height: 0.95;
    }

    .hero-subtitle {
        font-size: clamp(18px, 6vw, 28px);
        margin: 14px 0;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.55;
    }

    #growth-architecture,
    .section {
        padding: 64px 16px;
    }

    .ga-title,
    .section-title {
        margin-bottom: 26px !important;
    }

    .ga-cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ga-card {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .orbital-system {
        min-height: auto;
        padding: 52px 0 22px;
        overflow: visible;
    }

    .orbital-container {
        width: 100%;
        height: auto;
        min-height: 0;
        transform: none;
        padding: 12px 12px 22px;
        margin-top: 8px;
        display: block;
    }

    .neural-paths {
        opacity: 0.2;
    }

    .core-hub {
        position: static;
        width: 150px;
        height: 150px;
        margin: 0 auto 14px;
    }

    .core-scanner {
        display: none;
    }

    .nodes-wrap {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sat-node,
    .n1,
    .n2,
    .n3,
    .n4,
    .n6,
    .n7,
    .n8,
    .n9 {
        position: relative !important;
        inset: auto !important;
        transform: none !important;
        min-width: 0;
        width: 100%;
        padding: 10px 12px;
        min-height: 58px;
    }

    .sat-node h4 {
        font-size: 12px;
        letter-spacing: .5px;
        line-height: 1.3;
        white-space: normal;
    }

    .sat-node span {
        font-size: 9px;
    }

    .glass-card {
        padding: 20px 14px;
        border-radius: 16px;
    }

    .glass-card iframe {
        height: 260px;
    }

    .audit-overlay {
        align-items: flex-start;
        overflow-y: auto;
    }

    .audit-popup {
        width: 100%;
        margin-top: 8px;
        padding: 22px 14px 14px;
    }
}

@media (max-width: 420px) {
    .hero h1 {
        font-size: clamp(34px, 11vw, 48px);
    }
}

.hero p {
    font-size: clamp(18px, 1.55vw, 23px) !important;
    line-height: 1.75 !important;
    max-width: 1040px;
}

.hero {
    position: relative;
    overflow: hidden;
}

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

.hero-side-element {
    position: absolute;
    right: -2%;
    top: 52%;
    width: clamp(420px, 42vw, 760px);
    aspect-ratio: 1;
    transform: translateY(-50%);
    opacity: 0.34;
    pointer-events: none;
    z-index: 1;
}

.hero-side-element::before,
.hero-side-element::after {
    content: "";
    position: absolute;
    inset: 14%;
    border: 1px solid rgba(215, 33, 37, 0.42);
    transform: rotate(45deg);
    box-shadow: 0 0 34px rgba(215, 33, 37, 0.18);
}

.hero-side-element::after {
    inset: 28%;
    border-color: rgba(255, 255, 255, 0.18);
    transform: rotate(45deg) scale(0.86);
}

.hero-side-element span {
    position: absolute;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(215, 33, 37, 0.72), transparent);
}

.hero-side-element span:nth-child(1) { top: 28%; }
.hero-side-element span:nth-child(2) { top: 50%; transform: rotate(-22deg); }
.hero-side-element span:nth-child(3) { top: 72%; }

@media (max-width: 900px) {
    .hero-side-element {
        display: none;
    }
}
