/* ========================================
   Sayin Service - Stylesheet
   ======================================== */

/* --- Custom Properties --- */
:root {
    --bg-primary: #071621;
    --bg-secondary: #0a2235;
    --bg-tertiary: #0d2d47;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);

    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);

    --accent-red: #E31E24;
    --accent-blue: #00A3E0;
    --accent-red-glow: rgba(227, 30, 36, 0.15);
    --accent-blue-glow: rgba(0, 163, 224, 0.15);

    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --font-heading: 'Outfit', -apple-system, sans-serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

/* --- Cursor Glow --- */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 163, 224, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
.section-label {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent-red), #c4181d);
    color: var(--text-primary);
    box-shadow: 0 4px 24px rgba(227, 30, 36, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(227, 30, 36, 0.4);
}

.btn--ghost {
    border: 1px solid var(--border-hover);
    color: var(--text-primary);
    backdrop-filter: blur(4px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-secondary);
    transform: translateY(-2px);
}

.btn--nav {
    padding: 10px 24px;
    background: rgba(227, 30, 36, 0.1);
    border: 1px solid rgba(227, 30, 36, 0.3);
    color: var(--accent-red);
    font-size: 0.875rem;
}

.btn--nav:hover {
    background: var(--accent-red);
    color: white;
    border-color: var(--accent-red);
}

.btn--lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    height: var(--nav-height);
    transition: all 0.4s var(--ease-smooth);
}

.nav--scrolled {
    background: rgba(7, 22, 33, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav__logo img {
    height: 56px;
    width: auto;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}

.nav__links a:not(.btn):hover {
    color: var(--text-primary);
}

.nav__links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-blue));
    transition: width 0.3s var(--ease-out);
}

.nav__links a:not(.btn):hover::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ========================================
   HERO — Cinematic
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--bg-primary);
}

/* Background image */
.hero__bg {
    position: absolute;
    inset: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        var(--bg-primary) 0%,
        rgba(7, 22, 33, 0.85) 30%,
        rgba(7, 22, 33, 0.5) 60%,
        rgba(7, 22, 33, 0.3) 100%
    );
}

/* Bars reveal overlay */
.hero__bars {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    z-index: 2;
    pointer-events: none;
}

.hero__bar {
    flex: 1;
    background: var(--bg-primary);
    transform-origin: left;
}

/* Noise overlay */
.hero__noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
    pointer-events: none;
    z-index: 1;
}

/* Vertical CTA on right side */
.hero__cta-float {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    writing-mode: vertical-rl;
}

.hero__cta-float a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.hero__cta-float a:hover {
    color: var(--accent-blue);
}

.hero__cta-line {
    display: inline-block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-red), var(--accent-blue));
}

/* Content */
.hero__content {
    position: relative;
    z-index: 3;
    padding: 0 80px 80px;
    width: 100%;
}

/* Badge — Hero 1 style */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(0, 163, 224, 0.1);
    border: 1px solid rgba(0, 163, 224, 0.25);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 28px;
    width: fit-content;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-blue);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

/* Title — Hero 1 font style */
.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    max-width: 700px;
}

.hero__title span {
    display: block;
}

.hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Bottom row */
.hero__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-top: 32px;
}

.hero__desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 380px;
    line-height: 1.7;
}

.hero__stats {
    display: flex;
    gap: 48px;
}

.hero__stat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

/* Blobs for contact section (keep) */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-80px, 60px) scale(1.1); }
    50% { transform: translate(-40px, 120px) scale(0.95); }
    75% { transform: translate(60px, 40px) scale(1.05); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(80px, -60px) scale(1.15); }
}

/* ========================================
   MARQUEE
   ======================================== */
.marquee {
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--bg-secondary);
}

