/* =========================================================
   LEADS BY CLICKS
   GOOGLE BUSINESS PROFILE PAGE
========================================================= */


:root {

    --blue: #071b4d;

    --blue-2: #0b2c70;

    --blue-3: #123d8f;

    --orange: #ff8a00;

    --cyan: #20c8e8;

    --white: #ffffff;

    --off-white: #f6f8fc;

    --text: #15213b;

    --muted: #64708a;

    --border: #dfe5ef;

    --shadow: 0 18px 45px rgba(7, 27, 77, 0.10);

    --radius: 20px;

    --container: 1120px;
}



* {
    box-sizing: border-box;

    margin: 0;

    padding: 0;
}



html {
    scroll-behavior: smooth;
}



body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.65;
}



a {

    color: inherit;

    text-decoration: none;
}



img {

    max-width: 100%;

    display: block;
}



.container {

    width: min(92%, var(--container));

    margin: 0 auto;
}



.narrow {

    max-width: 850px;
}



.section {

    padding: 80px 0;
}



.section-kicker {

    display: inline-block;

    margin-bottom: 12px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

    color: var(--blue-3);
}



.section-kicker.light {

    color: #a9e8f5;
}



.section-heading {

    max-width: 760px;

    margin-bottom: 42px;
}



.section-heading h2,
.narrow h2,
.location-card h2,
.monthly-grid h2,
.audit-grid h2 {

    font-size:
        clamp(30px, 4vw, 46px);

    line-height: 1.12;

    letter-spacing: -1px;

    margin-bottom: 18px;
}



.section-heading p,
.narrow > p,
.monthly-grid p,
.location-card p {

    color: var(--muted);
}



.strong-line {

    font-weight: 800;

    color: var(--blue) !important;
}



/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(255,255,255,0.96);

    backdrop-filter:
        blur(12px);

    border-bottom:
        1px solid var(--border);
}



.nav-wrap {

    min-height: 76px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 24px;
}



.logo {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    font-weight: 900;

    color: var(--blue);

    white-space: nowrap;
}



.logo-mark {

    display: grid;

    place-items: center;

    width: 34px;

    height: 34px;

    border-radius: 50%;

    background: var(--blue);

    color: var(--white);

    font-size: 20px;
}



.main-nav {

    display: flex;

    align-items: center;

    gap: 20px;

    font-size: 13px;

    font-weight: 700;
}



.main-nav a {

    color: #26324b;
}



.main-nav a:hover,
.main-nav a.active {

    color: var(--orange);
}



.nav-phone {

    padding: 9px 13px;

    border:
        1px solid var(--blue);

    border-radius: 999px;
}



.menu-toggle {

    display: none;

    border: 0;

    background: transparent;

    font-size: 25px;

    color: var(--blue);

    cursor: pointer;
}



/* =========================================================
   BUTTONS
========================================================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding: 12px 20px;

    border-radius: 10px;

    border:
        1px solid transparent;

    font-weight: 800;

    cursor: pointer;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}



.btn:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(7,27,77,.14);
}



.btn-primary {

    background:
        var(--orange);

    color:
        #1c160d;
}



.btn-outline {

    background:
        transparent;

    border-color:
        var(--blue);

    color:
        var(--blue);
}



.btn-light {

    background:
        white;

    color:
        var(--blue);
}



.btn-whatsapp {

    background:
        #20b968;

    color:
        white;
}



.full-width {

    width: 100%;
}



/* =========================================================
   HERO
========================================================= */

.gbp-hero {

    padding:
        82px 0 76px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(32,200,232,.16),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #edf3ff 100%
        );

    overflow: hidden;
}



.hero-grid {

    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    gap: 65px;

    align-items: center;
}



.eyebrow {

    display: inline-flex;

    padding:
        7px 12px;

    border-radius:
        999px;

    background:
        #e8f7fb;

    color:
        var(--blue);

    font-size:
        11px;

    font-weight:
        900;

    letter-spacing:
        1.2px;

    margin-bottom:
        18px;
}



.hero-copy h1 {

    max-width:
        690px;

    font-size:
        clamp(40px, 5vw, 66px);

    line-height:
        1.02;

    letter-spacing:
        -2.5px;

    color:
        var(--blue);

    margin-bottom:
        22px;
}



.hero-text {

    max-width:
        670px;

    color:
        var(--muted);

    font-size:
        17px;
}



.hero-actions {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        12px;

    margin:
        28px 0 17px;
}



