/* ============================================================
   LYL CONNECT - MAIN STYLESHEET
   Converted from Tailwind CSS to Vanilla CSS
   ============================================================ */

/* --- CSS VARIABLES --- */
:root {
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --blue-400: #60a5fa;
    --blue-300: #93c5fd;
    --cyan-600: #0891b2;
    --cyan-500: #06b6d4;
    --cyan-400: #22d3ee;
    --cyan-300: #67e8f9;
    --emerald-500: #10b981;
    --emerald-400: #34d399;
    --green-400: #4ade80;
    --yellow-400: #facc15;
    --orange-400: #fb923c;
    --red-400: #f87171;
    --pink-400: #f472b6;
    --purple-400: #c084fc;
    --amber-400: #fbbf24;
    --rose-400: #fb7185;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --container-max: 1280px;
    --navbar-height: 72px;
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--slate-950);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--blue-500);
    color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-800);
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.navbar-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--blue-400), var(--cyan-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-menu {
    display: none;
    gap: 2rem;
}

.navbar-link {
    color: var(--slate-300);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.navbar-link:hover {
    color: var(--blue-400);
}

.navbar-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--slate-300);
    transition: all 0.3s;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-mobile {
    display: none;
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    background: rgba(2, 6, 23, 0.95);
    border-bottom: 1px solid var(--slate-800);
}

.navbar-mobile.active {
    display: flex;
}

.navbar-mobile-link {
    padding: 0.75rem 0;
    color: var(--slate-300);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(30, 41, 59, 0.5);
    transition: color 0.3s;
}

.navbar-mobile-link:hover {
    color: var(--blue-400);
}

@media (min-width: 768px) {
    .navbar-menu {
        display: flex;
    }

    .navbar-toggle {
        display: none;
    }
}

/* --- FOOTER --- */
.site-footer {
    background: var(--slate-950);
    border-top: 1px solid var(--slate-800);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
}

.footer-logo {
    font-size: 1.875rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--blue-400), var(--cyan-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.footer-desc {
    margin-top: 1rem;
    color: var(--slate-400);
    max-width: 28rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--slate-800);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--slate-700);
    transition: all 0.3s;
    color: #fff;
}

.social-facebook:hover {
    background: #1877f2;
}

.social-tiktok:hover {
    background: #e1306c;
}

.social-youtube:hover {
    background: #ff0000;
}

.social-whatsapp:hover {
    background: #25d366;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--slate-300);
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--slate-400);
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--blue-400);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-800);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.footer-copyright {
    color: var(--slate-500);
    font-size: 0.875rem;
}

.footer-disclaimer {
    color: var(--slate-600);
    font-size: 0.75rem;
    max-width: 32rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* --- ANIMATIONS (Intersection Observer) --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 {
    transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
    transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
    transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
    transition-delay: 0.4s;
}

.animate-on-scroll.delay-5 {
    transition-delay: 0.5s;
}

.animate-on-scroll.delay-6 {
    transition-delay: 0.6s;
}

.animate-on-scroll.delay-7 {
    transition-delay: 0.7s;
}

.animate-on-scroll.delay-8 {
    transition-delay: 0.8s;
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

.animate-pulse {
    animation: pulse-glow 2s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(30, 58, 138, 0.2), var(--slate-950), var(--slate-950));
    z-index: -2;
}

/* ── HERO: Orbe 3D WebGL — solo en escritorio (≥768px) ──────────────────── */
.hero-orb-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.55;
    pointer-events: none;
}

/* Viñeta radial para mantener legibilidad del texto sobre las partículas */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse at center, transparent 25%, rgba(2, 6, 23, 0.60) 75%);
    pointer-events: none;
}

/* ── HERO: Video de fondo — solo en móvil (<768px) ───────────────────────── */
/* Siempre oculto en CSS; JS inyecta el src y lo muestra solo en pantallas pequeñas */
.hero-video-container {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.50;
}

@media (max-width: 767px) {
    .hero-orb-container {
        display: none !important;
    }
    .hero::after {
        display: none;
    }
    .hero-video-container {
        display: block;
    }
}

#hero-orb-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
    /* Siempre visible — no depender del IntersectionObserver en el hero */
    opacity: 1 !important;
    transform: none !important;
}

.hero-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue-400);
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-title-inner {
    padding: 0.75rem 1.5rem;
    background: rgba(2, 6, 23, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    display: inline-block;
    background-image: linear-gradient(to bottom, #fff, var(--slate-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--slate-300);
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-subtitle strong.blue {
    color: var(--blue-400);
    font-weight: 600;
}

.hero-subtitle strong.green {
    color: var(--emerald-400);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--blue-600);
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
    transition: all 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    transform: scale(1.05);
    background: linear-gradient(to right, var(--blue-500), var(--cyan-500));
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    color: #fff;
    border: 1px solid var(--slate-700);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--slate-800);
    border-color: var(--slate-600);
}

.hero-trust {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--slate-400);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    width: 1rem;
    height: 1rem;
    color: var(--emerald-400);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: row;
    }
}

