/* =====================================================
   LEADS BY CLICKS
   MAIN WEBSITE CSS
===================================================== */


/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    color: #17233c;
    background: #ffffff;
    line-height: 1.6;
}


img {
    max-width: 50%;
    display: block;
}


a {
    text-decoration: none;
    color: inherit;
}


.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* ================= COLORS ================= */

:root {

    --royal-blue: #071b49;

    --deep-blue: #061633;

    --blue: #0d47a1;

    --light-blue: #eef5ff;

    --orange: #ff7a00;

    --orange-dark: #e86600;

    --white: #ffffff;

    --text: #17233c;

    --muted: #64748b;

    --border: #dce5f2;

}


/* ================= BUTTONS ================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.25s ease;
    border: 2px solid transparent;
    cursor: pointer;
}


.btn-orange {
    background: var(--orange);
    color: #ffffff;
}


.btn-orange:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}


.btn-outline {
    border-color: #ffffff;
    color: #ffffff;
}


.btn-outline:hover {
    background: #ffffff;
    color: var(--royal-blue);
}


.btn-blue {
    background: var(--blue);
    color: #ffffff;
}


.btn-whatsapp {
    background: #25D366;
    color: #ffffff;
}


.full-width {
    width: 100%;
}


/* ================= HEADER ================= */

.site-header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}


.nav-container {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 25px;
}


.logo {
    width: 150px;
    height: auto;
}


.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}


.main-nav a {
    font-size: 14px;
    font-weight: 600;
    color: #17233c;
}


.main-nav a:hover {
    color: var(--orange);
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}


.phone-number {
    font-weight: 700;
    color: var(--royal-blue);
    white-space: nowrap;
}


.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 25px;
}


/* ================= HERO ================= */

.hero {
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(28, 98, 201, 0.35),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #061633,
            #092b67
        );

    color: #ffffff;
    padding: 90px 0;
}


.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}


.eyebrow {
    display: inline-block;
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
}


.hero h1 {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.08;
    margin-bottom: 22px;
}


.hero-subheading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}


.hero-description {
    color: #dbe7fb;
    font-size: 17px;
    max-width: 650px;
}


.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}


.trust-line {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
    font-size: 14px;
    color: #dce7f8;
}


/* ================= HERO PROOF ================= */

.hero-proof-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px;
    color: var(--text);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}


.proof-label {
    color: var(--royal-blue);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}


.campaign-image {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #dbe4ef;
}


.proof-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 15px;
}


.proof-bottom div {
    text-align: center;
}


.proof-bottom strong {
    display: block;
    color: var(--orange);
    font-size: 25px;
}


.proof-bottom span {
    color: var(--muted);
    font-size: 12px;
}


/* ================= SECTIONS ================= */

section {
    padding: 85px 0;
}


.section-white {
    background: #ffffff;
}


.section-light {
    background: var(--light-blue);
}


.section-blue {
    background: var(--royal-blue);
    color: #ffffff;
}


.section-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}


.section-heading h2 {
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 18px;
}


.section-heading p {
    color: var(--muted);
}


.section-heading.light p {
    color: #c9d8ee;
}


/* ================= CLIENT LOGOS ================= */

.client-logos {
    padding: 45px 0;
}


.section-mini-title {
    text-align: center;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}


.logo-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
    align-items: center;
}


.client-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}


.client-logo img {
    max-height: 65px;
    max-width: 130px;
    width: auto;
    object-fit: contain;
}


/* ================= SERVICES ================= */

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


.service-card {
    background: #ffffff;
    color: var(--text);
    padding: 28px;
    border-radius: 15px;
    border: 1px solid #d9e4f3;
    transition: 0.25s ease;
}


.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}


.service-icon {
    width: 52px;
    height: 52px;
    background: var(--light-blue);
    color: var(--blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-bottom: 20px;
}


.service-card h3 {
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 13px;
}


.service-card h3 span {
    font-size: 14px;
}


.service-card p {
    color: var(--muted);
    font-size: 14px;
}


.learn-more {
    display: inline-block;
    margin-top: 18px;
    color: var(--blue);
    font-weight: 800;
    font-size: 14px;
}


/* ================= STATS ================= */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


.stat-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 15px;
    text-align: center;
}


.stat-card strong {
    display: block;
    color: var(--blue);
    font-size: 42px;
    line-height: 1;
    margin-bottom: 10px;
}


