:root {
    --bg: #FFF8F0;
    --header: rgba(38, 20, 12, 0.94);
    --title: #24130C;
    --brand: #FF6B35;
    --deep: #2B1A3F;
    --neon: #00E5B0;
    --gold: #FFD166;
    --rose: #B8336A;
    --pale-blue: #E9FFF8;
    --pale-gold: #FFF1C7;
    --highlight: #FF7A00;
    --text: #2A1F1A;
    --muted: #75645A;
    --soft: #A9978C;
    --card: #FFFFFF;
    --dark-card: #24130C;
    --mint-card: #EFFFFA;
    --border: rgba(255, 107, 53, 0.18);
    --shadow: 0 20px 46px rgba(97, 45, 16, 0.14);
    --shadow-soft: 0 12px 34px rgba(86, 47, 24, 0.10);
    --gradient: linear-gradient(135deg, #FF6B35 0%, #FFB703 48%, #00E5B0 100%);
    --gradient-media: linear-gradient(135deg, rgba(255, 209, 102, 0.88), rgba(233, 255, 248, 0.94) 46%, rgba(184, 51, 106, 0.18));
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --content: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 8% 12%, rgba(255, 209, 102, 0.22), transparent 26rem),
        radial-gradient(circle at 90% 8%, rgba(0, 229, 176, 0.12), transparent 30rem),
        var(--bg);
    color: var(--text);
    font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.drawer-open {
    overflow: hidden;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 12000;
    padding: 10px 16px;
    color: #fff;
    background: var(--deep);
    border-radius: 12px;
    text-decoration: none;
    transition: top .2s ease;
}

.skip-link:focus {
    top: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: var(--header);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 26px rgba(97, 45, 16, 0.16);
}

.header-inner {
    max-width: 1280px;
    min-height: 72px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.site-logo,
.drawer-brand,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: .03em;
}

.site-logo {
    color: #FFF3E8;
    white-space: nowrap;
}

.site-logo img {
    width: auto;
    max-height: 44px;
    display: block;
    object-fit: contain;
}

.site-logo span {
    font-size: 20px;
}

.nav-core {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.nav-core a {
    padding: 8px 12px;
    border-radius: 999px;
    color: #FFF3E8;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav-core a:hover,
.nav-core a.active {
    color: #FFFFFF;
    background: rgba(0, 229, 176, 0.16);
    transform: translateY(-1px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 22px;
    border: 0;
    border-radius: 999px;
    color: #FFFFFF;
    background: var(--gradient);
    box-shadow: 0 14px 32px rgba(255, 107, 53, 0.22);
    text-decoration: none;
    font-weight: 800;
    line-height: 1.2;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(255, 107, 53, 0.28);
    filter: saturate(1.06);
}

.menu-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: #FFF3E8;
}

.mobile-menu-toggle {
    display: none;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 10020;
    background: rgba(26, 15, 10, 0.58);
    opacity: 0;
    transition: opacity .26s ease;
}

.drawer-overlay.visible {
    opacity: 1;
}

.site-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10030;
    width: min(430px, 92vw);
    height: 100dvh;
    padding: 24px;
    background: #FFFDF9;
    box-shadow: -26px 0 70px rgba(36, 19, 12, 0.24);
    overflow-y: auto;
    transform: translateX(105%);
    transition: transform .28s ease;
}

.site-drawer.open {
    transform: translateX(0);
}

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.drawer-brand {
    color: var(--title);
}

.drawer-brand img,
.footer-logo img {
    width: auto;
    max-height: 40px;
    object-fit: contain;
}

.drawer-close {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    color: var(--title);
    background: var(--pale-gold);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.drawer-intro {
    margin: 20px 0;
    color: var(--muted);
    font-size: 14px;
}

.drawer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.drawer-nav a {
    display: block;
    min-height: 92px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #FFFFFF;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.drawer-nav a:hover,
.drawer-nav a.active {
    transform: translateY(-2px);
    border-color: rgba(0, 229, 176, 0.45);
    background: var(--mint-card);
}

.drawer-nav strong {
    display: block;
    margin-bottom: 4px;
    color: var(--title);
    font-size: 15px;
}

.drawer-nav span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.drawer-support {
    margin-top: 18px;
    padding-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    border-top: 1px solid var(--border);
}

.drawer-support a {
    color: var(--brand);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

main {
    display: block;
}

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

.section {
    position: relative;
    padding: 84px 0;
}

.section-sm {
    padding: 54px 0;
}

.section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

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

.section-kicker,
.eyebrow,
.badge,
.tag,
.label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8A5300;
    background: var(--pale-gold);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
}

.section-kicker::before,
.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 5px rgba(255, 107, 53, 0.12);
}

h1,
h2,
h3,
h4,
.section-title {
    margin-top: 0;
    color: var(--title);
    line-height: 1.2;
}

h1 {
    font-size: clamp(42px, 7vw, 80px);
    letter-spacing: -.04em;
}

h2,
.section-title {
    margin-bottom: 16px;
    font-size: clamp(30px, 4.6vw, 48px);
    letter-spacing: -.03em;
}

h3 {
    margin-bottom: 10px;
    font-size: clamp(20px, 2vw, 26px);
}

p {
    margin-top: 0;
}

.lead {
    color: var(--muted);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.85;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand);
    font-weight: 800;
    text-decoration: none;
}

.text-link::after {
    content: "→";
    transition: transform .2s ease;
}

.text-link:hover::after {
    transform: translateX(4px);
}

.card,
.zone-card,
.info-card,
.review-card,
.faq-card,
.channel-pill,
.feature-card,
.media-card,
.service-card,
.notice-card,
.step-card,
.quote-card {
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 22px;
}

.hero {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: center;
    padding: 70px 0 62px;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 18%, rgba(0, 229, 176, 0.22), transparent 20rem),
        radial-gradient(circle at 20% 80%, rgba(184, 51, 106, 0.12), transparent 24rem),
        linear-gradient(135deg, #FFF3E8 0%, #FFF8F0 36%, #E9FFF8 100%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}

.hero::before {
    width: 280px;
    height: 280px;
    top: -120px;
    right: 12%;
    background: rgba(255, 209, 102, 0.28);
}

.hero::after {
    width: 180px;
    height: 180px;
    bottom: -70px;
    left: 5%;
    background: rgba(0, 229, 176, 0.18);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 56px;
}

.hero-copy h1 {
    margin: 18px 0 16px;
}

.hero-copy h1 span {
    display: block;
    margin-top: 12px;
    color: var(--rose);
    font-size: clamp(22px, 3vw, 36px);
    letter-spacing: -.02em;
}

.hero-copy .lead {
    max-width: 680px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin: 28px 0;
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 20px;
    border: 1px solid rgba(43, 26, 63, 0.16);
    border-radius: 999px;
    color: var(--deep);
    background: rgba(255, 255, 255, 0.84);
    font-weight: 800;
    text-decoration: none;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-points li {
    padding: 8px 13px;
    border: 1px solid rgba(255, 107, 53, 0.16);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 700;
}

.hero-visual {
    position: relative;
    min-width: 0;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 8% -4% -4% 10%;
    border-radius: 42% 58% 40% 60%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.18), rgba(0, 229, 176, 0.22));
    filter: blur(2px);
}

.hero-visual img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-height: 610px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 30px 38px rgba(43, 26, 63, 0.20));
}

