/* =================================================
   DAVANTIA
   COMPONENTS.CSS
   VERSION DEPURADA
================================================= */


/* =================================================
   VARIABLES
================================================= */

:root{

    --primary:#0058FF;
    --primary-dark:#0046CC;
    --primary-light:#E4ECFF;

    --text:#0F172A;
    --text-soft:#54607A;

    --border:#E2E8F0;
    --border-light:#E5E7EB;

    --background:#F0F4FC;
    --white:#FFFFFF;

    --navy:#06265C;
    --navy-soft:#0B3B8C;
    --on-navy:#F1F5FF;
    --on-navy-soft:#AFC3F0;
    --on-navy-border:rgba(255,255,255,.12);

    --font-title:'Manrope',sans-serif;

    --section-padding:70px;
    --container-width:1180px;

}


/* =================================================
   RESET
================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    color:var(--text);

    background:var(--background);

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

button,
input,
textarea{

    font-family:inherit;

}

section{

    scroll-margin-top:90px;

}

.container{

    width:min(var(--container-width),92%);

    margin:0 auto;

}


::selection{

    background:var(--primary);

    color:#FFFFFF;

}


/* =================================================
   TIPOGRAFÍA GENERAL
================================================= */

h1,
h2,
h3,
h4{

    font-family:var(--font-title);

    color:var(--text);

    margin-top:0;

}

h1{

    font-size:4rem;

    line-height:1.1;

    font-weight:800;

    letter-spacing:-2px;

}

h2{

    font-size:2.8rem;

    line-height:1.2;

    font-weight:800;

    letter-spacing:-1px;

}

h3{

    font-size:1.45rem;

    line-height:1.3;

    font-weight:700;

}

p{

    color:var(--text-soft);

    line-height:1.8;

}


/* =================================================
   HEADER
================================================= */

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(14px);

    -webkit-backdrop-filter:blur(14px);

    border-bottom:1px solid var(--border-light);

    transition:
        background .3s ease,
        box-shadow .3s ease;

}

.header.scrolled{

    background:rgba(255,255,255,.97);

    box-shadow:
        0 10px 35px rgba(6,38,92,.10);

}

.navbar{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:12px 0;

}

.logo{

    display:flex;

    align-items:flex-start;

    height:75px;

    overflow:visible;

    flex-shrink:0;

}

.logo img{

    width:auto;

    height:100px;

}

.nav-menu{

    display:flex;

    align-items:center;

    gap:80px;

    list-style:none;

    margin:0;

    padding:0;

}

.nav-menu a{

    position:relative;

    display:inline-block;

    color:var(--text);

    font-weight:600;

    transition:color .3s ease;

}

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:width .3s ease;

}

.nav-menu a:hover{

    color:var(--primary);

}

.nav-menu a:hover::after{

    width:100%;

}

.desktop-btn{

    display:inline-flex;

}

.menu-toggle{

    display:none;

    align-items:center;

    justify-content:center;

    width:42px;

    height:42px;

    padding:0;

    border:0;

    background:transparent;

    color:var(--navy);

    font-size:22px;

    cursor:pointer;

}


/* =================================================
   BOTONES
================================================= */

.btn-primary,
.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 32px;

    border-radius:14px;

    font-weight:600;

    text-decoration:none;

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;

}

.btn-primary{

    background:var(--primary);

    color:#FFFFFF;

    border:none;

    box-shadow:
        0 12px 30px rgba(0,88,255,.25);

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

.btn-secondary{

    background:#FFFFFF;

    color:var(--primary);

    border:2px solid var(--primary);

}

.btn-secondary:hover{

    background:#EFF6FF;

    transform:translateY(-3px);

}


/* =================================================
   HERO
================================================= */

.hero{

    position:relative;

    overflow:hidden;

    padding:170px 0 110px;

    background:

        radial-gradient(
            circle at top right,
            rgba(0,88,255,.14),
            transparent 45%
        ),

        radial-gradient(
            circle at bottom left,
            rgba(6,38,92,.08),
            transparent 45%
        ),

        linear-gradient(
            135deg,
            #F4F7FD 0%,
            #EAF0FB 45%,
            #E0E9FA 100%
        );

}

.hero::before{

    content:"";

    position:absolute;

    width:650px;
    height:650px;

    top:-220px;
    right:-120px;

    border-radius:50%;

    background:

        radial-gradient(
            circle,
            rgba(0,88,255,.16),
            transparent 70%
        );

    filter:blur(30px);

}

.hero::after{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    bottom:-200px;
    left:-120px;

    border-radius:50%;

    background:

        radial-gradient(
            circle,
            rgba(6,38,92,.10),
            transparent 70%
        );

    filter:blur(35px);

}

.hero-container{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:90px;

    align-items:center;

}

.hero-content{

    max-width:700px;

}

.hero-badge{

    display:inline-block;

    padding:10px 18px;

    margin-bottom:28px;

    border-radius:999px;

    background:var(--primary-light);

    color:var(--primary);

    font-size:.9rem;

    font-weight:700;

}

.hero h1{

    margin-bottom:26px;

}

.hero p{

    max-width:620px;

    margin-bottom:42px;

    font-size:1.15rem;

    line-height:1.9;

}

.hero-buttons{

    display:flex;

    align-items:center;

    gap:100px;

}

.hero-image{

    display:flex;

    justify-content:center;

}

.analytics-card{

    width:100%;

    max-width:430px;

    padding:34px;

    background:#FFFFFF;

    border:1px solid rgba(15,23,42,.08);

    border-radius:24px;

    box-shadow:
        0 30px 70px rgba(15,23,42,.08);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}

.analytics-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 35px 80px rgba(15,23,42,.12);

}

