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

:root {
    --dark: #050816;
    --dark-2: #0f172a;
    --dark-3: #111827;
    --blue: #38bdf8;
    --blue-2: #0ea5e9;
    --purple: #6366f1;
    --text: #ffffff;
    --muted: #cbd5e1;
    --light: #f8fafc;
    --gray: #475569;
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 20px 60px rgba(2, 6, 23, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

a {
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(5, 8, 22, 0.65);
    backdrop-filter: blur(18px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: 0.3s;
}

.header.scrolled {
    background: rgba(5, 8, 22, 0.95);
    box-shadow: 0 12px 35px rgba(2, 6, 23, 0.35);
}

.navbar {
    max-width: 1180px;
    margin: auto;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.header.scrolled .navbar {
    padding: 13px 20px;
}

.logo {
    font-size: 226px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
}

.logo span {
    color: var(--blue);
}

.menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 22px;
}

.menu a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.menu a:hover {
    color: var(--blue);
}

.menu-button {
    background: var(--blue);
    color: #020617 !important;
    padding: 11px 16px;
    border-radius: 999px;
    font-weight: bold;
}

.menu-button:hover {
    background: var(--blue-2);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 28px;
    cursor: pointer;
}

.hero {
    position: relative;
    min-height: 100vh;
    padding: 145px 20px 90px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 15%, rgba(56, 189, 248, 0.28), transparent 32%),
        radial-gradient(circle at 10% 85%, rgba(99, 102, 241, 0.25), transparent 35%),
        linear-gradient(135deg, #050816 0%, #020617 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-noise {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.12), transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.12), transparent 25%);
    animation: pulseGlow 7s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    from {
        opacity: 0.55;
        transform: scale(1);
    }

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

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 48px;
}

.tagline,
.section-label {
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 64px;
    max-width: 820px;
    line-height: 1.04;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-text {
    max-width: 680px;
    font-size: 20px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 34px;
}

.hero-buttons,
.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
}

.btn.primary {
    background: var(--blue);
    color: #020617;
    box-shadow: 0 14px 35px rgba(56, 189, 248, 0.25);
}

.btn.primary:hover {
    background: var(--blue-2);
    transform: translateY(-3px);
}

.btn.secondary {
    border: 1px solid var(--blue);
    color: var(--blue);
}

.btn.secondary:hover {
    background: rgba(56, 189, 248, 0.1);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 46px;
    max-width: 650px;
}

.hero-stats div {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
}

.hero-stats strong {
    display: block;
    font-size: 20px;
    color: var(--text);
    margin-bottom: 6px;
}

.hero-stats span {
    color: var(--muted);
    font-size: 14px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.code-window {
    width: 100%;
    max-width: 460px;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    transform: perspective(1000px) rotateY(-5deg) rotateX(4deg);
    transition: 0.4s;
}

.code-window:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-8px);
}

.window-dots {
    display: flex;
    gap: 8px;
    padding: 18px;
    border-bottom: 1px solid var(--border);
}

.window-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--blue);
    opacity: 0.8;
}

.window-dots span:nth-child(2) {
    background: var(--purple);
}

.window-dots span:nth-child(3) {
    background: #22c55e;
}

.code-window pre {
    padding: 28px;
    overflow-x: auto;
}

.code-window code {
    color: #dbeafe;
    font-size: 15px;
    line-height: 1.8;
}



.section {
    padding: 95px 20px;
    background: #ffffff;
    color: #0f172a;
}

.section.dark {
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.08), transparent 28%),
        var(--dark-2);
    color: var(--text);
}

.section h2,
.cta-section h2 {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section p {
    color: var(--gray);
    font-size: 18px;
    line-height: 1.75;
}

.section.dark p {
    color: var(--muted);
}

.section-heading {
    max-width: 780px;
    margin-bottom: 15px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 42px;
}

.card {
    position: relative;
    background: rgba(17, 24, 39, 0.92);
    padding: 30px;
    border-radius: 18px;
    border: 1px solid var(--border);
    transition: 0.3s;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.15), transparent 35%);
    opacity: 0;
    transition: 0.3s;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--blue);
}

.card-icon {
    position: relative;
    display: inline-block;
    font-size: 32px;
    margin-bottom: 18px;
}

.card h3 {
    position: relative;
    color: var(--blue);
    margin-bottom: 14px;
    font-size: 22px;
}

.card p {
    position: relative;
    font-size: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 42px;
}

.feature {
    background: var(--light);
    border: 1px solid #e2e8f0;
    padding: 28px;
    border-radius: 18px;
    transition: 0.3s;
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.feature h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

.feature p {
    font-size: 16px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 42px;
}

.project-card {
    background: rgba(17, 24, 39, 0.94);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--blue);
    box-shadow: 0 20px 50px rgba(2, 6, 23, 0.35);
}

.project-image {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.project-image::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.25);
    background:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 28px 28px;
}

.project-image span {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: rgba(2, 6, 23, 0.75);
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    backdrop-filter: blur(10px);
}