.trust-line {

    color:
        #55627b;

    font-size:
        13px;

    font-weight:
        700;
}



.trust-line span {

    color:
        var(--orange);

    padding:
        0 5px;
}



/* =========================================================
   HERO PROFILE CARD
========================================================= */

.hero-visual {

    position:
        relative;
}



.profile-card {

    padding:
        25px;

    background:
        white;

    border:
        1px solid #dbe4f2;

    border-radius:
        24px;

    box-shadow:
        0 25px 60px
        rgba(7,27,77,.15);

    transform:
        rotate(1.2deg);
}



.profile-top {

    display:
        flex;

    gap:
        14px;

    align-items:
        center;

    margin-bottom:
        22px;
}



.google-dot {

    width:
        50px;

    height:
        50px;

    border-radius:
        15px;

    display:
        grid;

    place-items:
        center;

    background:
        #f0f4fb;

    color:
        #4285f4;

    font-size:
        25px;

    font-weight:
        900;
}



.profile-top div:last-child {

    display:
        grid;
}



.mini-label {

    font-size:
        9px;

    color:
        var(--muted);

    font-weight:
        900;

    letter-spacing:
        1px;
}



.profile-search {

    display:
        flex;

    gap:
        10px;

    align-items:
        center;

    border:
        1px solid var(--border);

    border-radius:
        999px;

    padding:
        12px 16px;

    color:
        #71809a;

    margin-bottom:
        16px;
}



.profile-result {

    display:
        grid;

    grid-template-columns:
        auto 1fr auto;

    gap:
        13px;

    align-items:
        center;

    border:
        1px solid var(--border);

    border-radius:
        15px;

    padding:
        17px;
}



.result-icon {

    width:
        45px;

    height:
        45px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        12px;

    background:
        var(--blue);

    color:
        white;

    font-weight:
        900;
}



.result-info {

    display:
        grid;
}



.result-info span {

    color:
        var(--muted);

    font-size:
        12px;
}



.stars {

    color:
        #f5a800 !important;
}



.stars small {

    color:
        var(--muted);
}



.profile-result > a {

    color:
        var(--blue-3);

    font-size:
        12px;

    font-weight:
        800;
}



.profile-actions {

    display:
        grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:
        8px;

    margin-top:
        12px;
}



.profile-actions a {

    text-align:
        center;

    padding:
        10px 5px;

    border-radius:
        10px;

    background:
        #f3f6fb;

    color:
        var(--blue);

    font-size:
        12px;

    font-weight:
        800;
}



/* =========================================================
   PROBLEM
========================================================= */

.narrow > p {

    margin-bottom:
        15px;

    font-size:
        16px;
}



/* =========================================================
   SUCCESS
========================================================= */

.success-section {

    padding:
        72px 0;

    background:
        var(--blue);

    color:
        white;
}



.success-grid {

    display:
        grid;

    grid-template-columns:
        1.35fr .65fr;

    gap:
        60px;

    align-items:
        center;
}



.success-grid h2 {

    font-size:
        clamp(31px, 4vw, 50px);

    line-height:
        1.12;

    letter-spacing:
        -1.2px;

    margin-bottom:
        18px;
}



.success-grid p {

    color:
        #cbd6ee;

    max-width:
        690px;
}



.success-grid strong {

    color:
        white;
}



.success-number {

    min-height:
        255px;

    padding:
        30px;

    border-radius:
        24px;

    background:
        linear-gradient(
            145deg,
            #103b86,
            #08245b
        );

    border:
        1px solid
        rgba(255,255,255,.16);

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;
}



.success-number span {

    color:
        #a9e8f5;

    font-size:
        11px;

    font-weight:
        900;

    letter-spacing:
        1.5px;
}



.success-number strong {

    font-size:
        86px;

    line-height:
        1;

    color:
        var(--orange);

    margin:
        10px 0;
}



.success-number small {

    color:
        #d3dcf0;
}



/* =========================================================
   SERVICES
========================================================= */

.services-section {

    background:
        var(--off-white);
}



.service-list {

    max-width:
        950px;

    border-top:
        1px solid var(--border);
}



.service-item {

    display:
        grid;

    grid-template-columns:
        90px 1fr;

    gap:
        25px;

    padding:
        28px 0;

    border-bottom:
        1px solid var(--border);
}



.service-number {

    color:
        var(--orange);

    font-size:
        14px;

    font-weight:
        900;
}



.service-item h3 {

    font-size:
        21px;

    color:
        var(--blue);

    margin-bottom:
        6px;
}



