:root {
    --bg: #080a0c;
    --bg-soft: #0d1110;
    --surface: #121716;
    --surface-light: #19201e;
    --gold: #ffbd20;
    --gold-light: #fff09a;
    --red: #e81919;
    --green: #18c93f;
    --text: #f5f5f2;
    --muted: #a6a9b3;
    --line: rgba(255, 255, 255, 0.1);
    --radius: 22px;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 92% 8%, rgba(232, 25, 25, 0.09), transparent 27%),
        radial-gradient(circle at 5% 45%, rgba(24, 201, 63, 0.055), transparent 24%),
        var(--bg);
    font-family: "Noto Sans HK", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(8, 10, 12, 0.84);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    width: 156px;
    height: 52px;
    align-items: center;
}

.brand img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(255, 189, 32, 0.18));
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    position: relative;
    color: #c7c9d0;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.25s ease;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: -12px;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
    content: "";
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold-light);
}

.main-nav a.active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: inherit;
    background: transparent;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
    transition: transform 0.25s ease;
}

.hero {
    position: relative;
    min-height: 780px;
    padding: 180px 0 110px;
    overflow: hidden;
}

.hero::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 70px 70px;
    content: "";
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.hero-glow-one {
    top: 10%;
    right: -10%;
    width: 560px;
    height: 560px;
    background: rgba(232, 25, 25, 0.12);
}

.hero-glow-two {
    bottom: 5%;
    left: -10%;
    width: 360px;
    height: 360px;
    background: rgba(24, 201, 63, 0.07);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
}

.eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 15px var(--gold);
}

.hero h1 {
    max-width: 650px;
    margin: 22px 0 22px;
    font-size: clamp(48px, 5.7vw, 78px);
    line-height: 1.12;
    letter-spacing: -0.055em;
}

