/* ============================================================
   OGOPOGO — MASTER CSS
   IT / DIGITAL / SECURITY / WEB DESIGN
   CLEAN + RESPONSIVE + COOKIE ABOVE ROBOT
============================================================ */

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

:root {
    --og-bg: #050914;
    --og-bg-2: #060914;
    --og-panel: #0a1222;
    --og-panel-2: #0d1729;
    --og-card: #101b30;

    --og-blue: #35d7ff;
    --og-blue-2: #0aa9ff;
    --og-cyan: #00ffff;

    --og-gold: #ffd700;
    --og-orange: #ffa500;

    --og-red: #ff3333;
    --og-green: #25d366;

    --og-text: #f5f8ff;
    --og-text-soft: #edf4ff;
    --og-muted: #9eacc1;
    --og-muted-2: #98a6c2;
    --og-white: #ffffff;

    --og-line: rgba(255, 255, 255, 0.09);
    --og-line-soft: rgba(255, 255, 255, 0.06);

    --og-neon:
        0 0 20px rgba(53, 215, 255, 0.5);

    --og-shadow:
        0 20px 70px rgba(0, 0, 0, 0.45);

    --og-transition:
        all 0.3s ease;

    --container-width: 1200px;
}


/* ============================================================
   2. RESET
============================================================ */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    background: var(--og-bg);
    color: var(--og-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img,
svg {
    max-width: 100%;
}

img {
    display: block;
}

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

button {
    cursor: pointer;
}

a {
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo {
    font-family: "Montserrat", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

::selection {
    background: var(--og-blue);
    color: #06101b;
}


/* ============================================================
   3. ACCESSIBILITY
============================================================ */

:focus-visible {
    outline: 2px solid var(--og-blue);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* ============================================================
   4. CONTAINER
============================================================ */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* ============================================================
   5. GENERAL TYPOGRAPHY
============================================================ */

.neon-text,
.blue-glow {
    color: var(--og-blue);
    text-shadow: var(--og-neon);
}

.section-kicker,
.eyebrow,
.card-label {
    color: var(--og-blue);
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 2.2px;
}

.section-kicker {
    display: table;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    margin: 10px auto 20px;
    letter-spacing: -1.2px;
}

.section-lead {
    max-width: 850px;
    margin: 0 auto;
    color: var(--og-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}


/* ============================================================
   6. HEADER
============================================================ */

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 5000;

    background: rgba(5, 9, 20, 0.86);

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

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

.nav-modern {
    min-height: 76px;

    display: flex;
    align-items: center;
    gap: 28px;
}

.logo {
    display: inline-flex;
    align-items: center;

    color: var(--og-white);
    text-decoration: none;

    font-weight: 900;
    letter-spacing: 1px;
    font-size: 1.1rem;

    white-space: nowrap;
}

.logo-it {
    opacity: 0.65;
}


/* ============================================================
   7. NAVIGATION
============================================================ */

.nav-links {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 8px;

    list-style: none;
}

.nav-links a {
    display: block;

    color: #aebbd0;

    text-decoration: none;

    padding: 10px 13px;

    border-radius: 10px;

    font-weight: 700;

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

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--og-cyan);
    background: transparent;
}

.nav-links a.active {
    color: var(--og-cyan);
    background: transparent;
    animation: navPulse 1.5s infinite ease-in-out;
}

.nav-cta {
    flex-shrink: 0;

    color: #04101a;
    background: var(--og-blue);

    text-decoration: none;

    font-weight: 900;

    padding: 11px 17px;

    border-radius: 11px;

    box-shadow:
        0 0 25px rgba(53, 215, 255, 0.16);

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

.nav-cta:hover {
    transform: translateY(-2px);

    box-shadow:
        0 0 30px rgba(53, 215, 255, 0.35);
}


/* ============================================================
   8. MOBILE MENU BUTTON
============================================================ */

.menu-toggle {
    display: none;

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

    gap: 8px;

    padding: 8px;

    color: var(--og-white);

    background: transparent;

    border: 0;

    font-weight: 800;
}


/* ============================================================
   9. HERO
============================================================ */

.home-hero {
    position: relative;

    min-height: calc(100vh - 76px);

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(53, 215, 255, 0.13),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(10, 169, 255, 0.08),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #040711 0%,
            #081020 55%,
            #050b16 100%
        );
}

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

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

    background-size: 52px 52px;

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            #000 0%,
            transparent 88%
        );

    mask-image:
        linear-gradient(
            to bottom,
            #000 0%,
            transparent 88%
        );

    pointer-events: none;
}

.hero-orb {
    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;
}

.hero-orb-one {
    width: 380px;
    height: 380px;

    right: 7%;
    top: 10%;

    background: rgba(53, 215, 255, 0.08);
}

.hero-orb-two {
    width: 300px;
    height: 300px;

    left: 25%;
    bottom: -15%;

    background: rgba(10, 169, 255, 0.07);
}

.home-hero-inner {
    position: relative;
    z-index: 2;

    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(350px, 0.8fr);

    align-items: center;

    gap: 70px;

    padding-top: 70px;
    padding-bottom: 70px;
}

.hero-copy {
    max-width: 800px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
}

.hero-copy h1 {
    max-width: 900px;

    margin: 0 0 28px;

    font-size: clamp(2.9rem, 6vw, 5.7rem);

    line-height: 0.98;

    letter-spacing: -2.8px;
}

.hero-lead {
    max-width: 770px;

    color: var(--og-muted);

    font-size: 1.15rem;

    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 13px;

    margin-top: 31px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;

    gap: 24px;

    margin-top: 29px;

    color: #d3dceb;

    font-size: 0.88rem;
}

.hero-points span {
    padding-bottom: 6px;

    border-bottom:
        1px solid rgba(53, 215, 255, 0.18);
}


/* ============================================================
   10. BUTTONS
============================================================ */

.btn {
    display: inline-block;

    padding: 15px 40px;

    border-radius: 5px;

    text-decoration: none;

    font-weight: 700;

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

.btn-primary {
    background: var(--og-blue);
    color: #06101b;
}

.btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 0 20px rgba(53, 215, 255, 0.5);
}

.btn-secondary {
    margin-left: 20px;

    border: 2px solid var(--og-blue);

    color: var(--og-blue);

    background: transparent;
}

.btn-secondary:hover {
    background: var(--og-blue);
    color: #06101b;

    transform: translateY(-2px);
}

.btn.alt {
    display: inline-block;

    padding: 10px 15px;

    border: 1px solid var(--og-line);
    border-radius: 14px;

    color: var(--og-text);

    background: transparent;

    text-decoration: none;

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

.btn.alt:hover {
    border-color: var(--og-blue);
    color: var(--og-blue);
}


/* ============================================================
   11. HERO TECH PANEL
============================================================ */

.hero-tech-panel {
    position: relative;

    min-height: 480px;

    padding: 26px;

    overflow: hidden;

    border:
        1px solid rgba(53, 215, 255, 0.17);

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(53, 215, 255, 0.1),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            rgba(16, 29, 52, 0.9),
            rgba(5, 11, 23, 0.96)
        );

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.4),
        inset 0 0 80px rgba(53, 215, 255, 0.025);
}

.tech-panel-glow {
    position: absolute;

    width: 190px;
    height: 190px;

    left: 50%;
    top: 47%;

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

    border-radius: 50%;

    background: rgba(53, 215, 255, 0.08);

    filter: blur(45px);
}

.tech-panel-top {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;

    color: #71829b;

    font-size: 0.7rem;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.status {
    color: #b8c5d6;

    animation:
        pulseElement 1.5s infinite ease-in-out;
}

.status i {
    display: inline-block;

    width: 7px;
    height: 7px;

    margin-right: 6px;

    border-radius: 50%;

    background: var(--og-blue);

    box-shadow:
        0 0 12px var(--og-blue);
}

.tech-core {
    position: relative;

    height: 300px;

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

.core-ring {
    position: absolute;

    border:
        1px solid rgba(53, 215, 255, 0.25);

    border-radius: 50%;
}

.ring-one {
    width: 220px;
    height: 220px;

    transform: rotate(25deg);

    border-style: dashed;

    border-color: var(--og-red);

    animation:
        spinClockwise 6s infinite linear;
}

.ring-two {
    width: 145px;
    height: 145px;

    border-color:
        rgba(255, 204, 0, 0.7);

    box-shadow:
        0 0 35px rgba(255, 204, 0, 0.2);

    animation:
        spinCounter 6s infinite linear;
}

.core-center {
    position: relative;
    z-index: 2;

    width: 76px;
    height: 76px;

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

    border-radius: 22px;

    color: var(--og-gold);

    border:
        1px solid rgba(255, 215, 0, 0.3);

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(255, 215, 0, 0.15),
            rgba(255, 165, 0, 0.05)
        );

    box-shadow:
        0 0 35px rgba(255, 215, 0, 0.25);

    font-size: 1.4rem;
    font-weight: 1000;

    animation:
        pulseElement 1.5s infinite ease-in-out;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;

    justify-content: center;

    gap: 8px;
}

.tech-tags span {
    padding: 8px 10px;

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

    border-radius: 9px;

    color: var(--og-muted);

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

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


/* ============================================================
   12. INTRO
============================================================ */

.intro-section {
    padding: 105px 0 55px;
    text-align: center;
}


/* ============================================================
   13. SERVICES
============================================================ */

.service-grid {
    display: grid;

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

    gap: 20px;

    padding-bottom: 110px;
}

.service-card {
    position: relative;

    padding: 34px;

    overflow: hidden;

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

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(14, 25, 45, 0.94),
            rgba(6, 12, 24, 0.96)
        );

    box-shadow:
        0 20px 65px rgba(0, 0, 0, 0.22);

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

.service-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -90px;
    top: -90px;

    border-radius: 50%;

    background:
        rgba(53, 215, 255, 0.05);

    filter: blur(15px);

    pointer-events: none;
}

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

    border-color:
        rgba(53, 215, 255, 0.35);

    box-shadow:
        0 28px 75px rgba(0, 0, 0, 0.38),
        0 0 30px rgba(53, 215, 255, 0.035);
}

.service-number {
    position: absolute;

    right: 25px;
    top: 23px;

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

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

.service-icon {
    width: 55px;
    height: 55px;

    display: inline-flex;

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

    margin-bottom: 22px;

    border:
        1px solid rgba(255, 215, 0, 0.3);

    border-radius: 50%;

    color: var(--og-gold);

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(255, 215, 0, 0.15),
            rgba(255, 165, 0, 0.05)
        );

    box-shadow:
        0 0 35px rgba(255, 215, 0, 0.25);

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

    letter-spacing: 0.5px;

    animation:
        iconPulse 2.5s infinite ease-in-out;
}

.service-card .card-label {
    font-size: 0.68rem;
}

.service-card h2 {
    margin: 9px 0 14px;

    font-size: 1.45rem;

    line-height: 1.25;
}

.service-card p {
    margin: 0;

    padding: 0;

    color: var(--og-muted);

    line-height: 1.65;
}

.service-card ul {
    margin: 21px 0 23px;
    padding: 0;

    list-style: none;
}

.service-card li {
    position: relative;

    margin: 9px 0;

    padding-left: 18px;

    color: #c6d2e4;

    font-size: 0.9rem;
}

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

    position: absolute;

    left: 0;
    top: 0.62em;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--og-blue);

    box-shadow:
        0 0 10px rgba(53, 215, 255, 0.5);
}

