/* ==========================================================================
   朗阅诺英语 · 官网首页样式 (lyn-landing.css) — 简洁版
   --------------------------------------------------------------------------
   Author: lyn.11keji.com landing
   Stack : Bootstrap 3.4.1 + Font Awesome 4.7.0
   ========================================================================== */

/* ---------- 设计变量 ---------- */
:root {
    --lyn-primary:        #0c2461;
    --lyn-primary-dark:   #08204f;
    --lyn-primary-light:  #1e3799;
    --lyn-accent:         #f6b93b;
    --lyn-accent-soft:    #f7d794;
    --lyn-text:           #2c3e50;
    --lyn-text-muted:     #718093;
    --lyn-bg:             #ffffff;
    --lyn-bg-soft:        #f5f7fb;
    --lyn-border:         #e6ebf2;
    --lyn-radius:         10px;
    --lyn-radius-lg:      16px;
    --lyn-shadow-sm:      0 6px 18px rgba(12, 36, 97, 0.08);
    --lyn-shadow:         0 14px 40px rgba(12, 36, 97, 0.10);
    --lyn-shadow-lg:      0 24px 60px rgba(12, 36, 97, 0.18);
    --lyn-transition:     all .35s cubic-bezier(.25,.8,.25,1);
}

/* ---------- 全局基础 ---------- */
html, body {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}
* { box-sizing: border-box; }

body {
    font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB",
                 "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    color: var(--lyn-text);
    margin: 0;
    background: var(--lyn-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--lyn-primary);
    text-decoration: none;
    transition: var(--lyn-transition);
}
a:hover { color: var(--lyn-accent); text-decoration: none; }

img { max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: .5px;
    color: var(--lyn-primary);
    margin-top: 0;
}

p { margin: 0 0 14px; color: var(--lyn-text); }

.container { max-width: 1100px; }

/* ---------- 公共区段 ---------- */
.section { padding: 80px 0; }
.section--soft { background: var(--lyn-bg-soft); }

.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title .eyebrow {
    display: inline-block;
    color: var(--lyn-accent);
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}
.section-title h2 {
    font-size: 32px;
    margin: 0 0 12px;
    font-weight: 700;
}
.section-title .lead {
    color: var(--lyn-text-muted);
    font-size: 15.5px;
    max-width: 640px;
    margin: 0 auto;
}
.section-title .underline {
    display: block;
    width: 56px;
    height: 4px;
    background: var(--lyn-accent);
    border-radius: 2px;
    margin: 16px auto 0;
}

/* ---------- 顶部导航 ---------- */
.lyn-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 20px rgba(12, 36, 97, 0.06);
    padding: 12px 0;
    backdrop-filter: blur(8px);
}
.lyn-navbar .brand {
    display: flex;
    align-items: center;
    color: var(--lyn-primary);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}
.lyn-navbar .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--lyn-accent) 0%, #e58e26 100%);
    color: var(--lyn-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(246, 185, 59, 0.35);
}
.lyn-navbar .brand-sub {
    display: block;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--lyn-text-muted);
    margin-top: 2px;
}

.lyn-navbar .nav-links {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.lyn-navbar .nav-links li { margin-left: 28px; }
.lyn-navbar .nav-links a {
    color: var(--lyn-text);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
}
.lyn-navbar .nav-links a::after {
    content: '';
    position: absolute;
    left: 50%; bottom: 0;
    width: 0;
    height: 2px;
    background: var(--lyn-accent);
    transition: var(--lyn-transition);
    transform: translateX(-50%);
}
.lyn-navbar .nav-links a:hover { color: var(--lyn-primary); }
.lyn-navbar .nav-links a:hover::after { width: 100%; }

.btn-lyn {
    display: inline-block;
    background: var(--lyn-accent);
    color: var(--lyn-primary) !important;
    padding: 9px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin-left: 24px;
    box-shadow: 0 6px 16px rgba(246, 185, 59, 0.35);
}
.btn-lyn:hover {
    background: var(--lyn-primary);
    color: var(--lyn-accent) !important;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--lyn-primary);
    font-size: 22px;
    cursor: pointer;
    padding: 6px 10px;
}

