/* =====================================
   Pro Real Estate Signs
===================================== */

:root{
    --blue:#0A3D62;
    --blue-dark:#06273F;
    --text:#111111;
    --gray:#666666;
    --light:#F5F5F7;
    --white:#FFFFFF;
}

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

body{

    font-family:Arial,Helvetica,sans-serif;

    color:var(--text);

    background:var(--white);

}

.container{

    width:min(1200px,90%);

    margin:auto;

}
h1{

    font-size:72px;

    line-height:1;

    font-weight:700;

    letter-spacing:-3px;

    margin-top:120px;

}

p{

    font-size:24px;

    color:var(--gray);

    margin:20px 0 48px;

    max-width:700px;

    line-height:1.6;

}
.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,.96);
    border-bottom:1px solid #e5e7eb;
}

.nav-wrapper{
    min-height:76px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.brand{
    color:var(--text);
    font-size:18px;
    font-weight:700;
    text-decoration:none;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:24px;
}

.main-nav a{
    color:var(--text);
    font-size:15px;
    text-decoration:none;
}

.main-nav a:hover{
    opacity:.65;
}

.hero{
    position:relative;
    isolation:isolate;
    min-height:calc(85vh - 76px);
    display:flex;
    align-items:center;
    padding:100px 0;
    overflow:hidden;

    background:
        linear-gradient(
            115deg,
            transparent 24%,
            rgba(255,255,255,.12) 36%,
            rgba(255,255,255,.72) 49%,
            rgba(255,255,255,.16) 61%,
            transparent 74%
        ),
        radial-gradient(
            circle at 82% 18%,
            rgba(66,133,244,.24) 0%,
            rgba(66,133,244,.11) 25%,
            transparent 52%
        ),
        radial-gradient(
            circle at 10% 95%,
            rgba(117,102,255,.14) 0%,
            transparent 36%
        ),
        radial-gradient(
            circle at 60% 88%,
            rgba(74,170,255,.11) 0%,
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f7fbff 40%,
            #eaf4ff 70%,
            #d9eaff 100%
        );
}

/* Blue-to-white fading dot pattern */

.hero::before{
    content:"";
    position:absolute;
    width:560px;
    height:560px;
    top:50%;
    right:-4%;
    transform:translateY(-50%);
    pointer-events:none;
    z-index:1;

    /* Supplies the blue-to-white dot colors */
   background:
    linear-gradient(
        90deg,
        #0A3D62 0%,
        #2674B8 38%,
        #78B8E8 68%,
        #EAF6FF 100%
    );

    /* Cuts the background into individual dots */
    -webkit-mask-image:
        radial-gradient(
            circle,
            #000 2px,
            transparent 2.7px
        ),
        radial-gradient(
            circle at center,
            #000 0%,
            #000 22%,
            rgba(0,0,0,.70) 46%,
            transparent 76%
        );

    -webkit-mask-size:
        28px 28px,
        100% 100%;

    -webkit-mask-position:
        center,
        center;

    -webkit-mask-repeat:
        repeat,
        no-repeat;

    -webkit-mask-composite:source-in;

    mask-image:
        radial-gradient(
            circle,
            #000 2px,
            transparent 2.7px
        ),
        radial-gradient(
            circle at center,
            #000 0%,
            #000 22%,
            rgba(0,0,0,.70) 46%,
            transparent 76%
        );

    mask-size:
        28px 28px,
        100% 100%;

    mask-position:
        center,
        center;

    mask-repeat:
        repeat,
        no-repeat;

    mask-composite:intersect;

    opacity:.45;
}

/* Lower-left translucent bubble */

.hero::after{
    content:"";
    position:absolute;
    width:340px;
    height:340px;
    left:-130px;
    bottom:-170px;
    border-radius:50%;
    pointer-events:none;
    z-index:0;

    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(255,255,255,.46) 0%,
            rgba(125,177,255,.16) 48%,
            rgba(86,143,255,.07) 72%,
            transparent 100%
        );

    border:1px solid rgba(255,255,255,.42);

    box-shadow:
        inset 0 0 60px rgba(255,255,255,.16),
        0 30px 90px rgba(59,130,246,.08);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:950px;
}