.floating-note {
    position: absolute;
    z-index: 3;
    max-width: 220px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 16px;
    color: var(--title);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 700;
}

.floating-note.note-one {
    left: -12px;
    bottom: 12%;
}

.floating-note.note-two {
    top: 12%;
    right: -12px;
}

.highlight-strip {
    position: relative;
    z-index: 4;
    margin-top: -28px;
}

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

.feature-card {
    min-height: 172px;
    padding: 24px;
}

.feature-card:nth-child(2n) {
    background: var(--mint-card);
}

.feature-card:nth-child(3) {
    background: #FFF7E2;
}

.feature-index {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    background: var(--deep);
    font-size: 13px;
    font-weight: 900;
}

.feature-card h2,
.feature-card h3 {
    margin: 16px 0 8px;
    font-size: 20px;
}

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

.channel-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.channel-pill {
    flex: 1 1 210px;
    padding: 18px 20px;
    box-shadow: var(--shadow-soft);
}

.channel-pill a {
    display: inline-block;
    margin-bottom: 4px;
    color: var(--title);
    font-weight: 900;
    text-decoration: none;
}

.channel-pill p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 52px;
}

.split-layout.reverse .visual-panel {
    order: 2;
}

.visual-panel {
    position: relative;
    padding: 22px;
    border-radius: var(--radius-xl);
    background: var(--gradient-media);
    overflow: hidden;
}

