/* ==========================================================================
   SonSec - Main Styles
   ========================================================================== */

:root{
    --primary:#3333FF;
    --accent:#39FF14;
    --dark:#0f172a;
    --light:#f4f4f4;
    --white:#ffffff;
    --text:#222222;
    --border:#e5e7eb;
}

*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    background:var(--light);
    color:var(--text);
    font-family:Inter,Arial,sans-serif;
    line-height:1.6;
}

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

.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#fff;
    border-bottom:1px solid var(--border);
    box-shadow:var(--sonsec-shadow-xs);
}

.site-header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    min-height:84px;
}

.logo{
    color:var(--primary);
    font-weight:700;
    font-size:1.6rem;
    text-decoration:none;
}

.primary-navigation ul{
    display:flex;
    gap:28px;
    list-style:none;
    margin:0;
    padding:0;
}

.primary-navigation a{
    color:var(--dark);
    text-decoration:none;
    font-weight:600;
}

.primary-navigation a:hover{
    color:var(--primary);
}

.button{
    display:inline-block;
    min-height:var(--sonsec-button-height);
    padding:12px 28px;
    border-radius:var(--sonsec-radius-pill);
    text-decoration:none;
    font-weight:700;
    transition:var(--sonsec-transition);
}

.button-primary{
    background:var(--primary);
    color:#fff;
}

.button-primary:hover{
    background:#2020d8;
}

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

.hero{
    background:linear-gradient(135deg,#13224a,#3333FF);
    color:#fff;
    padding:110px 0;
}

.hero h1{
    font-size:clamp(2.5rem,6vw,4.5rem);
    line-height:1.1;
    margin-bottom:20px;
}

.hero p{
    font-size:1.2rem;
    max-width:760px;
    margin-bottom:35px;
}

.hero .button{
    margin-right:14px;
}

/* ===========================
   SERVICES
   =========================== */

.services{
    padding:90px 0;
}

.services h2{
    text-align:center;
    font-size:2.4rem;
    margin-bottom:50px;
}

.services ul{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:20px;
    list-style:none;
    padding:0;
    margin:0;
}

.services li{
    background:#fff;
    border-radius:var(--sonsec-radius-md);
    padding:28px;
    box-shadow:var(--sonsec-shadow-md);
    font-weight:600;
    transition:var(--sonsec-transition);
}

.services li:hover{
    transform:translateY(-6px);
}

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

.site-footer{
    background:var(--dark);
    color:#fff;
    padding:60px 0;
}

.site-footer a{
    color:var(--accent);
}

/* ===========================
   MOBILE
   =========================== */

@media (max-width:900px){

    .site-header .container{
        flex-direction:column;
        padding:20px 0;
    }

    .primary-navigation ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:16px;
    }

    .hero{
        text-align:center;
        padding:80px 0;
    }

    .hero .button{
        display:block;
        margin:12px auto;
        max-width:320px;
    }

}

/* ---------- BRANDING ---------- */

.site-branding{
    display:flex;
    align-items:center;
    gap:18px;
    text-decoration:none;
    flex-shrink:0;
}

.site-logo{
    width:72px;
    height:72px;
    object-fit:contain;
    display:block;
    flex-shrink:0;
}

/* ===========================
   SHARED PUBLIC PAGE PRIMITIVES
   =========================== */

.sonsec-breadcrumbs{
    padding:16px 0 0;
}

.sonsec-breadcrumbs ol{
    display:flex;
    flex-wrap:wrap;
    gap:8px 10px;
    list-style:none;
    margin:0;
    padding:0;
    color:#64748B;
    font-size:.95rem;
}