.marquee__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee__item {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.marquee__dot {
    color: var(--accent-red);
    font-size: 1.5rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    padding: 60px 0 40px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

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

.service-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.5s var(--ease-out);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card__glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 2;
}

.service-card:hover .service-card__glow {
    opacity: 1;
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-card__img {
    height: 220px;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

.service-card:hover .service-card__img img {
    transform: scale(1.08);
}

.service-card__body {
    padding: 28px 28px 32px;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card__desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-card__line {
    position: absolute;
    bottom: 0;
    left: 32px;
    right: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
}

.service-card:hover .service-card__line {
    transform: scaleX(1);
}

/* ========================================
   PORTFOLIO
   ======================================== */
.portfolio {
    padding: 60px 0;
    position: relative;
}

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 300px;
    gap: 16px;
}

.portfolio__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.portfolio__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

.portfolio__item:hover img {
    transform: scale(1.08);
}

.portfolio__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 22, 33, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

.portfolio__item:hover .portfolio__overlay {
    opacity: 1;
}

.portfolio__tag {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.portfolio__plus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
}

.portfolio__item:hover .portfolio__plus {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

/* Bento layout */
.portfolio__item--tall {
    grid-row: span 2;
}

.portfolio__item--wide {
    grid-column: span 2;
}

/* ========================================
   ABOUT
   ======================================== */
.about {
    padding: 120px 0;
    position: relative;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature {
    display: flex;
    gap: 24px;
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all 0.4s var(--ease-out);
}

.feature:hover {
    background: var(--bg-card);
    border-color: var(--border);
}

.feature__number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 48px;
}

.feature__content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature__content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.contact__mesh {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.blob--5 {
    width: 500px;
    height: 500px;
    background: var(--accent-red);
    bottom: -200px;
    right: -100px;
    opacity: 0.1;
    animation: float1 20s ease-in-out infinite;
}

.blob--6 {
    width: 400px;
    height: 400px;
    background: var(--accent-blue);
    top: -150px;
    left: -100px;
    opacity: 0.08;
    animation: float2 25s ease-in-out infinite;
}

.contact__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.contact__subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.footer__logo {
    height: 36px;
    width: auto;
    margin-bottom: 16px;
}

.footer__brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 300px;
    line-height: 1.6;
}

.footer__links h4,
.footer__contact h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer__links li,
.footer__contact li {
    margin-bottom: 10px;
}

.footer__links a,
.footer__contact a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer__links a:hover,
.footer__contact a:hover {
    color: var(--text-primary);
}

.footer__bottom {
    padding-top: 24px;
    text-align: center;
}

.footer__bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(7, 22, 33, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-smooth);
    padding: 40px;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--text-secondary);
    transition: color 0.3s;
    z-index: 10;
    padding: 8px;
}

.lightbox__close:hover {
    color: var(--text-primary);
}

.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    transform: scale(0.9);
    transition: transform 0.4s var(--ease-out);
}

.lightbox.active .lightbox__img {
    transform: scale(1);
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .portfolio__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }

    .portfolio__item--tall {
        grid-row: span 2;
    }

    .portfolio__item--wide {
        grid-column: span 2;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer__brand {
        grid-column: span 2;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__links {
        position: fixed;
        inset: 0;
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        background: rgba(7, 22, 33, 0.98);
        backdrop-filter: blur(20px);
        transform: translateX(100%);
        transition: transform 0.5s var(--ease-out);
    }

    .nav__links.active {
        transform: translateX(0);
    }

    .nav__links a {
        font-size: 1.5rem;
    }

    .hero__content {
        padding: 0 24px 48px;
    }

    .hero__title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .hero__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero__stats {
        gap: 32px;
    }

    .hero__cta-float {
        display: none;
    }

    .portfolio__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .portfolio__item--tall,
    .portfolio__item--wide {
        grid-row: span 1;
        grid-column: span 1;
    }

    .portfolio__overlay {
        opacity: 1;
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .services,
    .portfolio,
    .about,
    .contact {
        padding: 80px 0;
    }

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

    .footer__brand {
        grid-column: span 1;
    }

    .contact__actions {
        flex-direction: column;
        align-items: center;
    }

    .cursor-glow {
        display: none;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero__stat-num {
        font-size: 1.8rem;
    }

    .hero__stats {
        gap: 24px;
    }

    .btn--lg {
        padding: 16px 32px;
        font-size: 0.95rem;
    }
}

/* ========================================
   ANIMATION UTILITIES (for GSAP)
   ======================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
}