.service-link {
    color: var(--og-blue);

    text-decoration: none;

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

.service-link:hover {
    text-decoration: underline;
}


/* ============================================================
   14. ADVANTAGES
============================================================ */

.advantages-section {
    padding: 30px 0 110px;
}

.advantages-heading {
    max-width: 800px;

    margin:
        0 auto 35px;

    text-align: center;
}

.advantages-grid {
    display: grid;

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

    overflow: hidden;

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

    border-radius: 22px;
}

.advantage {
    padding: 31px 25px;

    background:
        rgba(10, 18, 34, 0.82);

    border-right:
        1px solid var(--og-line);
}

.advantage:last-child {
    border-right: 0;
}

.advantage > span {
    color: var(--og-blue);

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

.advantage h3 {
    margin: 20px 0 10px;

    font-size: 1.1rem;
}

.advantage p {
    color: var(--og-muted);

    font-size: 0.9rem;

    line-height: 1.6;
}


/* ============================================================
   15. PROCESS
============================================================ */

.process-section {
    padding: 15px 0 110px;
}

.process-grid {
    display: grid;

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

    overflow: hidden;

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

    border-radius: 22px;
}

.process-card {
    min-height: 220px;

    padding: 30px;

    background: #091120;

    border-right:
        1px solid var(--og-line);
}

.process-card:last-child {
    border-right: 0;
}

.process-card > span {
    color: var(--og-blue);

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

.process-card h3 {
    margin: 30px 0 10px;
}

.process-card p {
    color: var(--og-muted);

    font-size: 0.9rem;

    line-height: 1.6;
}


/* ============================================================
   16. SEO BLOCK
============================================================ */

.seo-block {
    padding-bottom: 105px;
}

.seo-block-inner {
    max-width: 1000px;

    margin: 0 auto;

    padding: 55px;

    border:
        1px solid rgba(53, 215, 255, 0.13);

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(13, 26, 47, 0.95),
            rgba(6, 12, 24, 0.98)
        );
}

.seo-block-inner h2 {
    margin: 12px 0 27px;

    font-size:
        clamp(1.9rem, 4vw, 2.8rem);
}

.seo-block-inner p {
    margin: 0 0 18px;

    color: var(--og-muted);

    line-height: 1.85;
}

.seo-block-inner strong {
    color: #eaf8ff;
}


/* ============================================================
   17. FAQ
============================================================ */

.faq-section {
    padding-bottom: 105px;
}

.faq-list {
    max-width: 1000px;

    margin: 0 auto;
}

.faq-list details {
    margin: 12px 0;

    overflow: hidden;

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

    border-radius: 15px;

    background:
        rgba(10, 18, 34, 0.72);
}

.faq-list summary {
    cursor: pointer;

    padding: 21px 24px;

    color: var(--og-white);

    font-weight: 800;

    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";

    float: right;

    color: var(--og-blue);

    font-size: 1.25rem;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    padding: 0 24px 22px;

    color: var(--og-muted);

    line-height: 1.7;
}


/* ============================================================
   18. FINAL CTA
============================================================ */

.final-cta-section {
    padding-bottom: 90px;
}

.final-cta {
    display: flex;

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

    gap: 40px;

    padding: 55px;

    border:
        1px solid rgba(53, 215, 255, 0.22);

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(53, 215, 255, 0.09),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #0d1d35,
            #07101e
        );
}

.final-cta h2 {
    margin: 10px 0;

    font-size:
        clamp(1.8rem, 3vw, 2.7rem);
}

.final-cta p {
    color: var(--og-muted);
}

.final-cta-actions {
    display: flex;

    gap: 12px;

    flex-shrink: 0;
}

.final-cta-actions .btn {
    margin: 0;
}


/* ============================================================
   19. STATS
============================================================ */

.trust {
    padding: 80px 0;

    text-align: center;
}

.stats-grid {
    display: grid;

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

    gap: 40px;

    margin-top: 40px;
}

.stat-number {
    display: block;

    color: var(--og-blue);

    font-size: 3rem;

    font-weight: 700;
}


/* ============================================================
   20. COMPATIBILITY SERVICES
============================================================ */

.services-brief {
    padding: 100px 0;
}

.services-grid,
.grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;
}

