/* ==========================
   VARIABLES
========================== */

:root {

    --green-main: #16A34A;
    --green-light: #4ADE80;
    --dark: #1F2937;
    --blue: #1E3A8A;
    --light: #F0FDF4;
    --glass: rgba(255,255,255,0.08);
    --glass-border: rgba(255,255,255,0.12);
    --shadow:
        0 10px 40px rgba(0,0,0,.20);
}

/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Sora',sans-serif;
    background:
    radial-gradient(circle at top left,
    rgba(255, 255, 255, 0.15),
    transparent 35%),
    radial-gradient(circle at bottom right,
    rgba(30,58,138,.20),
    transparent 40%),
    #0f172a;
    color:white;
    overflow-x:hidden;
}

/* ==========================
   SCROLLBAR
========================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#111827;
}

::-webkit-scrollbar-thumb{
    background:var(--green-main);
    border-radius:20px;
}

/* ==========================
   EFECTO DE LUCES
    ========================== */

body::before{
    content:"";
    position:fixed;
    width:600px;
    height:600px;
    background:
    radial-gradient(
        rgba(74,222,128,.18),
        transparent 70%
    );
    top:-250px;
    left:-200px;
    z-index:-2;
}

body::after{
    content:"";
    position:fixed;
    width:700px;
    height:700px;
    background:
    radial-gradient(
        rgba(30,58,138,.18),
        transparent 70%
    );

    right:-250px;
    bottom:-250px;
    z-index:-2;
}


/* ==========================
   PARTICLES
========================== */

#particles{
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:-1;
}

.particle{
    position:absolute;
    border-radius:50%;
    background:
    rgba(74,222,128,.35);
    pointer-events:none;
    animation:
    floatParticle linear infinite;
}

@keyframes floatParticle{
    0%{
        transform:
        translateY(0px)
        translateX(0px);
        opacity:0;
    }
    10%{
        opacity:1;
    }
    90%{
        opacity:1;
    }
    100%{
        transform:
        translateY(-250px)
        translateX(50px);
        opacity:0;
    }
}

/* ==========================
   NAVBAR
========================== */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    backdrop-filter:blur(16px);
    background:
    rgba(15,23,42,.70);
    border-bottom:
    1px solid rgba(255,255,255,.05);
    z-index:9999;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:1.7rem;
    font-weight:700;
    color:var(--green-light);
}

.logo i{
    color:white;
}

.navbar ul{
    display:flex;
    gap:35px;
    list-style:none;
}

.navbar a{
    text-decoration:none;
    color:white;
    transition:.3s;
    font-weight:500;
}

.navbar a:hover{
    color:var(--green-light);
}

.demo-btn{
    background:
    linear-gradient(
        135deg,
        var(--green-main),
        var(--green-light)
    );
    padding:14px 24px;
    border-radius:50px;
    font-weight:600;
    box-shadow:
    0 10px 30px rgba(74,222,128,.25);
}

.demo-btn:hover{
    transform:translateY(-3px);
}

.mobile-menu{
    display:none;
    font-size:1.8rem;
    cursor:pointer;
}

/* ==========================
   HERO Y HERO VIDEO
========================== */

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 140px 8% 100px;
    position: relative;
    overflow: hidden;
    z-index: 1;

    background-image:
        linear-gradient(
            to bottom,
            rgba(15,23,42,0.35) 0%,
            rgba(15,23,42,0.60) 40%,
            rgba(15,23,42,0.85) 75%,
            rgba(15,23,42,0.97) 100%
        ),
        url("media/romel.webp");

    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 50; /* Obliga a todo el contenido (texto y dashboard) a estar al frente */
}

/* Fuerza el renderizado de la cancha en su capa correspondiente */
.football-pitch {
    position: relative;
    width: 100%;
    height: 250px;
    background: #0f5132 !important; /* Verde sólido para asegurar que pinte */
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,.15);
    z-index: 10; /* Por encima del fondo del propio dashboard */
}

/* ==========================
HERO RIGHT & AJUSTE DASHBOARD
========================== */
.hero-right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10; /* Asegura que se posicione por encima del video de fondo */
}

/* Forzamos a que el dashboard mantenga un ancho mínimo estable */
.dashboard {
    width: 100%;
    max-width: 450px; /* Evita que se estire demasiado en pantallas gigantes */
    min-height: auto; /* Le da una estructura base obligatoria */
}
.dashboard.paused {
    animation-play-state: paused;
}