.analytics-top{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:26px;

}

.analytics-title{

    font-size:1.25rem;

    font-weight:700;

    color:var(--text);

}

.analytics-status{

    padding:6px 14px;

    border-radius:999px;

    background:#DCFCE7;

    color:#166534;

    font-size:.82rem;

    font-weight:700;

}

.analytics-card h3{

    margin-bottom:28px;

    font-size:1.45rem;

}

.metric{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:15px 0;

    border-bottom:1px solid var(--border-light);

}

.metric:last-of-type{

    border-bottom:none;

}

.metric span{

    color:var(--text-soft);

}

.metric strong{

    color:var(--primary);

    font-size:1.05rem;

}

.progress-box{

    margin-top:28px;

}

.progress-title{

    margin-bottom:12px;

    color:var(--text-soft);

    font-size:.9rem;

}

.progress-bar{

    height:10px;

    overflow:hidden;

    border-radius:999px;

    background:#E5E7EB;

}

.progress-fill{

    width:82%;

    height:100%;

    border-radius:999px;

    background:
        linear-gradient(
            90deg,
            #2563EB,
            #60A5FA
        );

}


/* =================================================
   EMBUDO DE SELECCIÓN (tarjeta del hero)
================================================= */

.funnel-row{

    margin-bottom:18px;

}

.funnel-row-top{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:8px;

    font-size:.92rem;

}

.funnel-row-top span{

    color:var(--text-soft);

}

.funnel-row-top strong{

    color:var(--text);

    font-weight:700;

}

.funnel-result{

    display:flex;

    align-items:center;

    gap:14px;

    margin-top:24px;

    padding:16px 18px;

    border-radius:16px;

    background:var(--primary-light);

}

.funnel-result-icon{

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    width:42px;

    height:42px;

    border-radius:50%;

    background:var(--primary);

    color:#FFFFFF;

    font-size:16px;

}

.funnel-result-label{

    margin-bottom:2px;

    color:var(--text-soft);

    font-size:.82rem;

}

.funnel-result-name{

    color:var(--text);

    font-weight:700;

    font-size:1.05rem;

}


/* =================================================
   TÍTULOS DE SECCIÓN
================================================= */

.section-title{

    max-width:760px;

    margin:0 auto 50px;

    text-align:center;

}

.section-title span{

    display:inline-block;

    padding:8px 16px;

    margin-bottom:18px;

    border-radius:999px;

    background:var(--primary-light);

    color:var(--primary);

    font-size:.85rem;

    font-weight:700;

}

.section-title h2{

    margin-bottom:18px;

}

.section-title p{

    font-size:1.05rem;

}


/* =================================================
   SERVICIOS
================================================= */

.services{

    padding:var(--section-padding) 0;

    background:#FFFFFF;

}

.services-grid{

    display:grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap:32px;

}

.service-card{

    position:relative;

    overflow:hidden;

    padding:40px;

    background:#FFFFFF;

    border:1px solid var(--border);

    border-radius:22px;

    box-shadow:
        0 10px 30px rgba(15,23,42,.04);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:var(--primary);

    transform:scaleX(0);

    transform-origin:left;

    transition:transform .35s ease;

}