.visual-panel::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    right: -70px;
    bottom: -70px;
    border-radius: 50%;
    background: rgba(184, 51, 106, 0.12);
}

.content-img,
.zone-card img,
.app-section img,
.hero-visual img,
.inner-hero-media img,
.media-card img,
.service-card img,
.visual-panel img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.visual-panel img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-height: 500px;
    display: block;
}

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

.bullet-list,
.check-list,
.service-points {
    margin: 22px 0;
    padding: 0;
    list-style: none;
}

.bullet-list li,
.check-list li,
.service-points li {
    position: relative;
    margin: 12px 0;
    padding-left: 28px;
    color: var(--muted);
}

.bullet-list li::before,
.check-list li::before,
.service-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 19px;
    height: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: var(--brand);
    font-size: 11px;
    font-weight: 900;
}

.dual-grid,
.triple-grid,
.card-grid,
.review-grid,
.faq-grid,
.step-grid {
    display: grid;
    gap: 22px;
}

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

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

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

.zone-card,
.media-card,
.service-card,
.info-card,
.step-card {
    padding: 26px;
    overflow: hidden;
}

.zone-card img,
.media-card img,
.service-card img {
    width: 100%;
    max-height: 260px;
    display: block;
    margin-bottom: 20px;
    border-radius: 18px;
}

.zone-card p,
.media-card p,
.service-card p,
.info-card p,
.step-card p {
    color: var(--muted);
}

.zone-card .service-points,
.media-card .service-points,
.service-card .service-points {
    margin-bottom: 16px;
}