/* ==========================
   HERO LEFT
========================== */

.tag{
    display:inline-block;
    padding:10px 18px;
    border-radius:40px;
    background:
    rgba(74,222,128,.12);
    border:
    1px solid rgba(74,222,128,.30);
    color:var(--green-light);
    margin-bottom:25px;
}

.hero-left h1{
    font-size:3.5rem;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-left h1 span{
    background:
    linear-gradient(
        90deg,
        var(--green-light),
        #ffffff
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-left p{
    font-size:1.1rem;
    color:#cbd5e1;
    line-height:1.8;
    max-width:600px;
}

/* ==========================
   BOTONES HERO
========================== */

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.btn-primary{
    background:
    linear-gradient(
        135deg,
        var(--green-main),
        var(--green-light)
    );
    color:white;
    text-decoration:none;
    padding:16px 28px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-5px);
}

.btn-secondary{
    border:
    1px solid rgba(255,255,255,.15);
    color:white;
    text-decoration:none;
    padding:16px 28px;
    border-radius:50px;
    transition:.3s;
}

.btn-secondary:hover{
    background:
    rgba(255,255,255,.05);
}

/* ==========================
   HERO STATS
========================== */

.hero-stats{
    display:flex;
    gap:50px;
    margin-top:60px;
}

.hero-stats h3{
    font-size:2rem;
    color:var(--green-light);
}

.hero-stats span{
    color:#94a3b8;
}

/* ==========================
   DASHBOARD
========================== */

/* Asegura que la tarjeta que contiene la cancha no colapse */
.dashboard-card.heatmap {
    width: 100%;
    display: block; /* Rompe cualquier colapso de Flexbox */
    min-height: 290px; /* 250px de la cancha + espacio para el título H4 */
}

/* Forzamos a la cancha a comportarse como un bloque con medidas reales */
.football-pitch {
    width: 100%;
    height: 250px; /* Tu medida original */
    background: #0f5132;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, .15);
}

.dashboard{
    background:
    rgba(15, 23, 42, 85);
    border:
    1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border-radius:30px;
    padding:25px;
    box-shadow:var(--shadow);
    z-index: 100;
    animation:
    floatDashboard 5s ease-in-out infinite;
}

.dashboard-header{
    display:flex;
    gap:8px;
    margin-bottom:20px;
}

.dashboard-header span{
    width:12px;
    height:12px;
    border-radius:50%;
}

.dashboard-header span:nth-child(1){
    background:#ff5f57;
}

.dashboard-header span:nth-child(2){
    background:#febc2e;
}

.dashboard-header span:nth-child(3){
    background:#28c840;
}

.dashboard-content{
    display:flex;
    flex-direction:column;
    gap:20px;
}

/* ==========================
   FOOTBALL PITCH
========================== */

.football-pitch{
    position:relative;
    width:100%;
    height:250px;
    background:#0f5132;
    border-radius:20px;
    overflow:hidden;
    border:2px solid rgba(255,255,255,.15);
}

/* Línea central */

.football-pitch::before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    width:2px;
    height:100%;
    background:
    rgba(255,255,255,.4);
}

/* Círculo central */

.football-pitch::after{
    content:"";
    position:absolute;
    width:80px;
    height:80px;
    border-radius:50%;
    border:2px solid rgba(255,255,255,.4);
    left:50%;
    top:50%;
    transform:
    translate(-50%,-50%);
}

/* ==========================
   HEATMAPS
========================== */

.heat{
    position:absolute;
    border-radius:50%;
    filter:blur(25px);
    animation:
    pulseHeat 4s infinite;
}

.heat1{
    width:100px;
    height:100px;
    background:
    rgba(255,0,0,.55);
    top:30px;
    left:40px;
}

.heat2{
    width:120px;
    height:120px;
    background:
    rgba(255,165,0,.55);
    right:50px;
    top:60px;
}

.heat3{
    width:90px;
    height:90px;
    background:
    rgba(255,255,0,.45);
    bottom:30px;
    left:45%;
}

.heat4{
    width:110px;
    height:110px;
    background:
    rgba(255,69,0,.55);
    bottom:25px;
    right:70px;
}

@keyframes pulseHeat{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.15);
    }
    100%{
        transform:scale(1);
    }
}