.service-card:hover{

    transform:translateY(-8px);

    border-color:#BFDBFE;

    box-shadow:
        0 25px 50px rgba(15,23,42,.10);

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-icon{

    display:flex;

    align-items:center;

    justify-content:center;

    width:68px;
    height:68px;

    margin-bottom:28px;

    border-radius:18px;

    background:
        linear-gradient(
            135deg,
            #2563EB,
            #3B82F6
        );

    color:#FFFFFF;

    font-size:28px;

}

.service-card h3{

    margin-bottom:16px;

    font-size:1.5rem;

}

.service-card p{

    margin-bottom:28px;

    line-height:1.8;

}

.service-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--primary);

    font-weight:700;

}

.service-link i{

    transition:transform .3s ease;

}

.service-card:hover .service-link i{

    transform:translateX(6px);

}


/* =================================================
   PROCESO
================================================= */

.process{

    padding:var(--section-padding) 0;

    background:
        linear-gradient(
            180deg,
            #F0F4FC 0%,
            #E6EDFA 100%
        );

}

.process-grid{

    display:grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    gap:30px;

}

.process-step{

    position:relative;

    padding:38px 34px;

    background:#FFFFFF;

    border:1px solid var(--border);

    border-radius:22px;

    box-shadow:
        0 10px 30px rgba(15,23,42,.04);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}

.process-step:hover{

    transform:translateY(-8px);

    border-color:#BFDBFE;

    box-shadow:
        0 24px 50px rgba(15,23,42,.10);

}

.process-step::after{

    content:"";

    position:absolute;

    top:50%;

    right:-32px;

    width:30px;

    height:2px;

    background:#CBD5E1;

}

.process-step:last-child::after{

    display:none;

}

.step-number{

    display:flex;

    align-items:center;

    justify-content:center;

    width:62px;
    height:62px;

    margin-bottom:26px;

    border-radius:50%;

    background:
        linear-gradient(
            135deg,
            #2563EB,
            #3B82F6
        );

    color:#FFFFFF;

    font-size:1.25rem;

    font-weight:700;

}

.process-step h3{

    margin-bottom:16px;

    font-size:1.35rem;

}

.process-step p{

    line-height:1.8;

}


/* =================================================
   CONTACTO
================================================= */

.cta{

    position:relative;

    overflow:hidden;

    padding:var(--section-padding) 0;

    background:
        radial-gradient(
            circle at top right,
            rgba(0,88,255,.10),
            transparent 45%
        ),
        linear-gradient(
            160deg,
            #F4F7FD 0%,
            #E9EFFB 100%
        );

}

.cta .hero-badge{

    background:var(--primary-light);

    color:var(--primary);

}

.cta-box{

    display:grid;

    grid-template-columns:
        1fr 1fr;

    gap:80px;

    align-items:center;

}

.contact-info{

    max-width:520px;

}

.contact-info h2{

    margin-bottom:24px;

    font-size:2.8rem;

    line-height:1.15;

}

.contact-info p{

    margin-bottom:18px;

    font-size:1.05rem;

    line-height:1.9;

}

.contact-form{

    padding:42px;

    background:#FFFFFF;

    border:1px solid var(--border);

    border-radius:24px;

    box-shadow:
        0 20px 50px rgba(15,23,42,.06);

}

.form-group{

    margin-bottom:22px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:16px 18px;

    border:1px solid #CBD5E1;

    border-radius:14px;

    background:#FFFFFF;

    font-size:1rem;

    font-family:inherit;

    transition:
        border-color .3s ease,
        box-shadow .3s ease;

}

.contact-form textarea{

    min-height:160px;

    resize:vertical;

}

.contact-form input:focus,
.contact-form textarea:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:
        0 0 0 4px rgba(0,88,255,.12);

}

.contact-form button{

    width:100%;

    margin-top:10px;

}


/* =================================================
   FOOTER
================================================= */

.footer{

    padding:80px 0 0;

    background:#FFFFFF;

    border-top:1px solid var(--border);

}

.footer-top{

    display:grid;

    grid-template-columns:
        1fr auto 1fr;

    gap:80px;

    align-items:flex-start;

}

.footer-column{

    display:flex;

    flex-direction:column;

}

.footer-column:first-child{

    align-items:flex-start;

}

.footer-contact{

    align-items:flex-end;

}

.footer-column h4{

    margin-bottom:24px;

    color:var(--text);

    font-size:1rem;

    font-weight:700;

}

.footer-column ul{

    margin:0;

    padding:0;

    list-style:none;

}

.footer-column li{

    margin-bottom:16px;

}

.footer-column a{

    color:var(--text-soft);

    transition:color .3s ease;

}

.footer-column a:hover{

    color:var(--primary);

}

.footer-center{

    max-width:420px;

    text-align:center;

}

.footer-logo{

    display:block;

    width:220px;

    height:auto;

    margin:0 auto 28px;

}