.eyebrow{
    margin:0 0 20px;
    color:var(--blue);
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.hero h1{
    margin:0;
    max-width:950px;
    font-size:clamp(56px,7vw,100px);
    line-height:.98;
    letter-spacing:-5px;
}

.hero-text{
    max-width:720px;
    margin-top:30px;
    color:var(--gray);
    font-size:22px;
    line-height:1.55;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:36px;
}

.button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:0 24px;
    border:1px solid var(--blue);
    border-radius:999px;
    background:var(--blue);
    color:var(--white) !important;
    font-weight:700;
    text-decoration:none;

    box-shadow:
        0 8px 24px rgba(10,61,98,.18),
        0 2px 6px rgba(10,61,98,.10);

    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.button:hover{
    transform:translateY(-2px);
    background:var(--blue-dark);
    border-color:var(--blue-dark);
    opacity:1 !important;

    box-shadow:
        0 14px 34px rgba(10,61,98,.24),
        0 4px 10px rgba(10,61,98,.12);
}

.button-small{
    min-height:42px;
    padding:0 18px;
}

.button-secondary{
    background:transparent;
    color:var(--blue) !important;
}

.button-secondary:hover{
    color:var(--white) !important;
}
/* =====================================
   Infrastructure Section
===================================== */

.infrastructure{
    padding:120px 0;
    background:var(--light);
}

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

.section-header h2{
    font-size:clamp(40px,5vw,64px);
    line-height:1.1;
    letter-spacing:-2px;
    margin-bottom:24px;
}

.section-text{
    max-width:700px;
    margin:0 auto;
    font-size:20px;
    line-height:1.7;
    color:var(--gray);
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.feature-card{
    padding:36px;
    background:var(--light);
    border:1px solid #e6e8ec;
    border-radius:20px;
    transition:.25s ease;
}

.feature-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.feature-card h3{
    font-size:24px;
    margin-bottom:18px;
}

.feature-card p{
    margin:0;
    font-size:17px;
    line-height:1.7;
    color:var(--gray);
}/* =====================================
   Services Section
===================================== */

.services{
    background:var(--white);
}


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

.service-card{
    background:var(--white);
    padding:40px;
    border-radius:20px;
    border:1px solid #e6e8ec;
    transition:.25s ease;
}

.service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.service-card h3{
    font-size:26px;
    margin-bottom:18px;
}

.service-card p{
    margin:0;
    font-size:17px;
    line-height:1.7;
    color:var(--gray);
}/* =====================================
   Coverage Section
===================================== */

.coverage{
    padding:120px 0;
    background:var(--blue-dark);
    color:var(--white);
}

.coverage-layout{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:70px;
    align-items:center;
}

.coverage .eyebrow{
    color:#9fc3dc;
}

.coverage h2{
    font-size:clamp(40px,5vw,64px);
    line-height:1.1;
    letter-spacing:-2px;
    margin-bottom:24px;
}

.coverage .section-text{
    margin:0;
    color:rgba(255,255,255,.75);
}

.county-list{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:42px;
}

.county-list span{
    padding:14px 24px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    font-size:15px;
    font-weight:600;
}


.coverage-panel{
    padding:44px;
    border-radius:24px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
}

.coverage-label{
    margin:0 0 16px;
    color:#9fc3dc;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.coverage-panel h3{
    font-size:34px;
    margin-bottom:18px;
}

.coverage-panel p{
    margin:0 0 30px;
    color:rgba(255,255,255,.75);
    font-size:18px;
    line-height:1.7;
}

.coverage-panel .button{
    background:var(--white);
    color:var(--blue-dark) !important;
    border-color:var(--white);
}
/* =====================================
   Dashboard Section
===================================== */

.dashboard{
    background:var(--light);
}

.dashboard-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;
}

.dashboard h2{
    font-size:clamp(40px,5vw,64px);
    line-height:1.1;
    letter-spacing:-2px;
    margin-bottom:24px;
}

.dashboard-features{
    margin-top:40px;
    list-style:none;
    display:grid;
    gap:18px;
}

.dashboard-features li{
    font-size:18px;
    font-weight:600;
    color:var(--text);
}

.dashboard-features li::before{
    content:"✓";
    color:var(--blue);
    margin-right:12px;
    font-weight:700;
}

.dashboard-image{
    overflow:visible;
}

.app-window{
   background:#F7F7F8;
    border:1px solid #d9dee5;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 30px 70px rgba(0,0,0,.12);
    transform:scale(1.08);
}

.app-header{
    height:48px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 18px;
    background:#f5f7fa;
    border-bottom:1px solid #e6e8ec;
}

.app-dots{
    display:flex;
    gap:8px;
}

.app-dots span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#c5ccd4;
}

