:root {
    --page: #061623;
    --panel: #0a2031;
    --panel-2: #0e2a3e;
    --ink: #f8fbff;
    --muted: #b8c9d8;
    --soft: #dce8f2;
    --gold: #d8af63;
    --gold-2: #f3d58b;
    --red: #da5a3f;
    --cyan: #6ab7d8;
    --line: rgba(216, 175, 99, 0.28);
    --shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
    --container: 1200px;
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
    overflow-x: clip;
}

body {
    margin: 0;
    padding-top: 72px;
    overflow-x: clip;
    color: var(--ink);
    background:
            radial-gradient(circle at 50% -18%, rgba(216, 175, 99, 0.16), transparent 34rem),
            radial-gradient(circle at 8% 18%, rgba(106, 183, 216, 0.12), transparent 30rem),
            linear-gradient(180deg, #03101b 0%, var(--page) 46%, #04111b 100%);
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", Arial, sans-serif;
}

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

img {
    max-width: 100%;
}

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

.topbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    width: 100%;
    border-bottom: 1px solid rgba(216, 175, 99, 0.16);
    background: rgba(3, 16, 27, 0.84);
    backdrop-filter: blur(18px);
}

.nav {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: flex-start;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
}

.brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.brand span {
    display: block;
    color: var(--gold-2);
    font-size: 22px;
    letter-spacing: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #d5e1eb;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.nav-links a {
    position: relative;
    transition: color 0.25s ease;
}

.nav-links a::after {
    position: absolute;
    right: 0;
    bottom: -10px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-2);
    content: "";
    opacity: 0;
    transform: scaleX(0.35);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
    color: var(--gold-2);
}

.nav-links a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
}

.nav-cta {
    margin-left: 0;
}

.nav-toggle,
.nav-backdrop {
    display: none;
}

section[id],
footer[id],
#plans {
    scroll-margin-top: 92px;
}

.nav-cta,
.btn {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(243, 213, 139, 0.62);
    border-radius: var(--radius);
    padding: 0 18px;
    color: #081521;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    box-shadow: 0 14px 34px rgba(216, 175, 99, 0.22);
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}

.btn.dark {
    color: var(--gold-2);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
}

.hero {
    position: relative;
    min-height: 680px;
    padding: 86px 0 54px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(216, 175, 99, 0.42), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 44px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(216, 175, 99, 0.5);
    border-radius: 999px;
    padding: 8px 14px;
    color: var(--gold-2);
    background: rgba(216, 175, 99, 0.08);
    font-size: 14px;
    font-weight: 900;
}

h1,
h2,
h3,
p {
    margin: 0;
}

h1 {
    margin-top: 26px;
    color: var(--gold-2);
    font-size: clamp(48px, 8vw, 118px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: 0;
}

.hero-subtitle {
    margin-top: 20px;
    color: #fff;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 850;
}

.hero-lead {
    max-width: 770px;
    margin-top: 26px;
    color: #dde8f2;
    font-size: 22px;
    line-height: 1.85;
    font-weight: 650;
}

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

.hero-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    background:
            linear-gradient(180deg, rgba(14, 42, 62, 0.92), rgba(8, 28, 43, 0.96)),
            radial-gradient(circle at 50% 0%, rgba(216, 175, 99, 0.16), transparent 16rem);
    box-shadow: var(--shadow);
}

.hero-card-title {
    color: var(--gold-2);
    font-size: 24px;
    font-weight: 900;
}

.hero-card-sub {
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.stat {
    min-height: 96px;
    border: 1px solid rgba(216, 175, 99, 0.18);
    border-radius: var(--radius);
    padding: 16px;
    background: rgba(255, 255, 255, 0.045);
}

.stat strong {
    display: block;
    color: var(--gold-2);
    font-size: 30px;
    line-height: 1.1;
}

.stat span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.pill-list span {
    border: 1px solid rgba(106, 183, 216, 0.24);
    border-radius: 999px;
    padding: 7px 10px;
    color: #c8dbe8;
    background: rgba(106, 183, 216, 0.08);
    font-size: 12px;
    font-weight: 800;
}

.section {
    padding: 72px 0;
}

.section.alt {
    background:
            linear-gradient(180deg, rgba(9, 32, 49, 0.58), rgba(4, 17, 27, 0.2)),
            linear-gradient(90deg, transparent, rgba(216, 175, 99, 0.05), transparent);
    border-top: 1px solid rgba(216, 175, 99, 0.12);
    border-bottom: 1px solid rgba(216, 175, 99, 0.12);
}

.section-head {
    max-width: 860px;
    margin-bottom: 30px;
}

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

.kicker {
    margin-bottom: 10px;
    color: var(--gold-2);
    font-size: 14px;
    font-weight: 900;
}

h2 {
    color: #fff;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.22;
    font-weight: 900;
    letter-spacing: 0;
}

.lead {
    margin-top: 14px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
}

.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 16px;
}

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

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

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