.footer-social{

    display:flex;

    justify-content:center;

    margin-top:20px;

}

.social-icon{

    display:flex;

    align-items:center;

    justify-content:center;

    width:42px;

    height:42px;

    border-radius:50%;

    background:var(--primary-light);

    color:var(--primary);

    font-size:17px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;

}

.social-icon:hover{

    background:var(--primary);

    color:#FFFFFF;

    transform:translateY(-3px);

}

.footer-description{

    color:var(--text-soft);

    font-size:.95rem;

    line-height:1.8;

}

.footer-contact p{

    margin-bottom:14px;

    color:var(--text-soft);

}

.copyright{

    margin-top:60px;

    padding:24px 0;

    border-top:1px solid var(--border);

    color:#94A3B8;

    font-size:.85rem;

    text-align:center;

}


/* =================================================
   BOTÓN VOLVER ARRIBA
================================================= */

.back-to-top{

    position:fixed;

    right:28px;
    bottom:28px;

    display:flex;

    align-items:center;
    justify-content:center;

    width:52px;
    height:52px;

    border:none;
    border-radius:50%;

    background:var(--primary);

    color:#FFFFFF;

    font-size:18px;

    cursor:pointer;

    box-shadow:
        0 14px 30px rgba(0,88,255,.35);

    opacity:0;
    visibility:hidden;

    transform:translateY(14px);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease,
        background .3s ease;

    z-index:1500;

}

.back-to-top.visible{

    opacity:1;
    visibility:visible;

    transform:translateY(0);

}

.back-to-top:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

}


/* =================================================
   GLOBO FLOTANTE DE WHATSAPP
================================================= */

.whatsapp-float{

    position:fixed;

    right:28px;
    bottom:100px;

    display:flex;

    align-items:center;
    justify-content:center;

    width:58px;
    height:58px;

    border-radius:50%;

    background:#25D366;

    color:#FFFFFF;

    font-size:28px;

    box-shadow:
        0 14px 30px rgba(37,211,102,.40);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

    z-index:1500;

}

.whatsapp-float:hover{

    transform:translateY(-4px);

    box-shadow:
        0 18px 36px rgba(37,211,102,.5);

}

@media (max-width:768px){

    .whatsapp-float{

        right:18px;
        bottom:84px;

        width:52px;
        height:52px;

        font-size:25px;

    }

}

@media (max-width:768px){

    .back-to-top{

        right:18px;
        bottom:18px;

        width:46px;
        height:46px;

        font-size:16px;

    }

}


/* =================================================
   ANIMACIONES
================================================= */