.hero h1 > span {
    display: block;
    margin-top: 8px;
    color: transparent;
    background: linear-gradient(110deg, #fff 10%, #b8bbc4 70%);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 0.74em;
    font-weight: 700;
    letter-spacing: -0.055em;
}

.hero-content > p {
    max-width: 580px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin: 34px 0;
}

.button {
    display: inline-flex;
    min-height: 51px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 23px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    color: #0c0d11;
    background: linear-gradient(135deg, var(--gold-light), var(--gold) 72%, #e59a00);
    box-shadow: 0 12px 40px rgba(246, 199, 68, 0.16);
}

.button-ghost {
    border-color: var(--line);
    color: #e3e4e8;
    background: rgba(255, 255, 255, 0.025);
}

.button-ghost:hover {
    border-color: rgba(246, 199, 68, 0.45);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
    color: #7f8491;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.trust-row span::before {
    margin-right: 8px;
    color: var(--gold);
    content: "•";
}

.hero-visual {
    position: relative;
    min-height: 470px;
    perspective: 1000px;
}

.visual-card {
    position: absolute;
    display: flex;
    width: 370px;
    height: 235px;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.card-back {
    top: 70px;
    right: 36px;
    color: rgba(255, 255, 255, 0.25);
    background:
        radial-gradient(circle at 15% 90%, rgba(24, 201, 63, 0.13), transparent 42%),
        linear-gradient(140deg, #252319, #101411);
    transform: rotate(12deg);
}

.card-back strong {
    color: rgba(246, 199, 68, 0.2);
    font-size: 90px;
    line-height: 1;
}

.card-front {
    top: 140px;
    right: 105px;
    background:
        radial-gradient(circle at 92% 8%, rgba(232, 25, 25, 0.18), transparent 28%),
        radial-gradient(circle at 5% 100%, rgba(24, 201, 63, 0.11), transparent 32%),
        linear-gradient(140deg, #26241b, #101411 70%);
    transform: rotate(-7deg);
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #8c919d;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.mini-logo {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    color: #111;
    background: var(--gold);
    font-size: 10px;
    letter-spacing: 0;
}

.card-number {
    font-size: 31px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.card-number span {
    color: var(--gold);
}

.card-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.card-front small {
    color: #8b8f98;
    font-size: 10px;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(246, 199, 68, 0.14);
    border-radius: 50%;
}

.orbit-one {
    top: 20px;
    right: -40px;
    width: 470px;
    height: 470px;
}

.orbit-two {
    top: 78px;
    right: 17px;
    width: 355px;
    height: 355px;
}

.spark {
    position: absolute;
    color: var(--gold);
    text-shadow: 0 0 18px var(--gold);
}

.spark-one {
    top: 70px;
    left: 55px;
    font-size: 21px;
}

.spark-two {
    right: 5px;
    bottom: 90px;
    font-size: 13px;
}

.spark-three {
    bottom: 28px;
    left: 140px;
    font-size: 9px;
}

.section {
    padding: 105px 0;
}

.intro-section {
    border-top: 1px solid var(--line);
}

.split-heading,
.story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 12vw;
}

h2 {
    margin: 15px 0 0;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.25;
    letter-spacing: -0.045em;
}

.section-copy,
.story-copy {
    padding-top: 32px;
    color: var(--muted);
}

.section-copy p,
.story-copy p {
    margin-top: 0;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
}

.features-section,
.values-section {
    background: var(--bg-soft);
}

.section-heading {
    max-width: 650px;
    margin-bottom: 52px;
}

.section-heading.centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

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

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feature-card {
    position: relative;
    min-height: 310px;
    padding: 31px 27px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.015);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(246, 199, 68, 0.32);
    transform: translateY(-8px);
}

.feature-card.featured {
    background:
        radial-gradient(circle at 100% 0, rgba(24, 201, 63, 0.11), transparent 42%),
        var(--surface);
}

.feature-number {
    position: absolute;
    top: 23px;
    right: 25px;
    color: #565b67;
    font-size: 11px;
    font-weight: 700;
}

.feature-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 55px;
    place-items: center;
    border: 1px solid rgba(246, 199, 68, 0.3);
    border-radius: 14px;
    color: var(--gold);
    background: rgba(246, 199, 68, 0.05);
    font-size: 20px;
}

.feature-card h3,
.about-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
}

.feature-card p,
.about-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.why-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 10vw;
}

.why-panel {
    position: relative;
    display: flex;
    min-height: 430px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 42px;
    overflow: hidden;
    border: 1px solid rgba(246, 199, 68, 0.18);
    border-radius: 30px;
    background:
        radial-gradient(circle at 75% 12%, rgba(232, 25, 25, 0.16), transparent 37%),
        radial-gradient(circle at 12% 100%, rgba(24, 201, 63, 0.1), transparent 40%),
        linear-gradient(145deg, #1b1c17, #0c100e);
    box-shadow: var(--shadow);
}

.why-panel::before {
    position: absolute;
    top: -50px;
    right: -70px;
    width: 260px;
    height: 260px;
    border: 50px solid rgba(246, 199, 68, 0.06);
    border-radius: 50%;
    content: "";
}

.panel-tag {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    margin-bottom: auto;
    padding: 7px 12px;
    border: 1px solid rgba(246, 199, 68, 0.22);
    border-radius: 100px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.why-panel strong {
    position: relative;
    z-index: 1;
    font-size: 30px;
}

.why-panel p {
    position: relative;
    z-index: 1;
    margin: 5px 0 0;
    color: var(--muted);
}

.why-content > p {
    color: var(--muted);
}

.check-list {
    display: grid;
    margin: 28px 0 0;
    padding: 0;
    gap: 13px;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #d2d4da;
    font-size: 14px;
    font-weight: 600;
}

.check-list span {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 50%;
    color: #111;
    background: var(--gold);
    font-size: 11px;
}

.final-cta-section {
    padding-top: 30px;
}

.final-cta {
    display: flex;
    min-height: 285px;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 55px 65px;
    overflow: hidden;
    border: 1px solid rgba(246, 199, 68, 0.18);
    border-radius: 30px;
    background:
        radial-gradient(circle at 100% 10%, rgba(232, 25, 25, 0.13), transparent 35%),
        radial-gradient(circle at 55% 120%, rgba(24, 201, 63, 0.12), transparent 40%),
        var(--surface);
}

.final-cta h2 {
    font-size: clamp(30px, 4vw, 45px);
}

.page-hero {
    position: relative;
    padding: 195px 0 115px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
    background-size: 65px 65px;
}

.page-hero.compact {
    padding-bottom: 90px;
}

.page-hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    width: 700px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(90deg, rgba(24, 201, 63, 0.09), rgba(255, 189, 32, 0.13), rgba(232, 25, 25, 0.11));
    filter: blur(50px);
    transform: translateX(-50%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    text-align: center;
}

.page-hero h1 {
    margin: 17px 0 14px;
    font-size: clamp(46px, 7vw, 76px);
    line-height: 1.15;
    letter-spacing: -0.06em;
}

.page-hero p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--muted);
}

.story-copy .lead {
    color: #e2e3e7;
    font-size: 19px;
}

.about-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.about-card {
    min-height: 315px;
    padding: 35px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.about-card.accent-card {
    border-color: rgba(246, 199, 68, 0.22);
    background:
        radial-gradient(circle at 100% 0, rgba(232, 25, 25, 0.1), transparent 38%),
        radial-gradient(circle at 0 100%, rgba(24, 201, 63, 0.08), transparent 35%),
        var(--surface);
}

.about-card-index {
    display: block;
    margin-bottom: 90px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
}

.statement {
    text-align: center;
}

.statement > span {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.statement blockquote {
    margin: 25px auto 35px;
    font-size: clamp(29px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.04em;
}

.policy-layout {
    display: grid;
    align-items: start;
    grid-template-columns: 0.32fr 0.68fr;
    gap: 9vw;
}

.policy-intro {
    position: sticky;
    top: 125px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
}

.policy-intro strong {
    display: block;
    margin: 12px 0;
    font-size: 20px;
}

.policy-intro p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
}

.policy-content section {
    padding: 0 0 40px;
    margin: 0 0 40px;
    border-bottom: 1px solid var(--line);
}

.policy-content section:last-child {
    border-bottom: 0;
}

.policy-content h2 {
    display: flex;
    align-items: center;
    gap: 17px;
    margin: 0 0 13px;
    font-size: 22px;
    letter-spacing: -0.02em;
}

.policy-content h2 span {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 0.1em;
}

.policy-content p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.contact-layout {
    display: grid;
    align-items: start;
    grid-template-columns: 0.4fr 0.6fr;
    gap: 8vw;
}

.contact-copy {
    position: sticky;
    top: 125px;
}

.contact-copy p {
    color: var(--muted);
}

.contact-points {
    display: grid;
    margin-top: 36px;
    gap: 13px;
}

.contact-points span {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #c9cbd2;
    font-size: 13px;
    font-weight: 600;
}

.contact-points strong {
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 0.1em;
}

.form-panel {
    padding: 37px;
    border: 1px solid var(--line);
    border-radius: 25px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.form-panel form {
    display: grid;
    gap: 22px;
}

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

.form-panel label {
    display: grid;
    gap: 9px;
    color: #d9dae0;
    font-size: 13px;
    font-weight: 600;
}

.form-panel em {
    color: var(--gold);
    font-style: normal;
}

.form-panel input,
.form-panel textarea {
    width: 100%;
    border: 1px solid var(--line);
    outline: none;
    border-radius: 10px;
    color: var(--text);
    background: #0b0e16;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-panel input {
    height: 52px;
    padding: 0 16px;
}

.form-panel textarea {
    min-height: 165px;
    padding: 15px 16px;
    resize: vertical;
}

.form-panel input:focus,
.form-panel textarea:focus {
    border-color: rgba(246, 199, 68, 0.6);
    box-shadow: 0 0 0 3px rgba(246, 199, 68, 0.07);
}

.form-panel input::placeholder,
.form-panel textarea::placeholder {
    color: #666b77;
    font-size: 12px;
}

.submit-button {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.form-note {
    margin: -8px 0 0;
    color: #777c87;
    font-size: 10px;
    text-align: center;
}

.alert {
    display: grid;
    margin-bottom: 24px;
    padding: 14px 16px;
    border-radius: 10px;
    gap: 3px;
    font-size: 12px;
}

.alert-success {
    border: 1px solid rgba(24, 201, 63, 0.28);
    color: #9aefad;
    background: rgba(24, 201, 63, 0.07);
}

.alert-error {
    border: 1px solid rgba(232, 25, 25, 0.3);
    color: #ffaaaa;
    background: rgba(232, 25, 25, 0.07);
}

.site-footer {
    padding: 70px 0 22px;
    border-top: 1px solid var(--line);
    background: #05070c;
}

.footer-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.footer-brand {
    width: 180px;
    margin-bottom: 15px;
}

.footer-grid p {
    margin: 0;
    color: #747986;
    font-size: 12px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    color: #a9adb6;
    font-size: 12px;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
    margin-top: 55px;
    border-top: 1px solid var(--line);
    color: #595e69;
    font-size: 10px;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 980px) {
    .hero {
        padding-top: 155px;
    }

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

    .hero-visual {
        min-height: 410px;
    }

    .visual-card {
        width: min(370px, 72vw);
    }

    .card-back {
        right: 13%;
    }

    .card-front {
        right: auto;
        left: 13%;
    }

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

    .why-grid,
    .contact-layout {
        gap: 6vw;
    }

    .contact-layout {
        grid-template-columns: 0.35fr 0.65fr;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 30px, 620px);
    }

    .site-header {
        backdrop-filter: blur(22px);
    }

    .nav-wrap {
        min-height: 68px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 68px;
        right: 0;
        left: 0;
        display: grid;
        padding: 22px 20px 32px;
        border-bottom: 1px solid var(--line);
        background: rgba(8, 10, 12, 0.98);
        gap: 0;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .main-nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-nav a {
        padding: 14px 4px;
        border-bottom: 1px solid var(--line);
    }

    .main-nav a::after {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 135px 0 70px;
    }

    .hero h1 {
        margin-top: 18px;
        font-size: clamp(42px, 13vw, 58px);
    }

    .hero h1 > span {
        font-size: 0.66em;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-visual {
        min-height: 330px;
        margin-top: 10px;
    }

    .visual-card {
        width: min(300px, 76vw);
        height: 190px;
        padding: 23px;
    }

    .card-back {
        top: 42px;
        right: 2%;
    }

    .card-front {
        top: 100px;
        left: 2%;
    }

    .card-number {
        font-size: 24px;
    }

    .orbit-one {
        top: 0;
        right: -100px;
        width: 370px;
        height: 370px;
    }

    .orbit-two {
        display: none;
    }

    .section {
        padding: 72px 0;
    }

    .split-heading,
    .story-grid,
    .why-grid,
    .policy-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .section-copy,
    .story-copy {
        padding-top: 0;
    }

    .feature-grid,
    .about-card-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .about-card {
        min-height: auto;
    }

    .feature-icon,
    .about-card-index {
        margin-bottom: 45px;
    }

    .why-panel {
        min-height: 340px;
        padding: 30px;
    }

    .why-panel strong {
        font-size: 25px;
    }

    .final-cta {
        min-height: auto;
        align-items: flex-start;
        flex-direction: column;
        padding: 40px 28px;
    }

    .final-cta .button {
        width: 100%;
    }

    .page-hero,
    .page-hero.compact {
        padding: 145px 0 75px;
    }

    .page-hero h1 {
        font-size: 45px;
    }

    .policy-intro,
    .contact-copy {
        position: static;
    }

    .contact-copy {
        text-align: center;
    }

    .contact-points {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .form-panel {
        padding: 25px 19px;
    }

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

    .footer-grid,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 30px;
    }

    .footer-bottom {
        gap: 5px;
        margin-top: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