.sonsec-breadcrumbs li{
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.sonsec-breadcrumbs li + li::before{
    content:"/";
    color:#94A3B8;
}

.sonsec-breadcrumbs a{
    color:#0057B8;
    font-weight:700;
    text-decoration:none;
}

.sonsec-page__hero{
    padding:20px 0 12px;
}

.sonsec-page__hero-grid{
    display:grid;
    grid-template-columns:minmax(0,1.12fr) minmax(320px,.88fr);
    gap:20px;
    align-items:start;
}

.sonsec-page__intro-card,
.sonsec-page__support-card,
.sonsec-page__cta-panel{
    background:#FFFFFF;
    border:1px solid rgba(15,23,42,.08);
    border-radius:var(--sonsec-radius-lg);
    box-shadow:var(--sonsec-shadow-sm);
}

.sonsec-page__intro-card,
.sonsec-page__support-card,
.sonsec-page__cta-panel{
    display:flex;
    flex-direction:column;
    padding:24px;
}

.sonsec-page__intro-card{
    gap:14px;
}

.sonsec-page__support-card{
    gap:16px;
}

.sonsec-page__content{
    display:grid;
    gap:24px;
}

.sonsec-page__section{
    display:grid;
    gap:18px;
}

.sonsec-page__section-heading{
    display:grid;
    gap:8px;
    max-width:760px;
}

.sonsec-page__section-heading h2,
.sonsec-page__section-title{
    margin:0;
    color:#07111F;
    line-height:1.2;
    letter-spacing:0;
}

.sonsec-page__section-heading p{
    margin:0;
    color:#475569;
    line-height:1.68;
}

.sonsec-page__cta-row{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

@media (max-width:1100px){
    .sonsec-page__hero-grid{
        grid-template-columns:1fr;
    }
}

@media (max-width:780px){
    .sonsec-page__hero{
        padding-top:14px;
    }
}

.branding-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.company-name{
    display:block;
    font-size:2rem;
    font-weight:800;
    line-height:1;
    color:#111827;
    white-space:nowrap;
}

.company-tagline{
    display:block;
    margin-top:8px;
    font-size:1rem;
    font-weight:700;
    color:#3333FF;
    letter-spacing:.04em;
    text-transform:uppercase;
}

/* ---------- HEADER ---------- */

.site-header{

    background:#fff;

    border-bottom:1px solid #e5e7eb;

}

.site-header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

    min-height:110px;

}

.primary-navigation{

    margin-left:auto;

}

.header-actions{

    display:flex;

    align-items:center;

    gap:14px;

}

/*
|--------------------------------------------------------------------------
| FRONT PAGE
|--------------------------------------------------------------------------
*/

.hero{
    padding:90px 0;
    background:#f8fafc;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;
    align-items:center;
}

.hero-kicker{
    display:inline-block;
    margin-bottom:15px;
    color:#3333FF;
    font-weight:700;
    letter-spacing:2px;
    font-size:.85rem;
    text-transform:uppercase;
}

.hero h1{
    margin:0 0 20px;
    font-size:3.4rem;
    line-height:1.1;
    font-weight:800;
    color:#111827;
}

.hero-text{
    font-size:1.1rem;
    line-height:1.8;
    color:#4b5563;
    margin-bottom:35px;
    max-width:650px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin-bottom:30px;
    flex-wrap:wrap;
}

.hero-contact{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    font-weight:600;
}

.hero-contact a{
    color:#111827;
    text-decoration:none;
}

.hero-contact a:hover{
    color:#3333FF;
}

.hero-image img{
    width:100%;
    height:auto;
    display:block;
}

/*
|--------------------------------------------------------------------------
| TRUST STRIP
|--------------------------------------------------------------------------
*/

.trust-strip{
    background:#3333FF;
    color:#fff;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    padding:22px 0;
    text-align:center;
    font-weight:700;
}

.trust-item{
    white-space:nowrap;
}

/*
|--------------------------------------------------------------------------
| SERVICES
|--------------------------------------------------------------------------
*/

.services{
    padding:90px 0;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-kicker{
    color:#3333FF;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-heading h2{
    margin:15px 0;
    font-size:2.6rem;
    color:#111827;
}

.section-heading p{
    max-width:760px;
    margin:auto;
    color:#6b7280;
    line-height:1.8;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    border-radius:12px;
    padding:35px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.25s;
}

.service-card:hover{
    transform:translateY(-6px);
}

.service-card h3{
    margin-top:0;
    color:#111827;
}

.service-card p{
    color:#6b7280;
    line-height:1.7;
}

/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media(max-width:1100px){

.hero-grid{
    grid-template-columns:1fr;
}

.hero{
    text-align:center;
}

.hero-buttons,
.hero-contact{
    justify-content:center;
}

.service-grid{
    grid-template-columns:repeat(2,1fr);
}

.trust-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:700px){

.hero h1{
    font-size:2.4rem;
}

.service-grid{
    grid-template-columns:1fr;
}

.trust-grid{
    grid-template-columns:1fr;
}

.hero-buttons{
    flex-direction:column;
}

.hero-buttons a{
    width:100%;
    text-align:center;
}

.hero-contact{
    flex-direction:column;
}

}
.hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: linear-gradient(135deg,#081c5a 0%,#143ea8 55%,#2563eb 100%);
    color: #fff;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top right,rgba(255,255,255,.12),transparent 35%),
        radial-gradient(circle at bottom left,rgba(255,255,255,.08),transparent 40%);
    pointer-events:none;
}

.hero .container{
    position:relative;
    z-index:2;
}

.hero .hero-grid{
    max-width:1920px;
    padding-inline:clamp(12px,1vw,18px);
}

.hero-content{
    max-width:800px;
}

.hero h1{
    color:#fff;
    font-size:4rem;
    font-weight:800;
    line-height:1.08;
    margin-bottom:30px;
}

.hero-text{
    color:#dbeafe;
    font-size:1.2rem;
    line-height:1.9;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-bottom:35px;
}

.hero-contact{
    display:flex;
    flex-wrap:wrap;
    gap:28px;
    font-weight:600;
}

.hero-contact a{
    color:#fff;
    text-decoration:none;
}

.hero-contact a:hover{
    color:#7dd3fc;
}

.button-primary{
    background:#39FF14;
    color:#081c5a;
    border-radius:40px;
    padding:16px 34px;
    font-weight:700;
    text-decoration:none;
}

.button-secondary{
    background:transparent;
    color:#fff;
    border:2px solid rgba(255,255,255,.45);
    border-radius:40px;
    padding:16px 34px;
    font-weight:700;
    text-decoration:none;
}

.button-secondary:hover{
    background:#fff;
    color:#143ea8;
}
/* ==========================================================
   SONSEC - SERVICE CARDS UPGRADE
   ========================================================== */

.services{
    padding:110px 0;
    background:#f7f9fc;
}

.section-heading{
    text-align:center;
    max-width:960px;
    margin:0 auto 70px;
}

.section-kicker{
    display:inline-block;
    color:#3333FF;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.section-heading h2{
    margin:0 0 20px;
    font-size:3rem;
    font-weight:800;
    color:#111827;
}

.section-heading p{
    font-size:1.1rem;
    line-height:1.9;
    color:#6b7280;
    max-width:820px;
    margin-right:auto;
    margin-left:auto;
}

.service-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:clamp(22px,1.6vw,34px);

}

.service-card{

    background:#ffffff;

    border-radius:18px;

    padding:40px;

    border-top:5px solid #3333FF;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:all .35s ease;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 24px 55px rgba(0,0,0,.15);

}

.service-card h3{

    font-size:1.45rem;

    margin:0 0 18px;

    color:#111827;

}

.service-card p{

    color:#6b7280;

    line-height:1.8;

    margin:0;

}

@media(max-width:768px){

.section-heading h2{

    font-size:2.2rem;

}

.services{

    padding:70px 0;

}

.service-card{

    padding:30px;

}

}
/* ==========================================================
   TRUST STRIP UPGRADE
   ========================================================== */

.trust-strip{

    background:#0f172a;

    padding:22px 0;

    border-top:4px solid #39FF14;

}

.trust-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

    gap:20px;

    align-items:center;

}