.card,
.plan,
.table-card,
.faq details {
    border: 1px solid rgba(216, 175, 99, 0.2);
    border-radius: var(--radius);
    background: rgba(10, 32, 49, 0.78);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.card {
    padding: 24px;
}

.card h3,
.plan h3 {
    color: #fff;
    font-size: 20px;
    line-height: 1.35;
}

.card p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.icon-badge {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    margin-bottom: 16px;
    border: 1px solid rgba(243, 213, 139, 0.46);
    border-radius: var(--radius);
    color: var(--gold-2);
    background: rgba(216, 175, 99, 0.08);
    font-weight: 900;
}

.service-plans {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.plan {
    position: relative;
    overflow: hidden;
    padding: 28px;
    transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease, background-color 0.32s ease;
}

.plan::before {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 0, rgba(243, 213, 139, 0.16), transparent 58%);
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s ease;
}

.plan:hover {
    z-index: 1;
    border-color: rgba(243, 213, 139, 0.68);
    box-shadow: 0 26px 62px rgba(0, 0, 0, 0.32), 0 0 30px rgba(216, 175, 99, 0.08);
    transform: translateY(-8px);
}

.plan:hover::before {
    opacity: 1;
}

.plan > * {
    position: relative;
    z-index: 1;
}

.plan.vip {
    border-color: rgba(243, 213, 139, 0.52);
    background:
            radial-gradient(circle at 82% 8%, rgba(216, 175, 99, 0.18), transparent 18rem),
            rgba(10, 32, 49, 0.92);
}

@media (prefers-reduced-motion: reduce) {
    .plan,
    .plan::before {
        transition: none;
    }

    .plan:hover {
        transform: none;
    }
}

.plan-label {
    display: inline-flex;
    margin-bottom: 14px;
    border: 1px solid rgba(216, 175, 99, 0.42);
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--gold-2);
    background: rgba(216, 175, 99, 0.08);
    font-size: 13px;
    font-weight: 900;
}

.price {
    margin: 12px 0 14px;
    color: var(--gold-2);
    font-size: 54px;
    line-height: 1;
    font-weight: 900;
}

.price small {
    font-size: 20px;
}

.list {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    color: var(--soft);
    font-size: 15px;
    line-height: 1.72;
    list-style: none;
}

.list li {
    position: relative;
    padding-left: 22px;
}

.list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--gold);
}

.value-band {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    align-items: center;
    border: 1px solid rgba(216, 175, 99, 0.34);
    border-radius: var(--radius);
    padding: 34px;
    background:
            linear-gradient(135deg, rgba(216, 175, 99, 0.16), rgba(10, 32, 49, 0.92) 44%),
            rgba(10, 32, 49, 0.92);
    box-shadow: var(--shadow);
}

.big-number {
    color: var(--gold-2);
    font-size: clamp(58px, 9vw, 110px);
    line-height: 0.95;
    font-weight: 900;
    margin-bottom:20px;
}

.big-number small {
    margin: 10px;
    color: #e7d8b4;
    font-size: 20px;
}

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

.compare-item {
    border: 1px solid rgba(216, 175, 99, 0.2);
    border-radius: var(--radius);
    padding: 18px;
    background: rgba(255, 255, 255, 0.045);
}

.compare-item strong {
    display: block;
    color: var(--gold-2);
    font-size: 24px;
}

.compare-item span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

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

.step {
    position: relative;
    min-height: 150px;
    border: 1px solid rgba(216, 175, 99, 0.2);
    border-radius: var(--radius);
    padding: 22px 18px;
    background: rgba(10, 32, 49, 0.78);
}

.step strong {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 999px;
    color: #071522;
    background: var(--gold-2);
    font-size: 15px;
}

.step p {
    color: var(--soft);
    font-size: 15px;
    line-height: 1.7;
}

