/* ================================================================
   CAR DETAILING RAMON — STYLESHEET
   Professionele auto detailing website
   ================================================================ */

/* ── CUSTOM FONTS & IMPORTS ── */
@font-face {
    font-family: 'Panchang';
    src: url('/assets/fonts/Panchang-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&display=swap');

/* ── CSS VARIABLES & DESIGN TOKENS ── */
:root {
    --black: #0a0a0a;
    --b2: #0f0f0f;
    --b3: #171717;
    --b4: #1f1f1f;
    --green: #d4f40d;
    --white: #efefef;
    --gray: #888;
    --gray2: #444;
    --ft: 'Panchang', sans-serif;
    --fb: 'Work Sans', sans-serif;
    --pad: clamp(4rem, 10vw, 7rem);
    --side: clamp(1.25rem, 5vw, 3rem);
}

/* ── RESET & BASE STYLES ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--fb);
    line-height: 1.65;
    overflow-x: hidden;
}

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

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

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

/* ── GRAIN TEXTURE OVERLAY ── */
/* Voegt subtiele grainy textuur toe aan hele pagina */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.032'/%3E%3C/svg%3E");
}

/* ================================================================
   NAVIGATIE
   ================================================================ */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--side);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(16px) saturate(1.4);
    border-bottom: 1px solid rgba(212, 244, 13, 0.07);
    transition: background 0.3s;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.97);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.nav-logo {
    height: 32px;
    width: auto;
    flex-shrink: 0;
}

/* Hamburger Menu Button */
.hbg {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hbg i {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    border-radius: 2px;
    transition:
        transform 0.3s,
        opacity 0.3s;
}

.hbg.open i:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.hbg.open i:nth-child(2) {
    opacity: 0;
}

.hbg.open i:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Nav Links Menu */
.nav-links {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 499;
    display: flex;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid rgba(212, 244, 13, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links.open {
    max-height: 500px;
}

.nav-links a {
    padding: 0.95rem var(--side);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition:
        color 0.2s,
        padding-left 0.25s;
}

.nav-links a:hover {
    color: var(--green);
    padding-left: calc(var(--side) + 0.75rem);
}

.nav-links a.cta {
    color: var(--green);
    border-bottom: none;
    padding-bottom: 1.25rem;
}

/* Desktop Navigation */
@media (min-width: 860px) {
    .hbg {
        display: none;
    }

    .nav-links {
        position: static;
        flex-direction: row;
        align-items: center;
        background: none;
        border: none;
        transform: none;
        gap: 0.1rem;
        max-height: none;
        overflow: visible;
    }

    .nav-links a {
        padding: 0.4rem 0.85rem;
        border: none;
        font-size: 0.72rem;
    }

    .nav-links a:hover {
        padding-left: 0.85rem;
    }

    .nav-links a.cta {
        border: 1px solid var(--green);
        color: var(--green);
        padding: 0.4rem 1rem;
        margin-left: 0.5rem;
        border-radius: 0;
    }

    .nav-links a.cta:hover {
        background: var(--green);
        color: #000;
        padding-left: 1rem;
    }
}

/* ================================================================
   HERO SECTION
   ================================================================ */

#home {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 80px var(--side) clamp(3rem, 8vw, 6rem);
    position: relative;
    overflow: hidden;
}

/* Gradient Background */
.hbg2 {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 90% 55% at 50% 85%,
            rgba(212, 244, 13, 0.055) 0%,
            transparent 65%
        ),
        radial-gradient(
            ellipse 50% 50% at 90% 10%,
            rgba(212, 244, 13, 0.03) 0%,
            transparent 60%
        ),
        var(--black);
}

/* Grid Pattern Overlay */
.hgrid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 244, 13, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 244, 13, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 25%,
        black 65%,
        transparent 100%
    );
}

.hc {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

/* Badge Label */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1.4rem;
}

.badge::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--green);
}

/* Hero Heading */
h1 {
    font-family: var(--ft);
    font-size: clamp(3rem, 12vw, 7.5rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.93;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

h1 em {
    color: var(--green);
    font-style: normal;
}

/* Hero Subheading */
.hsub {
    font-size: clamp(0.9rem, 2.2vw, 1.05rem);
    color: var(--gray);
    font-weight: 300;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.hsub strong {
    color: var(--white);
    font-weight: 500;
}

/* CTA Container */
.ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1.6rem;
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--green);
    border-radius: 0;
    background: transparent;
    color: var(--green);
    transition:
        background 0.2s,
        color 0.2s;
}

.btn:hover {
    background: var(--green);
    color: #000;
}

.btn-g {
    background: var(--green);
    color: #000;
}

.btn-g:hover {
    background: transparent;
    color: var(--green);
}

.btn-o {
    background: transparent;
    color: var(--green);
}

.btn-o:hover {
    background: var(--green);
    color: #000;
}

/* Scroll Indicator */
.hscroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--gray2);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.sline {
    width: 1px;

    height: 38px;
    background: linear-gradient(to bottom, var(--gray2), transparent);
    animation: sp 2.2s ease-in-out infinite;
}