.stat-card span {
    color: var(--muted);
    font-weight: 600;
}


/* ================= INDUSTRIES ================= */

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


.industry-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    font-size: 28px;
    transition: 0.2s;
}


.industry-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
}


.industry-card h3 {
    font-size: 17px;
    margin-top: 10px;
    color: var(--text);
}


/* ================= RESULTS ================= */

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


.result-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}


.result-card > img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    background: #f5f7fa;
}


.result-content {
    padding: 25px;
}


.result-content h3 {
    font-size: 21px;
    margin-bottom: 20px;
}


.result-numbers {
    display: flex;
    gap: 35px;
    margin-bottom: 18px;
}


.result-numbers strong {
    display: block;
    font-size: 32px;
    color: var(--orange);
}


.result-numbers span {
    font-size: 12px;
    color: var(--muted);
}


/* ================= TESTIMONIALS ================= */

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


.short-video {
    width: 100%;
    aspect-ratio: 9 / 16;
    background: #000000;
    border-radius: 18px;
    overflow: hidden;
}


.short-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* ================= REVIEWS ================= */

.review-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}


.review-content h2 {
    font-size: 40px;
    line-height: 1.15;
    margin-bottom: 15px;
}


/* ================= AUDIT FORM ================= */

.audit-section {
    background:
        linear-gradient(
            135deg,
            #061633,
            #0d47a1
        );

    color: #ffffff;
}


.audit-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 70px;
    align-items: start;
}


.audit-content h2 {
    font-size: clamp(35px, 4vw, 50px);
    line-height: 1.12;
    margin-bottom: 20px;
}


.audit-content > p {
    color: #d7e3f6;
    max-width: 620px;
}


.audit-points {
    list-style: none;
    margin-top: 25px;
}


.audit-points li {
    margin-bottom: 10px;
    font-weight: 600;
}


.audit-form {
    background: #ffffff;
    color: var(--text);
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}


.audit-form h3 {
    font-size: 25px;
    margin-bottom: 25px;
}


.audit-form label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}


.audit-form input,
.audit-form select,
.audit-form textarea {
    width: 100%;
    padding: 13px 14px;
    margin-bottom: 17px;
    border: 1px solid #d5deeb;
    border-radius: 8px;
    font: inherit;
    outline: none;
}


.audit-form input:focus,
.audit-form select:focus,
.audit-form textarea:focus {
    border-color: var(--blue);
}


.form-note {
    font-size: 11px;
    color: var(--muted);
    margin-top: 12px;
}


/* ================= FINAL CTA ================= */

.final-cta {
    background: #ffffff;
    text-align: center;
}


.final-cta h2 {
    font-size: clamp(34px, 4vw, 48px);
    margin-bottom: 15px;
}


.final-cta p {
    color: var(--muted);
}


.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}


/* ================= FOOTER ================= */

.site-footer {
    background: #061633;
    color: #ffffff;
    padding-top: 65px;
}


.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 45px;
    padding-bottom: 50px;
}


.footer-logo {
    width: 150px;
    margin-bottom: 18px;
}


.footer-grid p {
    color: #afc0d9;
    font-size: 14px;
}


.footer-grid h3 {
    margin-bottom: 15px;
}


.footer-grid a {
    display: block;
    color: #c6d4e8;
    margin-bottom: 8px;
    font-size: 14px;
}


.footer-grid a:hover {
    color: var(--orange);
}


.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}


.footer-bottom p {
    font-size: 12px;
    color: #8fa4c1;
}


/* ================= WHATSAPP ================= */

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    background: #25D366;
    color: #ffffff;
    padding: 13px 17px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1050px) {

    .main-nav {
        gap: 12px;
    }

    .main-nav a {
        font-size: 12px;
    }

    .phone-number {
        display: none;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}


@media (max-width: 800px) {

    .nav-container {
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav,
    .header-actions {
        display: none;
    }

    .hero-grid,
    .audit-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 65px 0;
    }

    .hero h1 {
        font-size: 42px;
    }

    .stats-grid,
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 550px) {

    section {
        padding: 65px 0;
    }

    .logo {
        width: 130px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subheading {
        font-size: 19px;
    }

    .hero-description {
        font-size: 15px;
    }

    .proof-bottom {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .stats-grid,
    .industry-grid,
    .video-grid,
    .logo-grid {
        grid-template-columns: 1fr;
    }

    .result-card > img {
        height: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .audit-form {
        padding: 22px;
    }

}