.heatmap img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:20px;
}

.dashboard-card h4{
    margin-bottom:15px;
}

.dashboard-stats{
    display:grid;
    grid-template-columns:
    repeat(2,1fr);
    gap:15px;
}

.dashboard-insights{
    background:
    rgba(255,255,255,.04);
    border:
    1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:20px;
}

.dashboard-insights h4{
    color:var(--green-light);
    margin-bottom:15px;
}

.dashboard-insights p{
    color:#cbd5e1;
    margin-bottom:10px;
}

.dashboard-metrics{
    display:grid;
    grid-template-columns:
    repeat(2,1fr);
    gap:15px;
}

.mini-card{
    background:
    rgba(255,255,255,.04);
    border:
    1px solid rgba(255,255,255,.05);
    padding:20px;
    border-radius:18px;
    text-align:center;
}

.mini-card h5{
    color:#94a3b8;
    margin-bottom:8px;
}

.mini-card p{
    transition:.5s;
    display:block;
    font-size:1.5rem;
    font-weight:700;
    color:var(--green-light);
}

/* ==========================================
ANIMACIÓN DE ACTUALIZACIÓN DE MÉTRICAS
========================================== */

/* La clase que el JS añade y quita dinámicamente */
.metric-update {
    animation: metricPulse 0.6s ease-in-out;
}

/* El comportamiento del pulso */
@keyframes metricPulse {
    0% {
        transform: scale(1);
        color: var(--green-light);
    }
    30% {
        transform: scale(1.15); /* Crece sutilmente */
        color: #ffffff; /* Brilla en blanco al cambiar el dato */
        text-shadow: 0 0 10px rgba(74, 222, 128, 0.6); /* Destello verde */
    }
    100% {
        transform: scale(1);
        color: var(--green-light); /* Vuelve a su estado original */
    }
}

/* ==========================
   ANIMACION DASHBOARD
========================== */

@keyframes floatDashboard{
    0%{
        transform:
        translateY(0px);
    }
    50%{
        transform:
        translateY(-15px);
    }
    100%{
        transform:
        translateY(0px);
    }
}

/* ==========================================
   TITULOS DE SECCION
========================================== */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:var(--green-light);
    font-weight:600;
    letter-spacing:3px;
    font-size:.9rem;
}

.section-title h2{
    margin-top:15px;
    font-size:3rem;
    line-height:1.2;
    max-width:800px;
    margin-left:auto;
    margin-right:auto;
}

/* ==========================================
   BENEFITS
========================================== */

.benefits{
    position: relative;
    padding:120px 8%;
    z-index: 10;
}

.benefits-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.benefit-card{
    background:
    rgba(255,255,255,.04);
    border:
    1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border-radius:25px;
    padding:40px 30px;
    transition:.4s;
    text-align:center;
}

.benefit-card:hover{
    transform:
    translateY(-12px);
    border-color:
    rgba(74,222,128,.4);
}

.benefit-card i{
    font-size:3rem;
    color:var(--green-light);
    margin-bottom:25px;
}

.benefit-card h3{
    margin-bottom:15px;
    font-size:1.4rem;
}

.benefit-card p{
    color:#94a3b8;
    line-height:1.7;
}

/* ==========================================
   HERRAMIENTAS
========================================== */

.tools{
    position: relative;
    padding:120px 8%;
    z-index: 10;
}

.tools-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

.tool-card{
    overflow:hidden;
    border-radius:25px;
    background:
    rgba(255,255,255,.04);
    border:
    1px solid rgba(255,255,255,.08);
    transition:.5s;
    position:relative;
}

.tool-card:hover{
    transform:
    translateY(-12px);
    box-shadow:
    0 20px 50px rgba(74,222,128,.15);
}

.tool-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:.6s;
}

.tool-card:hover img{
    transform:scale(1.08);
}

.tool-info{
    padding:25px;
}

.tool-info h3{
    margin-bottom:12px;
    font-size:1.4rem;
}

.tool-info p{
    color:#94a3b8;
    line-height:1.7;
}

/* ==========================
   USE CASES
========================== */

.use-cases{
    position: relative;
    padding: 120px 8%;
    z-index: 10;
}

.cases-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.case-card{
    background:
    rgba(255,255,255,.05);
    border:
    1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:35px;
    text-align:center;
    transition:.4s;
}