/* ---------- 首屏 ---------- */
.lyn-hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    color: #fff;
    background:
        radial-gradient(ellipse at top right, rgba(246, 185, 59, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at bottom left, rgba(30, 55, 153, 0.55) 0%, transparent 60%),
        linear-gradient(135deg, #0c2461 0%, #1e3799 60%, #0c2461 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    pointer-events: none;
}
.hero-blob.blob-1 { top: -120px; right: -100px; width: 380px; height: 380px; background: var(--lyn-accent); }
.hero-blob.blob-2 { bottom: -160px; left: -120px; width: 420px; height: 420px; background: #4a69bd; }

.hero-grid {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}
.hero-text { flex: 1 1 480px; }
.hero-art  { flex: 1 1 320px; text-align: center; position: relative; }

.lyn-hero .hero-tag {
    display: inline-block;
    background: rgba(246, 185, 59, 0.15);
    color: var(--lyn-accent);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 22px;
    border: 1px solid rgba(246, 185, 59, 0.35);
}
.lyn-hero h1 {
    color: #fff;
    font-size: 48px;
    line-height: 1.22;
    font-weight: 800;
    margin-bottom: 22px;
    letter-spacing: 1px;
}
.lyn-hero h1 .accent { color: var(--lyn-accent); }
.lyn-hero .hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin-bottom: 34px;
    line-height: 1.85;
}

.lyn-hero .hero-actions .btn {
    margin-right: 14px;
    margin-bottom: 10px;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--lyn-transition);
    display: inline-flex;
    align-items: center;
}
.btn-hero-primary {
    background: var(--lyn-accent);
    color: var(--lyn-primary) !important;
    border: 2px solid var(--lyn-accent);
    box-shadow: 0 8px 22px rgba(246, 185, 59, 0.4);
}
.btn-hero-primary:hover {
    background: #fff;
    border-color: #fff;
    transform: translateY(-3px);
}
.btn-hero-ghost {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.45);
}
.btn-hero-ghost:hover {
    background: #fff;
    color: var(--lyn-primary) !important;
    border-color: #fff;
    transform: translateY(-3px);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 16px;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.92);
    font-size: 13px;
}
.hero-trust-item i {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(246, 185, 59, 0.2);
    color: var(--lyn-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.hero-trust-item strong {
    display: block;
    font-size: 16px;
    color: #fff;
}
.hero-trust-item span {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
}

/* 吉祥物 */
.hero-mascot { position: relative; display: inline-block; text-align: center; }
.mascot-img {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
    animation: mascotBob 4s ease-in-out infinite;
    display: inline-block;
}
@keyframes mascotBob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
.mascot-slogan {
    margin: 18px auto 0;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.7;
    max-width: 320px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.mascot-slogan::before,
.mascot-slogan::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--lyn-accent);
    vertical-align: middle;
    margin: 0 12px;
    opacity: 0.8;
}
.float-bubble {
    position: absolute;
    background: rgba(255,255,255,0.95);
    color: var(--lyn-primary);
    border-radius: 22px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 10px 26px rgba(0,0,0,0.18);
    display: inline-flex;
    align-items: center;
}
.float-bubble i { color: var(--lyn-accent); font-size: 14px; }
.float-bubble.b1 { top: 10%;  left: -2%;  animation: floatA 5s ease-in-out infinite; }
.float-bubble.b2 { bottom: 14%; right: -4%; animation: floatB 6s ease-in-out infinite; }
.float-bubble.b3 { top: 50%; left: -8%; animation: floatA 7s ease-in-out infinite reverse; }
@keyframes floatA { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }
@keyframes floatB { 0%,100%{transform:translateY(0);} 50%{transform:translateY(8px);} }

/* ---------- 简介 ---------- */
.lyn-about-simple {
    text-align: center;
}
.about-simple-inner {
    max-width: 760px;
    margin: 0 auto;
}
.about-simple-inner .eyebrow {
    color: var(--lyn-accent);
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}
.about-simple-inner h2 {
    font-size: 30px;
    margin: 0 0 16px;
}
.about-simple-inner p {
    color: var(--lyn-text);
    font-size: 16px;
    line-height: 1.95;
    margin: 0;
}

/* ---------- 五大核心模块 ---------- */
.lyn-modules {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.module-card {
    background: #fff;
    border-radius: var(--lyn-radius-lg);
    overflow: hidden;
    box-shadow: var(--lyn-shadow-sm);
    border: 1px solid var(--lyn-border);
    transition: var(--lyn-transition);
    display: flex;
    flex-direction: column;
}
.module-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lyn-shadow);
}
.module-card .m-cover {
    padding: 26px 18px;
    color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.module-card .m-cover i {
    position: absolute;
    right: -10px;
    bottom: -20px;
    font-size: 110px;
    color: rgba(255,255,255,0.12);
}
.module-card .m-cover .m-en {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 6px;
    font-weight: 600;
}
.module-card .m-cover h3 {
    color: #fff;
    font-size: 22px;
    margin: 0;
    position: relative;
    z-index: 2;
}
.module-card .m-body {
    padding: 20px 18px 24px;
    text-align: center;
}
.module-card .m-body p {
    color: var(--lyn-text-muted);
    font-size: 13.5px;
    line-height: 1.7;
    margin: 0;
}

/* 每个模块独立配色 */
.module-card.module-1 .m-cover { background: linear-gradient(135deg, #f6b93b 0%, #e58e26 100%); }
.module-card.module-2 .m-cover { background: linear-gradient(135deg, #ff7eb3 0%, #d96590 100%); }
.module-card.module-3 .m-cover { background: linear-gradient(135deg, #ff9f43 0%, #ee5a24 100%); }
.module-card.module-4 .m-cover { background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%); }
.module-card.module-5 .m-cover { background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%); }

/* ---------- 下载区 ---------- */
.lyn-app-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}
.app-qr-wrap {
    flex: 0 0 auto;
    text-align: center;
}
.app-buttons-wrap {
    flex: 1 1 360px;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.app-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: var(--lyn-transition);
    border: 1px solid transparent;
    box-sizing: border-box;
}
.app-btn:hover { transform: translateY(-3px); color: #fff !important; }
.app-btn .app-btn-icon {
    flex: 0 0 36px;
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
}
.app-btn .app-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
    flex: 1;
}
.app-btn .app-btn-text .small { font-size: 11px; font-weight: 400; opacity: .85; letter-spacing: 1px; }
.app-btn .app-btn-text .big   { font-size: 16px; font-weight: 700; margin-top: 2px; }

/* 三端配色 */
.app-btn.android {
    background: linear-gradient(135deg, #0f9d58 0%, #0b8043 100%);
}
.app-btn.android:hover { background: linear-gradient(135deg, #11b367 0%, #0f9d58 100%); }
.app-btn.android .app-btn-icon { color: #a4d6a4; }

.app-btn.ios {
    background: linear-gradient(135deg, #1d1d1f 0%, #000000 100%);
}
.app-btn.ios:hover { background: linear-gradient(135deg, #2c2c2e 0%, #1d1d1f 100%); }
.app-btn.ios .app-btn-icon { color: #fff; }

.app-btn.harmony {
    background: linear-gradient(135deg, #cf0a2c 0%, #a50010 100%);
}
.app-btn.harmony:hover { background: linear-gradient(135deg, #e6123a 0%, #cf0a2c 100%); }
.app-btn.harmony .app-btn-icon svg { width: 24px; height: 24px; fill: #fff; }

.lyn-app-privacy {
    font-size: 13px;
    color: var(--lyn-text-muted);
    margin: 6px 0 0;
    line-height: 1.8;
}
.lyn-app-privacy a {
    color: var(--lyn-primary);
    border-bottom: 1px solid rgba(12, 36, 97, 0.2);
    padding-bottom: 1px;
}
.lyn-app-privacy a:hover {
    color: var(--lyn-accent);
    border-bottom-color: var(--lyn-accent);
}

/* 手机预览 */
.phone-mock {
    width: 220px;
    height: 360px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--lyn-primary) 0%, var(--lyn-primary-light) 100%);
    border-radius: 32px;
    padding: 14px;
    box-shadow: var(--lyn-shadow-lg);
    position: relative;
}
.phone-mock::before {
    content: '';
    position: absolute;
    top: 14px; left: 50%;
    transform: translateX(-50%);
    width: 70px; height: 6px;
    background: rgba(0,0,0,0.4);
    border-radius: 3px;
}
.phone-mock .screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 18px 22px;
}
.phone-mock .app-icon {
    width: 64px; height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--lyn-accent) 0%, #e58e26 100%);
    color: var(--lyn-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 14px;
    box-shadow: 0 8px 20px rgba(246, 185, 59, 0.4);
}
.phone-mock .app-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--lyn-primary);
    margin-bottom: 4px;
}
.phone-mock .app-sub {
    font-size: 11px;
    color: var(--lyn-text-muted);
    letter-spacing: 2px;
    margin-bottom: 18px;
}
.phone-mock .qr-mini {
    width: 100px; height: 100px;
    background:
        linear-gradient(45deg, var(--lyn-primary) 25%, transparent 25%) 0 0/12px 12px,
        linear-gradient(-45deg, var(--lyn-primary) 25%, transparent 25%) 0 0/12px 12px,
        linear-gradient(45deg, transparent 75%, var(--lyn-primary) 75%) 6px 6px/12px 12px,
        linear-gradient(-45deg, transparent 75%, var(--lyn-primary) 75%) 6px 6px/12px 12px,
        #fff;
    border: 4px solid #fff;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(12, 36, 97, 0.1);
}
.qr-tip {
    margin-top: 14px;
    font-size: 13px;
    color: var(--lyn-text-muted);
}

/* ---------- 页脚 ---------- */
.lyn-footer {
    background: #07183f;
    color: rgba(255,255,255,0.65);
    padding: 50px 0 0;
}
.footer-simple {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 36px;
}
.f-brand .brand {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}
.f-brand .brand-mark {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--lyn-accent) 0%, #e58e26 100%);
    color: var(--lyn-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: 800;
    font-size: 18px;
}
.f-brand p {
    color: rgba(255,255,255,0.55);
    margin: 8px 0 0;
    font-size: 13px;
}
.f-contact-list,
.f-quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.f-contact-list li,
.f-quick-links li {
    margin-bottom: 8px;
    font-size: 14px;
}
.f-contact-list li i {
    color: var(--lyn-accent);
    margin-right: 8px;
    width: 16px;
}
.f-quick-links a {
    color: rgba(255,255,255,0.65);
    transition: var(--lyn-transition);
}
.f-quick-links a:hover {
    color: var(--lyn-accent);
    padding-left: 4px;
}
.lyn-footer .copyright {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.lyn-footer .copyright a { color: rgba(255,255,255,0.5); }
.lyn-footer .copyright a:hover { color: var(--lyn-accent); }

/* ---------- 法律页面(隐私/用户协议) ---------- */
.legal-page {
    padding: 120px 0 80px;
    background: var(--lyn-bg-soft);
    min-height: 100vh;
}
.legal-card {
    background: #fff;
    border-radius: var(--lyn-radius-lg);
    box-shadow: var(--lyn-shadow-sm);
    padding: 50px 56px;
    max-width: 920px;
    margin: 0 auto;
}
.legal-card .legal-eyebrow {
    color: var(--lyn-accent);
    font-weight: 600;
    letter-spacing: 4px;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.legal-card h1 {
    font-size: 30px;
    margin: 0 0 8px;
}
.legal-card .update {
    color: var(--lyn-text-muted);
    font-size: 13px;
    margin-bottom: 32px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--lyn-border);
}
.legal-card h2 {
    font-size: 19px;
    margin: 30px 0 12px;
    color: var(--lyn-primary);
}
.legal-card h3 {
    font-size: 16px;
    margin: 20px 0 8px;
    color: var(--lyn-primary);
}
.legal-card p,
.legal-card li {
    font-size: 14.5px;
    line-height: 1.9;
    color: var(--lyn-text);
}
.legal-card ul,
.legal-card ol {
    padding-left: 24px;
    margin-bottom: 14px;
}
.legal-card li { margin-bottom: 6px; }
.legal-card .back-home {
    display: inline-block;
    margin-top: 32px;
    padding: 10px 26px;
    background: var(--lyn-primary);
    color: #fff !important;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--lyn-transition);
}
.legal-card .back-home:hover {
    background: var(--lyn-accent);
    color: var(--lyn-primary) !important;
    transform: translateY(-2px);
}

/* ---------- 响应式 ---------- */
@media (max-width: 991px) {
    .lyn-hero h1 { font-size: 38px; }
    .lyn-modules { grid-template-columns: repeat(3, 1fr); }
    .hero-grid { gap: 40px; }
    .section { padding: 60px 0; }
    .section-title h2 { font-size: 26px; }
}

@media (max-width: 767px) {
    .lyn-navbar .nav-links { display: none; }
    .lyn-navbar .nav-links.is-open {
        display: flex;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(7, 24, 63, 0.97);
        flex-direction: column;
        padding: 14px 20px;
        margin: 0;
    }
    .lyn-navbar .nav-links.is-open li { margin: 8px 0; }
    .lyn-navbar .nav-links.is-open a { color: #fff; }
    .lyn-navbar .nav-toggle { display: inline-block; }

    .lyn-hero { padding: 110px 0 60px; min-height: auto; }
    .lyn-hero h1 { font-size: 28px; }
    .lyn-hero .hero-sub { font-size: 15px; }
    .hero-grid { gap: 30px; text-align: center; }
    .hero-text { text-align: center; }
    .hero-trust { justify-content: center; }
    .hero-art { order: -1; }
    .mascot-img { width: 220px; }
    .float-bubble { display: none; }

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

    .lyn-app-simple { gap: 40px; }
    .app-buttons-wrap { max-width: 100%; }
    .section { padding: 50px 0; }
    .section-title h2 { font-size: 24px; }
    .about-simple-inner h2 { font-size: 24px; }

    .footer-simple { flex-direction: column; gap: 24px; }
    .legal-card { padding: 30px 22px; }
    .legal-card h1 { font-size: 24px; }
}