.service-item p {

    color:
        var(--muted);

    max-width:
        750px;
}



/* =========================================================
   MONTHLY
========================================================= */

.monthly-grid {

    display:
        grid;

    grid-template-columns:
        .7fr 1.3fr;

    gap:
        65px;

    align-items:
        center;
}



.monthly-box {

    padding:
        38px;

    border-radius:
        24px;

    background:
        #fff8ee;

    border:
        1px solid
        #ffdca9;
}



.month-badge {

    color:
        #a45c00;

    font-size:
        11px;

    font-weight:
        900;

    letter-spacing:
        1.2px;
}



.month-icon {

    width:
        70px;

    height:
        70px;

    margin:
        30px 0 20px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        20px;

    background:
        var(--orange);

    color:
        var(--blue);

    font-size:
        35px;

    font-weight:
        900;
}



.monthly-box h3 {

    font-size:
        25px;

    line-height:
        1.2;

    color:
        var(--blue);

    margin-bottom:
        10px;
}



.check-grid {

    display:
        grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:
        12px 20px;

    margin-top:
        25px;
}



.check-grid span {

    color:
        #33405a;

    font-weight:
        700;

    font-size:
        14px;
}



/* =========================================================
   INDUSTRIES
========================================================= */

.industries-section {

    background:
        #f1f5fb;
}



.industry-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:
        14px;
}



.industry-grid article {

    min-height:
        190px;

    padding:
        25px;

    background:
        white;

    border:
        1px solid var(--border);

    border-radius:
        18px;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}



.industry-grid article:hover {

    transform:
        translateY(-4px);

    box-shadow:
        var(--shadow);
}



.industry-grid span {

    color:
        var(--orange);

    font-size:
        12px;

    font-weight:
        900;
}



.industry-grid h3 {

    margin:
        12px 0 7px;

    color:
        var(--blue);

    font-size:
        19px;
}



.industry-grid p {

    color:
        var(--muted);

    font-size:
        14px;
}



/* =========================================================
   LOCATION
========================================================= */

.location-section {

    background:
        white;
}



.location-card {

    padding:
        42px;

    border:
        1px solid var(--border);

    border-radius:
        24px;

    background:
        linear-gradient(
            110deg,
            #f8fbff,
            #fff
        );

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        55px;

    align-items:
        center;
}



.location-card h2 {

    font-size:
        36px;
}



/* =========================================================
   PROOF
========================================================= */

.proof-section {

    background:
        var(--off-white);
}



.proof-grid {

    display:
        grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:
        22px;
}



.image-placeholder {

    min-height:
        320px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    border:
        2px dashed #c8d2e2;

    border-radius:
        20px;

    background:
        white;

    text-align:
        center;

    color:
        var(--muted);
}



.image-placeholder.featured {

    border-color:
        var(--orange);
}



.image-placeholder > span {

    color:
        var(--blue);

    font-size:
        11px;

    font-weight:
        900;

    letter-spacing:
        1px;
}



.image-placeholder > div {

    font-size:
        45px;

    margin:
        12px 0;
}



.image-placeholder p {

    font-weight:
        800;
}



.image-placeholder small {

    margin-top:
        5px;

    color:
        #8b97aa;
}



/* =========================================================
   FAQ
========================================================= */

.faq-section {

    background:
        white;
}



.faq-list {

    border-top:
        1px solid var(--border);
}



details {

    border-bottom:
        1px solid var(--border);

    padding:
        20px 0;
}



summary {

    cursor:
        pointer;

    list-style:
        none;

    color:
        var(--blue);

    font-size:
        17px;

    font-weight:
        800;

    padding-right:
        25px;

    position:
        relative;
}



summary::-webkit-details-marker {

    display:
        none;
}



summary::after {

    content:
        "+";

    position:
        absolute;

    right:
        0;

    color:
        var(--orange);

    font-size:
        22px;
}



details[open] summary::after {

    content:
        "−";
}



details p {

    max-width:
        800px;

    padding:
        12px 0 0;

    color:
        var(--muted);
}



/* =========================================================
   AUDIT
========================================================= */

.audit-section {

    padding:
        85px 0;

    background:
        var(--blue);

    color:
        white;
}



.audit-grid {

    display:
        grid;

    grid-template-columns:
        1fr .85fr;

    gap:
        60px;

    align-items:
        center;
}



.audit-grid h2 {

    color:
        white;
}



.audit-grid > div > p {

    color:
        #cbd6ee;

    max-width:
        620px;
}



