:root {
    --blue: #3C4EB0;
    --blue-dark: #2d3a8a;
    --blue-light: #4f63cc;
    --yellow: #FFDF04;
    --yellow-dark: #e6c800;
    --black: #0a0a0a;
    --white: #fafafa;
    --grey: #f0f0f0;
    --text-muted: #555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 80px;
    border-bottom: 8px solid var(--black);
}

@keyframes brute-glitch {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    5% {
        transform: translate(-2px, 1px) rotate(-2deg) scale(1.05);
    }

    10% {
        transform: translate(2px, -1px) rotate(2deg) scale(0.95);
    }

    15% {
        transform: translate(-1px, -1px) rotate(-1deg) scale(1.02);
    }

    20% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--yellow);
    letter-spacing: 5px;
    text-decoration: none;
    display: inline-block;
    animation: brute-glitch 2s steps(1) infinite;
    transform-origin: center;
    line-height: 1;
}

.nav-logo span {
    color: var(--white);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 3rem;
    height: 100%;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--yellow);
    transition: width 0.2s;
}

.nav-links a:hover {
    color: var(--yellow);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--yellow) !important;
    color: var(--black) !important;
    padding: 12px 30px !important;
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 1.4rem !important;
    letter-spacing: 1px !important;
    border: 4px solid var(--black) !important;
    box-shadow: 6px 6px 0px var(--black) !important;
    transition: all 0.1s steps(2) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    line-height: 1;
}

.nav-cta:hover {
    transform: translate(6px, 6px) !important;
    box-shadow: 0px 0px 0px var(--black) !important;
    background: var(--white) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--yellow);
    transition: 0.3s;
}

/* ── HERO ── */
.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    background: var(--blue);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: var(--yellow);
    opacity: 0.07;
    border-radius: 50%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 8% 80px 10%;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 14px;
    margin-bottom: 28px;
    width: fit-content;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 8vw, 7rem);
    color: var(--white);
    line-height: 0.9;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.hero h1 .accent {
    color: var(--yellow);
    display: block;
}

.hero-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 36px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-visual {
    width: 100%;
    height: 100%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-left: 20px solid var(--black);
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.15) 2px, transparent 2px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.15) 2px, transparent 2px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-visual::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: var(--yellow);
    opacity: 0.15;
    border: 4px solid var(--black);
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.12;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.18;
    }
}

.hero-logo-big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(8rem, 25vw, 20rem);
    color: transparent;
    -webkit-text-stroke: 4px rgba(255, 255, 255, 0.15);
    letter-spacing: 20px;
    position: absolute;
    user-select: none;
    font-weight: 900;
    line-height: 1;
}

.hero-shapes {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.shape-box {
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 3px;
    color: var(--black);
    border: 12px solid var(--black);
    box-shadow: 25px 25px 0px var(--black);
    animation: float 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(-1deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.shape-1 {
    width: 250px;
    height: 250px;
    font-size: 2rem;
    animation-delay: 0s;
    transform: rotate(-3deg);
}

.shape-2 {
    width: 180px;
    height: 80px;
    font-size: 1.2rem;
    background: var(--white);
    animation-delay: 0.5s;
    margin: -25px 0;
    z-index: 5;
    transform: rotate(2deg);
}

.shape-3 {
    width: 220px;
    height: 220px;
    font-size: 1.8rem;
    animation-delay: 1s;
    border-radius: 0;
    transform: rotate(-1deg);
}

.shape-inner {
    text-align: center;
    padding: 10px;
}

.shape-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    display: block;
    border-radius: 50%;
    overflow: hidden;
}

.shape-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── MARQUEE ── */
.marquee-wrap {
    background: var(--yellow);
    overflow: hidden;
    padding: 25px 0;
    border-top: 10px solid var(--black);
    border-bottom: 10px solid var(--black);
    margin: -5px 0;
    z-index: 10;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 18s linear infinite;
    white-space: nowrap;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 6px;
    color: var(--black);
    padding: 0 50px;
    display: inline-flex;
    align-items: center;
    gap: 30px;
    font-weight: 900;
}

.marquee-dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: var(--black);
    border-radius: 0;
    transform: rotate(45deg);
}

/* ── SECTION HEADER ── */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 3px;
    color: var(--black);
    line-height: 1;
}

.section-title span {
    color: var(--blue);
}

/* ── CATEGORIES ── */
.categories {
    padding: 100px 5%;
    background: var(--white);
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.cat-card {
    aspect-ratio: 3/4;
    background: var(--grey);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    border: 8px solid var(--black);
    box-shadow: 15px 15px 0px var(--black);
}

.cat-card:hover {
    transform: translate(10px, 10px);
    box-shadow: 0px 0px 0px var(--black);
}

.cat-card:hover .cat-overlay {
    opacity: 1;
}

.cat-card:hover .cat-img-bg {
    transform: scale(1.05);
}

.cat-img-bg {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
    display: block;
}

.cat-img-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: var(--blue);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.cat-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.cat-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: var(--white);
}

.cat-count {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow);
}

/* ── FEATURED ── */
.featured {
    padding: 100px 5%;
    background: var(--black);
}

.featured .section-title {
    color: var(--white);
}

.feat-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 3px;
}

.feat-card {
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 8px solid var(--black);
    box-shadow: 15px 15px 0px var(--black);
    transition: all 0.3s;
}

.feat-card:hover {
    transform: translate(10px, 10px);
    box-shadow: 0px 0px 0px var(--black);
}

.feat-card.big {
    grid-row: span 2;
}

.feat-img {
    width: 100%;
    aspect-ratio: 1;
    display: block;
    transition: transform 0.4s;
    overflow: hidden;
}

.feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feat-card.big .feat-img {
    aspect-ratio: 3/4;
}