.reveal{

    opacity:0;

    transform:translateY(40px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}


/* =================================================
   TABLET
   769px — 992px
================================================= */

@media (min-width:769px) and (max-width:992px){

    .container{

        width:90%;

    }

    /* HEADER */

    .navbar{

         padding:8px 0;

    }

    .logo img{

        height:56px;

    }

    .nav-menu{

        gap:22px;

    }

    .desktop-btn{

        padding:13px 20px;

    }

    .menu-toggle{

        display:none;

    }

    /* HERO */

    .hero{

        padding:140px 0 90px;

    }

    .hero-container{

        grid-template-columns:1fr;

        gap:60px;

        text-align:center;

    }

    .hero-content{

        max-width:760px;

        margin:0 auto;

    }

    .hero h1{

        font-size:3.3rem;

    }

    .hero p{

        margin-left:auto;

        margin-right:auto;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-image{

        width:100%;

    }

    /* SERVICIOS */

    .services-grid{

        grid-template-columns:
            repeat(2,minmax(0,1fr));

        gap:24px;

    }

    .service-card{

        padding:32px;

    }

    /* PROCESO */

    .process-grid{

        grid-template-columns:
            repeat(2,minmax(0,1fr));

        gap:24px;

    }

    .process-step:nth-child(2)::after{

        display:none;

    }

    /* CONTACTO */

    .cta-box{

        grid-template-columns:1fr;

        gap:50px;

    }

    .contact-info{

        max-width:700px;

        margin:0 auto;

        text-align:center;

    }

    /* FOOTER */

    .footer-top{

        grid-template-columns:1fr;

        gap:45px;

    }

    .footer-column,
    .footer-contact,
    .footer-center{

        width:100%;

        align-items:center;

        text-align:center;

    }

}


/* =================================================
   CELULAR
   hasta 768px
================================================= */

@media (max-width:768px){

    .container{

        width:92%;

    }


    /* HEADER */

    .navbar{

        padding:6px 0;

    }

    .logo img{

        height:50px;

    }

    .desktop-btn{

        display:none;

    }

    .menu-toggle{

        display:flex;

    }

    /*
       MENÚ MÓVIL
       Pequeño y alineado a la derecha
    */

    .nav-menu{

        display:none;

        position:absolute;

        top:70px;

        right:0;

        left:auto;

        width:195px;

        margin:0;

        padding:8px;

        flex-direction:column;

        gap:2px;

        list-style:none;

        background:#FFFFFF;

        backdrop-filter:blur(18px);

        -webkit-backdrop-filter:blur(18px);

        border:1px solid var(--border-light);

        border-radius:14px;

        box-shadow:
            0 14px 35px rgba(15,23,42,.18);

        z-index:2000;

    }

    .nav-menu.active{

        display:flex;

    }

    .nav-menu li{

        width:100%;

        margin:0;

    }

    .nav-menu a{

        display:block;

        width:100%;

        padding:11px 13px;

        border-radius:9px;

        color:var(--text);

        font-size:.9rem;

        font-weight:600;

    }

    .nav-menu a:hover{

        background:rgba(0,88,255,.08);

        color:var(--primary);

    }


    /* HERO */

    .hero{

        padding:100px 0 50px;

    }

    .hero-container{

        grid-template-columns:1fr;

        gap:45px;

    }

    .hero-badge{

        padding:8px 14px;

        margin-bottom:22px;

        font-size:.8rem;

    }

    .hero h1{

        margin-bottom:20px;

        font-size:2.35rem;

        line-height:1.15;

        letter-spacing:-1px;

    }

    .hero p{

        margin-bottom:30px;

        font-size:1rem;

        line-height:1.7;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;

        gap:12px;

    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary{

        width:100%;

        max-width:320px;

    }

    .analytics-card{

        max-width:100%;

        padding:26px;

    }


    /* SECTION TITLES */

    .section-title{

        margin-bottom:45px;

    }

    .section-title h2{

        font-size:2rem;

        line-height:1.2;

    }

    .section-title p{

        font-size:1rem;

        line-height:1.7;

    }


    /* SERVICIOS */

    .services{

        padding:60px 0;

    }

    .services-grid{

        grid-template-columns:1fr;

        gap:22px;

    }

    .service-card{

        padding:28px;

    }

    .service-icon{

        width:60px;

        height:60px;

        margin-bottom:22px;

        font-size:24px;

    }

    .service-card h3{

        font-size:1.3rem;

    }


    /* PROCESO */

    .process{

        padding:60px 0;

    }

    .process-grid{

        grid-template-columns:1fr;

        gap:22px;

    }

    .process-step{

        padding:28px;

    }

    .process-step::after{

        display:none;

    }


    /* CONTACTO */

    .cta{

        padding:60px 0;

    }

    .cta-box{

        grid-template-columns:1fr;

        gap:45px;

    }

    .contact-info{

        max-width:700px;

        margin:0 auto;

        text-align:center;

    }

    .contact-info h2{

        font-size:2.1rem;

    }

    .contact-info p{

        font-size:1rem;

    }

    .contact-form{

        padding:28px;

    }


    /* FOOTER */

.footer{
    padding-top:60px;
}

.footer-top{
    display:flex;
    flex-direction:column;
    gap:40px;
}

.footer-column,
.footer-contact,
.footer-center{
    width:100%;
    align-items:center;
    text-align:center;
}

.footer-column:first-child{
    align-items:center;
}

.footer-column ul{
    width:100%;
    text-align:center;
    padding:0;
    margin:0;
}

.footer-column li{
    text-align:center;
    list-style:none;
}

.footer-column a{
    text-align:center;
}

.footer-logo{
    width:170px;
}

.footer-description{
    max-width:320px;
    margin:auto;
}
}

/* =================================================
   SMALL MOBILE
   hasta 480px
================================================= */

@media (max-width:480px){

    .container{

        width:92%;

    }

    .navbar{

        padding:6px 0;

    }

    .logo img{

        height:46px;

    }

    .nav-menu{

        top:66px;

        width:185px;

    }

    .nav-menu a{

        padding:10px 12px;

        font-size:.88rem;

    }

    .hero{

        padding-top:110px;

    }

    .hero h1{

        font-size:2rem;

    }

    .analytics-card{

        padding:22px;

    }

    .analytics-card h3{

        font-size:1.25rem;

    }

    .metric{

        gap:15px;

    }

    .metric span{

        font-size:.9rem;

    }

    .metric strong{

        font-size:.95rem;

    }

    .section-title h2{

        font-size:1.8rem;

    }

    .service-card,
    .process-step{

        padding:24px;

    }

    .contact-form{

        padding:24px;

    }

}