:root {
    --bg: #05070a;
    --bg-soft: #080b10;
    --card: rgba(255, 255, 255, 0.045);
    --card-hover: rgba(255, 255, 255, 0.075);

    --border: rgba(255, 255, 255, 0.1);
    --border-cyan: rgba(0, 234, 255, 0.3);

    --text: #f5f8fb;
    --muted: #98a3ae;

    --cyan: #00eaff;
    --cyan-light: #68f5ff;

    --max-width: 1160px;
}


/* ================= RESET ================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);

    background:
        radial-gradient(
            circle at 80% 5%,
            rgba(0, 234, 255, 0.09),
            transparent 30rem
        ),
        radial-gradient(
            circle at 5% 40%,
            rgba(0, 234, 255, 0.045),
            transparent 26rem
        ),
        var(--bg);

    line-height: 1.6;

    overflow-x: hidden;
}

body::before {
    content: "";

    position: fixed;
    inset: 0;

    pointer-events: none;

    opacity: 0.2;

    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: 55px 55px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 85%
        );

    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}


/* ================= GLOBAL ================= */

.container {
    width: min(
        calc(100% - 40px),
        var(--max-width)
    );

    margin-inline: auto;
}

.section {
    padding: 110px 0;
}

.section-label {
    color: var(--cyan);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.2em;

    text-transform: uppercase;

    margin-bottom: 12px;
}

.section-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 45px;
}

.section-heading h2,
.about-grid h2,
.contact-info h2 {
    font-size: clamp(38px, 5vw, 62px);

    line-height: 1;

    letter-spacing: -0.05em;
}

.section-heading > p {
    max-width: 410px;

    color: var(--muted);

    font-size: 15px;
}


/* ================= HEADER ================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 100;

    padding: 20px 0;

    transition:
        background 0.3s ease,
        padding 0.3s ease,
        border-color 0.3s ease;
}

.site-header.scrolled {
    padding: 13px 0;

    background: rgba(5, 7, 10, 0.78);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--border);
}

.navbar {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

.brand {
    display: flex;

    align-items: center;
}

.brand-logo {
    width: 100px;
    height: auto;

    display: block;

    object-fit: contain;
}

.desktop-nav {
    display: flex;

    align-items: center;

    gap: 32px;

    margin-left: auto;
    margin-right: 30px;
}

.desktop-nav a {
    color: #c7ced5;

    font-size: 13px;

    transition: color 0.25s ease;
}

.desktop-nav a:hover {
    color: var(--cyan);
}

.nav-button {
    padding: 10px 17px;

    border: 1px solid var(--border-cyan);

    border-radius: 999px;

    color: var(--cyan);

    font-size: 13px;

    transition: 0.3s ease;
}

.nav-button:hover {
    background: rgba(0, 234, 255, 0.08);

    transform: translateY(-2px);
}

.mobile-menu {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border);

    border-radius: 11px;

    background: rgba(255, 255, 255, 0.03);

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 6px;
}

.mobile-menu span {
    width: 18px;
    height: 1.5px;

    background: white;

    transition: 0.3s;
}

.mobile-nav {
    display: none;
}


/* ================= HERO ================= */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    padding:
        140px
        0
        90px;

    overflow: hidden;
}

.hero-grid {
    display: grid;

    grid-template-columns:
        1.05fr
        0.95fr;

    align-items: center;

    gap: 60px;
}

.eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 24px;

    color: var(--cyan);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.17em;

    text-transform: uppercase;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--cyan);

    box-shadow:
        0 0 15px var(--cyan);

    animation: pulse 1.8s infinite;
}

.hero h1 {
    max-width: 780px;

    font-size:
        clamp(
            48px,
            7vw,
            88px
        );

    line-height: 0.98;

    letter-spacing: -0.065em;
}

.hero h1 span {
    color: var(--cyan);
}

