        :root {
            --green: #29CC77;
            --green-dark: #1fa85f;
            --navy: #1A237E;
            --navy-mid: #283593;
            --orange: #FF5722;
            --purple: #6200EE;
            --purple-light: #7C3AED;
            --gray: #C6C6C6;
            --gray-light: #f0f0f6;
            --white: #ffffff;
            --text-dark: #1A237E;
            --text-mid: #3d4a8f;
            --gradient-hero: linear-gradient(135deg, #29CC77 0%, #1A237E 55%);
            --gradient-soft: linear-gradient(135deg, rgba(255, 87, 34, 0.08) 0%, rgba(98, 0, 238, 0.08) 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            color: var(--text-dark);
            background: #fff;
            overflow-x: hidden;
        }

        /* ── NAV ── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(26, 35, 126, 0.08);
            padding: 0 5%;
            height: 68px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: box-shadow 0.3s;
        }

        nav.scrolled {
            box-shadow: 0 4px 24px rgba(26, 35, 126, 0.12);
        }

        .nav-logo {
            font-family: 'Nunito', sans-serif;
            font-size: 1.7rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            text-decoration: none;
        }

        .nav-logo span.vende {
            color: var(--navy);
        }

        .nav-logo span.mas {
            color: var(--green);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--navy);
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--green);
        }

        .nav-cta {
            background: var(--green);
            color: #fff !important;
            padding: 0.55rem 1.4rem;
            border-radius: 50px;
            font-weight: 700;
            transition: background 0.2s, transform 0.2s !important;
        }

        .nav-cta:hover {
            background: var(--green-dark) !important;
            transform: scale(1.04);
        }

        /* ── HERO ── */
        .hero {
            background: var(--gradient-hero);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 120px 5% 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: #fff;
            padding: 0.4rem 1.1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(8px);
            animation: fadeUp 0.6s ease both;
        }

        .hero-badge .dot {
            width: 8px;
            height: 8px;
            background: var(--green);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.6;
                transform: scale(1.3);
            }
        }

        .hero h1 {
            font-family: 'Nunito', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4.2rem);
            font-weight: 900;
            color: #fff;
            line-height: 1.1;
            max-width: 820px;
            margin-bottom: 1.3rem;
            animation: fadeUp 0.7s 0.1s ease both;
        }

        .hero h1 em {
            font-style: normal;
            background: linear-gradient(90deg, #29CC77, #a0ffd0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: rgba(255, 255, 255, 0.88);
            max-width: 560px;
            line-height: 1.6;
            margin-bottom: 2.5rem;
            animation: fadeUp 0.7s 0.2s ease both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeUp 0.7s 0.3s ease both;
        }

        .btn-primary {
            background: #fff;
            color: var(--navy);
            padding: 0.9rem 2.2rem;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1rem;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .btn-outline {
            background: transparent;
            color: #fff;
            padding: 0.9rem 2.2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            border: 2px solid rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: background 0.2s, border-color 0.2s;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
        }

        .hero-stats {
            margin-top: 4rem;
            display: flex;
            gap: 3rem;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeUp 0.7s 0.4s ease both;
        }

        .stat {
            text-align: center;
            color: #fff;
        }

        .stat-num {
            font-family: 'Nunito', sans-serif;
            font-size: 2.4rem;
            font-weight: 900;
            color: var(--green);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.75);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-top: 0.3rem;
            font-weight: 600;
        }

        /* ── SOCIAL PROOF BAR ── */
        .trust-bar {
            background: var(--navy);
            padding: 1rem 5%;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .trust-bar span {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        .trust-logos {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .trust-logo {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 0.4rem 0.9rem;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        /* ── SECTIONS ── */
        section {
            padding: 6rem 5%;
        }

        .section-tag {
            display: inline-block;
            background: rgba(41, 204, 119, 0.12);
            color: var(--green-dark);
            padding: 0.35rem 1rem;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        h2.section-title {
            font-family: 'Nunito', sans-serif;
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 900;
            color: var(--navy);
            line-height: 1.15;
            margin-bottom: 1rem;
        }

        h2.section-title em {
            font-style: normal;
            color: var(--green);
        }

        .section-subtitle {
            color: var(--text-mid);
            font-size: 1.05rem;
            max-width: 600px;
            line-height: 1.6;
        }

        /* ── FEATURES TABS ── */
        .features-section {
            background: var(--gray-light);
        }

        .features-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .features-header .section-subtitle {
            margin: 0 auto;
        }

        .tabs-nav {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .tab-btn {
            padding: 0.6rem 1.4rem;
            border-radius: 50px;
            border: 2px solid var(--gray);
            background: white;
            color: var(--text-mid);
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s;
            font-family: 'Outfit', sans-serif;
        }

        .tab-btn.active,
        .tab-btn:hover {
            background: var(--navy);
            border-color: var(--navy);
            color: white;
        }

        .tab-btn.active {
            background: var(--green);
            border-color: var(--green);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .tab-text h3 {
            font-family: 'Nunito', sans-serif;
            font-size: 1.9rem;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 0.8rem;
        }

        .tab-text p {
            color: var(--text-mid);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .feature-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
            margin-bottom: 1.8rem;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            font-size: 0.95rem;
            color: var(--text-dark);
            font-weight: 500;
        }

        .feature-list li::before {
            content: '✓';
            width: 22px;
            height: 22px;
            background: var(--green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 900;
            flex-shrink: 0;
        }

        .tab-visual {
            background: var(--gradient-hero);
            border-radius: 20px;
            aspect-ratio: 4/3;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(98, 0, 238, 0.25);
        }

        .tab-visual .mock-screen {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 14px;
            padding: 1.5rem;
            width: 80%;
            backdrop-filter: blur(10px);
        }

        .mock-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .mock-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .mock-title {
            font-family: 'Nunito', sans-serif;
            color: #fff;
            font-weight: 800;
            font-size: 1rem;
            margin-left: auto;
        }

        .mock-bars {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .mock-bar {
            height: 10px;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.3);
        }

        .mock-bar.green {
            background: var(--green);
            width: 75%;
        }

        .mock-bar.orange {
            background: var(--orange);
            width: 55%;
        }

        .mock-bar.purple {
            background: rgba(255, 255, 255, 0.5);
            width: 85%;
        }

        /* ── COMPARISON ── */
        .comparison-section {
            background: white;
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            max-width: 860px;
            margin: 3rem auto 0;
        }

        .comparison-card {
            border-radius: 20px;
            padding: 2rem;
        }

        .comparison-card.them {
            background: var(--gray-light);
            border: 2px solid var(--gray);
        }

        .comparison-card.us {
            background: var(--navy);
            border: 2px solid var(--green);
            box-shadow: 0 12px 48px rgba(26, 35, 126, 0.3);
        }

        .comparison-card h3 {
            font-family: 'Nunito', sans-serif;
            font-weight: 900;
            font-size: 1.15rem;
            margin-bottom: 1.2rem;
        }

        .comparison-card.them h3 {
            color: var(--text-mid);
        }

        .comparison-card.us h3 {
            color: var(--green);
        }

        .comp-row {
            display: flex;
            align-items: flex-start;
            gap: 0.7rem;
            padding: 0.6rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            font-size: 0.93rem;
        }

        .comparison-card.us .comp-row {
            border-color: rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.85);
        }

        .comp-row:last-child {
            border: none;
        }

        .comp-icon {
            font-size: 1rem;
            flex-shrink: 0;
            margin-top: 1px;
        }

        /* ── PRICING ── */
        .pricing-section {
            background: var(--gray-light);
            text-align: center;
        }

        .pricing-cards {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 3rem;
        }

        .price-card {
            background: white;
            border-radius: 24px;
            padding: 2.5rem 2rem;
            width: 280px;
            border: 2px solid transparent;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            text-align: left;
        }

        .price-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 60px rgba(26, 35, 126, 0.12);
        }

        .price-card.featured {
            background: var(--navy);
            border-color: var(--green);
            transform: scale(1.04);
            box-shadow: 0 20px 60px rgba(26, 35, 126, 0.3);
        }

        .price-card.featured:hover {
            transform: scale(1.04) translateY(-6px);
        }

        .badge-featured {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--green);
            color: white;
            font-size: 0.72rem;
            font-weight: 800;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            white-space: nowrap;
        }

        .plan-name {
            font-size: 0.82rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
            color: var(--text-mid);
        }

        .price-card.featured .plan-name {
            color: var(--green);
        }

        .plan-price {
            font-family: 'Nunito', sans-serif;
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--navy);
            line-height: 1;
            margin-bottom: 0.3rem;
        }

        .price-card.featured .plan-price {
            color: white;
        }

        .plan-period {
            font-size: 0.82rem;
            color: var(--text-mid);
            margin-bottom: 1.5rem;
        }

        .price-card.featured .plan-period {
            color: rgba(255, 255, 255, 0.6);
        }

        .plan-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            margin-bottom: 1.8rem;
        }

        .plan-features li {
            font-size: 0.88rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-dark);
        }

        .price-card.featured .plan-features li {
            color: rgba(255, 255, 255, 0.85);
        }

        .plan-features li::before {
            content: '✓';
            color: var(--green);
            font-weight: 900;
            font-size: 0.85rem;
        }

        .btn-plan {
            width: 100%;
            padding: 0.85rem;
            border-radius: 50px;
            border: none;
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-plan-outline {
            background: transparent;
            border: 2px solid var(--navy);
            color: var(--navy);
        }

        .btn-plan-outline:hover {
            background: var(--navy);
            color: white;
        }

        .btn-plan-solid {
            background: var(--green);
            color: white;
        }

        .btn-plan-solid:hover {
            background: var(--green-dark);
        }

        /* ── TESTIMONIALS ── */
        .testimonials-section {
            background: white;
            text-align: center;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: var(--gray-light);
            border-radius: 20px;
            padding: 1.8rem;
            text-align: left;
            border: 2px solid transparent;
            transition: border-color 0.2s, transform 0.2s;
        }

        .testimonial-card:hover {
            border-color: var(--green);
            transform: translateY(-4px);
        }

        .stars {
            color: var(--orange);
            font-size: 1rem;
            margin-bottom: 0.8rem;
            letter-spacing: 2px;
        }

        .testimonial-text {
            font-size: 0.93rem;
            color: var(--text-dark);
            line-height: 1.6;
            margin-bottom: 1.2rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 0.9rem;
            color: white;
            flex-shrink: 0;
        }

        .author-name {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--navy);
        }

        .author-role {
            font-size: 0.78rem;
            color: var(--text-mid);
        }

        /* ── CTA FINAL ── */
        .cta-section {
            background: var(--gradient-hero);
            text-align: center;
            padding: 7rem 5%;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }

        .cta-section h2 {
            font-family: 'Nunito', sans-serif;
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 900;
            color: white;
            margin-bottom: 1rem;
            position: relative;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.1rem;
            max-width: 520px;
            margin: 0 auto 2.5rem;
            line-height: 1.6;
            position: relative;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
        }

        /* ── FOOTER ── */
        footer {
            background: var(--navy);
            color: rgba(255, 255, 255, 0.6);
            padding: 3rem 5%;
            text-align: center;
        }

        .footer-logo {
            font-family: 'Nunito', sans-serif;
            font-size: 1.6rem;
            font-weight: 900;
            margin-bottom: 1rem;
        }

        .footer-logo span.vende {
            color: white;
        }

        .footer-logo span.mas {
            color: var(--green);
        }

        .footer-links {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin: 1.2rem 0;
            list-style: none;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.55);
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--green);
        }

        .footer-copy {
            font-size: 0.8rem;
            margin-top: 1rem;
        }

        .footer-social {
            display: flex;
            gap: 0.8rem;
            justify-content: center;
            margin: 1.2rem 0;
        }

        .social-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            text-decoration: none;
            transition: background 0.2s;
            color: white;
        }

        .social-btn:hover {
            background: var(--green);
        }

        /* ── ANIMATIONS ── */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── SVG LOGO CHECKMARK ── */
        .logo-icon {
            display: inline-flex;
            vertical-align: middle;
            margin-right: 0.3rem;
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 768px) {
            .tab-content.active {
                grid-template-columns: 1fr;
            }

            .comparison-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
            }

            .hero-stats {
                gap: 2rem;
            }

            .price-card.featured {
                transform: scale(1);
            }
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-33.33%);
            }
        }

        /* Ancho completo de pantalla */
        .cf-herramientas-bar-full {
            overflow: hidden;
            white-space: nowrap;
            padding: 20px 0;
            background: transparent;
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
        }

        .cf-herramientas-track {
            display: flex;
            width: max-content;
            align-items: center;
            animation: scroll 25s linear infinite;
            /* Aumentado a 25s para compensar los nuevos logos */
        }

        .cf-herramientas-track img {
            height: 65px;
            width: auto;
            margin: 0 30px;
            flex-shrink: 0;
        }

        .cf-herramientas-track img.logo-large {
            height: 85px;
        }

        .cf-herramientas-bar-full:hover .cf-herramientas-track {
            animation-play-state: paused;
        }

        /* ── TERMS SECTION ── */
        .terms-section {
            background: var(--gray-light);
        }

        .terms-container {
            max-width: 900px;
            margin: 0 auto;
            
        }

        .terms-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .terms-content {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .terms-block {
            background: white;
            padding: 1.8rem;
            border-radius: 16px;
            border: 2px solid transparent;
            transition: all 0.2s;
        }

        .terms-block:hover {
            border-color: var(--green);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(26, 35, 126, 0.08);
        }

        .terms-block h3 {
            font-family: 'Nunito', sans-serif;
            font-size: 1.2rem;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 0.6rem;
        }

        .terms-block p {
            font-size: 0.92rem;
            color: var(--text-mid);
            line-height: 1.6;
        }

        .terms-block ul {
            padding-left: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .terms-block li {
            font-size: 0.9rem;
            color: var(--text-dark);
        }