.gradient-one {
    background:
        linear-gradient(135deg, rgba(56, 189, 248, 0.9), rgba(99, 102, 241, 0.5)),
        radial-gradient(circle, #ffffff 0%, transparent 55%);
}

.gradient-two {
    background:
        linear-gradient(135deg, rgba(14, 165, 233, 0.85), rgba(15, 23, 42, 0.95)),
        radial-gradient(circle at top right, #ffffff 0%, transparent 40%);
}

.gradient-three {
    background:
        linear-gradient(135deg, rgba(99, 102, 241, 0.8), rgba(56, 189, 248, 0.5)),
        radial-gradient(circle at bottom left, #ffffff 0%, transparent 40%);
}

.project-content {
    padding: 26px;
}

.project-content span {
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.project-content h3 {
    font-size: 22px;
    margin: 12px 0;
}

.project-content p {
    font-size: 16px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 42px;
}

.process-step {
    background: var(--light);
    border: 1px solid #e2e8f0;
    padding: 26px;
    border-radius: 18px;
    transition: 0.3s;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.process-step span {
    display: inline-block;
    color: var(--blue-2);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 18px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 15px;
}

.faq {
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 42px;
}

details {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 22px;
    transition: 0.3s;
}

details:hover {
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

summary {
    cursor: pointer;
    font-weight: 800;
    font-size: 18px;
}

details p {
    margin-top: 14px;
    font-size: 16px;
}

.cta-section {
    padding: 100px 20px;
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.24), transparent 30%),
        radial-gradient(circle at bottom left, rgba(99, 102, 241, 0.22), transparent 32%),
        var(--dark);
}

.cta-box {
    position: relative;
    text-align: center;
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 68px 34px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.cta-box::before {
    content: "";
    position: absolute;
    inset: -2px;
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.18), transparent 38%),
        radial-gradient(circle at bottom left, rgba(99, 102, 241, 0.18), transparent 38%);
    pointer-events: none;
}

.cta-box > * {
    position: relative;
}

.cta-box p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto 30px;
}

.cta-actions {
    justify-content: center;
}

.footer {
    background: #020617;
    color: var(--muted);
    padding: 55px 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 35px;
}

.footer p {
    margin-top: 12px;
    color: #94a3b8;
}

.footer h3 {
    color: var(--text);
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    text-align: center;
    padding: 22px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}



.whatsapp-float:hover {
    transform: translateY(-4px);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .hero-grid,
    .intro-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .cards,
    .features-grid,
    .project-grid,
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .code-window {
        transform: none;
    }
}

@media (max-width: 700px) {
    .container {
        max-width: 100%;
    }

    .menu-toggle {
        display: block;
    }

    .menu {
        position: absolute;
        top: 72px;
        right: 20px;
        background: #020617;
        flex-direction: column;
        align-items: flex-start;
        width: 240px;
        padding: 20px;
        border-radius: 16px;
        display: none;
        border: 1px solid var(--border);
    }

    .menu.active {
        display: flex;
    }

    .menu-button {
        display: inline-block;
    }

    .hero {
        padding-top: 125px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-text {
        font-size: 17px;
    }

    .hero-stats,
    .cards,
    .features-grid,
    .project-grid,
    .process-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .section,
    .cta-section {
        padding: 75px 20px;
    }

    .section h2,
    .cta-section h2 {
        font-size: 31px;
    }

    .hero-buttons,
    .cta-actions {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }

}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background:
        radial-gradient(circle at 30% 30%, #ffffff 0%, transparent 22%),
        linear-gradient(135deg, var(--blue), var(--purple));
    box-shadow: 0 0 26px rgba(56, 189, 248, 0.35);
    position: relative;
    overflow: hidden;
    animation: vortixSpinGlow 3s linear infinite;
}

.logo-text {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 4px;
    font-size: 826px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.5px;
    color: #ffffff;
    animation: vortixGlow 1.8s ease-in-out infinite;
}

.logo-text small {
    color: var(--blue);
    font-size: 600px;
    letter-spacing: 0.5px;
    text-transform: none;
    margin-top: 0;
    font-weight: 900;
}

@keyframes logoShine {
    0%, 55% {
        transform: translateX(0) rotate(-35deg);
    }

    100% {
        transform: translateX(120px) rotate(-35deg);
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-size: 22px;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 0.5px;
    animation: logoMove 2.5s ease-in-out infinite;
}

.logo-text {
    color: #ffffff;
    text-shadow:
        0 0 8px rgba(56, 189, 248, 0.45),
        0 0 18px rgba(56, 189, 248, 0.25);
}

.logo-text small {
    color: var(--blue);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 4px;
}

.logo-text small {
    color: var(--blue);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 4px;
}

.menu a {
    position: relative;
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
    padding: 8px 0;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    border-radius: 999px;
    transition: 0.3s;
    transform: translateX(-50%);
}

.menu a:hover {
    color: var(--blue);
}

.menu a:hover::after {
    width: 100%;
}

.menu-button {
    background: rgba(56, 189, 248, 0.12);
    color: var(--blue) !important;
    padding: 12px 18px !important;
    border-radius: 999px;
    font-weight: 900;
    border: 1px solid rgba(56, 189, 248, 0.45);
    box-shadow: 0 0 28px rgba(56, 189, 248, 0.12);
}

.menu-button::after {
    display: none;
}

.menu-button:hover {
    background: var(--blue);
    color: #020617 !important;
    transform: translateY(-2px);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 42px;
    text-align: left;
}

.contact-card {
    background: rgba(17, 24, 39, 0.95);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 30px;
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--blue);
    box-shadow: 0 20px 50px rgba(2, 6, 23, 0.35);
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--text);
}

.contact-card p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-card .btn {
    width: 100%;
    text-align: center;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 42px;
    text-align: left;
}

.contact-card {
    background: rgba(17, 24, 39, 0.95);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 30px;
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--blue);
    box-shadow: 0 20px 50px rgba(2, 6, 23, 0.35);
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--text);
}