.table-card {
    overflow: hidden;
    padding: 20px;
    background: #f7f9fc;
}

.table-card img {
    display: block;
    width: 100%;
    border: 1px solid #0a356a;
}

.table-title {
    margin-bottom: 14px;
    color: #071522;
    font-size: 18px;
    font-weight: 900;
}

.faq {
    display: grid;
    gap: 12px;
}

summary {
    cursor: pointer;
    padding: 18px 20px;
    color: #fff;
    font-weight: 900;
}

details p {
    padding: 0 20px 20px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.contact {
    padding: 62px 0 72px;
    color: #fff;
    background:
            linear-gradient(90deg, rgba(216, 175, 99, 0.12), transparent 42%),
            #03101b;
}

.contact-box {
    display: grid;
    grid-template-columns: 1fr 190px;
    gap: 34px;
    align-items: center;
}

.contact-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.contact-list span {
    border-top: 1px solid rgba(216, 175, 99, 0.28);
    padding-top: 12px;
    color: #d8e4ee;
    font-size: 14px;
    line-height: 1.7;
}

.qr {
    border: 1px solid rgba(216, 175, 99, 0.36);
    border-radius: var(--radius);
    padding: 14px;
    background: #fff;
}

.qr img {
    display: block;
    width: 100%;
}

/* ── Gift Showcase ── */
.gift-section {
    margin-top: 36px;
}

.gift-hero {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(216, 175, 99, 0.22);
    background: rgba(4, 14, 22, 0.6);
}

.gift-hero img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center 40%;
}

.gift-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(3, 16, 27, 0.32) 0%, rgba(3, 16, 27, 0.72) 100%);
    pointer-events: none;
}

.gift-hero-overlay span {
    color: var(--gold-2);
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
}

.gift-divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: center;
    margin: 28px 0 24px;
}

.gift-divider::before,
.gift-divider::after {
    content: "";
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(216, 175, 99, 0.32), transparent);
}

.gift-divider span {
    color: var(--gold-2);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

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

.gift-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(216, 175, 99, 0.18);
    border-radius: var(--radius);
    background: rgba(10, 32, 49, 0.78);
    transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}

.gift-card:hover {
    border-color: rgba(243, 213, 139, 0.46);
    transform: translateY(-4px);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24), 0 0 40px rgba(216, 175, 99, 0.06);
}

.gift-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: rgba(4, 14, 22, 0.5);
}

.gift-card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.gift-card:hover .gift-card-img img {
    transform: scale(1.05);
}

.gift-card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(3, 16, 27, 0.5) 100%);
    pointer-events: none;
}

.gift-card-body {
    padding: 18px 16px;
    border-top: 1px solid rgba(216, 175, 99, 0.12);
}

.gift-card-body strong {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
}

.gift-card-body p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.gift-card-tag {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    border: 1px solid rgba(216, 175, 99, 0.32);
    border-radius: 999px;
    padding: 4px 10px;
    color: var(--gold-2);
    background: rgba(216, 175, 99, 0.06);
    font-size: 12px;
    font-weight: 800;
}

.gift-total-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
    border: 1px solid rgba(216, 175, 99, 0.24);
    border-radius: var(--radius);
    padding: 16px 24px;
    background: rgba(216, 175, 99, 0.06);
}

.gift-total-bar span {
    color: var(--muted);
    font-size: 16px;
    font-weight: 700;

}

.gift-total-bar strong {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    color: var(--gold-2);
    font-size: 32px;
    font-weight: 900;
    white-space: nowrap;
}

.gift-total-bar small {
    color: var(--gold-2);
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;

}

.mobile-only {
    display: none;
}