.app-title{
    font-size:14px;
    font-weight:600;
    color:#666;
}

.dashboard-image img{
    width:100%;
    display:block;
}

@media (max-width:850px){
    .main-nav a:not(.button){
        display:none;
    }

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

    .hero h1{
        font-size:clamp(52px,14vw,78px);
        letter-spacing:-3px;
    }
}
.brand img{
    height:62px;
    width:auto;
    display:block;
}
.hero-order-button{
    min-width:220px;
    min-height:58px;
    font-size:17px;
}
.about-values{
    padding:120px 0 70px;
}
/* =====================================
   Footer
===================================== */

.site-footer{
    padding:70px 0 24px;
    background:var(--blue-dark);
    color:var(--white);
}

.footer-layout{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:40px;
}
.footer-links{
    display:flex;
    gap:20px;
    align-items:flex-start;
}

.footer-links a{
    color:rgba(255,255,255,.75);
    text-decoration:none;
    font-size:16px;
    transition:.2s ease;
}

.footer-links a:hover{
    color:var(--white);
}

.footer-brand > img{
    display:block;
    width:auto;
    height:auto;
    max-width:320px;
}

.footer-brand p{
    margin-top:20px;
    color:rgba(255,255,255,.70);
    font-size:17px;
    line-height:1.5;
}
.footer-social-title{
    margin:24px 0 8px;
    color:rgba(255,255,255,.85);
    font-size:15px;
    font-weight:600;
    letter-spacing:.5px;
}

.footer-social{
    margin-top:0;
}

.footer-social a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:50%;
    transition:.2s ease;
}

.footer-social a:hover{
    background:rgba(255,255,255,.10);
    transform:translateY(-2px);
}

.footer-social img{
    display:block;
    width:20px;
    height:20px;
    max-width:20px;
    max-height:20px;
    filter:brightness(0) invert(1);
}

.footer-bottom{
    margin-top:50px;
    padding-top:24px;
    border-top:1px solid rgba(255,255,255,.15);
}

.footer-bottom p{
    margin:0;
    max-width:none;
    color:rgba(255,255,255,.70);
    font-size:14px;
    text-align:center;
}
.cta{
    padding:120px 0;
}

.cta h2{
    max-width:760px;
    margin-bottom:24px;
}

.cta .section-text{
    max-width:760px;
    margin:0 0 42px 0;
    text-align:left;
}
/* =====================================
   Announcement Bar
===================================== */

.announcement-bar{
    position:relative;
    overflow:hidden;
    color:var(--white);
    white-space:nowrap;
    background:
        linear-gradient(
            115deg,
            rgba(255,255,255,0) 28%,
            rgba(255,255,255,.08) 43%,
            rgba(255,255,255,.15) 50%,
            rgba(255,255,255,.08) 57%,
            rgba(255,255,255,0) 72%
        ),
        linear-gradient(
            90deg,
            rgba(6,39,63,.98) 0%,
            rgba(10,61,98,.96) 50%,
            rgba(6,39,63,.98) 100%
        );
    border-bottom:1px solid rgba(255,255,255,.10);
    box-shadow:0 8px 24px rgba(6,39,63,.10);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
}

.announcement-track{
    display:flex;
    width:max-content;
    animation:scrollAnnouncement 30s linear infinite;
}