.grid {
    margin-top: 45px;
}


/* ============================================================
   21. GENERIC CARD
============================================================ */

.card {
    display: flex;

    flex-direction: column;

    padding: 25px;

    background: #1a1a1a;

    border: 2px solid;

    border-radius: 12px;

    text-align: left;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.3);

    transition:
        transform 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
}


/* ============================================================
   22. AREA ACOPERIRE
============================================================ */

.arie-acoperire-container {
    max-width: 1200px;

    margin: 30px auto;

    padding: 40px 20px;

    background: #121212;

    border-radius: 12px;

    color: var(--og-white);

    text-align: center;
}

.arie-acoperire-container h2 {
    margin-bottom: 30px;

    color: var(--og-orange);

    font-size: 1.8rem;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.acoperire-grid {
    display: grid;

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

    gap: 25px;

    align-items: stretch;

    justify-content: center;
}

.card-red {
    border-color: #ff4d4d;
}

.card-red h3 {
    color: #ff4d4d;
}

.card-red .tag {
    border-color:
        rgba(255, 77, 77, 0.4);
}

.card-red .tag:hover {
    background: #ff4d4d;
    color: #fff;
    border-color: #ff4d4d;
}

.card-blue {
    border-color: #4da6ff;
}

.card-blue h3 {
    color: #4da6ff;
}

.card-blue .tag {
    border-color:
        rgba(77, 166, 255, 0.4);
}

.card-blue .tag:hover {
    background: #4da6ff;
    color: #fff;
    border-color: #4da6ff;
}

.card-yellow {
    border-color: var(--og-gold);
}

.card-yellow h3 {
    color: var(--og-gold);
}

.card-yellow .tag {
    border-color:
        rgba(255, 215, 0, 0.4);
}

.card-yellow .tag:hover {
    background: var(--og-gold);
    color: #000;
    border-color: var(--og-gold);
}

.card h3 {
    margin-bottom: 18px;

    padding-bottom: 10px;

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

    font-size: 1.2rem;
}

.tags-wrapper {
    display: grid;

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

    gap: 8px;

    flex-grow: 1;

    align-content: start;
}

.tag {
    display: flex;

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

    min-height: 38px;

    padding: 8px 10px;

    color: #e0e0e0;

    background: #2a2a2a;

    border-width: 1px;
    border-style: solid;

    border-radius: 6px;

    font-size: 0.85rem;

    text-decoration: none;

    text-align: center;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.descriere-acoperire {
    max-width: 900px;

    margin:
        35px auto 0;

    color: #aaa;

    font-size: 0.95rem;

    line-height: 1.5;
}


/* ============================================================
   23. FLOATING CONTACT BUTTONS
============================================================ */

.contact-buttons {
    position: fixed;

    right: 20px;
    bottom: 20px;

    z-index: 9000;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 12px;
}

.btn-float {
    width: 48px;
    height: 48px;

    display: flex;

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

    background: #111;

    border:
        2px solid var(--og-gold);

    border-radius: 50%;

    box-shadow:
        0 4px 15px rgba(255, 215, 0, 0.3);

    text-decoration: none;

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

.btn-float img {
    width: 26px;
    height: 26px;

    object-fit: contain;
}

.btn-float svg {
    width: 24px;
    height: 24px;

    fill: var(--og-gold);

    transition:
        fill 0.3s ease;
}

.btn-float:hover {
    transform: scale(1.1);

    background: var(--og-gold);

    box-shadow:
        0 6px 20px rgba(255, 215, 0, 0.5);
}

.btn-float:hover svg {
    fill: #111;
}


/* ============================================================
   24. WHATSAPP / CALL
============================================================ */

.whatsapp {
    background: var(--og-green);
}

.call {
    background: var(--og-blue);
}


/* ============================================================
   25. FLOATING SHOP BUTTON
============================================================ */

.shop-float {
    position: fixed;

    left: 0;
    top: 50%;

    transform:
        translateY(-50%);

    z-index: 7000;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 15px 10px;

    color: #06101b;

    background: var(--og-blue);

    border-radius:
        0 10px 10px 0;

    text-decoration: none;

    font-weight: 700;

    writing-mode: vertical-rl;

    text-transform: uppercase;

    letter-spacing: 1px;

    font-size: 0.8rem;

    box-shadow:
        0 0 20px rgba(53, 215, 255, 0.5);

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

.shop-float:hover {
    padding-left: 20px;

    background: var(--og-white);
}

.shop-float i {
    font-style: normal;

    font-size: 1.2rem;
}


/* ============================================================
   26. SOCIAL FLOATING BUTTONS
============================================================ */

.social-footer-bar {
    position: fixed;

    right: 25px;
    bottom: 142px;

    z-index: 8000;

    display: flex;

    flex-direction: column;

    gap: 8px;

    pointer-events: none;
}

.social-btn {
    width: 40px;
    height: 40px;

    min-width: 40px;
    min-height: 40px;

    display: flex;

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

    border-radius: 50%;

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

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.4);

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

    pointer-events: auto;
}

.social-btn svg {
    width: 18px;
    height: 18px;

    display: block;

    fill: #fff;

    transition:
        transform 0.3s ease;
}

.social-btn.facebook {
    background: #1877f2;
    border-color: #1877f2;
}

.social-btn.instagram {
    background: #e4405f;
    border-color: #e4405f;
}

.social-btn.linkedin {
    background: #0a66c2;
    border-color: #0a66c2;
}

.social-btn.twitter {
    background: #000;
    border-color: #333;
}

.social-btn.youtube {
    background: #f00;
    border-color: #f00;
}

.social-btn.tiktok {
    background: #010101;
    border-color: #25f4ee;
}

.social-btn:hover {
    transform: scale(1.15);

    box-shadow:
        0 0 20px rgba(255, 255, 255, 0.6);
}

.social-btn:hover svg {
    transform: scale(1.1);
}


/* ============================================================
   27. AI BOT
============================================================ */

.ai-bot {
    position: fixed;

    left: 30px;
    bottom: 30px;

    z-index: 8990;

    display: flex;

    align-items: center;

    gap: 12px;

    cursor: pointer;

    animation:
        botFloat 4s ease-in-out infinite;
}

.ai-bot-avatar {
    position: relative;

    width: 50px;
    height: 50px;

    display: flex;

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

    border-radius: 50%;

    color: #0b0f19;

    background:
        linear-gradient(
            135deg,
            #00ffff,
            #0055ff
        );

    box-shadow:
        0 0 20px rgba(0, 255, 255, 0.4);

    transition:
        transform 0.3s ease;
}

.ai-bot:hover .ai-bot-avatar {
    transform:
        scale(1.1)
        rotate(10deg);
}

.bot-pulse {
    position: absolute;

    inset: 0;

    border:
        2px solid #00ffff;

    border-radius: 50%;

    animation:
        botPulseRing
        2s
        cubic-bezier(0.215, 0.61, 0.355, 1)
        infinite;
}

.ai-bot-bubble {
    max-width: 240px;

    padding: 10px 16px;

    border:
        1px solid rgba(0, 255, 255, 0.3);

    border-radius: 20px;

    color: #f8fafc;

    background:
        rgba(15, 23, 42, 0.9);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.3);

    backdrop-filter: blur(8px);

    font-size: 0.85rem;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}


/* ============================================================
   28. MUSCULAR ROBOT
============================================================ */

.muscular-robot-container {
    position: fixed;

    left: 20px;
    bottom: 20px;

    z-index: 8980;

    display: flex;

    align-items: flex-end;

    gap: 15px;

    perspective: 1000px;
}

.robot-3d {
    position: relative;

    width: 80px;
    height: 120px;

    transform-style: preserve-3d;

    animation:
        floatRobot 3s ease-in-out infinite;
}

.robot-3d .head {
    position: absolute;

    top: 10;
    left: 25px;

    width: 30px;
    height: 25px;

    border-radius: 6px;

    background:
        linear-gradient(
            135deg,
            #00f2fe,
            #4facfe
        );

    box-shadow:
        0 5px 15px rgba(0, 242, 254, 0.4);
}

.robot-3d .torso {
    position: absolute;

    top: 28px;
    left: 15px;

    width: 50px;
    height: 60px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #13547a,
            #80d0c7
        );

    transform:
        rotateX(10deg)
        rotateY(-10deg);

    box-shadow:
        -5px 10px 20px rgba(0, 0, 0, 0.3);
}

.robot-3d .chest {
    width: 40px;
    height: 25px;

    margin: 5px auto;

    border-radius: 6px;

    background: rgba(255, 255, 255, 0.2);
}

.robot-3d .arm {
    position: absolute;

    top: 5px;

    width: 16px;
    height: 45px;

    border-radius: 8px;

    background: #4facfe;
}

.robot-3d .arm.left {
    left: -14px;

    transform: rotate(15deg);
}

.robot-3d .arm.right {
    right: -14px;

    transform: rotate(-15deg);
}

.speech-bubble {
    position: relative;

    max-width: 220px;

    padding: 12px 18px;

    border:
        2px solid #4facfe;

    border-radius: 15px;

    color: #1a1a1a;

    background: #fff;

    font-family: sans-serif;

    font-size: 14px;
    font-weight: bold;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.2);

    animation:
        popIn 0.5s ease-out;
}