.case-card:hover{
    transform:
    translateY(-10px);
    border-color:
    rgba(74,222,128,.4);
}

.case-card i{
    font-size:2.5rem;
    color:#4ADE80;
    margin-bottom:20px;
}

.case-card h3{
    margin-bottom:10px;
}



/* ==========================================
   ESTADISTICAS
========================================== */

.stats-section{
    padding:120px 8%;
    display:grid;
    position: relative;
    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));
    z-index: 10;
    gap:30px;
}

.stat-box{
    text-align:center;
    padding:40px;
    border-radius:25px;
    background:
    rgba(255,255,255,.04);
    border:
    1px solid rgba(255,255,255,.08);
}

.stat-box h3{
    font-size:3rem;
    color:var(--green-light);
    margin-bottom:10px;
}

.stat-box p{
    color:#94a3b8;
}

/* ==========================================
   FILOSOFÍA TÁCTICA
========================================== */

.quotes {
    position: relative;
    padding: 120px 8%;
    z-index: 10;
}

.quotes-grid {
    display: grid;
    grid-template-columns:
    repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.quote-card {
    background:
    rgba(255,255,255,.05);
    border:
    1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    overflow: hidden;
    transition: .35s;
}

.quote-card:hover {
    transform:
    translateY(-10px);
    border-color:
    rgba(74,222,128,.35);
    box-shadow:
    0 20px 50px rgba(74,222,128,.15);
}

.quote-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.image-left {
    background-position: 0% !important;
    object-position: 0% !important;
}

.quote-card p {
    padding: 25px;
    color: #cbd5e1;
    line-height: 1.8;
    font-style: italic;
}

.quote-card h4 {
    padding: 0 25px 25px;
    color: var(--green-light);
    font-size: 1.15rem;
}

/* ==========================================
   PLANES
========================================== */

.pricing{
    position: relative;
    padding:120px 8%;
    z-index: 10;
}

.pricing-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));
    gap:40px;
}

.price-card{
    background:
    rgba(255,255,255,.05);
    border:
    1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border-radius:30px;
    padding:45px;
    text-align:center;
    position:relative;
    transition:.4s;
}

.price-card:hover{
    transform:
    translateY(-15px);
}

.price-card h3{
    font-size:1.5rem;
    margin-bottom:15px;
}

.price-card h2{
    font-size:4rem;
    color:var(--green-light);
    margin-bottom:25px;
}

.price-card ul{
    list-style:none;
    margin-bottom:35px;
}

.price-card ul li{
    padding:12px 0;
    color:#cbd5e1;
    border-bottom:
    1px solid rgba(255,255,255,.05);
}

.price-card button{
    width:100%;
    padding:16px;
    border:none;
    border-radius:50px;
    background:
    linear-gradient(
        135deg,
        var(--green-main),
        var(--green-light)
    );

    color:white;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.price-card button:hover{
    transform:scale(1.03);
}

.featured{
    border:
    2px solid var(--green-light);
    transform:scale(1.04);
}

.popular{
    position:absolute;
    top:-15px;
    left:50%;
    transform:
    translateX(-50%);
    background:
    linear-gradient(
        135deg,
        var(--green-main),
        var(--green-light)
    );
    padding:8px 20px;
    border-radius:30px;
    font-size:.85rem;
    font-weight:600;
}

/* ==========================================
   SOPORTE
========================================== */

.support{
    padding:120px 8%;
}

.support-container{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:50px;
    max-width:1200px;
    margin:auto;
    margin-top:50px;
}

/* INFO LATERAL */
.support-info{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:40px;
    backdrop-filter:blur(20px);
}

.support-info h3{
    margin-bottom:25px;
    color:var(--green-light);
    font-size:1.3rem;
}

.support-item{
    display:flex;
    gap:15px;
    margin-bottom:25px;
    align-items:flex-start;
}

.support-item i{
    font-size:1.5rem;
    color:var(--green-light);
    margin-top:3px;
}

.support-item h4{
    margin-bottom:5px;
}

.support-item p{
    color:#94a3b8;
}

/* FORMULARIO */
.support-form{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:40px;
    backdrop-filter:blur(20px);
    display:flex;
    flex-direction:column;
    gap:20px;
}

.form-row{
    display:flex;
    gap:15px;
}

.support-form input,
.support-form textarea{
    width:100%;
    padding:16px;
    border-radius:15px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(0,0,0,.2);
    color:white;
    outline:none;
}

.support-form textarea{
    min-height:150px;
    resize:none;
}

.support-form button{
    padding:16px;
    border:none;
    border-radius:50px;
    background:linear-gradient(135deg,var(--green-main),var(--green-light));
    color:white;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.support-form button:hover{
    transform:translateY(-3px);
}

.support-form input:focus,
.support-form textarea:focus{
    border-color: rgba(74,222,128,.5);
    box-shadow: 0 0 15px rgba(74,222,128,.15);
    transform: translateY(-2px);
    transition: .3s;
}

.support-form button:hover{
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(74,222,128,.2);
}

/* RESPONSIVE */
@media(max-width:900px){
    .support-container{
        grid-template-columns:1fr;
    }

    .form-row{
        flex-direction:column;
    }
}

/* ==========================================
   FOOTER
========================================== */

.footer-grounded{
    position:relative;
    margin-top:120px;
    background:#0f172a;
    overflow:hidden;
}

/* HERO FOOTER (GRAN BLOQUE VISUAL) */
.footer-hero{
    position:relative;
    height:420px;
    display:flex;
    align-items:center;
    justify-content:center;

    background-image:
        url("https://images.unsplash.com/photo-1508098682722-e99c43a406b2?auto=format&fit=crop&w=2000&q=80");

    background-size:cover;
    background-position:center;
}

/* OVERLAY ESTILO TU WEB */
.footer-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            to bottom,
            rgba(15,23,42,.35),
            rgba(15,23,42,.85),
            rgba(15,23,42,1)
        );
}