.announcement-group{
    display:flex;
    flex-shrink:0;
    align-items:center;
    padding:12px 0;
}

.announcement-group span{
    display:block;
    padding-right:120px;
    color:var(--white);
    font-size:15px;
    font-weight:600;
    letter-spacing:.5px;
}

@keyframes scrollAnnouncement{
    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}
/* =====================================
   Mobile Coverage Page Fix
===================================== */

@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .coverage-layout,
    .coverage-grid,
    .service-area-layout {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 35px;
    }

    .coverage-content,
    .coverage-text,
    .coverage-card,
    .service-area-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin: 0;
    }

    .coverage-section,
    .service-area-section {
        padding-left: 22px;
        padding-right: 22px;
    }

    .coverage-content p,
    .coverage-text p,
    .coverage-card p,
    .service-area-card p {
        font-size: 18px;
        line-height: 1.7;
    }

    .coverage-card,
    .service-area-card {
        padding: 36px 26px;
        border-radius: 30px;
    }

    .coverage-card h2,
    .service-area-card h2 {
        font-size: 38px;
        line-height: 1.08;
        overflow-wrap: break-word;
    }

    .county-list,
    .coverage-counties {
        display: flex;
        flex-direction: column;
        gap: 18px;
        width: 100%;
    }

    .county-list a,
    .county-list span,
    .coverage-counties a,
    .coverage-counties span {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
}
/* =====================================
   Mobile Navigation
===================================== */

.mobile-menu-button,
.mobile-nav {
    display: none;
}

@media (max-width: 768px) {

    .site-header {
        position: relative;
        z-index: 1000;
    }

    .nav-wrapper {
        min-height: 110px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .brand {
        flex: 1;
        min-width: 0;
    }

    .brand img {
        display: block;
        width: 100%;
        max-width: 260px;
        height: auto;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 52px;
        height: 52px;
        padding: 0;
        gap: 6px;
        background: #12395a;
        border: 0;
        border-radius: 50%;
        cursor: pointer;
    }

    .mobile-menu-button span {
        display: block;
        width: 23px;
        height: 3px;
        background: #ffffff;
        border-radius: 10px;
        transition:
            transform 0.25s ease,
            opacity 0.25s ease;
    }

    .mobile-menu-button.is-open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-button.is-open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-button.is-open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .mobile-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-sizing: border-box;
        padding: 18px 24px 28px;
        background: #ffffff;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.14);
    }

    .mobile-nav.is-open {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .mobile-nav a {
        display: block;
        padding: 16px 4px;
        color: #0d2b43;
        font-size: 19px;
        font-weight: 700;
        text-decoration: none;
        border-bottom: 1px solid rgba(13, 43, 67, 0.1);
    }

    .mobile-nav a:last-child {
        border-bottom: 0;
    }

    .mobile-nav .mobile-login-button {
        margin-top: 16px;
        padding: 16px 24px;
        color: #ffffff;
        text-align: center;
        background: #12395a;
        border-radius: 999px;
    }
}
/* =====================================
   Mobile Header and Open Menu Repair
===================================== */

@media (max-width: 768px) {

    .nav-wrapper {
        min-height: 88px;
    }

    .brand img {
        width: auto;
        max-width: 210px;
        max-height: 72px;
        object-fit: contain;
    }

    .mobile-menu-button {
        width: 50px;
        height: 50px;
    }

    .mobile-nav {
        position: fixed;
        top: 88px;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        max-height: calc(100dvh - 88px);
        padding: 22px 24px 32px;
        overflow-y: auto;
        background: #ffffff;
        box-shadow: none;
        z-index: 1001;
    }

    .mobile-nav.is-open {
        display: flex;
    }

    body:has(.mobile-nav.is-open) {
        overflow: hidden;
    }
}
/* =====================================
   Home Page Footer Mobile Fix
===================================== */

@media (max-width: 768px) {

    .site-footer {
        padding: 60px 0 30px;
        overflow: hidden;
    }

    .footer-layout {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 45px;
        width: 100%;
    }

    .footer-brand {
        width: 100%;
    }

    .footer-brand img {
    display: block;
    width: auto;
    height: auto;
    max-width: 260px;
    margin: 0 0 20px;
}

    .footer-brand p {
        max-width: 280px;
        font-size: 18px;
        line-height: 1.55;
    }

    .footer-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .footer-nav a {
        display: block;
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
        font-size: 18px;
    }

    .footer-nav a:last-child {
        border-bottom: none;
    }

    .footer-bottom {
        width: 100%;
        margin-top: 45px;
        padding-top: 28px;
    }

    .footer-bottom p {
        margin: 0;
        font-size: 14px;
        line-height: 1.6;
        text-align: left;
    }
}
/* =====================================
   Dashboard Section Mobile Fix
===================================== */

@media (max-width: 768px) {

    .dashboard-section,
    .platform-section,
    .management-section {
        padding-left: 24px;
        padding-right: 24px;
        overflow: hidden;
    }

    .dashboard-layout,
    .platform-layout,
    .management-layout {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 36px;
    }

    .dashboard-visual,
    .platform-visual,
    .management-visual,
    .dashboard-content,
    .platform-content,
    .management-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin: 0;
    }

    .dashboard-content,
    .platform-content,
    .management-content {
        order: 1;
    }

    .dashboard-visual,
    .platform-visual,
    .management-visual {
        order: 2;
        display: flex;
        justify-content: center;
    }

    .dashboard-visual img,
    .platform-visual img,
    .management-visual img {
        display: block;
        width: 100%;
        max-width: 340px;
        height: auto;
    }

    .dashboard-content h2,
    .platform-content h2,
    .management-content h2 {
        font-size: clamp(42px, 12vw, 64px);
        line-height: 0.98;
        letter-spacing: -2px;
        overflow-wrap: normal;
        word-break: normal;
    }

    .dashboard-content p,
    .platform-content p,
    .management-content p {
        font-size: 20px;
        line-height: 1.65;
    }

    .dashboard-features,
    .platform-features,
    .management-features {
        width: 100%;
        margin-top: 28px;
    }

    .dashboard-features li,
    .platform-features li,
    .management-features li {
        font-size: 20px;
        line-height: 1.35;
        margin-bottom: 22px;
    }
}