.hero-description {
    max-width: 600px;

    margin: 28px 0 35px;

    color: var(--muted);

    font-size: 17px;
}

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding: 0 21px;

    border-radius: 12px;

    border: 0;

    font-size: 13px;

    font-weight: 800;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.button-primary {
    color: #001014;

    background: var(--cyan);

    box-shadow:
        0 0 35px
        rgba(0, 234, 255, 0.16);
}

.button-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 40px
        rgba(0, 234, 255, 0.24);
}

.button-secondary {
    color: white;

    background: rgba(255, 255, 255, 0.025);

    border: 1px solid var(--border);
}

.button-secondary:hover {
    color: var(--cyan);

    border-color: var(--border-cyan);

    transform: translateY(-3px);
}

.hero-trust {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 38px;

    color: #69737c;

    font-size: 9px;

    letter-spacing: 0.2em;
}

.trust-line {
    width: 35px;
    height: 1px;

    background: var(--cyan);

    opacity: 0.5;
}


/* ================= HERO VISUAL ================= */

.hero-visual {
    position: relative;

    min-height: 500px;

    display: grid;

    place-items: center;
}

.visual-orbit {
    position: absolute;

    width: 390px;
    height: 390px;

    border: 1px solid
        rgba(0, 234, 255, 0.12);

    border-radius: 50%;
}

.orbit-one {
    transform:
        rotate(28deg)
        scaleX(1.45);

    animation:
        orbit-one 12s linear infinite;
}

.orbit-two {
    transform:
        rotate(-28deg)
        scaleX(1.45);

    border-color:
        rgba(255, 255, 255, 0.06);

    animation:
        orbit-two 15s linear infinite;
}

.visual-core {
    width: 270px;
    height: 270px;

    border-radius: 50%;

    position: relative;

    display: grid;

    place-items: center;

    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(104, 245, 255, 0.27),
            rgba(0, 234, 255, 0.04) 42%,
            transparent 70%
        );

    border: 1px solid
        rgba(0, 234, 255, 0.2);

    box-shadow:
        inset 0 0 70px
        rgba(0, 234, 255, 0.08),
        0 0 100px
        rgba(0, 234, 255, 0.08);

    animation:
        core-float 6s ease-in-out infinite;
}

.core-glow {
    position: absolute;

    width: 100px;
    height: 100px;

    background: var(--cyan);

    filter: blur(75px);

    opacity: 0.14;
}

.core-content {
    position: relative;

    text-align: center;
}

.core-content span {
    display: block;

    font-size: 58px;

    font-weight: 900;

    letter-spacing: -0.12em;
}

.core-content small {
    display: block;

    margin-top: -6px;

    color: var(--muted);

    font-size: 8px;

    letter-spacing: 0.28em;
}

.floating-card {
    position: absolute;

    width: 245px;

    padding: 20px;

    border: 1px solid var(--border);

    border-radius: 18px;

    background:
        rgba(8, 12, 17, 0.75);

    backdrop-filter: blur(16px);

    box-shadow:
        0 25px 80px
        rgba(0, 0, 0, 0.4);

    z-index: 3;
}

.floating-card small {
    color: var(--muted);

    font-size: 9px;

    letter-spacing: 0.15em;
}

.floating-card strong {
    display: block;

    margin-top: 5px;

    font-size: 23px;

    letter-spacing: -0.03em;
}

.floating-card p {
    margin-top: 5px;

    color: var(--cyan);

    font-size: 11px;
}

.floating-card-top {
    top: 55px;
    right: -10px;

    animation:
        floating 5s ease-in-out infinite;
}

.floating-card-bottom {
    bottom: 45px;
    left: -15px;

    animation:
        floating 5s ease-in-out infinite -2s;
}

.progress {
    height: 4px;

    margin-top: 15px;

    overflow: hidden;

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.08);
}

.progress span {
    display: block;

    width: 78%;
    height: 100%;

    background: var(--cyan);

    box-shadow:
        0 0 14px var(--cyan);
}

