/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    color: #111827;
    background: #ffffff;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --blue: #062b83;

    --blue-dark: #061e5c;

    --blue-light: #eaf3ff;

    --text: #111111;

    --muted: #4b5563;

    --border: #dbe3ef;

    --white: #ffffff;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: min(
        1240px,
        calc(100% - 80px)
    );

    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    width: 100%;

    height: 68px;

    background: #ffffff;

    border-bottom:
        1px solid #edf1f6;

    position: relative;

    z-index: 1000;
}


.header-inner {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {

    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


.logo-icon {

    width: 34px;

    height: 38px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}


.logo-icon::before,
.logo-icon::after {

    content: "";

    position: absolute;

    background: var(--blue);

    border-radius: 20px;

    transform: rotate(28deg);
}


.logo-icon::before {

    width: 8px;

    height: 27px;

    left: 8px;

    top: 4px;
}


.logo-icon::after {

    width: 8px;

    height: 22px;

    right: 7px;

    top: 9px;

    transform: rotate(45deg);
}


.logo-v {

    position: absolute;

    width: 20px;

    height: 8px;

    border-radius: 10px;

    background: var(--blue);

    transform: rotate(-35deg);

    bottom: 5px;

    left: 5px;
}


.logo-content {

    display: flex;

    flex-direction: column;

    line-height: 1;
}


.logo-name {

    color: var(--blue);

    font-size: 18px;

    font-weight: 800;

    letter-spacing: -0.7px;
}


.logo-tagline {

    margin-top: 4px;

    font-size: 7px;

    color: #444b57;

    font-weight: 500;

    letter-spacing: 0.15px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {

    display: flex;

    align-items: center;

    margin-left: auto;

    margin-right: 40px;
}


.nav-list {

    list-style: none;

    display: flex;

    align-items: center;

    gap: 31px;
}


.nav-list > li {

    position: relative;
}


.nav-link {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    color: #111827;

    font-size: 12px;

    font-weight: 500;

    white-space: nowrap;

    transition:
        color 0.25s ease;
}


.nav-link:hover,
.nav-link.active {

    color: var(--blue);
}


.dropdown-arrow {

    font-size: 10px;

    margin-top: 1px;
}


/* =========================================================
   HEADER CTA
========================================================= */

.header-cta {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 146px;

    height: 38px;

    padding: 0 18px;

    border-radius: 5px;

    background: var(--blue);

    color: #ffffff;

    font-size: 11px;

    font-weight: 600;

    box-shadow:
        0 4px 12px
        rgba(6, 43, 131, 0.15);

    transition:
        background 0.25s ease,
        transform 0.25s ease;

    white-space: nowrap;
}


.header-cta:hover {

    background: var(--blue-dark);

    transform: translateY(-1px);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {

    display: none;

    width: 40px;

    height: 40px;

    border:
        1px solid #d9e0ea;

    background: #ffffff;

    border-radius: 5px;

    cursor: pointer;

    padding: 0;
}


.menu-toggle span {

    width: 19px;

    height: 2px;

    background: var(--blue);

    display: block;

    margin: 4px auto;

    transition: all 0.25s ease;
}


.menu-toggle.active span:nth-child(1) {

    transform:
        translateY(6px)
        rotate(45deg);
}


.menu-toggle.active span:nth-child(2) {

    opacity: 0;
}


.menu-toggle.active span:nth-child(3) {

    transform:
        translateY(-6px)
        rotate(-45deg);
}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height: 375px;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 75% 40%,
            rgba(167, 205, 255, 0.25),
            transparent 35%
        ),

        linear-gradient(
            90deg,
            #ffffff 0%,
            #f7fbff 48%,
            #edf5ff 100%
        );
}


/* =========================================================
   HERO DOTS
========================================================= */

.hero-dots {

    position: absolute;

    top: 17px;

    right: 72px;

    width: 100px;

    height: 72px;

    background-image:

        radial-gradient(
            #b7d5ff 1.6px,
            transparent 1.8px
        );

    background-size: 10px 10px;

    opacity: 0.7;
}


/* =========================================================
   HERO ARROW
========================================================= */

.hero-arrow {

    position: absolute;

    right: 100px;

    top: 85px;

    width: 310px;

    height: 205px;

    opacity: 0.22;

    pointer-events: none;
}


.hero-arrow::before {

    content: "";

    position: absolute;

    left: 0;

    top: 50px;

    width: 220px;

    height: 105px;

    background:
        linear-gradient(
            135deg,
            rgba(116, 167, 240, 0.4),
            rgba(116, 167, 240, 0.05)
        );

    clip-path:
        polygon(
            0 30%,
            60% 30%,
            60% 0,
            100% 50%,
            60% 100%,
            60% 70%,
            0 70%
        );
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-container {

    min-height: 375px;

    display: grid;

    grid-template-columns:
        43% 57%;

    align-items: center;

    position: relative;

    z-index: 5;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {

    padding:
        38px 0 36px;

    position: relative;

    z-index: 10;
}


.hero-title {

    max-width: 500px;

    color: #101010;

    font-size: 34px;

    line-height: 1.08;

    letter-spacing: -1.2px;

    font-weight: 700;

    margin-bottom: 20px;
}


.hero-title .blue {

    color: var(--blue);
}


.hero-description {

    max-width: 465px;

    font-size: 13px;

    line-height: 1.6;

    color: #333b48;

    margin-bottom: 21px;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}


.hero-btn {

    height: 38px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 0 15px;

    border-radius: 5px;

    font-size: 10px;

    font-weight: 600;

    transition: all 0.25s ease;
}


.hero-btn-primary {

    background: var(--blue);

    color: #ffffff;

    border:
        1px solid var(--blue);

    box-shadow:
        0 4px 10px
        rgba(6, 43, 131, 0.12);
}


.hero-btn-primary:hover {

    background: var(--blue-dark);

    transform: translateY(-1px);
}


.hero-btn-secondary {

    background: #ffffff;

    color: var(--blue);

    border:
        1px solid #7089bd;
}


.hero-btn-secondary:hover {

    background: #f1f6ff;

    transform: translateY(-1px);
}


.btn-icon {

    font-size: 12px;

    line-height: 1;
}


.btn-arrow {

    font-size: 14px;

    line-height: 1;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    height: 100%;

    min-height: 375px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================================
   DASHBOARD
========================================================= */

.dashboard {

    width: 500px;

    height: 290px;

    position: relative;

    margin-top: 12px;

    margin-left: 20px;

    background:
        rgba(255,255,255,0.78);

    border:
        1px solid #dce8f7;

    border-radius: 10px;

    box-shadow:

        0 18px 40px
        rgba(44, 91, 150, 0.10),

        0 2px 8px
        rgba(44, 91, 150, 0.06);

    backdrop-filter: blur(5px);
}


/* =========================================================
   BROWSER TOP
========================================================= */

.browser-top {

    height: 34px;

    border-bottom:
        1px solid #e3ebf6;

    display: flex;

    align-items: center;

    padding: 0 12px;

    gap: 5px;
}


.browser-dot {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #8ebeff;
}


/* =========================================================
   AI CARD
========================================================= */

.ai-card {

    position: absolute;

    left: 30px;

    top: 48px;

    width: 300px;

    height: 115px;

    background: #ffffff;

    border:
        1px solid #e1e8f1;

    border-radius: 8px;

    padding: 13px 14px;

    box-shadow:
        0 8px 20px
        rgba(42, 91, 147, 0.08);
}


.ai-heading {

    display: flex;

    align-items: center;

    gap: 6px;

    font-size: 10px;

    font-weight: 600;

    color: #242424;

    margin-bottom: 10px;
}


.google-g {

    width: 15px;

    height: 15px;

    border-radius: 50%;

    color: #4285f4;

    font-size: 14px;

    font-weight: 700;

    display: inline-flex;

    align-items: center;

    justify-content: center;
}


.ai-inner {

    width: 100%;

    height: 68px;

    border:
        1px solid #edf1f6;

    border-radius: 5px;

    padding: 8px 10px;

    position: relative;
}


.ai-small-title {

    font-size: 7px;

    color: #242424;

    line-height: 1.4;

    font-weight: 600;
}


.ai-recommended {

    font-size: 6px;

    color: #6a7280;
}


/* =========================================================
   AI LINES
========================================================= */

.ai-lines {

    position: absolute;

    left: 10px;

    bottom: 11px;

    width: 72px;
}


.ai-line {

    height: 4px;

    border-radius: 5px;

    background: #edf1f5;

    margin-top: 5px;
}


.ai-line:nth-child(2) {

    width: 50px;
}


.ai-line:nth-child(3) {

    width: 60px;
}


/* =========================================================
   GROWTH CHART
========================================================= */

.growth-chart {

    position: absolute;

    right: 11px;

    bottom: 10px;

    width: 128px;

    height: 68px;
}


.growth-chart svg {

    width: 100%;

    height: 100%;

    overflow: visible;
}


/* =========================================================
   METRIC CARDS
========================================================= */

.metric-card {

    position: absolute;

    bottom: -1px;

    width: 125px;

    height: 105px;

    background: #ffffff;

    border:
        1px solid #e3eaf3;

    border-radius: 7px;

    padding: 12px;

    box-shadow:
        0 7px 18px
        rgba(50, 94, 145, 0.08);
}


.metric-card.traffic {

    left: -8px;
}


.metric-card.leads {

    left: 127px;
}


.metric-card.score {

    right: 24px;

    width: 130px;
}


.metric-title {

    font-size: 7px;

    color: #5c6470;

    margin-bottom: 4px;
}


.metric-number {

    font-size: 16px;

    line-height: 1;

    font-weight: 700;

    color: #13a55b;

    margin-bottom: 2px;
}


.metric-subtitle {

    font-size: 5.5px;

    color: #7b8390;
}


/* =========================================================
   BAR CHART
========================================================= */

.bar-chart {

    height: 42px;

    margin-top: 6px;

    display: flex;

    align-items: flex-end;

    gap: 6px;
}


.bar {

    width: 7px;

    background: #4d8fe9;

    border-radius:
        2px 2px 0 0;
}


.bar:nth-child(1) {
    height: 13px;
}

.bar:nth-child(2) {
    height: 20px;
}

.bar:nth-child(3) {
    height: 27px;
}

.bar:nth-child(4) {
    height: 35px;
}

.bar:nth-child(5) {
    height: 42px;
}


/* =========================================================
   SCORE CIRCLE
========================================================= */

.score-circle {

    width: 66px;

    height: 66px;

    border-radius: 50%;

    margin:
        2px auto 0;

    background:
        conic-gradient(
            #42c47c 0deg 313deg,
            #e9eff5 313deg 360deg
        );

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;
}


.score-circle::after {

    content: "";

    width: 52px;

    height: 52px;

    border-radius: 50%;

    background: #ffffff;

    position: absolute;
}


.score-value {

    position: relative;

    z-index: 2;

    color: #0aa053;

    font-size: 14px;

    font-weight: 700;
}


.score-label {

    text-align: center;

    font-size: 6px;

    color: #68707b;

    margin-top: 3px;
}


/* =========================================================
   MINI GRAPH
========================================================= */

.mini-graph {

    width: 100%;

    height: 34px;

    margin-top: 5px;
}


.mini-graph svg {

    width: 100%;

    height: 100%;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .container {

        width:
            min(
                100% - 50px,
                1240px
            );
    }


    .main-nav {

        margin-right: 20px;
    }


    .nav-list {

        gap: 20px;
    }


    .hero-title {

        font-size: 29px;
    }


    .dashboard {

        transform: scale(0.88);

        transform-origin: center;

        margin-left: -20px;
    }
}


/* =========================================================
   MOBILE NAV
========================================================= */

@media (max-width: 850px) {

    .site-header {

        height: 64px;
    }


    .main-nav {

        display: none;

        position: fixed;

        left: 0;

        right: 0;

        top: 64px;

        margin: 0;

        padding:
            22px 25px 28px;

        background: #ffffff;

        border-bottom:
            1px solid #e4eaf2;

        box-shadow:
            0 12px 25px
            rgba(0,0,0,0.08);
    }


    .main-nav.active {

        display: block;
    }


    .nav-list {

        flex-direction: column;

        align-items: flex-start;

        gap: 0;
    }


    .nav-list li {

        width: 100%;

        border-bottom:
            1px solid #eef1f5;
    }


    .nav-link {

        width: 100%;

        padding: 13px 0;

        font-size: 13px;
    }


    .menu-toggle {

        display: block;
    }


    .header-cta {

        margin-left: auto;

        margin-right: 10px;
    }


    .hero {

        min-height: auto;
    }


    .hero-container {

        min-height: auto;

        grid-template-columns: 1fr;
    }


    .hero-content {

        padding:
            55px 0 25px;
    }


    .hero-visual {

        min-height: 340px;

        margin-top: -15px;

        overflow: hidden;
    }


    .dashboard {

        transform: scale(0.8);

        margin: 0;
    }


    .hero-dots {

        right: 20px;
    }


    .hero-arrow {

        right: 0;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {

        width:
            calc(100% - 30px);
    }


    .logo-name {

        font-size: 17px;
    }


    .logo-tagline {

        font-size: 6px;
    }


    .header-cta {

        display: none;
    }


    .hero-content {

        padding-top: 45px;
    }


    .hero-title {

        font-size: 32px;

        line-height: 1.1;

        letter-spacing: -1px;

        margin-bottom: 17px;
    }


    .hero-description {

        font-size: 12px;

        line-height: 1.65;

        margin-bottom: 20px;
    }


    .hero-buttons {

        gap: 8px;
    }


    .hero-btn {

        height: 38px;

        padding: 0 12px;

        font-size: 9px;
    }


    .hero-visual {

        min-height: 280px;
    }


    .dashboard {

        transform: scale(0.60);

        transform-origin:
            center top;

        margin-top: 0;
    }


    .hero-dots {

        width: 70px;

        height: 60px;

        right: 15px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .hero-title {

        font-size: 29px;
    }


    .hero-buttons {

        flex-direction: column;

        align-items: flex-start;
    }


    .hero-btn {

        width: 100%;

        max-width: 210px;
    }


    .hero-visual {

        min-height: 255px;
    }


    .dashboard {

        transform: scale(0.53);
    }
}

/* =========================================================
   PART 2
   TRUSTED BUSINESSES
========================================================= */

.trusted-section {

    background: #ffffff;

    border-top:
        1px solid #edf1f6;

    border-bottom:
        1px solid #e8edf4;

    padding:
        10px 0 14px;
}


.trusted-heading {
    text-align: center;
    color: #161616;
    font-size: 15px;
    font-weight: 700;
    margin-bottom:25px;
}


.trusted-logos {

    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    align-items: center;

    gap: 20px;
}


.trusted-logo {

    min-height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    color: #202020;

    text-align: center;

    line-height: 1;
}


.trusted-logo strong {

    font-size: 18px;

    font-weight: 800;
}


.trusted-logo small {

    display: block;

    margin-top: 3px;

    font-size: 6px;

    letter-spacing: 0.6px;

    color: #667085;
}


.trusted-logo.triguna {

    font-family: Georgia, serif;

    font-size: 17px;

    letter-spacing: 1px;
}


.trusted-logo.meal strong {

    font-size: 17px;
}


.trusted-logo.hmb strong {

    font-size: 20px;

    letter-spacing: 2px;
}


.trusted-logo.whitestone {

    font-size: 13px;

    font-weight: 700;
}


.trusted-logo.dv {

    flex-direction: row;

    gap: 4px;

    flex-wrap: wrap;

    max-width: 130px;

    margin: auto;
}


.trusted-logo.dv strong {

    font-size: 18px;
}


.trusted-logo.dv span {

    font-size: 11px;

    font-weight: 700;
}


.trusted-logo.dv small {

    width: 100%;
}


/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section {

    padding:
        18px 0 22px;

    background: #ffffff;
}


.about-grid {

    display: grid;

    grid-template-columns:
        155px
        minmax(350px, 1fr)
        350px;

    gap: 24px;

    align-items: center;
}


/* =========================================================
   ABOUT IMAGE
========================================================= */

.about-image-wrap {

    width: 155px;

    height: 160px;

    overflow: hidden;

    border-radius: 7px;

    background:
        linear-gradient(
            135deg,
            #e7f0fb,
            #cbdcf1
        );
}


.about-image {

    width: 100%;

    height: 100%;
}


.about-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center top;
}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.about-content h2 {

    color: var(--blue);

    font-size: 18px;

    line-height: 1.2;

    margin-bottom: 9px;

    font-weight: 700;
}


.about-content p {

    font-size: 9px;

    line-height: 1.55;

    color: #303744;

    margin-bottom: 7px;

    max-width: 525px;
}


.about-content strong {

    color: #202020;
}


.about-intro {

    margin-bottom: 8px !important;
}


.about-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    height: 31px;

    padding: 0 14px;

    border-radius: 4px;

    background: var(--blue);

    color: #ffffff;

    font-size: 9px;

    font-weight: 600;

    margin-top: 3px;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.about-btn:hover {

    background: var(--blue-dark);

    transform: translateY(-1px);
}


/* =========================================================
   ABOUT STATS
========================================================= */

.about-stats {

    border:
        1px solid #e1e8f2;

    border-radius: 7px;

    padding:
        13px 14px;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        13px 15px;

    box-shadow:
        0 4px 18px
        rgba(32, 73, 124, 0.05);
}


.stat-item {

    display: flex;

    align-items: center;

    gap: 9px;
}


.stat-icon {

    width: 28px;

    height: 28px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 7px;

    background: #eef5ff;

    color: #275dcc;

    font-size: 15px;
}


.stat-item strong {

    display: block;

    color: var(--blue);

    font-size: 14px;

    line-height: 1.1;
}


.stat-item span {

    display: block;

    color: #656d78;

    font-size: 7px;

    margin-top: 2px;

    line-height: 1.2;
}


.stat-item:last-child {

    grid-column:
        1 / -1;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {

    text-align: center;

    margin-bottom: 17px;
}


.section-heading span {

    display: inline-block;

    color: var(--blue);

    font-size: 21px;

    font-weight: 700;

    position: relative;
}


.section-heading i {

    display: block;

    width: 34px;

    height: 2px;

    background: var(--blue);

    margin: 5px auto 0;

    border-radius: 3px;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {

    padding:
        4px 0 20px;

    background: #ffffff;
}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 9px;
}


.service-card {

    min-height: 95px;

    border:
        1px solid #e1e7ef;

    border-radius: 6px;

    padding:
        12px 11px;

    background: #ffffff;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.service-card:hover {

    transform: translateY(-3px);

    border-color: #c8d8f1;

    box-shadow:
        0 8px 20px
        rgba(25, 73, 130, 0.08);
}


.service-icon {

    width: 27px;

    height: 27px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 19px;

    margin-bottom: 7px;
}


.service-icon.orange {
    color: #f3a51c;
}

.service-icon.blue {
    color: #336cff;
}

.service-icon.green {
    color: #28b879;
}

.service-icon.purple {
    color: #735de7;
}

.service-icon.teal {
    color: #3baab0;
}

.service-icon.red {
    color: #f34e4e;
}


.service-card h3 {

    font-size: 10px;

    color: #151515;

    font-weight: 700;

    line-height: 1.25;

    margin-bottom: 5px;
}


.service-card p {

    font-size: 7.5px;

    line-height: 1.45;

    color: #4e5662;
}


/* =========================================================
   SEO + AEO SECTION
========================================================= */

.seo-aeo-section {

    background:
        linear-gradient(
            90deg,
            #fffafd 0%,
            #ffffff 50%,
            #ffffff 100%
        );

    border-top:
        1px solid #f1f3f6;

    border-bottom:
        1px solid #edf1f6;

    padding:
        18px 0 20px;
}


.seo-aeo-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 30px;
}


.seo-aeo-left {

    padding-right: 10px;
}


.seo-aeo-left h2,
.marketing-needs h2 {

    color: var(--blue);

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 14px;
}


.marketing-needs h2 {

    color: #151515;
}


/* =========================================================
   SEO CONTENT
========================================================= */

.seo-aeo-content {

    display: grid;

    grid-template-columns:
        1fr 190px;

    align-items: center;

    gap: 12px;
}


.seo-points {

    display: flex;

    flex-direction: column;

    gap: 9px;
}


.seo-point {

    display: flex;

    align-items: center;

    gap: 9px;
}


.seo-point-icon {

    width: 30px;

    height: 30px;

    flex-shrink: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 16px;
}


.seo-point-icon.search {

    background: #e4f0ff;

    color: #1768d5;
}


.seo-point-icon.ai {

    background: #e2f8ed;

    color: #1ca66b;
}


.seo-point-icon.local {

    background: #ffe9e5;

    color: #f06955;
}


.seo-point-icon.overview {

    background: #eeeaff;

    color: #7257d9;
}


.seo-point strong {

    display: block;

    font-size: 8px;

    color: #222;
}


.seo-point p {

    max-width: 180px;

    font-size: 7px;

    line-height: 1.35;

    color: #616975;

    margin-top: 1px;
}


/* =========================================================
   SEO CIRCLE
========================================================= */

.seo-circle {

    width: 165px;

    height: 165px;

    border-radius: 50%;

    position: relative;

    margin: auto;

    background:
        conic-gradient(
            #35b9d9 0deg 90deg,
            #2ab26f 90deg 180deg,
            #7957d7 180deg 270deg,
            #ed625d 270deg 360deg
        );

    padding: 9px;

    transform: rotate(-45deg);
}


.seo-ring {

    position: absolute;

    width: 75px;

    height: 75px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    font-size: 10px;

    font-weight: 700;

    transform: rotate(45deg);
}


.ring-one {

    left: 3px;

    top: 30px;
}


.ring-two {

    right: 5px;

    top: 25px;
}


.ring-three {

    right: 15px;

    bottom: 12px;
}


.ring-four {

    left: 8px;

    bottom: 8px;
}


.seo-center {

    position: absolute;

    left: 50%;

    top: 50%;

    transform:
        translate(-50%, -50%)
        rotate(45deg);

    width: 76px;

    height: 76px;

    background: #ffffff;

    border-radius: 50%;

    box-shadow:
        0 4px 15px
        rgba(0,0,0,0.08);

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    color: var(--blue);
}


.seo-center span {

    font-size: 20px;

    line-height: 1;
}


.seo-center strong {

    font-size: 8px;

    margin-top: 2px;
}


/* =========================================================
   MARKETING NEEDS
========================================================= */

.marketing-needs {

    position: relative;

    min-height: 180px;
}


.needs-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        10px 22px;

    padding-right: 145px;
}


.need-item {

    display: flex;

    align-items: center;

    gap: 7px;

    color: var(--blue);

    font-size: 8px;

    font-weight: 600;

    white-space: nowrap;
}


.need-item span {

    width: 15px;

    height: 15px;

    border-radius: 50%;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: #e7f2ff;

    border:
        1px solid #a9ccf8;

    color: #1d72d5;

    font-size: 8px;
}


/* =========================================================
   MARKETING ILLUSTRATION
========================================================= */

.marketing-illustration {

    position: absolute;

    right: 0;

    bottom: -3px;

    width: 130px;

    height: 105px;
}


.target {

    position: absolute;

    right: 40px;

    bottom: 29px;

    width: 45px;

    height: 45px;

    border-radius: 50%;

    border:
        3px solid #d9eaff;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #4685df;

    font-size: 25px;
}


.person {

    position: absolute;

    bottom: 15px;

    width: 20px;

    height: 48px;

    background: #254c85;

    border-radius:
        10px 10px 3px 3px;
}


.person::before {

    content: "";

    position: absolute;

    top: -15px;

    left: 4px;

    width: 13px;

    height: 13px;

    border-radius: 50%;

    background: #f0b38d;
}


.person-left {

    left: 8px;
}


.person-right {

    right: 10px;

    transform:
        scaleX(-1);
}


.chart-bars {

    position: absolute;

    right: 0;

    bottom: 10px;

    width: 68px;

    height: 58px;

    display: flex;

    align-items: flex-end;

    gap: 5px;
}


.chart-bars i {

    display: block;

    width: 12px;

    background: #7aa9ed;

    border-radius: 2px 2px 0 0;
}


.chart-bars i:nth-child(1) {
    height: 16px;
}

.chart-bars i:nth-child(2) {
    height: 27px;
}

.chart-bars i:nth-child(3) {
    height: 39px;
}

.chart-bars i:nth-child(4) {
    height: 51px;
}


/* =========================================================
   PART 2 TABLET
========================================================= */

@media (max-width: 1000px) {

    .trusted-logos {

        grid-template-columns:
            repeat(3, 1fr);

        row-gap: 12px;
    }


    .about-grid {

        grid-template-columns:
            140px
            1fr;
    }


    .about-image-wrap {

        width: 140px;

        height: 150px;
    }


    .about-stats {

        grid-column:
            1 / -1;

        grid-template-columns:
            repeat(5, 1fr);
    }


    .stat-item:last-child {

        grid-column: auto;
    }


    .services-grid {

        grid-template-columns:
            repeat(3, 1fr);
    }


    .seo-aeo-content {

        grid-template-columns:
            1fr 160px;
    }


    .seo-circle {

        width: 145px;

        height: 145px;
    }
}


/* =========================================================
   PART 2 MOBILE
========================================================= */

@media (max-width: 700px) {

    .trusted-section {

        padding:
            12px 0 16px;
    }


    .trusted-logos {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 14px;
    }


    .about-section {

        padding:
            25px 0;
    }


    .about-grid {

        grid-template-columns:
            1fr;

        gap: 18px;
    }


    .about-image-wrap {

        width: 150px;

        height: 165px;

        margin: auto;
    }


    .about-content {

        text-align: center;
    }


    .about-content p {

        margin-left: auto;

        margin-right: auto;
    }


    .about-stats {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .stat-item:last-child {

        grid-column:
            1 / -1;
    }


    .services-section {

        padding:
            10px 0 25px;
    }


    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 9px;
    }


    .section-heading span {

        font-size: 15px;
    }


    .seo-aeo-section {

        padding:
            25px 0;
    }


    .seo-aeo-grid {

        grid-template-columns:
            1fr;

        gap: 35px;
    }


    .seo-aeo-content {

        grid-template-columns:
            1fr;

    }


    .seo-circle {

        margin-top: 10px;
    }


    .marketing-needs {

        min-height: 280px;
    }


    .needs-grid {

        padding-right: 0;

        grid-template-columns:
            1fr 1fr;

        gap: 12px 10px;
    }


    .need-item {

        white-space: normal;

        font-size: 8px;
    }


    .marketing-illustration {

        right: 5px;

        bottom: -10px;

        opacity: 0.7;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .trusted-logos {

        grid-template-columns:
            1fr 1fr;
    }


    .services-grid {

        grid-template-columns:
            1fr;
    }


    .service-card {

        min-height: 100px;
    }


    .about-stats {

        grid-template-columns:
            1fr 1fr;
    }


    .seo-point p {

        max-width: 230px;
    }


    .needs-grid {

        grid-template-columns:
            1fr;
    }


    .marketing-illustration {

        display: none;
    }
}

/* =========================================================
   PART 3
   ACHIEVEMENTS / TESTIMONIAL / BLOG
========================================================= */

.home-proof-section {

    background: #ffffff;

    padding:
        18px 0 12px;
}


.proof-grid {

    display: grid;

    grid-template-columns:
        1fr 1.25fr 1.05fr;

    gap: 20px;

    align-items: stretch;
}


/* =========================================================
   SECTION TITLES
========================================================= */

.proof-title {

    text-align: center;

    margin-bottom: 10px;
}


.proof-title h2 {

    display: inline-block;

    color: var(--blue);

    font-size: 21px;

    line-height: 1.2;

    font-weight: 700;

    margin: 0;
}


.proof-title span {

    display: block;

    width: 28px;

    height: 2px;

    margin: 4px auto 0;

    border-radius: 2px;

    background: var(--blue);
}


/* =========================================================
   ACHIEVEMENTS
========================================================= */

.achievements-box {

    min-height: 190px;

    padding:
        0 12px;
}


.achievement-list {

    border:
        1px solid #e8edf4;

    border-radius: 6px;

    padding:
        10px 12px;

    box-shadow:
        0 3px 12px
        rgba(31, 73, 125, 0.035);
}


.achievement-item {

    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        5px 0;

    border-bottom:
        1px solid #f1f3f7;
}


.achievement-item:last-child {

    border-bottom: 0;
}


.achievement-icon {

    width: 24px;

    height: 24px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #2769d2;

    background: #eff6ff;

    border-radius: 50%;

    font-size: 13px;
}


.achievement-text strong {

    display: block;

    color: var(--blue);

    font-size: 9px;

    line-height: 1.1;
}


.achievement-text span {

    display: block;

    color: #656d78;

    font-size: 6.5px;

    margin-top: 2px;
}


/* =========================================================
   TESTIMONIAL
========================================================= */

.testimonial-box {

    min-height: 190px;
}


.testimonial-card {

    position: relative;

    height: 156px;

    border:
        1px solid #e7ecf3;

    border-radius: 7px;

    padding:
        15px 20px 10px;

    background: #ffffff;

    box-shadow:
        0 3px 14px
        rgba(31, 73, 125, 0.04);
}


.quote-mark {

    position: absolute;

    left: 15px;

    top: 5px;

    font-family: Georgia, serif;

    font-size: 35px;

    line-height: 1;

    color: #e8edf4;
}


.testimonial-text {

    margin:
        15px 0 12px;

    padding-left: 8px;

    max-width: 340px;

    color: #414853;

    font-size: 7.5px;

    line-height: 1.55;
}


.testimonial-person {

    display: flex;

    align-items: center;

    gap: 8px;

    padding-left: 8px;
}


.testimonial-avatar {

    width: 34px;

    height: 34px;

    overflow: hidden;

    border-radius: 50%;

    background: #e9f1fc;
}


.testimonial-avatar img {

    width: 100%;

    height: 100%;

    object-fit: cover;
}


.testimonial-person strong {

    display: block;

    color: #171717;

    font-size: 7px;
}


.testimonial-person span {

    display: block;

    color: #68717d;

    font-size: 6px;

    margin-top: 2px;
}


/* =========================================================
   TESTIMONIAL CONTROLS
========================================================= */

.testimonial-controls {

    position: absolute;

    left: 12px;

    right: 12px;

    bottom: 6px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.testimonial-controls button {

    width: 23px;

    height: 23px;

    border:
        1px solid #e2e8f1;

    background: #ffffff;

    border-radius: 50%;

    color: #657080;

    cursor: pointer;

    font-size: 14px;

    line-height: 20px;
}


.testimonial-controls button:hover {

    color: var(--blue);

    border-color: #b9ccec;
}


.testimonial-dots {

    display: flex;

    gap: 5px;

    align-items: center;
}


.testimonial-dots span {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #d8dfe9;
}


.testimonial-dots span.active {

    width: 6px;

    height: 6px;

    background: var(--blue);
}


/* =========================================================
   BLOG
========================================================= */

.blog-box {

    min-height: 190px;
}


.blog-list {

    display: flex;

    flex-direction: column;

    gap: 7px;
}


.blog-item {

    display: flex;

    gap: 8px;

    min-height: 45px;

    text-decoration: none;

    padding-bottom: 7px;

    border-bottom:
        1px solid #edf0f5;
}


.blog-image {

    width: 61px;

    height: 42px;

    flex-shrink: 0;

    overflow: hidden;

    border-radius: 5px;

    background: #e8eef7;
}


.blog-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.25s ease;
}


.blog-item:hover .blog-image img {

    transform: scale(1.05);
}


.blog-content h3 {

    color: #262a31;

    font-size: 7px;

    line-height: 1.35;

    font-weight: 600;

    margin: 0 0 3px;
}


.blog-content span {

    color: #8a919c;

    font-size: 5.5px;
}


.view-blog-btn {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    width: 92px;

    height: 23px;

    margin: 8px auto 0;

    border:
        1px solid #a9bfe4;

    border-radius: 4px;

    color: var(--blue);

    font-size: 6.5px;

    font-weight: 600;

    text-decoration: none;
}


.view-blog-btn:hover {

    background: #f0f6ff;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {

    background: #ffffff;

    padding:
        10px 0 20px;
}


.faq-heading {

    text-align: center;

    margin-bottom: 15px;
}


.faq-heading h2 {

    color: var(--blue);

    font-size: 14px;

    font-weight: 700;

    margin: 0;
}


.faq-heading span {

    display: block;

    width: 32px;

    height: 2px;

    background: var(--blue);

    margin: 5px auto 0;

    border-radius: 2px;
}


.faq-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 8px;
}


.faq-card {

    border:
        1px solid #e8edf4;

    border-radius: 5px;

    overflow: hidden;

    background: #ffffff;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.faq-card:hover {

    border-color: #c9d8ef;
}


.faq-question {

    width: 100%;

    min-height: 53px;

    border: 0;

    background: #ffffff;

    padding:
        7px 8px;

    display: flex;

    align-items: center;

    gap: 6px;

    cursor: pointer;

    text-align: left;
}


.faq-icon {

    width: 23px;

    height: 23px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #eef5ff;

    color: #326ed0;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 11px;
}


.faq-question-text {

    flex: 1;

    color: #222831;

    font-size: 6.5px;

    line-height: 1.3;

    font-weight: 600;
}


.faq-arrow {

    width: 17px;

    height: 17px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: var(--blue);

    font-size: 12px;

    transition:
        transform 0.25s ease;
}


.faq-card.active .faq-arrow {

    transform: rotate(45deg);
}


.faq-card.active {

    box-shadow:
        0 4px 14px
        rgba(37, 89, 157, 0.07);
}


.faq-answer {

    display: none;

    padding:
        0 10px 10px 37px;
}


.faq-card.active .faq-answer {

    display: block;
}


.faq-answer p {

    color: #646c77;

    font-size: 6.5px;

    line-height: 1.5;

    margin: 0;
}


.faq-button-wrap {

    display: flex;

    justify-content: center;

    margin-top: 12px;
}


.faq-view-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    height: 25px;

    padding:
        0 14px;

    background: var(--blue);

    border-radius: 4px;

    color: #ffffff;

    text-decoration: none;

    font-size: 7px;

    font-weight: 600;
}


.faq-view-button:hover {

    background: var(--blue-dark);
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta-section {

    padding:
        0 0 0;

    background: #ffffff;
}


.final-cta {

    min-height: 78px;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        12px 90px;

    border-radius:
        4px 4px 2px 2px;

    background:
        linear-gradient(
            105deg,
            #072a83 0%,
            #062878 55%,
            #071f64 100%
        );
}


.final-cta::before {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    right: 90px;

    top: -170px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,0.06);
}


.cta-content {

    position: relative;

    z-index: 2;
}


.cta-content h2 {

    color: #ffffff;

    font-size: 17px;

    line-height: 1.1;

    margin: 0 0 4px;

    font-weight: 700;
}


.cta-content p {

    color: #d8e4ff;

    font-size: 7px;

    margin: 0 0 8px;
}


.cta-buttons {

    display: flex;

    align-items: center;

    gap: 8px;
}


.cta-primary,
.cta-secondary {

    height: 25px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        0 13px;

    border-radius: 4px;

    font-size: 7px;

    text-decoration: none;

    font-weight: 600;
}


.cta-primary {

    background: #ffd65a;

    color: #142a61;
}


.cta-primary:hover {

    background: #ffe184;
}


.cta-secondary {

    border:
        1px solid
        rgba(255,255,255,0.5);

    color: #ffffff;

    background:
        rgba(255,255,255,0.03);
}


.cta-secondary:hover {

    background:
        rgba(255,255,255,0.1);
}


/* =========================================================
   CTA GRAPHIC
========================================================= */

.cta-graphic {

    position: relative;

    width: 200px;

    height: 65px;

    flex-shrink: 0;
}


.rocket {

    position: absolute;

    right: 115px;

    top: 2px;

    font-size: 30px;

    transform:
        rotate(-15deg);
}


.growth-arrow {

    position: absolute;

    right: 63px;

    top: 2px;

    color: #5e91e9;

    font-size: 42px;

    font-weight: 300;
}


.cta-bars {

    position: absolute;

    right: 0;

    bottom: 4px;

    height: 48px;

    display: flex;

    align-items: flex-end;

    gap: 4px;
}


.cta-bars i {

    width: 17px;

    display: block;

    border-radius:
        2px 2px 0 0;

    background:
        rgba(85, 139, 223, 0.55);
}


.cta-bars i:nth-child(1) {

    height: 13px;
}


.cta-bars i:nth-child(2) {

    height: 22px;
}


.cta-bars i:nth-child(3) {

    height: 32px;
}


.cta-bars i:nth-child(4) {

    height: 43px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    background: #ffffff;

    padding:
        24px 0 0;

    border-top:
        1px solid #e7ebf1;
}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.6fr
        1fr
        1fr
        1.2fr;

    gap: 30px;

    padding-bottom: 20px;
}


.footer-logo {

    display: flex;

    align-items: center;

    gap: 8px;

    text-decoration: none;

    color: #111;
}


.footer-logo-mark {

    width: 31px;

    height: 31px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 7px;

    background: #092b83;

    color: #ffffff;

    font-weight: 800;

    font-size: 18px;

    transform:
        skewY(-8deg);
}


.footer-logo strong {

    display: block;

    color: #08256e;

    font-size: 15px;

    line-height: 1;
}


.footer-logo small {

    display: block;

    color: #7c8490;

    font-size: 5.5px;

    margin-top: 3px;
}


.footer-brand > p {

    max-width: 220px;

    color: #66707c;

    font-size: 7px;

    line-height: 1.5;

    margin:
        10px 0;
}


.footer-social {

    display: flex;

    gap: 5px;
}


.footer-social a {

    width: 22px;

    height: 22px;

    border:
        1px solid #dce3ee;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #1e55a7;

    font-size: 8px;

    font-weight: 700;

    text-decoration: none;
}


.footer-social a:hover {

    background: #eef5ff;

    border-color: #bfd3ef;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.footer-column h3 {

    color: #172039;

    font-size: 9px;

    font-weight: 700;

    margin:
        0 0 10px;
}


.footer-column a,
.footer-column span {

    color: #68717e;

    font-size: 7px;

    line-height: 1.4;

    text-decoration: none;

    margin-bottom: 7px;
}


.footer-column a:hover {

    color: var(--blue);
}


.footer-contact a,
.footer-contact span {

    margin-bottom: 9px;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    min-height: 35px;

    border-top:
        1px solid #e9edf3;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {

    color: #89919c;

    font-size: 6.5px;

    margin: 0;
}


.footer-bottom div {

    display: flex;

    gap: 15px;
}


.footer-bottom a {

    color: #7a838f;

    font-size: 6.5px;

    text-decoration: none;
}


.footer-bottom a:hover {

    color: var(--blue);
}


/* =========================================================
   PART 3 TABLET
========================================================= */

@media (max-width: 1000px) {

    .proof-grid {

        grid-template-columns:
            1fr 1fr;
    }


    .blog-box {

        grid-column:
            1 / -1;
    }


    .blog-list {

        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 10px;
    }


    .faq-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }
}


/* =========================================================
   PART 3 MOBILE
========================================================= */

@media (max-width: 700px) {

    .home-proof-section {

        padding:
            25px 0;
    }


    .proof-grid {

        grid-template-columns:
            1fr;

        gap: 28px;
    }


    .achievements-box,
    .testimonial-box,
    .blog-box {

        min-height: auto;

        padding: 0;
    }


    .testimonial-card {

        height: 170px;
    }


    .blog-list {

        grid-template-columns:
            1fr;
    }


    .blog-item {

        min-height: 58px;
    }


    .blog-image {

        width: 78px;

        height: 52px;
    }


    .blog-content h3 {

        font-size: 8px;
    }


    .blog-content span {

        font-size: 6px;
    }


    .faq-grid {

        grid-template-columns:
            1fr 1fr;
    }


    .final-cta {

        padding:
            20px 25px;

        min-height: 130px;
    }


    .cta-content h2 {

        font-size: 16px;
    }


    .cta-graphic {

        opacity: 0.5;

        width: 140px;

        margin-left: -40px;
    }


    .footer-grid {

        grid-template-columns:
            1fr 1fr;

        gap: 25px 20px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .faq-grid {

        grid-template-columns:
            1fr;
    }


    .faq-question {

        min-height: 52px;
    }


    .final-cta {

        min-height: 170px;

        align-items: flex-start;

        padding:
            22px 20px;
    }


    .cta-content {

        width: 100%;
    }


    .cta-graphic {

        position: absolute;

        right: 0;

        bottom: 0;

        opacity: 0.3;
    }


    .cta-buttons {

        flex-wrap: wrap;
    }


    .footer-grid {

        grid-template-columns:
            1fr;
    }


    .footer-bottom {

        padding:
            10px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 6px;
    }
}

/* ============================================================
   FINAL SIZE / SCALE CORRECTION
   Vargou.in Website
============================================================ */

/* ------------------------------------------------------------
   GLOBAL
------------------------------------------------------------ */

html {
    font-size: 17px;
}

body {
    font-size: 17px;
    line-height: 1.6;
}

.container {
    width: min(1280px, calc(100% - 80px));
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}


/* ------------------------------------------------------------
   HEADER
------------------------------------------------------------ */

.site-header,
header {
    min-height: 72px;
}

.site-header .container,
header .container {
    min-height: 72px;
}

.site-logo strong,
.logo strong {
    font-size: 18px;
}

.site-logo small,
.logo small {
    font-size: 8px;
}

.main-menu a,
.nav-menu a,
header nav a {
    font-size: 14px;
}

.header-button,
.book-button,
header .btn {
    min-height: 42px;
    padding: 0 22px;
    font-size: 13px;
}


/* ------------------------------------------------------------
   HERO
------------------------------------------------------------ */

.hero-section {
    min-height: 430px;
    padding: 55px 0 45px;
}

.hero-content h1 {
    font-size: clamp(31px, 4vw, 41px);
    line-height: 1.08;
    font-weight: 700;
    max-width: 650px;
    margin-bottom: 22px;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.65;
    max-width: 620px;
    margin-bottom: 25px;
}

.hero-buttons {
    gap: 12px;
}

.hero-buttons a,
.hero-btn {
    min-height: 46px;
    padding: 0 22px;
    font-size: 13px;
}

.hero-image {
    max-width: 600px;
}


/* ------------------------------------------------------------
   TRUSTED BRANDS
------------------------------------------------------------ */

.trusted-section {
    padding: 15px 0 18px;
}

.trusted-section h3,
.trusted-title {
    font-size: 13px;
    margin-bottom: 15px;
}

.trusted-logos {
    gap: 45px;
}

.trusted-logos img {
    max-height: 42px;
}


/* ------------------------------------------------------------
   ABOUT / PROFILE
------------------------------------------------------------ */

.about-section {
    padding: 38px 0;
}

.about-image {
    min-height: 180px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content h2 {
    font-size: 21px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.about-content p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 10px;
}

.about-content .btn,
.profile-btn {
    min-height: 40px;
    padding: 0 20px;
    font-size: 13px;
}


/* ------------------------------------------------------------
   STATISTICS
------------------------------------------------------------ */

.stats-box {
    padding: 25px;
}

.stat-item {
    min-height: 55px;
    gap: 12px;
}

.stat-icon {
    width: 38px;
    height: 38px;
    font-size: 17px;
}

.stat-item strong {
    font-size: 17px;
}

.stat-item span {
    font-size: 11px;
}


/* ------------------------------------------------------------
   SERVICES
------------------------------------------------------------ */

.services-section {
    padding: 38px 0 45px;
}

.services-section > .container > h2,
.services-heading h2 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.services-section > .container > h2::after,
.services-heading span {
    width: 45px;
    height: 3px;
    margin-top: 8px;
}

.services-grid {
    gap: 14px;
}

.service-card {
    min-height: 145px;
    padding: 22px 20px;
    border-radius: 8px;
}

.service-card .service-icon {
    width: 34px;
    height: 34px;
    font-size: 18px;
    margin-bottom: 12px;
}

.service-card h3 {
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 12px;
    line-height: 1.55;
}


/* ------------------------------------------------------------
   SEO / AEO SECTION
------------------------------------------------------------ */

.seo-aeo-section {
    padding: 45px 0;
}

.seo-aeo-section h2,
.seo-aeo-title {
    font-size: 21px;
    line-height: 1.25;
}

.seo-aeo-section p {
    font-size: 13px;
    line-height: 1.6;
}

.seo-aeo-section li {
    font-size: 13px;
    margin-bottom: 10px;
}

.seo-aeo-section .icon {
    width: 34px;
    height: 34px;
}


/* ------------------------------------------------------------
   PART 3 - PROOF SECTION
------------------------------------------------------------ */

.home-proof-section {
    padding: 35px 0 30px;
}

.proof-grid {
    gap: 28px;
}

.proof-title {
    margin-bottom: 15px;
}

.proof-title h2 {
    font-size: 21px;
    line-height: 1.3;
}

.proof-title span {
    width: 35px;
    height: 2px;
    margin-top: 6px;
}


/* ------------------------------------------------------------
   ACHIEVEMENTS
------------------------------------------------------------ */

.achievement-list {
    padding: 15px 18px;
}

.achievement-item {
    padding: 9px 0;
    gap: 12px;
}

.achievement-icon {
    width: 34px;
    height: 34px;
    font-size: 15px;
}

.achievement-text strong {
    font-size: 14px;
}

.achievement-text span {
    font-size: 10px;
    margin-top: 2px;
}


/* ------------------------------------------------------------
   TESTIMONIAL
------------------------------------------------------------ */

.testimonial-card {
    height: 220px;
    padding: 25px 30px 15px;
}

.quote-mark {
    font-size: 50px;
    left: 20px;
    top: 8px;
}

.testimonial-text {
    font-size: 13px;
    line-height: 1.6;
    max-width: 500px;
    margin: 30px 0 20px;
    padding-left: 5px;
}

.testimonial-person {
    gap: 12px;
    padding-left: 5px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
}

.testimonial-person strong {
    font-size: 12px;
}

.testimonial-person span {
    font-size: 10px;
}

.testimonial-controls {
    bottom: 12px;
}

.testimonial-controls button {
    width: 30px;
    height: 30px;
    font-size: 18px;
}


/* ------------------------------------------------------------
   BLOG
------------------------------------------------------------ */

.blog-list {
    gap: 12px;
}

.blog-item {
    min-height: 65px;
    gap: 12px;
    padding-bottom: 10px;
}

.blog-image {
    width: 90px;
    height: 60px;
}

.blog-content h3 {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 5px;
}

.blog-content span {
    font-size: 9px;
}

.view-blog-btn {
    width: 120px;
    height: 34px;
    margin-top: 12px;
    font-size: 10px;
}


/* ------------------------------------------------------------
   FAQ
------------------------------------------------------------ */

.faq-section {
    padding: 35px 0 40px;
}

.faq-heading {
    margin-bottom: 22px;
}

.faq-heading h2 {
    font-size: 21px;
    line-height: 1.25;
}

.faq-heading span {
    width: 40px;
    height: 3px;
    margin-top: 7px;
}

.faq-grid {
    gap: 12px;
}

.faq-card {
    border-radius: 7px;
}

.faq-question {
    min-height: 68px;
    padding: 12px 15px;
    gap: 10px;
}

.faq-icon {
    width: 34px;
    height: 34px;
    font-size: 14px;
}

.faq-question-text {
    font-size: 12px;
    line-height: 1.4;
}

.faq-arrow {
    width: 25px;
    height: 25px;
    font-size: 18px;
}

.faq-answer {
    padding: 0 15px 15px 59px;
}

.faq-answer p {
    font-size: 12px;
    line-height: 1.6;
}

.faq-view-button {
    height: 38px;
    padding: 0 22px;
    font-size: 11px;
}


/* ------------------------------------------------------------
   FINAL CTA
------------------------------------------------------------ */

.final-cta-section {
    padding: 0 0 0;
}

.final-cta {
    min-height: 125px;
    padding: 25px 55px;
    border-radius: 6px;
}

.cta-content h2 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 7px;
}

.cta-content p {
    font-size: 13px;
    margin-bottom: 14px;
}

.cta-buttons {
    gap: 10px;
}

.cta-primary,
.cta-secondary {
    min-height: 38px;
    padding: 0 18px;
    font-size: 11px;
}

.cta-graphic {
    width: 250px;
    height: 85px;
}

.rocket {
    font-size: 40px;
}

.growth-arrow {
    font-size: 55px;
}


/* ------------------------------------------------------------
   FOOTER
------------------------------------------------------------ */

.site-footer {
    padding-top: 38px;
}

.footer-grid {
    gap: 45px;
    padding-bottom: 30px;
}

.footer-logo strong {
    font-size: 18px;
}

.footer-logo small {
    font-size: 8px;
}

.footer-brand > p {
    max-width: 280px;
    font-size: 12px;
    line-height: 1.6;
}

.footer-social a {
    width: 30px;
    height: 30px;
    font-size: 11px;
}

.footer-column h3 {
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-column a,
.footer-column span {
    font-size: 12px;
    margin-bottom: 9px;
}

.footer-bottom {
    min-height: 50px;
}

.footer-bottom p,
.footer-bottom a {
    font-size: 10px;
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1100px) {

    .container {
        width: min(100% - 50px, 1100px);
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .trusted-logos {
        gap: 25px;
    }

    .proof-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-box {
        grid-column: 1 / -1;
    }

}


@media (max-width: 768px) {

    .container {
        width: calc(100% - 32px);
    }

    .hero-section {
        padding: 45px 0;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }

    .final-cta {
        padding: 25px;
    }

    .cta-content h2 {
        font-size: 23px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 550px) {

    .container {
        width: calc(100% - 24px);
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons a {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .blog-box {
        grid-column: auto;
    }

    .final-cta {
        min-height: 180px;
    }

    .cta-graphic {
        opacity: .25;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0;
    }

}