/* =====================================
   Consistent Mobile Side Margins
   Keeps section backgrounds full width
   while moving section content inward.
===================================== */

@media (max-width: 768px) {

    .container {
        width: calc(100% - 48px);
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }
}
/* =====================================
   Mobile Footer Final Fix
===================================== */

@media (max-width: 768px) {

    .site-footer {
        width: 100%;
        padding: 60px 0 30px;
        overflow: hidden;
    }

    .site-footer .container {
        width: 100%;
        padding-left: 28px;
        padding-right: 28px;
        box-sizing: border-box;
    }

    .footer-layout {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 42px;
        width: 100%;
    }

    .footer-brand {
        width: 100%;
    }

    .footer-brand img {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin-bottom: 22px;
    }

    .footer-brand p {
        max-width: 310px;
        margin: 0;
        font-size: 18px;
        line-height: 1.55;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        width: 100%;
        margin-top: 24px;
    }

    .footer-links a {
        display: block;
        width: 100%;
        text-align: left;
        white-space: nowrap;
        font-size: 18px;
        font-weight: 500;
        line-height: 1.2;
        text-decoration: none;
        padding: 0;
        border: none;
    }

    .footer-bottom {
        width: 100%;
        margin-top: 45px;
        padding-top: 26px;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }

    .footer-bottom p {
        margin: 0;
        font-size: 14px;
        line-height: 1.6;
        text-align: left;
    }
}
.footer-social{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:22px;
}

.footer-social img{
    width:28px;
    height:28px;
    display:block;
    opacity:.9;
    transition:.25s;
}

.footer-social img:hover{
    opacity:1;
    transform:translateY(-2px);
}
/* ===========================
   Footer Social Icons
=========================== */

.footer-social-title{
    margin:28px 0 16px;
    font-size:14px;
    font-weight:600;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:rgba(255,255,255,.75);
}