/* TEXTO CENTRAL */
.footer-content{
    position:relative;
    z-index:2;
    text-align:center;
    max-width:700px;
    padding:20px;
}

.footer-content h2{
    font-size:3rem;
    color:white;
    margin-bottom:15px;
}

.footer-content h2 span{
    color:var(--green-light);
}

.footer-content p{
    color:#cbd5e1;
    margin-bottom:25px;
    font-size:1.1rem;
}

/* BOTÓN */
.footer-cta{
    display:inline-block;
    padding:14px 26px;
    border-radius:50px;
    background:linear-gradient(135deg,var(--green-main),var(--green-light));
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.footer-cta:hover{
    transform:translateY(-4px);
}

/* GRID INFERIOR */
.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:40px;
    padding:80px 8% 40px;
}

.footer-grid h3,
.footer-grid h4{
    color:white;
    margin-bottom:15px;
}

.footer-grid p,
.footer-grid a{
    color:#94a3b8;
    text-decoration:none;
    display:block;
    margin-bottom:10px;
    transition:.3s;
}

.footer-grid a:hover{
    color:var(--green-light);
    transform:translateX(5px);
}

/* BOTTOM */
.footer-bottom{
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,.08);
    color:#64748b;
    font-size:.9rem;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1200px){
    .hero-left h1{
        font-size:3.8rem;
    }
}

@media(max-width:992px){
    .hero-content{
        grid-template-columns:1fr;
        text-align:center;
    }
    .hero-left p{
        margin:auto;
    }
    .hero-buttons{
        justify-content:center;
    }
    .hero-stats{
        justify-content:center;
    }
}

@media(max-width:768px){
    .navbar nav{
        display:none;
    }
    .demo-btn{
        display:none;
    }
    .mobile-menu{
        display:block;
    }
    .hero{
        padding-top:130px;
    }
    .hero-left h1{
        font-size:2.8rem;
    }
    .hero-stats{
        flex-direction:column;
        gap:20px;
    }
    .section-title h2{
        font-size:2.2rem;
    }
    .featured{
        transform:none;
    }
}

@media(max-width:480px){
    .hero-left h1{
        font-size:2.2rem;
    }
    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }
    .hero-buttons{
        flex-direction:column;
    }
    .price-card h2{
        font-size:3rem;
    }
    .stat-box h3{
        font-size:2.3rem;
    }
}

.tool-card,
.benefit-card,
.price-card {
    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}

.tool-card:hover,
.benefit-card:hover,
.price-card:hover {
    transform: translateY(-10px);
    border-color:
        rgba(74,222,128,.4);
    box-shadow:
        0 0 25px rgba(74,222,128,.15),
        0 0 50px rgba(74,222,128,.10);
}
body{
    zoom: 0.75;
}