@media (max-width: 900px) {
    body {
        padding-top: 64px;
    }

    html {
        scroll-padding-top: 76px;
    }

    section[id],
    footer[id],
    #plans {
        scroll-margin-top: 76px;
    }

    .nav {
        min-height: 64px;
        justify-content: space-between;
        padding: 0;
    }

    .nav-toggle {
        position: relative;
        z-index: 23;
        display: grid;
        width: 42px;
        height: 42px;
        place-content: center;
        gap: 5px;
        border: 1px solid rgba(243, 213, 139, 0.36);
        border-radius: var(--radius);
        padding: 0;
        color: var(--gold-2);
        background: rgba(216, 175, 99, 0.08);
        cursor: pointer;
    }

    .nav-toggle span {
        display: block;
        width: 21px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        transition: transform 0.28s ease, opacity 0.2s ease;
    }

    body.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        top: 64px;
        right: 0;
        z-index: 22;
        display: flex;
        width: min(84vw, 360px);
        height: calc(100vh - 64px);
        height: calc(100dvh - 64px);
        align-items: stretch;
        flex-direction: column;
        gap: 24px;
        margin-left: 0;
        border-left: 1px solid rgba(216, 175, 99, 0.2);
        padding: 22px 20px;
        background: rgba(4, 20, 32, 0.98);
        box-shadow: -24px 0 60px rgba(0, 0, 0, 0.38);
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s;
    }

    body.nav-open .nav-menu {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
        visibility: visible;
        transition-delay: 0s;
    }

    .nav-links {
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }

    .nav-links a {
        border-bottom: 1px solid rgba(216, 175, 99, 0.14);
        padding: 15px 4px;
        font-size: 16px;
    }

    .nav-links a::after {
        top: 50%;
        right: auto;
        bottom: auto;
        left: -10px;
        width: 3px;
        height: 24px;
        transform: translateY(-50%) scaleY(0.35);
    }

    .nav-links a.is-active::after {
        transform: translateY(-50%) scaleY(1);
    }

    .nav-menu .nav-cta {
        width: 100%;
        min-height: 48px;
        margin-top: auto;
    }

    .nav-backdrop {
        position: fixed;
        inset: 64px 0 0;
        z-index: 21;
        width: 100%;
        border: 0;
        padding: 0;
        background: rgba(0, 0, 0, 0.48);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    body.nav-open .nav-backdrop {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }

    body.nav-open {
        overflow: hidden;
    }

    .hero {
        min-height: auto;
        padding: 58px 0 46px;
    }

    .hero-grid,
    .service-plans,
    .value-band,
    .contact-box {
        grid-template-columns: 1fr;
    }

    .hero-lead {
        font-size: 18px;
    }

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

    .contact-box {
        align-items: start;
    }

    .qr {
        width: 180px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .brand span {
        font-size: 18px;
    }

    .brand img {
        width: 36px;
        height: 36px;
    }

    .nav-cta {
        min-height: 36px;
        padding: 0 12px;
        font-size: 13px;
    }

    h1 {
        font-size: 58px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-lead {
        font-size: 16px;
        line-height: 1.75;
    }

    .hero-card,
    .plan,
    .value-band {
        padding: 20px;
    }

    .hero-stats{
        grid-template-columns: .5fr .5fr;
    }
    .grid-2,
    .grid-3,
    .grid-4,
    .compare,
    .flow,
    .contact-list {
        grid-template-columns: 1fr;
    }

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

    .section {
        padding: 54px 0;
    }

    .price {
        font-size: 44px;
    }

    .big-number {
        display: flex;
        max-width: 100%;
        align-items: baseline;
        flex-wrap: nowrap;
        font-size: clamp(34px, 12vw, 50px);
        white-space: nowrap;
    }

    .big-number small {
        margin: 0 0 0 4px;
        font-size: 14px;
        white-space: nowrap;
    }

    .step {
        display: grid;
        min-height: 0;
        grid-template-columns: 40px minmax(0, 1fr);
        align-items: center;
        gap: 14px;
        padding: 16px;
    }

    .step strong {
        margin-bottom: 0;
    }

    .step p {
        line-height: 1.55;
    }

    .ai-service-section .card,
    .advantage-section .card,
    .pain-point-section .card {
        display: grid;
        grid-template-columns: 48px minmax(0, 1fr);
        grid-template-rows: auto auto;
        align-items: start;
        column-gap: 14px;
        row-gap: 6px;
        padding: 18px;
    }

    .ai-service-section .icon-badge,
    .advantage-section .icon-badge,
    .pain-point-section .icon-badge {
        grid-column: 1;
        grid-row: 1 / span 2;
        margin-bottom: 0;
    }

    .ai-service-section .card h3,
    .ai-service-section .card p,
    .advantage-section .card h3,
    .advantage-section .card p,
    .pain-point-section .card h3,
    .pain-point-section .card p {
        grid-column: 2;
        margin-top: 0;
    }

    .qr {
        justify-self: center;
        margin-inline: auto;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .gift-total-bar span, .gift-total-bar small {
        font-size: 14px;
    }

    .gift-total-bar strong {
        font-size: 28px;
    }
}