/* ===========================
   Footer Social Icons
=========================== */

.footer-social{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:8px;
}

.footer-social a{
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:transform .2s ease, opacity .2s ease;
}

.footer-social a:hover{
    transform:translateY(-2px);
    opacity:.8;
}

.footer-social img{
    width:30px;
    height:30px;
    display:block;
}

.footer-social a:hover img{
    opacity:1;
}
/* Final social icon reset */

.footer-social {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 18px !important;
    margin-top: 12px !important;
}

.footer-social a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 30px !important;
    height: 30px !important;
    padding: 0 !important;
    margin: 0 !important;

    border: none !important;
    border-radius: 0 !important;
    background: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.footer-social img {
    display: block !important;
    width: 30px !important;
    height: 30px !important;
    margin: 0 !important;
    padding: 0 !important;

    border: none !important;
    border-radius: 0 !important;
    object-fit: contain !important;
}

@media (max-width: 768px) {
    .footer-social {
        justify-content: flex-start !important;
        width: 100% !important;
    }

    .footer-social a {
        width: 30px !important;
        height: 30px !important;
    }

    .footer-social img {
        width: 30px !important;
        height: 30px !important;
    }
}
/* =====================================
   Premium Hero Mobile Adjustment
===================================== */

@media (max-width:768px){

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

        background:
            linear-gradient(
                120deg,
                transparent 22%,
                rgba(255,255,255,.52) 49%,
                transparent 74%
            ),
            radial-gradient(
                circle at 92% 12%,
                rgba(66,133,244,.20) 0%,
                transparent 46%
            ),
            radial-gradient(
                circle at 4% 96%,
                rgba(117,102,255,.11) 0%,
                transparent 38%
            ),
            linear-gradient(
                145deg,
                #ffffff 0%,
                #f5f9ff 52%,
                #e3efff 100%
            );
    }

    .hero::before{
        width:330px;
        height:330px;
        top:68%;
        right:-132px;
        transform:translateY(-50%);
        -webkit-mask-size:
            22px 22px,
            100% 100%;
        mask-size:
            22px 22px,
            100% 100%;
        opacity:.62;
    }

    .hero::after{
        width:220px;
        height:220px;
        left:-120px;
        bottom:-100px;
    }

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

    .hero h1{
        font-size:clamp(50px,14vw,76px);
        line-height:.98;
        letter-spacing:-3px;
    }

    .hero-text{
        max-width:100%;
        font-size:19px;
        line-height:1.6;
    }

    .hero-actions{
        align-items:stretch;
        flex-direction:column;
    }

    .hero-actions .button{
        width:100%;
    }
}
/* =====================================
   Communities We Serve
===================================== */

.communities-section {
    padding: 100px 0;
    background: #ffffff;
}

.communities-section .section-header {
    max-width: 900px;
    margin: 0 auto 55px;
    text-align: center;
}

.community-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.community-list span {
    position: relative;
    display: block;
    padding-left: 28px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    color: #102538;
}

.community-list span::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: #0b4f78;
}

@media (max-width: 900px) {
    .community-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 550px) {
    .communities-section {
        padding: 70px 0;
    }

    .communities-section .section-header {
        margin-bottom: 40px;
    }

    .community-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .community-list span {
        font-size: 16px;
    }
}
.app-footer{
    padding:12px 18px;
    background:#f5f7fa;
    border-top:1px solid #e6e8ec;
    color:#6b7280;
    font-size:13px;
    font-weight:600;
    line-height:1.4;
    text-align:left;
    display:flex;
align-items:center;
gap:8px;
}
/* =====================================
   About Page Mobile Section Order
===================================== */

@media (max-width: 768px) {

    .dashboard-layout{
        display:flex;
        flex-direction:column;
        gap:36px;
    }

    .dashboard-content{
        order:1;
        width:100%;
    }

    .dashboard-image{
        order:2;
        width:100%;
        margin-top:10px;
    }

    .dashboard-image .app-window{
        width:100%;
        max-width:100%;
        transform:none;
    }

}