/* --- HOW IT WORKS --- */
.how-it-works {
    padding: 6rem 0;
    background: var(--slate-900);
    position: relative;
    z-index: 20;
}

.section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--blue-400);
    font-size: 0.875rem;
    font-weight: 500;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--slate-400);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--blue-500), var(--cyan-500));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.step-icon svg {
    width: 2rem;
    height: 2rem;
}

.step-number {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--slate-950);
    border: 2px solid var(--blue-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--blue-400);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-desc {
    color: var(--slate-400);
}

.step-arrow {
    display: none;
    position: absolute;
    top: 50%;
    right: -1rem;
    transform: translateY(-50%);
    color: var(--slate-700);
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .step-arrow {
        display: block;
    }

    .section-title {
        font-size: 3rem;
    }
}

/* --- FEATURES SECTION --- */
.features-section {
    padding: 8rem 0;
    position: relative;
    z-index: 20;
    background: var(--slate-950);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 1.5rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--slate-800);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: var(--slate-900);
    transform: translateY(-10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-highlight {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--emerald-400);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.feature-icon-box {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 1rem;
    background: var(--slate-950);
    display: inline-flex;
    border: 1px solid var(--slate-800);
    transition: all 0.3s;
    position: relative;
    z-index: 10;
}

.feature-card:hover .feature-icon-box {
    transform: scale(1.1) rotate(3deg);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon-box svg {
    width: 3rem;
    height: 3rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.feature-desc {
    color: var(--slate-400);
    line-height: 1.7;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- CTA BANNER --- */
.cta-banner {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--blue-600), var(--cyan-600));
}

.cta-banner .container {
    position: relative;
    z-index: 10;
}

.cta-banner-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.cta-banner h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-banner p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2.5rem;
    background: #fff;
    color: var(--blue-600);
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.btn-white:hover {
    background: var(--slate-200);
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .cta-banner h2 {
        font-size: 3rem;
    }
}

/* --- MAP PREVIEW SECTION --- */
.map-preview {
    padding: 8rem 0;
    background: var(--slate-900);
    position: relative;
    overflow: hidden;
}

.map-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.map-preview h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.map-preview h2 span {
    color: var(--blue-500);
}

.map-preview-text {
    color: var(--slate-300);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.map-checklist {
    margin-bottom: 2rem;
}

.map-checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--slate-300);
    margin-bottom: 1rem;
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-400);
    flex-shrink: 0;
}

.check-icon svg {
    width: 1rem;
    height: 1rem;
}

.map-link {
    color: var(--blue-400);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.map-link:hover {
    color: var(--blue-300);
}

.map-link svg {
    transition: transform 0.3s;
}

.map-link:hover svg {
    transform: translateX(4px);
}

.map-visual {
    position: relative;
}

.map-visual-frame {
    aspect-ratio: 1;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, var(--blue-600), var(--cyan-600));
    padding: 4px;
}

.map-visual-inner {
    width: 100%;
    height: 100%;
    border-radius: calc(1.5rem - 4px);
    background: var(--slate-950);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
    font-size: 1.125rem;
}

.map-glow-1 {
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    filter: blur(48px);
}

.map-glow-2 {
    position: absolute;
    bottom: -2.5rem;
    left: -2.5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    filter: blur(48px);
}

@media (min-width: 768px) {
    .map-preview-grid {
        grid-template-columns: 1fr 1fr;
    }

    .map-preview h2 {
        font-size: 3rem;
    }
}

/* --- FINAL CTA --- */
.final-cta {
    padding: 8rem 0;
    background: var(--slate-900);
    position: relative;
    overflow: hidden;
}

.final-cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(30, 58, 138, 0.1), transparent);
}

.final-cta .container {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cashback-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--emerald-400);
    font-size: 0.875rem;
    font-weight: 500;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.final-cta h2 span {
    color: var(--blue-400);
}

.final-cta>.container>p {
    font-size: 1.25rem;
    color: var(--slate-400);
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn-gradient {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(to right, var(--blue-600), var(--cyan-600));
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    color: #fff;
    transition: all 0.3s;
}

.btn-gradient:hover {
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25);
    transform: scale(1.05);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2.5rem;
    border: 1px solid var(--slate-700);
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    color: #fff;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--slate-800);
}

@media (min-width: 640px) {
    .final-cta-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .final-cta h2 {
        font-size: 3.75rem;
    }
}