@keyframes sp {
    0%,
    100% {
        opacity: 0.25;
    }
    50% {
        opacity: 0.9;
    }
}

/* ================================================================
   SECTION BASE STYLES
   ================================================================ */

section {
    padding: var(--pad) var(--side);
}

.w {
    max-width: 1100px;
    margin: 0 auto;
}

/* Section Label */
.slabel {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.65rem;
}

/* Section Heading */
h2 {
    font-family: var(--ft);
    text-transform: uppercase;
    font-size: clamp(1.9rem, 5.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.015em;
    margin-bottom: 0.85rem;
}

/* Section Lead Text */
.slead {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.75;
    max-width: 580px;
    margin-bottom: 3rem;
}

/* Divider Line */
.div {
    width: 36px;
    height: 2px;
    background: var(--green);
    margin-bottom: 2.5rem;
}

/* ================================================================
   OVER SECTIE (Over mij / About)
   ================================================================ */

#over {
    background: var(--b2);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.og {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .og {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

/* About Image Placeholder */
.oimg {
    aspect-ratio: 4/5;
    background: var(--b3);
    border: 1px solid rgba(212, 244, 13, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--gray2);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.oimg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.oimg svg {
    opacity: 0.18;
}

/* Pills / Features */
.pills {
    margin-bottom: 2.5rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(212, 244, 13, 0.18);
    padding: 0.45rem 1rem;
    margin: 0.3rem 0.3rem 0 0;
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 0.05em;
}

.pill svg {
    color: var(--green);
}

/* Stats Grid */
.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat {
    border-left: 2px solid var(--green);
    padding-left: 1rem;
}

.stn {
    font-family: var(--ft);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
}

.stl {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.2rem;
}

/* ================================================================
   DIENSTEN SECTIE (Services)
   ================================================================ */

#diensten {
    background: var(--black);
}

.sg {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(212, 244, 13, 0.05);
    border: 1px solid rgba(212, 244, 13, 0.05);
}

@media (min-width: 640px) {
    .sg {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .sg {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Service Card */
.svc {
    background: var(--black);
    padding: 2rem 1.75rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.svc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--green);
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc:hover {
    background: var(--b3);
}

.svc:hover::before {
    height: 100%;
}

.snum {
    font-family: var(--ft);
    font-size: 0.65rem;
    color: var(--green);
    letter-spacing: 0.22em;
    margin-bottom: 0.9rem;
    opacity: 0.6;
}

/* Service Image Placeholder */
.siph {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--b3);
    border: 1px dashed rgba(212, 244, 13, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray2);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.svc img.simg {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border: 1px solid rgba(212, 244, 13, 0.07);
    margin-bottom: 1.25rem;
    display: block;
    background: var(--b3);
}

.sico {
    width: 40px;
    height: 40px;
    color: var(--green);
    margin-bottom: 1rem;
}

.sname {
    font-family: var(--ft);
    text-transform: uppercase;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.65rem;
}

.sdesc {
    font-size: 0.88rem;
    color: var(--gray);
    font-weight: 300;
    margin-top: 1rem;
    line-height: 1.7;
}

.stag {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    border: 1px solid rgba(212, 244, 13, 0.22);
    padding: 0.28rem 0.75rem;
}

.package-bullets {
    list-style-type: square;
    margin: 0;
    padding-left: 1em;
}

.package-bullets li::marker {
    color: var(--green);
}

/* ================================================================
   WERKWIJZE SECTIE (Process)
   ================================================================ */

#werkwijze {
    background: var(--b2);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.steps {
    display: flex;
    flex-direction: column;
}

.step {
    display: flex;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.step:last-child {
    border-bottom: none;
}

.stepn {
    font-family: var(--ft);
    font-size: 2.8rem;
    font-weight: 700;
    color: rgba(212, 244, 13, 0.09);
    line-height: 1;
    flex-shrink: 0;
    width: 52px;
    text-align: right;
    transition: color 0.3s;
}

.step:hover .stepn {
    color: rgba(212, 244, 13, 0.35);
}

.stepb {
    padding-top: 0.2rem;
}

.stept {
    font-family: var(--fb);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.stepd {
    font-size: 0.88rem;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.7;
}

/* ================================================================
   GALERIJ SECTIE (Gallery)
   ================================================================ */

#galerij {
    background: var(--black);
}

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

@media (min-width: 640px) {
    .gal {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .gal {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Gallery Item */
.gi {
    aspect-ratio: 1;
    background: var(--b3);
    border: 1px dashed rgba(212, 244, 13, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray2);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
    transition: border-color 0.3s;
}

.gi img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gi:hover {
    border-color: rgba(212, 244, 13, 0.3);
}

.gi:hover img {
    transform: scale(1.06);
}

/* ================================================================
   REFERENTIES SECTIE (Testimonials)
   ================================================================ */

#referenties {
    background: var(--b2);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.rg {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .rg {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .rg {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Review Card */
.rev {
    background: var(--b3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}

.rev:hover {
    border-color: rgba(212, 244, 13, 0.15);
}

.rqm {
    font-family: var(--ft);
    font-size: 3.5rem;
    color: var(--green);
    opacity: 0.12;
    line-height: 1;
    position: absolute;
    top: 0.75rem;
    right: 1.25rem;
    pointer-events: none;
}

.rstars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
    color: var(--green);
}

.rtxt {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.rauth {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--b4);
    border: 1px solid rgba(212, 244, 13, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ft);
    font-size: 0.8rem;
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
}

.rname {
    font-size: 0.85rem;
    font-weight: 600;
}

.rsub {
    font-size: 0.72rem;
    color: var(--gray2);
    margin-top: 0.1rem;
}

.rcta {
    margin-top: 2.5rem;
    text-align: center;
}

.rcta p {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 300;
    margin-bottom: 1.25rem;
}

/* ================================================================
   INZICHTEN SECTIE (Blog/Insights)
   ================================================================ */

#inzichten {
    background: var(--black);
}

.pg {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .pg {
        grid-template-columns: 1fr 1fr;
    }
}

/* Post Card */
.pc {
    background: var(--b3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition:
        border-color 0.3s,
        transform 0.3s;
}

.pc:hover {
    border-color: rgba(212, 244, 13, 0.2);
    transform: translateY(-3px);
}

.pimg {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--b4);
    border-bottom: 1px dashed rgba(212, 244, 13, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray2);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.pimg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pb {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pcat {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.65rem;
}

.ptitle {
    font-family: var(--fb);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.plead {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.7;
    flex: 1;
}

.plink {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    border: 1px solid var(--green);
    padding: 0.6rem 1.1rem;
    transition:
        background 0.2s,
        color 0.2s;
}

.plink:hover {
    background: var(--green);
    color: #000;
}

/* ================================================================
   CONTACT SECTIE
   ================================================================ */

#contact {
    background: var(--b2);
    border-top: 1px solid rgba(212, 244, 13, 0.07);
}

.cg {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 860px) {
    .cg {
        grid-template-columns: 1fr 1.6fr;
    }
}

/* Contact Info */
.ci {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cii {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cico {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border: 1px solid rgba(212, 244, 13, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}

.cilabel {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray2);
    margin-bottom: 0.2rem;
}

.cival {
    font-size: 0.95rem;
    font-weight: 500;
}

.cival a {
    color: var(--white);
    transition: color 0.2s;
}

.cival a:hover {
    color: var(--green);
}

/* ── CONTACT FORM ── */
.cf {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.frow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
}

@media (min-width: 480px) {
    .frow {
        grid-template-columns: 1fr 1fr;
    }
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.fg label {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 500;
}

.fg input,
.fg select,
.fg textarea {
    background: var(--b3);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--white);
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: rgba(212, 244, 13, 0.38);
}

.fg textarea {
    resize: vertical;
    min-height: 110px;
}

.fg select option {
    background: #1a1a1a;
}

.ffoot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.4rem;
}

.fnote {
    font-size: 0.75rem;
    color: var(--gray2);
}

/* ================================================================
   FOOTER
   ================================================================ */

footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 2rem var(--side);
}

.fi {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .fi {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.fcopy {
    font-size: 0.72rem;
    color: var(--gray2);
}

.flinks {
    display: flex;
    gap: 1.5rem;
}

.flinks a {
    font-size: 0.72rem;
    color: var(--gray2);
    transition: color 0.2s;
}

.flinks a:hover {
    color: var(--green);
}

/* ================================================================
   SCROLL WIDGET (Back to Top Button)
   ================================================================ */

#sw {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    z-index: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#sw svg {
    width: 100%;
    height: 100%;
    will-change: transform;
    transition: filter 0.25s;
}

#sw:hover svg {
    filter: drop-shadow(0 0 12px rgba(212, 244, 13, 0.7));
}

/* ================================================================
   REVEAL ANIMATION (Scroll Trigger)
   ================================================================ */

.r {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.r.in {
    opacity: 1;
    transform: none;
}

/* Stagger Delays */
.d1 {
    transition-delay: 0.1s;
}
.d2 {
    transition-delay: 0.2s;
}
.d3 {
    transition-delay: 0.3s;
}
.d4 {
    transition-delay: 0.4s;
}