.speech-bubble::after {
    content: "";

    position: absolute;

    left: -10px;
    top: 20px;

    width: 0;
    height: 0;

    border-top:
        8px solid transparent;

    border-bottom:
        8px solid transparent;

    border-right:
        10px solid #fff;
}


/* ============================================================
   29. TECH SNAKE
============================================================ */

.tech-snake {
    position: fixed;

    inset: 0;

    width: 100vw;
    height: 100vh;

    z-index: 8995;

    overflow: hidden;

    pointer-events: none;
}

.snake-segment {
    position: absolute;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #00f0ff;

    box-shadow:
        0 0 10px #00f0ff,
        0 0 20px #ff00de;

    animation:
        snakeMove 12s infinite linear;
}

.snake-segment:nth-child(1) {
    animation-delay: 0s;
}

.snake-segment:nth-child(2) {
    animation-delay: 0.15s;
    opacity: 0.8;
}

.snake-segment:nth-child(3) {
    animation-delay: 0.3s;
    opacity: 0.6;
}

.snake-segment:nth-child(4) {
    animation-delay: 0.45s;
    opacity: 0.4;
}

.snake-segment:nth-child(5) {
    animation-delay: 0.6s;
    opacity: 0.2;
}


/* ============================================================
   30. COOKIE CONSENT
   IMPORTANT:
   Cookie banner is intentionally positioned ABOVE
   the muscular robot.
============================================================ */