.media-card.featured {
    background: linear-gradient(145deg, var(--deep), #56336f);
    border-color: transparent;
}

.media-card.featured h2,
.media-card.featured h3,
.media-card.featured p,
.media-card.featured li,
.media-card.featured .text-link {
    color: #fff;
}

.media-card.featured .service-points li::before {
    color: var(--deep);
    background: var(--neon);
}

.security-wrap {
    border-radius: 38px;
    background:
        radial-gradient(circle at 90% 10%, rgba(0, 229, 176, .18), transparent 20rem),
        linear-gradient(135deg, #26140C, #2B1A3F);
    overflow: hidden;
}

.security-wrap .section-head h2,
.security-wrap .section-head p,
.security-wrap .section-title,
.security-wrap .lead {
    color: #fff;
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.security-card {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
}

.security-card img {
    width: 100%;
    max-height: 290px;
    display: block;
    margin-bottom: 20px;
    object-fit: contain;
}

.security-card h3,
.security-card p,
.security-card li,
.security-card .text-link {
    color: #fff;
}

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

.review-card,
.quote-card {
    position: relative;
    padding: 26px;
    box-shadow: var(--shadow-soft);
}

.review-card::before,
.quote-card::before {
    content: "“";
    position: absolute;
    top: 10px;
    right: 20px;
    color: rgba(184, 51, 106, 0.13);
    font-family: Georgia, serif;
    font-size: 70px;
    line-height: 1;
}

.review-card p,
.quote-card p {
    position: relative;
    color: var(--muted);
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: var(--deep);
    font-weight: 900;
}

.review-meta strong {
    display: block;
    color: var(--title);
}

.review-meta span {
    display: block;
    color: var(--soft);
    font-size: 12px;
}

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

.faq-card {
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.faq-card h3 {
    font-size: 19px;
}

.faq-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.reminder-band {
    padding: 32px;
    border: 1px solid rgba(184, 51, 106, 0.16);
    border-radius: 28px;
    background: linear-gradient(135deg, #FFF1C7, #E9FFF8);
    box-shadow: var(--shadow-soft);
}

.reminder-band h2,
.reminder-band h3 {
    margin-bottom: 10px;
}

.reminder-band p:last-child {
    margin-bottom: 0;
}

.about-mini {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 34px;
    align-items: center;
    padding: 34px;
    border-radius: 30px;
    color: #fff;
    background: var(--deep);
    overflow: hidden;
}

.about-mini h2,
.about-mini p,
.about-mini .text-link {
    color: #fff;
}

.about-mini img {
    width: 100%;
    max-height: 280px;
    object-fit: contain;
}

.inner-hero {
    position: relative;
    padding: 76px 0 60px;
    background:
        radial-gradient(circle at 90% 15%, rgba(0, 229, 176, .18), transparent 22rem),
        linear-gradient(135deg, #FFF3E8, #E9FFF8);
    overflow: hidden;
}

.inner-hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 48px;
}

.inner-hero h1 {
    margin: 18px 0 14px;
    font-size: clamp(40px, 6vw, 66px);
}

.inner-hero-media {
    position: relative;
    padding: 22px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 107, 53, 0.18);
    box-shadow: var(--shadow);
}

.inner-hero-media img {
    width: 100%;
    max-height: 420px;
    display: block;
}

.intro-card {
    padding: 34px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.intro-card p:last-child {
    margin-bottom: 0;
}

.rich-copy {
    max-width: 900px;
}

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

.rich-copy h2 {
    margin-top: 44px;
    font-size: clamp(28px, 4vw, 42px);
}

.rich-copy h3 {
    margin-top: 30px;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 34px;
    align-items: start;
}

.sticky-aside {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 18px;
}

.aside-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.aside-card h2,
.aside-card h3 {
    font-size: 21px;
}

.aside-card p {
    color: var(--muted);
    font-size: 14px;
}

.aside-card a {
    color: var(--brand);
    font-weight: 800;
    text-decoration: none;
}

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

.step-number {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 14px;
    color: #fff;
    background: var(--deep);
    font-weight: 900;
}

.notice-card {
    padding: 28px;
    border-color: rgba(0, 229, 176, 0.25);
    background: var(--mint-card);
}

.notice-card h2,
.notice-card h3 {
    margin-bottom: 12px;
}

.notice-card p:last-child {
    margin-bottom: 0;
}

.table-like {
    display: grid;
    gap: 12px;
}

.table-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
}

.table-row strong {
    color: var(--title);
}

.table-row span {
    color: var(--muted);
}

.full-faq {
    display: grid;
    gap: 16px;
}

.full-faq details {
    padding: 22px 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.full-faq summary {
    color: var(--title);
    font-weight: 900;
    cursor: pointer;
}

.full-faq details p {
    margin: 14px 0 0;
    color: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.contact-item {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

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

.site-footer {
    margin-top: 80px;
    color: #FFF3E8;
    background: #1A0F0A;
}

.footer-inner {
    width: min(var(--content), calc(100% - 40px));
    margin: 0 auto;
    padding: 68px 0 46px;
    display: grid;
    grid-template-columns: 1.15fr 1.85fr;
    gap: 54px;
}

.footer-brand-block p {
    max-width: 470px;
    color: rgba(255, 243, 232, 0.72);
}

.footer-logo {
    margin-bottom: 16px;
    color: #fff;
    font-size: 22px;
}

.footer-btn {
    margin-top: 8px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.footer-links section {
    min-width: 0;
}

.footer-links h2 {
    margin-bottom: 14px;
    color: #fff;
    font-size: 16px;
}

.footer-links a {
    display: block;
    margin: 9px 0;
    color: rgba(255, 243, 232, 0.72);
    font-size: 14px;
    text-decoration: none;
}

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

.footer-notice {
    width: min(var(--content), calc(100% - 40px));
    margin: 0 auto;
    padding: 22px 0 30px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-notice p {
    margin: 0;
    color: rgba(255, 243, 232, 0.58);
    font-size: 12px;
}

.footer-notice p:first-child {
    max-width: 760px;
}

.mobile-bottom-nav {
    display: none;
}

@media (max-width: 1100px) {
    .header-inner {
        gap: 16px;
    }

    .nav-core {
        gap: 2px;
    }

    .nav-core a {
        padding: 8px 9px;
        font-size: 13px;
    }

    .hero-grid,
    .inner-hero-grid,
    .split-layout {
        gap: 34px;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .nav-core {
        display: none;
    }

    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        grid-column: 1;
    }

    .site-logo {
        grid-column: 2;
        justify-self: center;
    }

    .header-actions {
        grid-column: 3;
    }

    .desktop-menu-toggle {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 54px;
    }

    .hero-grid,
    .inner-hero-grid,
    .split-layout,
    .content-layout,
    .about-mini {
        grid-template-columns: 1fr;
    }

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

    .hero-copy .lead {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions,
    .hero-points {
        justify-content: center;
    }

    .hero-visual {
        max-width: 720px;
        margin: 0 auto;
    }

    .split-layout.reverse .visual-panel {
        order: 0;
    }

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

    .triple-grid,
    .card-grid,
    .step-grid,
    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 680px) {
    body {
        padding-bottom: calc(72px + env(safe-area-inset-bottom));
        font-size: 15px;
    }

    .header-inner {
        min-height: 64px;
        padding: 0 12px;
        gap: 8px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .site-logo {
        gap: 7px;
    }

    .site-logo img {
        max-width: 34px;
        max-height: 36px;
    }

    .site-logo span {
        font-size: 17px;
    }

    .header-cta {
        min-height: 38px;
        padding: 9px 13px;
        font-size: 13px;
    }

    .container {
        width: min(100% - 28px, var(--content));
    }

    .section {
        padding: 62px 0;
    }

    .section-sm {
        padding: 42px 0;
    }

    .hero {
        padding: 44px 0 54px;
    }

    .hero-grid {
        gap: 28px;
    }

    h1 {
        font-size: clamp(40px, 14vw, 60px);
    }

    .hero-copy h1 span {
        font-size: 22px;
    }

    h2,
    .section-title {
        font-size: 31px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

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

    .floating-note {
        position: static;
        max-width: none;
        margin-top: 10px;
    }

    .highlight-strip {
        margin-top: -18px;
    }

    .highlight-grid,
    .dual-grid,
    .triple-grid,
    .card-grid,
    .review-grid,
    .faq-grid,
    .security-grid,
    .step-grid,
    .contact-grid,
    .sticky-aside {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .zone-card,
    .media-card,
    .service-card,
    .review-card,
    .faq-card,
    .info-card,
    .step-card {
        padding: 22px;
    }

    .channel-pill {
        flex-basis: 100%;
    }

    .visual-panel,
    .inner-hero-media {
        padding: 14px;
    }

    .security-wrap {
        border-radius: 28px;
    }

    .security-wrap .container {
        width: min(100% - 20px, var(--content));
    }

    .reminder-band,
    .about-mini,
    .intro-card {
        padding: 24px;
    }

    .inner-hero {
        padding: 52px 0 42px;
    }

    .inner-hero h1 {
        font-size: 42px;
    }

    .table-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .drawer-nav {
        grid-template-columns: 1fr;
    }

    .site-drawer {
        right: auto;
        left: 0;
        transform: translateX(-105%);
    }

    .site-drawer.open {
        transform: translateX(0);
    }

    .footer-inner {
        width: min(100% - 28px, var(--content));
        padding-top: 52px;
        gap: 36px;
    }

    .footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .footer-notice {
        width: min(100% - 28px, var(--content));
        flex-direction: column;
        gap: 10px;
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: max(8px, env(safe-area-inset-bottom));
        z-index: 9900;
        min-height: 60px;
        padding: 6px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 20px;
        background: rgba(38, 20, 12, 0.94);
        box-shadow: 0 12px 35px rgba(36, 19, 12, 0.28);
        backdrop-filter: blur(14px);
    }

    .mobile-bottom-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        border-radius: 15px;
        color: rgba(255, 243, 232, 0.72);
        font-size: 11px;
        text-decoration: none;
    }

    .mobile-bottom-nav a span {
        font-size: 18px;
        line-height: 1;
    }

    .mobile-bottom-nav a.active {
        color: #fff;
        background: rgba(0, 229, 176, 0.16);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

.aside-card > a {
    display: block;
    margin: 10px 0;
}