.contact-card p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-card .btn {
    width: 100%;
    text-align: center;
}

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

.logo-text {
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #ffffff 35%,
        var(--blue) 50%,
        #ffffff 65%,
        #ffffff 100%
    );
    background-size: 260% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: logoTextFlow 3.5s linear infinite;
}

.logo-text small {
    color: transparent;
    background: linear-gradient(
        90deg,
        var(--blue),
        #ffffff,
        var(--blue)
    );
    background-size: 220% auto;
    background-clip: text;
    -webkit-background-clip: text;
    animation: logoTextFlow 3s linear infinite;
}

.logo-mark {
    animation: logoPulse 2.8s ease-in-out infinite;
}

@keyframes logoTextFlow {
    0% {
        background-position: 260% center;
    }

    100% {
        background-position: -260% center;
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(56, 189, 248, 0.25);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 0 38px rgba(56, 189, 248, 0.6);
    }
}

@keyframes logoMove {
    0%, 100% {
        transform: translateY(0);
        text-shadow:
            0 0 8px rgba(56, 189, 248, 0.35),
            0 0 18px rgba(56, 189, 248, 0.18);
    }

    50% {
        transform: translateY(-3px);
        text-shadow:
            0 0 14px rgba(56, 189, 248, 0.85),
            0 0 32px rgba(56, 189, 248, 0.45);
    }
}

.logo {
    animation: logoDebugMove 1s infinite alternate !important;
}

@keyframes logoDebugMove {
    from {
        transform: translateY(0) !important;
    }

    to {
        transform: translateY(12px) !important;
    }
}

.logo-text {
    animation: vortixGlow 1.8s ease-in-out infinite !important;
}

.logo-mark {
    animation: vortixSpinGlow 3s linear infinite !important;
}

@keyframes vortixGlow {
    0% {
        opacity: 0.65;
        filter: brightness(1);
    }

    50% {
        opacity: 1;
        filter: brightness(1.8) drop-shadow(0 0 12px #38bdf8);
    }

    100% {
        opacity: 0.65;
        filter: brightness(1);
    }
}

@keyframes vortixSpinGlow {
    0% {
        transform: rotate(0deg);
        box-shadow: 0 0 12px rgba(56, 189, 248, 0.35);
    }

    50% {
        box-shadow: 0 0 35px rgba(56, 189, 248, 0.85);
    }

    100% {
        transform: rotate(360deg);
        box-shadow: 0 0 12px rgba(56, 189, 248, 0.35);
    }
}


.header .logo-text,
.footer .logo-text {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: baseline !important;
    gap: 4px !important;
    font-size: 28px !important;
    line-height: 1 !important;
}

.header .logo-text small,
.footer .logo-text small {
    display: inline !important;
    font-size: 28px !important;
    letter-spacing: 0.5px !important;
    margin: 0 !important;
    text-transform: none !important;
}

.header .logo {
    transform: scale(1.35) !important;
    transform-origin: left center !important;
}

.header .logo-text {
    font-size: 34px !important;
}

.header .logo-text small {
    font-size: 34px !important;
}

.header .logo-mark {
    width: 46px !important;
    height: 46px !important;
}

.header {
    min-height: 96px !important;
}

.navbar {
    max-width: 1320px !important;
    padding: 22px 20px !important;
}

.header.scrolled .navbar {
    padding: 16px 20px !important;
}

.header .logo {
    margin-left: -45px !important;
}

.help-section {
    background: #f8fafc;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 42px;
}

.help-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px;
    transition: 0.3s;
}

.help-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    border-color: var(--blue);
}

.help-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #0f172a;
}

.help-card p {
    font-size: 16px;
    margin-bottom: 22px;
}

.help-card a {
    color: var(--blue-2);
    text-decoration: none;
    font-weight: 900;
}

@media (max-width: 980px) {
    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.admin-floating-button{

    position:fixed;

    right:25px;

    bottom:25px;

    z-index:9999;

    text-decoration:none;

    background:#111827;

    color:white;

    padding:12px 18px;

    border-radius:30px;

    font-weight:bold;

    font-size:14px;

    transition:.3s;

    box-shadow:0 8px 20px rgba(0,0,0,.2);

}