#cookie-consent {
    position: fixed;

    left: 0;

    /*
     * Robot:
     * bottom: 150px
     * height: ~120px
     *
     * Cookie banner starts at 300px from bottom,
     * therefore it appears clearly ABOVE the robot.
     */
    bottom: 0px;

    width: 100%;

    z-index: 10000;

    display: none;

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

    gap: 20px;

    padding: 20px;

    color: var(--og-text);

    background: #101015;

    border-top:
        2px solid var(--og-blue);

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

    box-shadow:
        0 -5px 20px rgba(0, 0, 0, 0.5),
        0 5px 30px rgba(0, 0, 0, 0.25);
}

#cookie-consent.active {
    display: flex;
}

.cookie-text {
    max-width: 70%;

    font-size: 0.9rem;
}

.cookie-text strong {
    display: block;

    margin-bottom: 5px;

    color: var(--og-blue);

    font-size: 1rem;
}

.cookie-text p {
    margin: 0 0 6px;

    color: var(--og-text);
}

.cookie-text a {
    color: var(--og-blue);

    text-decoration: underline;
}

.cookie-btns {
    display: flex;

    gap: 10px;

    flex-shrink: 0;
}

.btn-cookie {
    padding: 8px 20px;

    border-radius: 5px;

    cursor: pointer;

    font-weight: 700;

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

.btn-accept {
    border: 0;

    background: var(--og-blue);

    color: #06101b;
}

.btn-decline {
    border:
        1px solid var(--og-blue);

    background: transparent;

    color: var(--og-blue);
}


/* ============================================================
   31. COOKIE SETTINGS MODAL
============================================================ */

.cookie-settings-overlay {
    position: fixed;

    inset: 0;

    z-index: 100000;

    display: none;

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

    padding: 20px;

    background:
        rgba(0, 0, 0, 0.82);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cookie-settings-overlay.active {
    display: flex;
}

.cookie-settings-box {
    position: relative;

    width: 100%;
    max-width: 620px;

    max-height: 90vh;

    overflow-y: auto;

    padding: 35px;

    border:
        1px solid rgba(53, 215, 255, 0.3);

    border-radius: 22px;

    color: var(--og-text);

    background: #0b1220;

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(53, 215, 255, 0.08);
}

.cookie-settings-box h2 {
    margin-bottom: 10px;

    color: var(--og-blue);

    font-size: 1.7rem;
}

.cookie-settings-intro {
    margin-bottom: 25px;

    color: var(--og-muted);
}

.cookie-settings-close {
    position: absolute;

    top: 12px;
    right: 16px;

    width: 38px;
    height: 38px;

    border: 0;

    background: transparent;

    color: var(--og-text);

    font-size: 2rem;

    line-height: 1;

    cursor: pointer;
}

.cookie-settings-close:hover {
    color: var(--og-blue);
}

.cookie-option {
    display: flex;

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

    gap: 25px;

    padding: 20px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}

.cookie-option strong {
    display: block;

    margin-bottom: 5px;

    color: #fff;
}

.cookie-option p {
    margin: 0;

    color: var(--og-muted);

    font-size: 0.88rem;

    line-height: 1.55;
}


/* ============================================================
   32. COOKIE SWITCH
============================================================ */

.cookie-switch {
    position: relative;

    width: 52px;
    min-width: 52px;

    height: 28px;

    cursor: pointer;
}

.cookie-switch input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
}

.cookie-switch span {
    position: absolute;

    inset: 0;

    border-radius: 30px;

    background: #333;

    transition: 0.25s;
}

.cookie-switch span::before {
    content: "";

    position: absolute;

    top: 3px;
    left: 3px;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: #fff;

    transition: 0.25s;
}

.cookie-switch input:checked + span {
    background: var(--og-blue);
}

.cookie-switch input:checked + span::before {
    transform: translateX(24px);
}


/* ============================================================
   33. COOKIE ACTIONS
============================================================ */

.cookie-settings-actions {
    display: flex;

    justify-content: flex-end;

    margin-top: 25px;
}

.cookie-settings-actions .btn-cookie {
    min-width: 210px;
}


/* ============================================================
   34. COOKIE MANAGE BUTTON
============================================================ */

.cookie-manage {
    position: fixed;

    left: 18px;
    bottom: 18px;

    z-index: 9997;

    padding: 8px 13px;

    border:
        1px solid rgba(53, 215, 255, 0.35);

    border-radius: 10px;

    color: var(--og-blue);

    background: #0b1220;

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

    cursor: pointer;

    opacity: 0.8;

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

.cookie-manage:hover {
    opacity: 1;

    color: #06101b;

    background: var(--og-blue);

    box-shadow:
        var(--og-neon);
}


/* ============================================================
   35. SUCCESS MODAL
============================================================ */

.modal-overlay {
    position: fixed;

    inset: 0;

    z-index: 100001;

    display: none;

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

    padding: 20px;

    background:
        rgba(0, 0, 0, 0.85);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    position: relative;

    width: 100%;
    max-width: 500px;

    padding: 50px;

    border:
        2px solid var(--og-blue);

    border-radius: 20px;

    background: #101015;

    text-align: center;

    box-shadow:
        var(--og-neon);

    animation:
        modalPop
        0.4s
        cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.close-popup {
    position: absolute;

    top: 10px;
    right: 15px;

    border: 0;

    background: transparent;

    color: var(--og-text);

    font-size: 2rem;

    cursor: pointer;

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

.close-popup:hover {
    color: var(--og-blue);
}

.modal-content h2 {
    margin-bottom: 20px;

    color: var(--og-blue);

    font-size: 1.5rem;
}

.modal-content p {
    margin-bottom: 30px;

    color: var(--og-text);

    font-weight: 700;

    text-transform: uppercase;
}

.btn-close-modal {
    padding: 10px 30px;

    border: 0;

    border-radius: 5px;

    background: var(--og-blue);

    color: #06101b;

    font-weight: 700;

    cursor: pointer;

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

.btn-close-modal:hover {
    transform: translateY(-3px);

    box-shadow:
        var(--og-neon);
}


/* ============================================================
   36. FOOTER
============================================================ */

.site-footer,
footer {
    background: #030711;

    border-top:
        1px solid var(--og-line);
}

.site-footer {
    padding: 55px 0 20px;
}

footer {
    padding: 40px 0;

    text-align: center;
}

.footer-grid {
    display: grid;

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

    gap: 40px;
}

.footer-logo {
    margin-bottom: 15px;

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

.footer-grid p,
.footer-grid a {
    color: #7f8da3;

    font-size: 0.88rem;
}

.footer-grid strong {
    display: block;

    margin-bottom: 15px;
}

.footer-grid a {
    display: block;

    margin: 9px 0;

    text-decoration: none;
}

.footer-grid a:hover {
    color: var(--og-blue);
}

.footer-bottom {
    margin-top: 35px;

    padding-top: 20px;

    border-top:
        1px solid var(--og-line);
}


/* ============================================================
   37. ANIMATIONS
============================================================ */

@keyframes navPulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.45;
    }
}

@keyframes pulseElement {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

@keyframes iconPulse {
    0% {
        transform: scale(1);

        box-shadow:
            0 0 0 0 rgba(255, 215, 0, 0.4);
    }

    70% {
        transform: scale(1.08);

        box-shadow:
            0 0 0 10px rgba(255, 215, 0, 0);
    }

    100% {
        transform: scale(1);

        box-shadow:
            0 0 0 0 rgba(255, 215, 0, 0);
    }
}

@keyframes spinClockwise {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes spinCounter {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(-180deg) scale(1.1);
    }

    100% {
        transform: rotate(-360deg) scale(1);
    }
}

@keyframes snakeMove {
    0% {
        transform: translate(10vw, 10vh);
    }

    25% {
        transform: translate(85vw, 15vh);
    }

    50% {
        transform: translate(75vw, 80vh);
    }

    75% {
        transform: translate(15vw, 70vh);
    }

    100% {
        transform: translate(10vw, 10vh);
    }
}

@keyframes botFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes botPulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes floatRobot {
    0%,
    100% {
        transform:
            translateY(0)
            rotateY(-10deg);
    }

    50% {
        transform:
            translateY(-10px)
            rotateY(-5deg);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes modalPop {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes float {
    50% {
        transform:
            translateY(-18px)
            rotate(3deg);
    }
}


/* ============================================================
   38. RESPONSIVE — TABLET
============================================================ */

@media (max-width: 1050px) {

    .home-hero-inner {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .hero-tech-panel {
        width: 100%;

        max-width: 620px;

        margin: 0 auto;
    }

    .advantages-grid,
    .process-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .advantage:nth-child(2),
    .process-card:nth-child(2) {
        border-right: 0;
    }

    .advantage:nth-child(-n + 2),
    .process-card:nth-child(-n + 2) {
        border-bottom:
            1px solid var(--og-line);
    }

    .footer-grid {
        grid-template-columns:
            1.5fr 1fr 1fr;
    }

    /*
     * Cookie remains above the robot on tablet.
     */
    #cookie-consent {
        bottom: 285px;
    }
}


/* ============================================================
   39. RESPONSIVE — MOBILE
============================================================ */

@media (max-width: 768px) {

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }


    /* --------------------------------------------------------
       Header
    -------------------------------------------------------- */

    .nav-modern {
        min-height: 68px;

        justify-content: space-between;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .nav-links {
        position: fixed;

        top: 0;
        right: -100%;

        width: min(320px, 82vw);
        height: 100vh;

        margin: 0;

        display: flex;

        flex-direction: column;

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

        gap: 8px;

        padding: 80px 20px 30px;

        background:
            rgba(5, 9, 20, 0.98);

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

        border-left:
            1px solid rgba(53, 215, 255, 0.2);

        box-shadow:
            -20px 0 70px rgba(0, 0, 0, 0.4);

        transition:
            right 0.4s ease;

        z-index: 6000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;

        margin: 0;

        text-align: center;
    }

    .nav-links a {
        width: 100%;

        padding: 15px;

        font-size: 1.05rem;
    }


    /* --------------------------------------------------------
       Hero
    -------------------------------------------------------- */

    .home-hero {
        min-height: auto;
    }

    .home-hero-inner {
        padding-top: 65px;
        padding-bottom: 65px;

        gap: 45px;
    }

    .hero-copy h1 {
        font-size: 2.8rem;

        letter-spacing: -1.8px;
    }

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

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

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

        margin: 0;

        text-align: center;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .hero-points {
        flex-direction: column;

        gap: 9px;
    }

    .hero-tech-panel {
        min-height: 390px;

        padding: 20px;
    }

    .tech-core {
        height: 240px;
    }


    /* --------------------------------------------------------
       Services
    -------------------------------------------------------- */

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

        padding-bottom: 80px;
    }

    .service-card {
        padding: 27px;
    }


    /* --------------------------------------------------------
       Advantages / Process
    -------------------------------------------------------- */

    .advantages-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .advantage,
    .process-card {
        border-right: 0 !important;

        border-bottom:
            1px solid var(--og-line);
    }

    .advantage:last-child,
    .process-card:last-child {
        border-bottom: 0;
    }


    /* --------------------------------------------------------
       Area
    -------------------------------------------------------- */

    .acoperire-grid {
        grid-template-columns: 1fr;
    }


    /* --------------------------------------------------------
       SEO
    -------------------------------------------------------- */

    .seo-block-inner {
        padding: 32px 24px;
    }


    /* --------------------------------------------------------
       CTA
    -------------------------------------------------------- */

    .final-cta {
        flex-direction: column;

        align-items: flex-start;

        padding: 35px 25px;
    }

    .final-cta-actions {
        width: 100%;

        flex-wrap: wrap;
    }

    .final-cta-actions .btn {
        flex: 1;

        min-width: 180px;

        text-align: center;
    }


    /* --------------------------------------------------------
       Footer
    -------------------------------------------------------- */

    .footer-grid {
        grid-template-columns: 1fr;
    }


    /* --------------------------------------------------------
       AI BOT
    -------------------------------------------------------- */

    .ai-bot {
        left: 20px;
        bottom: 20px;
    }

    .ai-bot-bubble {
        display: none;
    }


    /* --------------------------------------------------------
       Social
    -------------------------------------------------------- */

    .social-footer-bar {
        right: 24px;
        bottom: 145px;

        gap: 7px;
    }

    .social-btn {
        width: 38px;
        height: 38px;

        min-width: 38px;
        min-height: 38px;
    }


    /* --------------------------------------------------------
       Robot
    -------------------------------------------------------- */

    .muscular-robot-container {
        left: 12px;
        bottom: 30px;

        transform: scale(0.85);
        transform-origin: bottom left;
    }


    /* --------------------------------------------------------
       COOKIE
       Banner is ABOVE robot.
    -------------------------------------------------------- */

    #cookie-consent {
        bottom: 250px;

        flex-direction: column;

        gap: 15px;

        padding: 18px;

        text-align: center;
    }

    .cookie-text {
        max-width: 100%;
    }

    .cookie-btns {
        width: 100%;

        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }

    .cookie-settings-box {
        max-height: 92vh;

        padding: 28px 20px;

        border-radius: 18px;
    }

    .cookie-option {
        align-items: flex-start;
    }

    .cookie-settings-actions {
        width: 100%;
    }

    .cookie-settings-actions .btn-cookie {
        width: 100%;
    }

    .cookie-manage {
        left: 10px;
        bottom: 10px;
    }


    /* --------------------------------------------------------
       Modal
    -------------------------------------------------------- */

    .modal-content {
        padding: 40px 25px;
    }


    /* --------------------------------------------------------
       Shop
    -------------------------------------------------------- */

    .shop-float {
        display: none;
    }
}


/* ============================================================
   40. RESPONSIVE — SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .logo {
        font-size: 1rem;
    }

    .hero-copy h1 {
        font-size: 2.35rem;

        letter-spacing: -1.2px;
    }

    .hero-tech-panel {
        min-height: 350px;
    }

    .ring-one {
        width: 190px;
        height: 190px;
    }

    .ring-two {
        width: 125px;
        height: 125px;
    }

    .core-center {
        width: 66px;
        height: 66px;

        border-radius: 18px;
    }

    .service-card {
        padding: 24px;
    }

    .service-card h2 {
        font-size: 1.3rem;
    }

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

        gap: 25px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .tags-wrapper {
        grid-template-columns: 1fr;
    }

    .social-footer-bar {
        bottom: 95px;
    }

    .contact-buttons {
        right: 12px;
        bottom: 12px;
    }

    .btn-float {
        width: 44px;
        height: 44px;
    }

    /*
     * On very small screens the robot is hidden,
     * therefore the cookie banner can sit lower.
     */
    .muscular-robot-container {
        display: none;
    }

    #cookie-consent {
        bottom: 0;
    }

    .cookie-settings-box h2 {
        font-size: 1.4rem;
    }

    .cookie-option {
        gap: 15px;
    }

    .final-cta-actions {
        flex-direction: column;

        width: 100%;
    }

    .final-cta-actions .btn {
        width: 100%;
    }
}