.feat-info {
    padding: 20px 24px;
    border-top: 1px solid #2a2a2a;
}

.feat-cat {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 6px;
}

.feat-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.feat-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--yellow);
    letter-spacing: 2px;
}

/* ── PROMO BANNER ── */
.promo {
    background: var(--yellow);
    padding: 80px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    border-top: 4px solid var(--black);
    border-bottom: 4px solid var(--black);
}

.promo-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    letter-spacing: 3px;
    color: var(--black);
    line-height: 0.95;
    margin-bottom: 20px;
}

.promo-text h2 span {
    color: var(--blue);
}

.promo-text p {
    font-family: 'Barlow', sans-serif;
    font-size: 1.05rem;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 420px;
}

.btn-dark {
    background: var(--black);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
}

.btn-dark:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

.promo-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.promo-box {
    background: var(--black);
    aspect-ratio: 1;
    display: block;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    border: 10px solid var(--black);
    box-shadow: 15px 15px 0px var(--blue);
}

.promo-box:hover {
    transform: translate(10px, 10px);
    box-shadow: 0px 0px 0px var(--blue);
}

.promo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── WHY US (BRUTE MAXIMALIST) ── */
.why {
    padding: 120px 5%;
    background: var(--yellow);
    border-top: 15px solid var(--black);
    border-bottom: 15px solid var(--black);
    position: relative;
    overflow: hidden;
}

.why::before {
    content: 'DEK25';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40vw;
    color: rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.why .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 80px;
}

.why .section-title {
    font-size: clamp(4rem, 10vw, 8rem);
    background: var(--black);
    color: var(--white);
    display: inline-block;
    padding: 10px 40px;
    transform: rotate(-2deg);
    box-shadow: 25px 25px 0px var(--blue);
}

.why .section-title span {
    color: var(--yellow);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border: 10px solid var(--black);
    box-shadow: 25px 25px 0px var(--black);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.why-card:hover {
    transform: translate(15px, 15px);
    box-shadow: 0px 0px 0px var(--black);
    background: var(--grey);
}

.why-icon {
    font-size: 4.5rem;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(5px 5px 0px var(--black));
    transform: rotate(-8deg);
    transition: transform 0.3s;
}

.why-card:hover .why-icon {
    transform: rotate(10deg) scale(1.1);
}

.why-title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 0.9;
    border-bottom: 8px solid var(--black);
    padding-bottom: 10px;
}

.why-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--black);
    line-height: 1.3;
    text-transform: uppercase;
}

/* ── GST INFO ── */
.gst-strip {
    background: var(--blue);
    padding: 20px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.gst-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.gst-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
}

.gst-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--white);
}

.gst-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
}

/* ── CONTACT ── */
.contact {
    padding: 100px 5%;
    background: var(--black);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-label {
    color: var(--yellow);
}

.contact-info .section-title {
    color: var(--white);
    text-align: left;
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 6px;
}

.contact-value {
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-value a {
    color: var(--white);
    text-decoration: none;
}

.map-container {
    position: relative;
    background: var(--black);
    border: 15px solid var(--black);
    box-shadow: 35px 35px 0px var(--blue);
    height: 100%;
    min-height: 450px;
    transform: rotate(1deg);
    overflow: visible;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(1) contrast(1.2) invert(0.9);
    display: block;
}

.map-label {
    position: absolute;
    top: -25px;
    left: 20px;
    background: var(--yellow);
    color: var(--black);
    padding: 8px 25px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    border: 8px solid var(--black);
    z-index: 10;
    letter-spacing: 2px;
    transform: rotate(-2deg);
}

.map-pin {
    font-size: 3rem;
    margin-bottom: 16px;
}

.map-store-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--yellow);
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.map-address {
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.map-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    margin-top: 20px;
}

/* ── FOOTER ── */
footer {
    background: #050505;
    padding: 60px 5% 30px;
    border-top: 3px solid var(--blue);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: var(--yellow);
    letter-spacing: 5px;
    margin-bottom: 16px;
}

.footer-brand-logo span {
    color: var(--white);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 260px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 55px;
    height: 55px;
    background: var(--black);
    border: 3px solid var(--white);
    box-shadow: 6px 6px 0px var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-link:hover {
    transform: translate(6px, 6px);
    box-shadow: 0px 0px 0px var(--yellow);
    background: var(--yellow);
    color: var(--black);
    border-color: var(--black);
}

.footer-col-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 1px;
}

.footer-gst {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.25);
}

.footer-gst span {
    color: #ffffff;
    opacity: 0.7;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }

    .hero-left {
        padding: 60px 6%;
    }

    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cat-card:nth-child(5) {
        grid-column: span 2;
        aspect-ratio: 2/1;
    }

    .feat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feat-card.big {
        grid-column: span 2;
        grid-row: auto;
    }

    .feat-card.big .feat-img {
        aspect-ratio: 16/9;
        font-size: 5rem;
    }

    .promo {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .promo-visual {
        display: none;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-top>div:first-child {
        grid-column: span 2;
    }

    .gst-strip {
        gap: 20px;
    }
}

@media (max-width: 560px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why .section-title {
        font-size: 2.5rem;
        padding: 10px 20px;
        transform: rotate(0);
        box-shadow: 10px 10px 0px var(--blue);
        width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-top>div:first-child {
        grid-column: auto;
    }

    .cat-card:nth-child(5) {
        grid-column: auto;
        aspect-ratio: 3/4;
    }

    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── ANIMATIONS ── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 {
    transition-delay: 0.1s;
}

.fade-in-delay-2 {
    transition-delay: 0.2s;
}

.fade-in-delay-3 {
    transition-delay: 0.3s;
}

.fade-in-delay-4 {
    transition-delay: 0.4s;
}