.trust-item{

    color:#ffffff;

    font-size:1rem;

    font-weight:700;

    text-align:center;

    letter-spacing:.5px;

    padding:10px;

    transition:.3s;

}

.trust-item:hover{

    color:#39FF14;

    transform:translateY(-2px);

}
/* ==========================================================
   HERO v2
   ========================================================== */

.hero{
    min-height:720px;
    display:flex;
    align-items:center;
    background:
        radial-gradient(circle at top right,rgba(255,255,255,.10),transparent 35%),
        linear-gradient(135deg,#06184d 0%,#0b2f8a 55%,#1f5cff 100%);
}

.hero-kicker{

    display:flex;
    align-items:center;
    gap:16px;

    color:#ffffff;

    font-size:.95rem;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:28px;

}

.hero-kicker::before{

    content:"";

    width:70px;

    height:4px;

    border-radius:20px;

    background:#39FF14;

}

.hero h1{

    font-size:4.5rem;

    line-height:1.05;

    font-weight:800;

    color:#ffffff;

    margin-bottom:30px;

}

.hero-text{

    color:#dbeafe;

    font-size:1.2rem;

    max-width:760px;

}

.button-primary{

    background:#39FF14;

    color:#081c5a;

}

.button-primary:hover{

    background:#7dff62;

}

.button-secondary{

    border:2px solid rgba(255,255,255,.35);

}

.button-secondary:hover{

    background:#ffffff;

    color:#0b2f8a;

}
.hero-content{

    position:relative;

    z-index:5;

    max-width:800px;

}

.hero{

    overflow:hidden;

}

.hero::after{

    content:"";

    position:absolute;

    right:-120px;

    top:50%;

    transform:translateY(-50%);

    width:820px;

    height:820px;

    border-radius:50%;

    background:
        radial-gradient(circle,rgba(255,255,255,.08) 0%,rgba(255,255,255,0) 70%);

    pointer-events:none;

}

.hero-buttons{

    margin-top:45px;

    margin-bottom:45px;

}

.hero-buttons .button{

    min-width:220px;

    text-align:center;

    font-size:1.05rem;

    padding:18px 34px;

    border-radius:50px;

    transition:.3s;

}

.hero-contact{

    border-top:1px solid rgba(255,255,255,.20);

    padding-top:28px;

    gap:40px;

}

.hero-contact a{

    font-size:1.05rem;

    font-weight:700;

}

.hero-contact a:hover{

    transform:translateY(-2px);

}
.hero{
    background:
    radial-gradient(circle at top right,rgba(255,255,255,.06),transparent 35%),
    linear-gradient(135deg,#06123d 0%,#0a1f63 55%,#1236a5 100%) !important;
}

.hero-contact a,
.hero-contact a:visited,
.hero-contact a:hover{
    color:#ffffff !important;
}

.hero-contact{
    border-top:1px solid rgba(255,255,255,.15);
}
/* ==========================================================
   HERO IMAGE LAYOUT
   ========================================================== */

.hero-grid{

    display:grid;

    grid-template-columns:minmax(0,1.02fr) minmax(0,1.08fr);

    align-items:center;

    gap:clamp(12px,1vw,20px);

}

.hero-image{

    display:flex;

    justify-content:flex-end;

    align-items:center;
    min-width:0;

}

.hero-image picture{

    display:block;

    width:min(100%,940px);

    max-width:100%;

}

.hero-image img{

    width:100%;
    max-width:100%;

    height:auto;

    display:block;

    margin-right:0;

    filter:
        drop-shadow(0 35px 60px rgba(0,0,0,.45));

}

@media(max-width:1200px){

.hero-image img{

    width:100%;
    max-width:100%;
    margin-right:0;

}

}

@media(max-width:992px){

.hero-grid{

    grid-template-columns:1fr;

}

.hero-image{

    justify-content:center;

    margin-top:50px;

}

.hero-image picture{

    max-width:650px;

    margin-right:0;

}

.hero-image img{

    width:100%;

    max-width:650px;

    margin-right:0;

}

}
/* ==========================================================
   BRANDS
   ========================================================== */

.brands{

    padding:100px 0;

    background:#ffffff;

}

@media(max-width:768px){

.brands{

    padding:70px 0;

}

}
.service-card{

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#39FF14,#3333FF);

}

.service-card:hover h3{

    color:#3333FF;

}


/* ==========================================================
   MOBILE HOTFIX - SPRINT 1
   ========================================================== */

@media (max-width:768px){

header .container{

    flex-wrap:nowrap;

    justify-content:space-between;

    padding:14px 18px;

}


.site-branding img{

    max-height:55px;

}

.site-title{

    font-size:1.25rem;

}

.site-description{

    display:none;

}

.main-navigation ul{

    flex-direction:column;

    gap:14px;

}

.hero{

    min-height:auto;

    padding:70px 0 40px;

}

.hero-grid{

    display:flex;

    flex-direction:column;

    gap:35px;

}

.hero-content{

    max-width:100%;

    text-align:center;

}

.hero h1{

    font-size:2.4rem;

    line-height:1.15;

}

.hero-text{

    font-size:1rem;

}

.hero-buttons{

    flex-direction:column;

    width:100%;

}

.hero-buttons .button{

    width:100%;

}

.hero-contact{

    justify-content:center;

    gap:18px;

}

.hero-image{

    order:-1;

    justify-content:center;

}

.hero-image picture{

    max-width:420px;

    margin:0;

}

.hero-image img{

    width:100%;

    max-width:420px;

    margin:0;

}

.service-grid,

.why-grid,

.testimonial-grid,

.brands-grid{

    grid-template-columns:1fr;

}

.section-heading h2{

    font-size:2rem;

}

}

/* ==========================================================
   HOMEPAGE POLISH - RC7.18.57
   ========================================================== */

.admin-bar .site-header{
    top:32px;
}

.hero{
    min-height:auto;
    padding:84px 0 62px;
}

.hero .hero-grid{
    grid-template-columns:minmax(0,1fr) minmax(360px,.92fr);
    gap:44px;
}

.hero-content{
    max-width:760px;
}

.hero-kicker{
    margin-bottom:22px;
}

.hero h1{
    margin-bottom:24px;
    font-size:4.05rem;
    line-height:1.06;
}

.hero-text{
    max-width:690px;
    margin-bottom:0;
    font-size:1.12rem;
    line-height:1.72;
}

.hero-buttons{
    gap:14px;
    margin-top:32px;
    margin-bottom:28px;
}

.hero-buttons .button{
    min-width:188px;
    min-height:50px;
    padding:14px 28px;
    border-radius:999px;
    font-size:1rem;
}

.hero-buttons .button:focus-visible,
.hero-contact a:focus-visible{
    outline:3px solid rgba(57,255,20,.45);
    outline-offset:3px;
}

.hero-contact{
    align-items:center;
    gap:12px 24px;
    padding-top:22px;
}

.hero-contact a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    min-height:40px;
    padding:2px 0;
    border-bottom:1px solid rgba(255,255,255,.24);
    font-size:1rem;
    line-height:1;
    transition:
        color var(--sonsec-transition-fast),
        border-color var(--sonsec-transition-fast),
        transform var(--sonsec-transition-fast);
}

.hero-contact a:hover,
.hero-contact a:focus-visible{
    color:#39FF14 !important;
    border-bottom-color:#39FF14;
    text-decoration:none;
    transform:translateY(-1px);
}

.hero-contact a[href*="wa.me"] .sonsec-contact-icon{
    color:#39FF14;
}

.hero-contact .sonsec-contact-icon{
    width:1.12rem;
    height:1.12rem;
}

.trust-strip{
    padding:16px 0;
    border-top-width:3px;
}

.trust-grid{
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:10px 16px;
    padding:0;
}

.trust-item{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:38px;
    padding:7px 6px;
    font-size:.95rem;
    line-height:1.3;
    letter-spacing:0;
    white-space:normal;
}

@media(max-width:1280px){

.hero{
    padding:72px 0 56px;
}

.hero h1{
    font-size:3.55rem;
}

.hero-text{
    max-width:650px;
}

}

@media(max-width:1024px){

.admin-bar .site-header{
    top:32px;
}

.hero{
    padding:58px 0 46px;
}

.hero h1{
    font-size:3rem;
}

.trust-grid{
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
}

}

@media(max-width:782px){

.admin-bar .site-header{
    top:46px;
}

}

@media(max-width:768px){

.hero{
    padding:34px 0 30px;
}

.hero .hero-grid{
    gap:24px;
}

.hero-kicker{
    margin-bottom:16px;
}

.hero h1{
    margin-bottom:18px;
    font-size:2.2rem;
}

.hero-text{
    max-width:35rem;
    margin:0 auto;
    line-height:1.62;
}

.hero-buttons{
    gap:10px;
    margin:24px 0 22px;
}

.hero-buttons .button{
    min-height:48px;
    max-width:340px;
    padding:13px 22px;
}

.hero-contact{
    flex-direction:row;
    justify-content:center;
    gap:8px 18px;
    padding-top:18px;
}

.hero-contact a{
    min-height:44px;
    font-size:.94rem;
}

.hero-image{
    margin-top:0;
}

.trust-strip{
    padding:14px 0;
}

.trust-grid{
    grid-template-columns:repeat(auto-fit,minmax(135px,1fr));
}

.trust-item{
    min-height:34px;
    font-size:.88rem;
}

}

@media(max-width:380px){

.hero h1{
    font-size:2rem;
}

.hero-contact{
    gap:6px 14px;
}

.hero-contact a{
    font-size:.9rem;
}

}

/* ==========================================================
   HOMEPAGE CONTACT ACTIONS - RC7.18.58
   ========================================================== */

.hero-contact{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    align-items:stretch;
    justify-content:start;
    width:100%;
    max-width:620px;
    gap:10px;
    padding-top:18px;
}

.hero-contact__action,
.hero-contact__action:visited,
.hero-contact__action:hover{
    display:flex;
    align-items:center;
    gap:10px;
    min-width:0;
    min-height:72px;
    padding:12px 13px;
    border:1px solid rgba(255,255,255,.16);
    border-radius:8px;
    background:rgba(7,19,41,.52);
    color:#FFFFFF !important;
    text-decoration:none;
    box-shadow:0 10px 28px rgba(7,19,41,.16);
    transition:border-color .18s ease, background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.hero-contact__action:hover,
.hero-contact__action:focus-visible{
    border-color:rgba(57,255,20,.55);
    background:rgba(7,19,41,.72);
    box-shadow:0 14px 32px rgba(7,19,41,.24);
    color:#FFFFFF !important;
    transform:translateY(-1px);
}

.hero-contact__action:focus-visible{
    outline:3px solid rgba(57,255,20,.45);
    outline-offset:3px;
}

.hero-contact__icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:36px;
    height:36px;
    flex:0 0 36px;
    border:1px solid rgba(255,255,255,.16);
    border-radius:8px;
    background:rgba(255,255,255,.08);
    color:#FFFFFF;
}

.hero-contact__action--whatsapp .hero-contact__icon{
    border-color:rgba(57,255,20,.38);
    background:rgba(18,140,126,.24);
    color:#39FF14;
}

.hero-contact__content{
    display:grid;
    gap:4px;
    min-width:0;
    text-align:left;
}

.hero-contact__label,
.hero-contact__meta{
    display:block;
    min-width:0;
    overflow-wrap:anywhere;
}

.hero-contact__label{
    font-size:.98rem;
    font-weight:800;
    line-height:1.1;
    color:#FFFFFF;
}

.hero-contact__meta{
    font-size:.78rem;
    font-weight:600;
    line-height:1.2;
    color:rgba(226,232,240,.76);
}

.hero-contact .sonsec-contact-icon{
    width:1.15rem;
    height:1.15rem;
}

.hero-contact__action:hover .hero-contact__label,
.hero-contact__action:focus-visible .hero-contact__label{
    color:#39FF14;
}

@media(max-width:1280px){

.hero-contact{
    max-width:590px;
}

.hero-contact__action{
    min-height:70px;
    padding:11px 12px;
}

}

@media(max-width:1024px){

.hero-contact{
    max-width:100%;
}

}

/* ==========================================================
   HOMEPAGE GOOGLE ACTIONS - RC7.18.59
   ========================================================== */

.google-actions{
    padding:38px 0 42px;
    background:#F8FAFC;
}

.google-actions__inner{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(360px,.95fr);
    gap:26px;
    align-items:center;
    padding:24px;
    border:1px solid rgba(15,23,42,.1);
    border-radius:8px;
    background:#FFFFFF;
    box-shadow:0 14px 34px rgba(15,23,42,.06);
}

.google-actions__copy{
    display:grid;
    gap:8px;
    max-width:640px;
}

.google-actions__copy .section-kicker{
    margin:0;
}

.google-actions__copy h2{
    margin:0;
    color:#071329;
    font-size:1.7rem;
    line-height:1.18;
    letter-spacing:0;
}

.google-actions__copy p{
    margin:0;
    color:#475569;
    font-size:.98rem;
    line-height:1.62;
}

.google-actions__list{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
}

.google-action,
.google-action:visited{
    display:flex;
    align-items:center;
    gap:12px;
    min-height:86px;
    padding:14px;
    border:1px solid rgba(15,23,42,.12);
    border-radius:8px;
    background:#FFFFFF;
    color:#071329;
    text-decoration:none;
    transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.google-action:hover,
.google-action:focus-visible{
    border-color:rgba(57,255,20,.62);
    color:#071329;
    text-decoration:none;
    box-shadow:0 14px 30px rgba(15,23,42,.12);
    transform:translateY(-1px);
}

.google-action:focus-visible{
    outline:3px solid rgba(57,255,20,.45);
    outline-offset:3px;
}

.google-action__icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    flex:0 0 40px;
    border:1px solid rgba(15,23,42,.1);
    border-radius:8px;
    background:#F1F5F9;
    color:#143EA8;
}

.google-action--source .google-action__icon{
    color:#075E54;
    background:rgba(18,140,126,.1);
}

.google-action--review .google-action__icon{
    color:#B45309;
    background:#FFF7ED;
}

.google-action__icon svg{
    width:1.25rem;
    height:1.25rem;
    fill:none;
    stroke:currentColor;
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.google-action__body{
    display:grid;
    gap:4px;
    min-width:0;
}

.google-action__label,
.google-action__meta{
    display:block;
    min-width:0;
    overflow-wrap:anywhere;
}

.google-action__label{
    font-size:.96rem;
    font-weight:800;
    line-height:1.2;
    color:#071329;
}

.google-action__meta{
    color:#475569;
    font-size:.82rem;
    font-weight:600;
    line-height:1.35;
}

@media(max-width:1024px){

.google-actions__inner{
    grid-template-columns:1fr;
}

.google-actions__copy{
    max-width:760px;
}

}
