:root {
            --primary: #123f6b;
            --primary-light: #1d5f95;
            --primary-dark: #0f3152;
            --accent: #eb7a2f;
            --accent-light: #f09a4e;
            --sand: #f6efe7;
            --surface: #ffffff;
            --surface-alt: #f5f7fa;
            --surface-soft: #eef3f8;
            --text: #1d2a36;
            --muted: #607181;
            --line: #d7e0e8;
            --success: #1e8a5d;
            --shadow-sm: 0 6px 18px rgba(18, 63, 107, 0.08);
            --shadow-md: 0 16px 40px rgba(18, 63, 107, 0.12);
            --shadow-lg: 0 24px 60px rgba(15, 49, 82, 0.18);
            --radius-sm: 10px;
            --radius-md: 18px;
            --radius-lg: 28px;
            --max-width: 1240px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            color: var(--text);
            background: var(--surface-alt);
            line-height: 1.7;
        }

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

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

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

        .topbar {
            background: var(--primary-dark);
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
        }

        .topbar .container {
            min-height: 42px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .topbar-tags {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .header {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(14px);
            background: rgba(255, 255, 255, 0.9);
            border-bottom: 1px solid rgba(215, 224, 232, 0.8);
        }

        .header.scrolled {
            box-shadow: var(--shadow-sm);
        }

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

        .brand {
            display: flex;
            align-items: center;
            gap: 14px;
            min-width: 0;
            padding: 6px 10px 6px 6px;
            border-radius: 18px;
        }

        .brand-mark {
            width: 48px;
            height: 48px;
            border-radius: 16px;
            overflow: hidden;
            background: #ffffff;
            box-shadow: var(--shadow-sm);
            flex-shrink: 0;
        }

        .brand-mark img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .brand-text strong {
            display: block;
            font-size: 22px;
            font-weight: 800;
            letter-spacing: 0.02em;
            color: #1d5f95;
            line-height: 1.08;
        }

        .brand-text span {
            display: block;
            margin-top: 7px;
            width: fit-content;
            padding: 0;
            background: transparent;
            font-size: 11px;
            font-weight: 900;
            letter-spacing: 0.1em;
            color: #1d5f95;
            text-transform: lowercase;
            line-height: 1.2;
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .nav-links a {
            padding: 10px 16px;
            border-radius: 999px;
            font-size: 15px;
            color: var(--muted);
            transition: 0.25s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            background: rgba(18, 63, 107, 0.08);
            color: var(--primary);
        }

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

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 48px;
            padding: 0 24px;
            border: 0;
            border-radius: 999px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 600;
            transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
        }

        .btn:hover {
            transform: translateY(-2px);
        }

        .btn-primary {
            color: #fff;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            box-shadow: 0 12px 26px rgba(18, 63, 107, 0.2);
        }

        .btn-accent {
            color: #fff;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
            box-shadow: 0 12px 26px rgba(235, 122, 47, 0.22);
        }

        .btn-secondary {
            color: var(--primary);
            background: #fff;
        }

        .btn-phone {
            min-height: 56px;
            gap: 12px;
            padding: 0 20px 0 14px;
            white-space: nowrap;
            border: 1px solid rgba(18, 63, 107, 0.12);
            box-shadow: 0 12px 28px rgba(18, 63, 107, 0.12);
            background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
        }

        .btn-phone-icon {
            display: inline-grid;
            place-items: center;
            width: 34px;
            height: 34px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
            color: #fff;
            box-shadow: 0 8px 20px rgba(235, 122, 47, 0.22);
            font-size: 16px;
            line-height: 1;
        }

        .btn-phone-copy {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            line-height: 1.05;
        }

        .btn-phone-copy small {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            color: #7d8a98;
            text-transform: uppercase;
            margin-bottom: 4px;
        }

        .btn-phone-copy strong {
            font-size: 18px;
            font-weight: 800;
            letter-spacing: 0.02em;
            color: var(--primary-dark);
        }

        .hero {
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 30%),
                linear-gradient(135deg, #143a60 0%, #1d5f95 58%, #2f8abf 100%);
            color: #fff;
        }

        .hero::after {
            content: "";
            position: absolute;
            inset: auto -120px -120px auto;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            filter: blur(6px);
        }

        .hero-inner {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
            gap: 40px;
            align-items: center;
            padding: 86px 0 74px;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.22);
            border-radius: 999px;
            padding: 8px 14px;
            font-size: 13px;
            margin-bottom: 18px;
        }

        .hero h1 {
            font-size: clamp(38px, 6vw, 62px);
            line-height: 1.1;
            margin-bottom: 18px;
        }

        .hero-lead {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.92);
            max-width: 680px;
        }

        .hero-points {
            margin: 28px 0 32px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .hero-points span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 16px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.11);
            border: 1px solid rgba(255, 255, 255, 0.16);
            font-size: 14px;
        }

        .hero-actions,
        .cta-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .hero-panel {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 32px;
            padding: 28px;
            box-shadow: var(--shadow-lg);
            backdrop-filter: blur(10px);
        }

        .hero-panel-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
            margin: 24px 0;
        }

        .hero-stat,
        .hero-service-item {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 22px;
            padding: 18px;
        }

        .hero-service-item strong,
        .hero-stat strong {
            display: block;
            font-size: 24px;
            margin-bottom: 4px;
        }

        .hero-service-list {
            display: grid;
            gap: 12px;
        }

        .hero-service-item small,
        .hero-stat small {
            color: rgba(255, 255, 255, 0.82);
        }

        .home-ad {
            padding: 0;
            background: linear-gradient(180deg, rgba(18, 63, 107, 0.04) 0%, rgba(18, 63, 107, 0) 100%);
            margin-bottom: 28px;
        }

        .home-ad-frame {
            overflow: hidden;
            width: 100%;
            background: #fff;
            box-shadow: 0 18px 40px rgba(18, 63, 107, 0.1);
        }

        .home-ad-frame img {
            width: 100%;
            height: min(42vw, 540px);
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .section {
            padding: 88px 0;
        }

        .section.alt {
            background: var(--surface);
        }

        .section.soft {
            background: linear-gradient(180deg, var(--surface-soft) 0%, #f8fbfd 100%);
        }

        .section-header {
            max-width: 760px;
            margin-bottom: 42px;
        }

        .section-header.center {
            margin-inline: auto;
            text-align: center;
        }

        .section-header h2 {
            font-size: clamp(28px, 4vw, 44px);
            line-height: 1.16;
            margin-bottom: 14px;
            color: var(--primary-dark);
        }

        .section-header p {
            color: var(--muted);
            font-size: 17px;
        }

        .trust-grid,
        .advantage-grid,
        .scenario-grid,
        .news-grid,
        .contact-grid,
        .footer-grid {
            display: grid;
            gap: 22px;
        }

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

        .trust-card,
        .advantage-card,
        .service-column,
        .scenario-card,
        .case-card,
        .news-card,
        .contact-card,
        .faq-item,
        .about-card,
        .form-card {
            background: var(--surface);
            border: 1px solid rgba(215, 224, 232, 0.95);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
        }

        .trust-card {
            padding: 24px;
            position: relative;
            overflow: hidden;
        }

        .trust-card::before {
            content: "";
            position: absolute;
            inset: 0 auto 0 0;
            width: 6px;
            background: linear-gradient(180deg, var(--accent) 0%, var(--primary-light) 100%);
        }

        .trust-card strong {
            display: block;
            font-size: 20px;
            color: var(--primary-dark);
            margin-bottom: 8px;
        }

        .trust-card p,
        .advantage-card p,
        .service-column p,
        .scenario-card p,
        .case-card p,
        .news-card p,
        .contact-card p,
        .about-card p,
        .faq-item p,
        .form-note,
        .footer p,
        .footer li {
            font-size: 15px;
        }

        .business-grid,
        .coverage-grid,
        .about-grid,
        .cta-panel,
        .footer-grid {
            display: grid;
            gap: 26px;
        }

        .business-grid,
        .coverage-grid,
        .about-grid,
        .cta-panel,
        .contact-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .business-card {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-lg);
            padding: 34px;
            min-height: 100%;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #f6fbff 100%);
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(196, 214, 230, 0.9);
        }

        .business-card.orange {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #fff8f2 100%);
        }

        .business-badge,
        .mini-badge {
            display: inline-flex;
            align-items: center;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(18, 63, 107, 0.08);
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 18px;
        }

        .orange .business-badge {
            background: rgba(235, 122, 47, 0.12);
            color: #b85d1f;
        }

        .business-card h3,
        .service-column h3,
        .about-card h3,
        .form-card h3,
        .cta-card h3 {
            font-size: 30px;
            line-height: 1.22;
            margin-bottom: 12px;
            color: var(--primary-dark);
        }

        .business-list,
        .service-list,
        .contact-list,
        .footer-links,
        .mini-list {
            list-style: none;
        }

        .business-list,
        .service-list,
        .mini-list {
            display: grid;
            gap: 12px;
            margin: 24px 0 30px;
        }

        .business-list li,
        .service-list li,
        .mini-list li,
        .contact-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: var(--text);
        }

        .check {
            display: inline-grid;
            place-items: center;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: rgba(29, 138, 93, 0.12);
            color: var(--success);
            font-size: 13px;
            flex-shrink: 0;
            margin-top: 2px;
        }

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

        .advantage-card,
        .scenario-card,
        .case-card,
        .news-card,
        .contact-card {
            padding: 26px;
        }

        .advantage-icon,
        .scenario-icon,
        .contact-icon {
            width: 58px;
            height: 58px;
            border-radius: 18px;
            display: grid;
            place-items: center;
            background: linear-gradient(135deg, rgba(18, 63, 107, 0.1) 0%, rgba(235, 122, 47, 0.12) 100%);
            color: var(--primary);
            font-size: 26px;
            margin-bottom: 18px;
        }

        .advantage-card h3,
        .scenario-card h3,
        .case-card h3,
        .news-card h3,
        .contact-card h3,
        .faq-item h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--primary-dark);
        }

        .service-column {
            padding: 32px;
        }

        .service-column header {
            margin-bottom: 18px;
        }

        .service-column header p {
            margin-top: 10px;
        }

        .process-wrap {
            display: grid;
            grid-template-columns: repeat(6, minmax(0, 1fr));
            gap: 18px;
        }

        .process-step {
            position: relative;
            padding: 24px 20px;
            background: var(--surface);
            border: 1px solid rgba(215, 224, 232, 0.95);
            border-radius: 24px;
            box-shadow: var(--shadow-sm);
        }

        .process-step::after {
            content: "";
            position: absolute;
            top: 32px;
            right: -18px;
            width: 18px;
            height: 2px;
            background: rgba(18, 63, 107, 0.18);
        }

        .process-step:last-child::after {
            display: none;
        }

        .step-no {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: #fff;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .process-step h3 {
            font-size: 18px;
            margin-bottom: 8px;
            color: var(--primary-dark);
        }

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

        .case-grid,
        .faq-grid {
            display: grid;
            gap: 22px;
        }

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

        .case-card {
            position: relative;
            overflow: hidden;
            min-height: 340px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            background:
                linear-gradient(180deg, rgba(16, 40, 61, 0.12) 0%, rgba(16, 40, 61, 0.96) 100%),
                linear-gradient(135deg, #cfe0ef 0%, #8eb4d3 100%);
            color: #fff;
        }

        .case-card-content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
            padding: 28px;
            min-height: 100%;
            text-align: left;
        }

        .case-card:nth-child(2) {
            background:
                linear-gradient(180deg, rgba(41, 35, 25, 0.12) 0%, rgba(41, 35, 25, 0.95) 100%),
                linear-gradient(135deg, #fae3ce 0%, #f1b57c 100%);
        }

        .case-card:nth-child(3) {
            background:
                linear-gradient(180deg, rgba(16, 40, 61, 0.12) 0%, rgba(16, 40, 61, 0.96) 100%),
                linear-gradient(135deg, #d7e6c8 0%, #8fb27a 100%);
        }

        .case-card:nth-child(4) {
            background:
                linear-gradient(180deg, rgba(36, 26, 20, 0.12) 0%, rgba(36, 26, 20, 0.96) 100%),
                linear-gradient(135deg, #dfd7ee 0%, #9f8ac5 100%);
        }

        .case-tag {
            display: inline-flex;
            align-items: center;
            align-self: flex-start;
            padding: 7px 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.28);
            font-size: 13px;
            font-weight: 700;
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.32);
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
        }

        .case-card h3 {
            margin: 0;
            max-width: 13em;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
        }

        .case-summary {
            color: #ffffff;
            font-size: 15px;
            line-height: 1.75;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
        }

        .case-divider {
            width: 56px;
            height: 2px;
            background: rgba(255, 255, 255, 0.5);
        }

        .case-detail {
            width: 100%;
            display: grid;
            gap: 8px;
        }

        .case-detail-item {
            display: grid;
            gap: 4px;
        }

        .case-detail-label {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            color: rgba(255, 255, 255, 0.82);
            text-transform: uppercase;
        }

        .case-detail-text {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.98);
        }

        .about-card,
        .form-card,
        .cta-card {
            padding: 34px;
        }

        .about-card {
            background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
        }

        .about-visual {
            position: relative;
            min-height: 100%;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background:
                linear-gradient(180deg, rgba(15, 49, 82, 0.15) 0%, rgba(15, 49, 82, 0.9) 100%),
                linear-gradient(135deg, #dbe7f1 0%, #99b8d2 100%);
            padding: 34px;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .about-visual ul {
            display: grid;
            gap: 10px;
            list-style: none;
            margin-top: 20px;
        }

        .about-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin: 20px 0 28px;
        }

        .about-tags span {
            padding: 10px 14px;
            border-radius: 999px;
            background: rgba(18, 63, 107, 0.08);
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
        }

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

        .faq-item {
            padding: 26px;
        }

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

        .news-meta {
            display: inline-flex;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(18, 63, 107, 0.08);
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .contact-card {
            background: linear-gradient(180deg, #fcfdfd 0%, #f7fafc 100%);
        }

        .contact-page {
            display: grid;
            gap: 28px;
        }

        .contact-page-section {
            padding-top: 48px;
        }

        .contact-page-header {
            margin-bottom: 0;
        }

        .contact-page-header h2 {
            white-space: nowrap;
            font-size: clamp(26px, 3.2vw, 42px);
            letter-spacing: 0.01em;
        }

        .contact-card-full {
            padding: 34px;
        }

        .contact-overview {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
            padding-bottom: 26px;
            margin-bottom: 26px;
            border-bottom: 1px solid rgba(18, 63, 107, 0.08);
        }

        .contact-overview h3 {
            font-size: 28px;
            line-height: 1.2;
            color: var(--primary-dark);
            margin-bottom: 10px;
        }

        .contact-overview p {
            max-width: 760px;
            color: var(--muted);
            font-size: 16px;
        }

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

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 22px;
            border-radius: 22px;
            background: #fff;
            border: 1px solid rgba(18, 63, 107, 0.08);
            box-shadow: var(--shadow-sm);
        }

        .contact-info-item span {
            display: block;
            color: var(--text);
            font-weight: 600;
            margin-bottom: 6px;
        }

        .contact-info-item p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.7;
        }

        .contact-info-item-qrcode {
            align-items: stretch;
        }

        .contact-list {
            display: grid;
            gap: 14px;
            margin-top: 20px;
        }

        .contact-list strong {
            display: block;
            color: var(--primary-dark);
            margin-bottom: 3px;
        }

        .contact-qrcode {
            display: inline-flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 12px;
        }

        .contact-qrcode img {
            width: 118px;
            height: 118px;
            object-fit: cover;
            border-radius: 16px;
            background: #fff;
            padding: 6px;
            box-shadow: var(--shadow-sm);
        }

        .contact-qrcode span {
            color: var(--muted);
            font-size: 13px;
        }

        .form-card {
            background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
            margin-top: 24px;
        }

        .field {
            display: grid;
            gap: 8px;
        }

        .field.full {
            grid-column: 1 / -1;
        }

        label {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary-dark);
        }

        input,
        select,
        textarea {
            width: 100%;
            border: 1px solid var(--line);
            border-radius: 14px;
            padding: 14px 16px;
            font: inherit;
            color: var(--text);
            background: #fff;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        textarea {
            min-height: 130px;
            resize: vertical;
        }

        input:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: var(--primary-light);
            box-shadow: 0 0 0 4px rgba(29, 95, 149, 0.12);
        }

        .form-actions {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 22px;
            flex-wrap: wrap;
        }

        .form-status {
            min-height: 24px;
            color: var(--muted);
            font-size: 14px;
        }

        .field-hint {
            font-size: 12px;
            color: var(--muted);
            line-height: 1.5;
        }

        .form-status.success {
            color: var(--success);
        }

        .form-status.error {
            color: #b63b2b;
        }

        .cta-card {
            background:
                radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 34%),
                linear-gradient(135deg, #143a60 0%, #1d5f95 60%, #2f8abf 100%);
            color: #fff;
            border-radius: 32px;
            box-shadow: var(--shadow-lg);
        }

        .cta-card h2 {
            font-size: clamp(30px, 4vw, 42px);
            margin-bottom: 12px;
        }

        .cta-card p {
            color: rgba(255, 255, 255, 0.9);
        }

        .cta-side {
            display: grid;
            gap: 14px;
        }

        .cta-mini {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 22px;
            padding: 18px 20px;
        }

        .cta-mini strong {
            display: block;
            margin-bottom: 6px;
            font-size: 17px;
        }

        .footer {
            background: #102839;
            color: rgba(255, 255, 255, 0.92);
            padding: 64px 0 28px;
        }

        .footer-grid {
            grid-template-columns: 1.75fr 0.85fr 0.9fr 0.95fr 0.8fr;
            margin-bottom: 28px;
            gap: 14px;
        }

        .footer h4 {
            margin-bottom: 16px;
            font-size: 18px;
        }

        .footer-brand-title {
            white-space: nowrap;
            font-size: 17px;
            letter-spacing: 0.01em;
        }

        .footer-nav-column {
            padding-left: 14px;
        }

.footer-links {
            display: grid;
            gap: 10px;
        }

        .footer-qrcode {
            display: inline-flex;
            flex-direction: column;
            gap: 10px;
            align-items: flex-start;
        }

        .footer-qrcode-wrap {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-qrcode-wrap h4 {
            margin-bottom: 16px;
        }

        .footer-qrcode img {
            width: 112px;
            height: 112px;
            object-fit: cover;
            border-radius: 14px;
            background: #fff;
            padding: 6px;
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
        }

        .footer-qrcode span {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.72);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            color: rgba(255, 255, 255, 0.62);
            font-size: 14px;
            display: flex;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
        }

        .footer-bottom a {
            transition: color 0.2s ease;
        }

        .footer-bottom a:hover {
            color: #1d5f95;
        }

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

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
