/* roulang page: index */
:root {
            --primary: #1e56d6;
            --primary-dark: #163f9e;
            --primary-light: #e8efff;
            --accent: #3aa57c;
            --bg: #f4f7fb;
            --bg-white: #ffffff;
            --text: #1a2b3c;
            --text-weak: #5a7184;
            --border: #e3e9f0;
            --radius: 14px;
            --radius-sm: 8px;
            --shadow: 0 4px 20px rgba(26, 43, 60, 0.06);
            --shadow-hover: 0 10px 36px rgba(26, 43, 60, 0.12);
            --transition: all 0.3s ease;
            --sidebar-w: 232px;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            display: block;
        }
        ul {
            list-style: none;
        }
        button,
        input {
            font-family: inherit;
            border: none;
            outline: none;
            background: none;
        }
        .layout {
            display: flex;
            min-height: 100vh;
        }
        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            width: var(--sidebar-w);
            height: 100vh;
            background: var(--bg-white);
            border-right: 1px solid var(--border);
            padding: 32px 24px;
            display: flex;
            flex-direction: column;
            z-index: 200;
            transition: var(--transition);
        }
        .sidebar-logo {
            padding-bottom: 28px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 24px;
        }
        .sidebar-logo a {
            font-size: 17px;
            font-weight: 800;
            line-height: 1.5;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar-logo i {
            color: var(--primary);
            font-size: 20px;
        }
        .sidebar-nav {
            flex: 1;
        }
        .sidebar-nav ul li {
            margin-bottom: 4px;
        }
        .sidebar-nav ul li a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-weight: 500;
            color: var(--text-weak);
        }
        .sidebar-nav ul li a i {
            width: 18px;
            text-align: center;
            font-size: 15px;
        }
        .sidebar-nav ul li a:hover {
            background: var(--primary-light);
            color: var(--primary);
        }
        .sidebar-nav ul li a.active {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            box-shadow: 0 4px 14px rgba(30, 86, 214, 0.3);
        }
        .sidebar-footer {
            padding-top: 20px;
            border-top: 1px solid var(--border);
            font-size: 13px;
            color: var(--text-weak);
            line-height: 1.6;
            text-align: center;
        }
        .sidebar-footer i {
            color: var(--accent);
            margin-right: 4px;
        }
        .main-area {
            flex: 1;
            margin-left: var(--sidebar-w);
            min-width: 0;
            display: flex;
            flex-direction: column;
        }
        .mobile-header {
            display: none;
            position: sticky;
            top: 0;
            z-index: 180;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--border);
            padding: 14px 20px;
            align-items: center;
            justify-content: space-between;
        }
        .mobile-header .logo {
            font-weight: 800;
            font-size: 15px;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .mobile-header .logo i {
            color: var(--primary);
        }
        .menu-toggle {
            font-size: 20px;
            color: var(--text);
            cursor: pointer;
            padding: 6px;
            border-radius: 6px;
            transition: var(--transition);
        }
        .menu-toggle:hover {
            background: var(--primary-light);
        }
        .mobile-nav-panel {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 260px;
            height: 100vh;
            background: var(--bg-white);
            z-index: 300;
            padding: 28px 22px;
            transform: translateX(-100%);
            transition: transform 0.35s ease;
            box-shadow: 4px 0 24px rgba(0, 0, 0, 0.08);
            overflow-y: auto;
        }
        .mobile-nav-panel.open {
            transform: translateX(0);
        }
        .mobile-nav-panel .m-logo {
            font-size: 16px;
            font-weight: 800;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text);
        }
        .mobile-nav-panel .m-logo i {
            color: var(--primary);
        }
        .mobile-nav-panel ul li a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 14px;
            border-radius: var(--radius-sm);
            font-size: 15px;
            color: var(--text-weak);
        }
        .mobile-nav-panel ul li a:hover,
        .mobile-nav-panel ul li a.active {
            background: var(--primary-light);
            color: var(--primary);
            font-weight: 600;
        }
        .nav-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(15, 25, 40, 0.5);
            z-index: 280;
        }
        .nav-overlay.show {
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }
        .hero {
            position: relative;
            background: linear-gradient(135deg, rgba(10, 32, 80, 0.92) 0%, rgba(22, 60, 130, 0.86) 60%, rgba(30, 86, 214, 0.78) 100%), url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            padding: 100px 0 90px;
            color: #fff;
            overflow: hidden;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -60px;
            right: -40px;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
        }
        .hero .hero-inner {
            position: relative;
            z-index: 2;
            max-width: 860px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 30px;
            padding: 6px 16px;
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 22px;
            backdrop-filter: blur(4px);
            color: #eaf0ff;
        }
        .hero-badge i {
            color: #ffd76e;
        }
        .hero h1 {
            font-size: 38px;
            font-weight: 800;
            line-height: 1.35;
            margin-bottom: 18px;
            letter-spacing: 0.5px;
        }
        .hero h1 span {
            color: #ffd76e;
        }
        .hero-desc {
            font-size: 16px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            max-width: 680px;
            margin-bottom: 30px;
        }
        .hero-benefits {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 26px;
        }
        .hero-benefits .benefit-item {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 30px;
            padding: 8px 18px;
            font-size: 14px;
            border: 1px solid rgba(255, 255, 255, 0.18);
        }
        .hero-benefits .benefit-item i {
            color: #ffd76e;
        }
        .hero-eligibility {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.75);
            background: rgba(0, 0, 0, 0.2);
            border-radius: var(--radius-sm);
            padding: 10px 18px;
            margin-bottom: 28px;
            display: inline-block;
            line-height: 1.5;
        }
        .hero-eligibility i {
            margin-right: 6px;
            color: #ffd76e;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
        }
        .btn-primary {
            background: #ffd76e;
            color: #1a2b3c;
            border-color: #ffd76e;
            box-shadow: 0 6px 20px rgba(255, 215, 110, 0.35);
        }
        .btn-primary:hover {
            background: #ffc94a;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 215, 110, 0.4);
        }
        .btn-outline-light {
            background: transparent;
            color: #fff;
            border-color: rgba(255, 255, 255, 0.5);
        }
        .btn-outline-light:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.12);
        }
        .hero-data {
            display: flex;
            gap: 32px;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }
        .hero-data .data-item {
            text-align: center;
        }
        .hero-data .data-item .num {
            font-size: 28px;
            font-weight: 800;
            color: #ffd76e;
        }
        .hero-data .data-item .label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 2px;
        }
        .section {
            padding: 70px 0;
        }
        .section-alt {
            background: var(--bg-white);
        }
        .section-header {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 48px;
        }
        .section-header .tag {
            display: inline-block;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 30px;
            padding: 4px 14px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 14px;
            letter-spacing: 1px;
        }
        .section-header h2 {
            font-size: 30px;
            font-weight: 800;
            line-height: 1.4;
            margin-bottom: 12px;
            color: var(--text);
        }
        .section-header p {
            color: var(--text-weak);
            font-size: 15px;
            line-height: 1.7;
        }
        .latest-list {
            max-width: 900px;
            margin: 0 auto;
            background: var(--bg-white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
        }
        .latest-list .list-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 18px 24px;
            border-bottom: 1px solid var(--border);
            transition: var(--transition);
            cursor: pointer;
        }
        .latest-list .list-item:last-child {
            border-bottom: none;
        }
        .latest-list .list-item:hover {
            background: var(--primary-light);
        }
        .latest-list .list-item .date {
            font-size: 13px;
            color: var(--text-weak);
            white-space: nowrap;
            min-width: 90px;
            font-variant-numeric: tabular-nums;
        }
        .latest-list .list-item .title {
            flex: 1;
            font-size: 15px;
            font-weight: 500;
            color: var(--text);
            line-height: 1.5;
        }
        .latest-list .list-item .badge {
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 20px;
            padding: 3px 12px;
            font-size: 12px;
            font-weight: 500;
        }
        .latest-list .list-item .arrow {
            color: var(--text-weak);
            font-size: 14px;
            opacity: 0;
            transform: translateX(-6px);
            transition: var(--transition);
        }
        .latest-list .list-item:hover .arrow {
            opacity: 1;
            transform: translateX(0);
            color: var(--primary);
        }
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            max-width: 1080px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 26px 28px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        .faq-item:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .faq-item h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 10px;
            display: flex;
            gap: 10px;
            align-items: flex-start;
            color: var(--text);
        }
        .faq-item h3 i {
            color: var(--primary);
            margin-top: 3px;
            font-size: 15px;
        }
        .faq-item p {
            font-size: 14px;
            color: var(--text-weak);
            line-height: 1.8;
            padding-left: 25px;
        }
        .news-wrap {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 36px;
            max-width: 1180px;
            margin: 0 auto;
        }
        .news-list .news-card {
            display: flex;
            gap: 18px;
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 20px;
            margin-bottom: 18px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: var(--transition);
            cursor: pointer;
        }
        .news-list .news-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .news-card .cover {
            width: 140px;
            height: 96px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
            background: var(--primary-light);
        }
        .news-card .cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .news-card .info {
            flex: 1;
        }
        .news-card .info h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.5;
            margin-bottom: 6px;
        }
        .news-card .info h4:hover {
            color: var(--primary);
        }
        .news-card .info p {
            font-size: 13px;
            color: var(--text-weak);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-card .info .meta {
            font-size: 12px;
            color: var(--text-weak);
            margin-top: 8px;
            display: flex;
            gap: 14px;
        }
        .news-card .info .meta i {
            margin-right: 3px;
            font-size: 12px;
            color: var(--primary);
        }
        .recommend-panel {
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            height: fit-content;
        }
        .recommend-panel h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--primary);
            display: inline-block;
        }
        .recommend-panel .rec-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 12px 0;
            border-bottom: 1px dashed var(--border);
            cursor: pointer;
        }
        .recommend-panel .rec-item:last-child {
            border-bottom: none;
        }
        .recommend-panel .rec-item .rank {
            background: var(--primary-light);
            color: var(--primary);
            font-size: 12px;
            font-weight: 800;
            width: 26px;
            height: 26px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .recommend-panel .rec-item .rank.top {
            background: var(--primary);
            color: #fff;
        }
        .recommend-panel .rec-item .content {
            flex: 1;
        }
        .recommend-panel .rec-item .content p {
            font-size: 14px;
            font-weight: 500;
            color: var(--text);
            line-height: 1.5;
        }
        .recommend-panel .rec-item .content p:hover {
            color: var(--primary);
        }
        .recommend-panel .rec-item .content .score {
            font-size: 12px;
            color: var(--accent);
            margin-top: 4px;
        }
        .recommend-panel .rec-item .content .score i {
            margin-right: 3px;
        }
        .safety-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .safety-item {
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 28px 22px;
            text-align: center;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        .safety-item:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .safety-item .icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin: 0 auto 16px;
        }
        .safety-item h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .safety-item p {
            font-size: 13px;
            color: var(--text-weak);
            line-height: 1.6;
        }
        .reviews-wrap {
            max-width: 1080px;
            margin: 0 auto;
        }
        .reviews-bubbles {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .review-bubble {
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 22px 24px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            position: relative;
            transition: var(--transition);
        }
        .review-bubble::before {
            content: '\f10d';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 18px;
            right: 20px;
            font-size: 22px;
            color: var(--primary-light);
        }
        .review-bubble:hover {
            box-shadow: var(--shadow-hover);
        }
        .review-bubble p {
            font-size: 14px;
            color: var(--text);
            line-height: 1.7;
            margin-bottom: 14px;
            padding-right: 20px;
        }
        .review-bubble .user {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .review-bubble .user .avatar {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
        }
        .review-bubble .user .name {
            font-size: 13px;
            font-weight: 600;
            color: var(--text);
        }
        .review-bubble .user .date {
            font-size: 12px;
            color: var(--text-weak);
            margin-left: auto;
        }
        .app-section {
            background: linear-gradient(135deg, #0b1e42 0%, #163f9e 80%, #1e56d6 100%);
            color: #fff;
            position: relative;
            overflow: hidden;
            padding: 80px 0;
        }
        .app-section::after {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
        }
        .app-inner {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        .app-inner h2 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 16px;
        }
        .app-inner h2 span {
            color: #ffd76e;
        }
        .app-inner p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.85);
            max-width: 620px;
            margin: 0 auto 32px;
            line-height: 1.8;
        }
        .app-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-light {
            background: #fff;
            color: var(--primary);
            border-color: #fff;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }
        .btn-light:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
        }
        .btn-outline-white {
            background: transparent;
            color: #fff;
            border-color: rgba(255, 255, 255, 0.6);
        }
        .btn-outline-white:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
        }
        .cta-section {
            background: var(--primary-light);
            padding: 70px 0;
        }
        .cta-inner {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }
        .cta-inner h2 {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 14px;
            color: var(--text);
        }
        .cta-inner p {
            color: var(--text-weak);
            font-size: 15px;
            margin-bottom: 28px;
            line-height: 1.7;
        }
        .cta-inner .btn-primary {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            box-shadow: 0 6px 20px rgba(30, 86, 214, 0.25);
            font-size: 16px;
            padding: 14px 36px;
        }
        .cta-inner .btn-primary:hover {
            background: var(--primary-dark);
            box-shadow: 0 10px 30px rgba(30, 86, 214, 0.35);
        }
        .footer {
            background: #0e1a2e;
            color: rgba(255, 255, 255, 0.7);
            padding: 48px 0 24px;
        }
        .footer-inner {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 32px;
            text-align: center;
        }
        .footer-logo {
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .footer-logo i {
            color: #ffd76e;
        }
        .footer-desc {
            font-size: 14px;
            max-width: 560px;
            margin: 0 auto 24px;
            line-height: 1.7;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 28px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }
        .footer-links a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }
        .footer-links a:hover {
            color: #ffd76e;
        }
        .footer-copy {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 20px;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            box-shadow: 0 6px 20px rgba(30, 86, 214, 0.35);
            z-index: 150;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }
        .float-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            border-top: 1px solid var(--border);
            padding: 12px 20px;
            z-index: 160;
            box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.04);
            align-items: center;
            justify-content: space-between;
            gap: 14px;
        }
        .float-bar .txt {
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
            flex: 1;
            min-width: 0;
        }
        .float-bar .txt small {
            font-size: 12px;
            color: var(--text-weak);
            font-weight: 400;
            display: block;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .float-bar .btn-primary {
            padding: 9px 22px;
            font-size: 14px;
            white-space: nowrap;
        }
        @media (max-width: 1024px) {
            :root {
                --sidebar-w: 200px;
            }
            .sidebar {
                padding: 24px 18px;
            }
            .container {
                padding: 0 24px;
            }
            .hero {
                padding: 80px 0;
            }
            .hero h1 {
                font-size: 30px;
            }
            .safety-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .news-wrap {
                grid-template-columns: 1fr;
            }
            .recommend-panel {
                margin-top: 0;
            }
        }
        @media (max-width: 768px) {
            .sidebar {
                display: none;
            }
            .main-area {
                margin-left: 0;
            }
            .mobile-header {
                display: flex;
            }
            .hero {
                padding: 64px 0;
            }
            .hero h1 {
                font-size: 26px;
            }
            .hero-desc {
                font-size: 15px;
            }
            .hero-data {
                gap: 20px;
                flex-wrap: wrap;
            }
            .section {
                padding: 50px 0;
            }
            .section-header h2 {
                font-size: 24px;
            }
            .faq-grid {
                grid-template-columns: 1fr;
            }
            .reviews-bubbles {
                grid-template-columns: 1fr;
            }
            .news-card {
                flex-direction: column;
            }
            .news-card .cover {
                width: 100%;
                height: 140px;
            }
            .float-bar {
                display: flex;
            }
            .container {
                padding: 0 18px;
            }
        }
        @media (max-width: 520px) {
            .hero-benefits {
                flex-direction: column;
                align-items: flex-start;
            }
            .hero-actions .btn {
                width: 100%;
            }
            .safety-grid {
                grid-template-columns: 1fr;
            }
            .footer-links {
                gap: 16px;
            }
            .float-bar .txt small {
                display: none;
            }
        }