.scroll-indicator {
    position: absolute;

    left: 50%;
    bottom: 25px;

    transform: translateX(-50%);

    color: #69737c;

    font-size: 9px;

    letter-spacing: 0.2em;

    text-transform: uppercase;
}

.scroll-indicator span {
    display: block;

    width: 1px;
    height: 28px;

    margin: 0 auto 8px;

    background:
        linear-gradient(
            var(--cyan),
            transparent
        );
}


/* ================= SERVICES ================= */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;
}

.service-card {
    position: relative;

    padding: 30px;

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.service-card::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    top: -80px;
    right: -70px;

    border-radius: 50%;

    background: var(--cyan);

    filter: blur(70px);

    opacity: 0;

    transition: opacity 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: var(--border-cyan);

    box-shadow:
        0 25px 65px
        rgba(0, 0, 0, 0.28);
}

.service-card:hover::before {
    opacity: 0.12;
}

.service-number {
    position: absolute;

    top: 20px;
    right: 22px;

    color: rgba(255, 255, 255, 0.15);

    font-size: 11px;

    letter-spacing: 0.15em;
}

.service-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    margin-bottom: 22px;

    border: 1px solid
        rgba(0, 234, 255, 0.2);

    border-radius: 13px;

    color: var(--cyan);

    background:
        rgba(0, 234, 255, 0.055);

    font-size: 20px;
}

.service-card h3 {
    margin-bottom: 10px;

    font-size: 20px;
}

.service-card > p {
    color: var(--muted);

    font-size: 14px;
}

.service-card ul {
    display: grid;

    gap: 7px;

    margin-top: 20px;

    list-style: none;

    color: #c5cbd1;

    font-size: 13px;
}

.service-card li span {
    margin-right: 8px;

    color: var(--cyan);
}


/* ================= STATS ================= */

.stats-section {
    padding: 25px 0 110px;
}

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat {
    padding: 36px 20px;

    text-align: center;

    border-right: 1px solid var(--border);
}

.stat:last-child {
    border-right: 0;
}

.stat strong {
    display: block;

    font-size: 35px;

    letter-spacing: -0.05em;
}

.stat span {
    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 12px;
}


/* ================= ABOUT ================= */

.about-grid {
    display: grid;

    grid-template-columns:
        1fr
        0.8fr;

    gap: 80px;

    align-items: end;
}

.about-copy {
    max-width: 440px;
}

.about-line {
    width: 40px;
    height: 1px;

    margin-bottom: 25px;

    background: var(--cyan);
}

.about-copy p {
    margin-bottom: 16px;

    color: var(--muted);

    font-size: 15px;
}

.text-link {
    display: inline-flex;

    gap: 10px;

    margin-top: 14px;

    color: var(--cyan);

    font-size: 13px;

    font-weight: 800;
}


/* ================= PROCESS ================= */

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;
}

.process-step {
    min-height: 260px;

    padding: 28px;

    border-top: 1px solid var(--border);

    transition:
        border-color 0.3s ease,
        transform 0.3s ease;
}

.process-step:hover {
    border-color: var(--cyan);

    transform: translateY(-5px);
}

.process-number {
    display: block;

    margin-bottom: 65px;

    color: var(--cyan);

    font-size: 12px;

    font-weight: 800;
}

.process-step small {
    color: var(--muted);

    font-size: 10px;

    letter-spacing: 0.16em;
}

.process-step h3 {
    margin: 7px 0;

    font-size: 22px;
}

.process-step p {
    color: var(--muted);

    font-size: 13px;
}


/* ================= CTA ================= */

.cta-section {
    padding: 0 0 110px;
}

.cta-box {
    position: relative;

    overflow: hidden;

    padding: 75px 60px;

    border:
        1px solid
        rgba(0, 234, 255, 0.2);

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(0, 234, 255, 0.12),
            transparent 32%
        ),
        rgba(255, 255, 255, 0.035);
}

.cta-decoration {
    position: absolute;

    width: 300px;
    height: 300px;

    right: -100px;
    bottom: -180px;

    border: 1px solid
        rgba(0, 234, 255, 0.15);

    border-radius: 50%;
}