.contact-buttons {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        12px;

    margin-top:
        25px;
}



.audit-form {

    background:
        white;

    color:
        var(--text);

    padding:
        30px;

    border-radius:
        22px;

    box-shadow:
        var(--shadow);
}



.audit-form h3 {

    color:
        var(--blue);

    font-size:
        23px;

    margin-bottom:
        20px;
}



.audit-form label {

    display:
        block;

    margin:
        12px 0 5px;

    font-size:
        12px;

    font-weight:
        800;
}



.audit-form input {

    width:
        100%;

    padding:
        12px 13px;

    border:
        1px solid var(--border);

    border-radius:
        9px;

    font:
        inherit;

    outline:
        none;
}



.audit-form input:focus {

    border-color:
        var(--blue-3);
}



.audit-form button {

    border:
        0;

    margin-top:
        20px;
}



.form-note {

    color:
        #7b879a;

    font-size:
        11px;

    margin-top:
        12px;

    text-align:
        center;
}



/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    background:
        #041333;

    color:
        white;

    padding:
        55px 0 20px;
}



.footer-grid {

    display:
        grid;

    grid-template-columns:
        1.4fr .7fr .9fr;

    gap:
        50px;
}



.footer-logo {

    color:
        white;

    margin-bottom:
        15px;
}



.footer-grid p {

    color:
        #aebbd5;

    max-width:
        380px;
}



.footer-grid h3 {

    font-size:
        14px;

    margin-bottom:
        14px;
}



.footer-grid > div:not(:first-child) a {

    display:
        block;

    color:
        #b7c4dc;

    font-size:
        13px;

    margin-bottom:
        7px;
}



.footer-grid a:hover {

    color:
        var(--orange);
}



.footer-bottom {

    border-top:
        1px solid
        rgba(255,255,255,.12);

    margin-top:
        40px;

    padding-top:
        18px;

    display:
        flex;

    justify-content:
        space-between;

    gap:
        20px;

    color:
        #8998b6;

    font-size:
        11px;
}



/* =========================================================
   WHATSAPP
========================================================= */

.floating-whatsapp {

    position:
        fixed;

    right:
        20px;

    bottom:
        20px;

    z-index:
        900;

    width:
        52px;

    height:
        52px;

    border-radius:
        50%;

    display:
        grid;

    place-items:
        center;

    background:
        #20b968;

    color:
        white;

    font-weight:
        900;

    box-shadow:
        0 12px 30px
        rgba(0,0,0,.2);
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {


    .main-nav {

        display:
            none;

        position:
            absolute;

        top:
            76px;

        left:
            0;

        right:
            0;

        padding:
            20px;

        background:
            white;

        border-bottom:
            1px solid var(--border);

        box-shadow:
            var(--shadow);

        flex-direction:
            column;

        align-items:
            stretch;
    }


    .main-nav.open {

        display:
            flex;
    }


    .main-nav a {

        padding:
            8px 0;
    }


    .nav-phone {

        text-align:
            center;
    }


    .menu-toggle {

        display:
            block;
    }


    .hero-grid,
    .success-grid,
    .monthly-grid,
    .location-card,
    .audit-grid {

        grid-template-columns:
            1fr;
    }


    .hero-visual {

        max-width:
            620px;

        margin:
            0 auto;

        width:
            100%;
    }


    .industry-grid {

        grid-template-columns:
            repeat(2,1fr);
    }


    .footer-grid {

        grid-template-columns:
            1fr 1fr;
    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {


    .section {

        padding:
            58px 0;
    }


    .gbp-hero {

        padding:
            55px 0;
    }


    .hero-copy h1 {

        font-size:
            40px;
    }


    .hero-actions,
    .contact-buttons {

        flex-direction:
            column;
    }


    .hero-actions .btn,
    .contact-buttons .btn {

        width:
            100%;
    }


    .profile-card {

        padding:
            18px;
    }


    .profile-actions {

        grid-template-columns:
            1fr;
    }


    .success-number {

        min-height:
            220px;
    }


    .success-number strong {

        font-size:
            72px;
    }


    .service-item {

        grid-template-columns:
            45px 1fr;

        gap:
            10px;
    }


    .check-grid,
    .industry-grid,
    .proof-grid,
    .footer-grid {

        grid-template-columns:
            1fr;
    }


    .location-card {

        padding:
            25px;
    }


    .location-card h2 {

        font-size:
            30px;
    }


    .footer-bottom {

        flex-direction:
            column;
    }


    .audit-form {

        padding:
            22px;
    }

}