.cta-box h2 {
    position: relative;

    max-width: 760px;

    font-size: clamp(38px, 5vw, 62px);

    line-height: 1;

    letter-spacing: -0.05em;
}

.cta-box p {
    position: relative;

    max-width: 590px;

    margin: 20px 0 30px;

    color: var(--muted);

    font-size: 15px;
}


/* ================= CONTACT ================= */

.contact-grid {
    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 80px;
}

.contact-info > p {
    max-width: 430px;

    margin: 20px 0 30px;

    color: var(--muted);

    font-size: 15px;
}

.contact-details {
    display: grid;

    gap: 12px;
}

.contact-details a {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #dce3e8;

    font-size: 13px;
}

.contact-details a:hover {
    color: var(--cyan);
}

.contact-details span {
    color: var(--cyan);
}


/* ================= FORM ================= */

.contact-form-wrapper {
    padding: 30px;

    border: 1px solid var(--border);

    border-radius: 22px;

    background:
        rgba(255, 255, 255, 0.025);
}

.contact-form {
    display: grid;

    gap: 16px;
}

.form-row {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 14px;
}

.form-group {
    display: grid;

    gap: 7px;
}

.form-group label {
    color: #c7ced5;

    font-size: 11px;

    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;

    border: 1px solid var(--border);

    border-radius: 11px;

    outline: none;

    padding: 14px 15px;

    color: white;

    background:
        rgba(255, 255, 255, 0.035);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.form-group textarea {
    min-height: 145px;

    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #59636d;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color:
        rgba(0, 234, 255, 0.45);

    box-shadow:
        0 0 0 3px
        rgba(0, 234, 255, 0.05);
}

.submit-button {
    width: 100%;
}


/* ================= FOOTER ================= */

.footer {
    padding: 25px 0;

    border-top: 1px solid var(--border);

    color: #69737c;

    font-size: 11px;
}

.footer-inner {
    display: flex;

    justify-content: space-between;

    gap: 20px;
}

.footer a:hover {
    color: var(--cyan);
}


/* ================= REVEAL ================= */

.reveal {
    opacity: 0;

    transform: translateY(28px);

    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.reveal.show {
    opacity: 1;

    transform: translateY(0);
}


/* ================= ANIMATIONS ================= */

@keyframes pulse {

    50% {
        opacity: 0.35;

        box-shadow:
            0 0 4px var(--cyan);
    }

}

@keyframes floating {

    50% {
        transform: translateY(-9px);
    }

}

@keyframes core-float {

    50% {
        transform: translateY(-12px);
    }

}

@keyframes orbit-one {

    from {
        transform:
            rotate(28deg)
            scaleX(1.45);
    }

    to {
        transform:
            rotate(388deg)
            scaleX(1.45);
    }

}

@keyframes orbit-two {

    from {
        transform:
            rotate(-28deg)
            scaleX(1.45);
    }

    to {
        transform:
            rotate(-388deg)
            scaleX(1.45);
    }

}


/* ================= TABLET ================= */

@media (max-width: 900px) {

    .desktop-nav,
    .nav-button {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .mobile-nav {
        position: absolute;

        top: 70px;
        left: 14px;
        right: 14px;

        display: none;

        padding: 20px;

        flex-direction: column;

        gap: 16px;

        border: 1px solid var(--border);

        border-radius: 16px;

        background:
            rgba(5, 7, 10, 0.96);

        backdrop-filter: blur(18px);
    }

    .mobile-nav.active {
        display: flex;
    }

    .mobile-nav a {
        color: #dce3e8;

        font-size: 14px;
    }

    .mobile-nav-button {
        padding-top: 14px;

        border-top: 1px solid var(--border);

        color: var(--cyan) !important;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .eyebrow,
    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-visual {
        min-height: 430px;
    }

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

}


/* ================= MOBILE ================= */

@media (max-width: 600px) {

    .container {
        width:
            min(
                calc(100% - 28px),
                var(--max-width)
            );
    }

    .section {
        padding: 80px 0;
    }

    .brand-logo {
        width: 125px;
    }

    .hero {
        min-height: auto;

        padding:
            125px 0
            80px;
    }

    .hero h1 {
        font-size: 50px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-visual {
        min-height: 350px;
    }

    .visual-core {
        width: 210px;
        height: 210px;
    }

    .visual-orbit {
        width: 300px;
        height: 300px;
    }

    .core-content span {
        font-size: 45px;
    }

    .floating-card {
        width: 190px;

        padding: 15px;
    }

    .floating-card strong {
        font-size: 18px;
    }

    .floating-card-top {
        top: 15px;
        right: 0;
    }

    .floating-card-bottom {
        bottom: 10px;
        left: 0;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 18px;
    }

    .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .stat {
        padding: 27px 10px;
    }

    .stat:nth-child(2) {
        border-right: 0;
    }

    .stat:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

    .stat strong {
        font-size: 28px;
    }

    .process-step {
        min-height: auto;
    }

    .process-number {
        margin-bottom: 35px;
    }

    .cta-box {
        padding: 45px 25px;

        border-radius: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .footer-inner {
        display: block;
    }

    .footer-inner div + div {
        margin-top: 8px;
    }

    .scroll-indicator {
        display: none;
    }

}

/* ================= TESTIMONIALS ================= */

.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    top: 15%;
    left: -300px;

    border-radius: 50%;

    background: var(--cyan);

    filter: blur(180px);

    opacity: 0.035;

    pointer-events: none;
}


.testimonials-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}


/* CARD */

.testimonial-card {
    position: relative;

    min-height: 330px;

    display: flex;

    flex-direction: column;

    padding: 30px;

    overflow: hidden;

    border:
        1px solid
        var(--border);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.testimonial-card::before {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    top: -100px;
    right: -90px;

    border-radius: 50%;

    background: var(--cyan);

    filter: blur(75px);

    opacity: 0;

    transition:
        opacity 0.35s ease;
}


.testimonial-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(0, 234, 255, 0.3);

    box-shadow:
        0 25px 65px
        rgba(0, 0, 0, 0.28);
}


.testimonial-card:hover::before {
    opacity: 0.1;
}


/* TOP */

.testimonial-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 25px;
}


.stars {
    color: var(--cyan);

    font-size: 13px;

    letter-spacing: 3px;

    text-shadow:
        0 0 15px
        rgba(0, 234, 255, 0.35);
}


.quote-mark {
    color:
        rgba(0, 234, 255, 0.2);

    font-family: Georgia, serif;

    font-size: 65px;

    line-height: 0.5;
}


/* TEXT */

.testimonial-text {
    position: relative;

    color: #d7dde2;

    font-size: 15px;

    line-height: 1.8;

    flex: 1;
}


/* AUTHOR */

.testimonial-author {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 30px;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.07);
}


.author-avatar {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border:
        1px solid
        rgba(0, 234, 255, 0.25);

    border-radius: 50%;

    color: var(--cyan);

    background:
        rgba(0, 234, 255, 0.07);

    font-size: 13px;

    font-weight: 800;
}


.testimonial-author strong {
    display: block;

    color: #f2f5f7;

    font-size: 13px;
}


.testimonial-author span {
    display: block;

    margin-top: 2px;

    color: var(--muted);

    font-size: 10px;
}


/* NOTE */

.testimonial-note {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    margin-top: 28px;

    color: #68737c;

    font-size: 10px;

    letter-spacing: 0.05em;

    text-align: center;
}


.testimonial-note span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--cyan);

    box-shadow:
        0 0 10px
        var(--cyan);

    opacity: 0.7;
}


/* ================= TESTIMONIAL RESPONSIVE ================= */

@media (max-width: 900px) {

    .testimonials-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-height: 300px;

        padding: 25px;
    }

}
