/* ================= RESET ================= */

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

:root {
    --blue: #1260d8;
    --dark-blue: #071936;
    --text: #17233d;
    --muted: #59657a;
    --border: #dfe5ee;
    --light-blue: #f6faff;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

::selection {
    background: var(--blue);
    color: #fff;
}

.container {
    width: min(1440px, calc(100% - 56px));
    margin: auto;
}


/* ================= SCROLL / REVEAL ANIMATION HELPERS ================= */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseRing {
    0% {
        box-shadow: 0 0 0 0 rgba(18, 96, 216, .35);
    }

    100% {
        box-shadow: 0 0 0 14px rgba(18, 96, 216, 0);
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {

    .reveal,
    .floating-card,
    .hero-content,
    .stat {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }
}


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

.hero {
    position: relative;
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 60%);
    overflow: hidden;
    border-bottom: 1px solid rgb(231, 235, 241);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(75px);
    z-index: 0;
    pointer-events: none;
}

.hero::before {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(18, 96, 216, .16), transparent 70%);
    top: -160px;
    left: -140px;
}

.hero::after {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(6, 182, 212, .14), transparent 70%);
    bottom: -140px;
    right: -120px;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 64px;
    align-items: center;
    padding: 60px 0 70px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    background: var(--light-blue);
    color: var(--blue);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .3px;
    margin-bottom: 18px;
    animation: fadeInUp .7s cubic-bezier(.4, 0, .2, 1) both;
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #06b6d4;
    display: inline-block;
    animation: pulseRing 1.8s ease-out infinite;
}

.hero-content {
    padding: 0 20px 0 0;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 49px;
    line-height: 1.3;
    letter-spacing: -1.5px;
    color: #071936;
    margin-bottom: 18px;
    font-weight: 600;
    animation: fadeInUp .7s cubic-bezier(.4, 0, .2, 1) .08s both;
}

.hero-content h1 span {
    background: linear-gradient(120deg, var(--blue), #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content p {
    max-width: 470px;
    font-size: 16px;
    line-height: 1.7;
    color: #253149;
    animation: fadeInUp .7s cubic-bezier(.4, 0, .2, 1) .16s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 22px;
    animation: fadeInUp .7s cubic-bezier(.4, 0, .2, 1) .24s both;
}

.hero-image {
    min-height: 345px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp .8s cubic-bezier(.4, 0, .2, 1) .2s both;
}

.hero-photo-frame {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(9, 30, 70, .18);
    aspect-ratio: 6 / 5.2;
}

.hero-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.hero-photo-frame:hover img {
    transform: scale(1.04);
}

.hero-photo-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, rgba(7, 25, 54, .2), rgba(7, 25, 54, 0) 45%);
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(9, 30, 70, .16);
    padding: 14px 16px;
    z-index: 3;
    animation: floatY 5s ease-in-out infinite;
}

.floating-card--stats {
    top: 8%;
    left: -8%;
    display: flex;
    gap: 16px;
    animation-delay: 0s;
}

.floating-card--stats .fc-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.floating-card--stats .fc-item strong {
    font-size: 15px;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 4px;
}

.floating-card--stats .fc-item strong.up {
    color: #12a454;
}

.floating-card--stats .fc-item small {
    font-size: 10.5px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .4px;
}

.floating-card--gauge {
    bottom: 7%;
    right: 10%;
    display: flex;
    align-items: center;
    gap: 12px;
    animation-delay: 1.4s;
}

.gauge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: conic-gradient(var(--blue) 0deg 331deg, #e7edf7 331deg 360deg);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.gauge span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 800;
    color: var(--dark-blue);
}

.floating-card--gauge .fc-label strong {
    display: block;
    font-size: 13.5px;
    color: var(--dark-blue);
}

.floating-card--gauge .fc-label small {
    font-size: 10.5px;
    color: var(--muted);
}

@media (max-width: 1080px) {

    .floating-card--stats {
        left: 4%;
    }

    .floating-card--gauge {
        right: 14%;
    }
}


/* ================= STATS / COUNTERS ================= */

.stats {
    min-height: 70px;
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 18px;
    position: relative;
    z-index: 3;
    margin: 0;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #dadada;
}

.stat {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 8px 14px 8px 8px;
    border-radius: 14px;
    transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}

.stat:hover {
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(9, 30, 70, .08);
}

.stat-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: var(--light-blue);
    border: 1px solid #dadada;
    border-radius: 100%;
    flex-shrink: 0;
    transition: transform .35s ease, background .35s ease;
}

.stat:hover .stat-icon {
    transform: scale(1.12) rotate(-6deg);
    background: #e2edff;
}

.stat-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--blue);
    stroke-width: 1.6;
}

.stat strong,
.stat small {
    display: block;
}

.stat strong {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark-blue);
    font-variant-numeric: tabular-nums;
}

.stat small {
    color: #5c687b;
    font-size: 11px;
}


/* ================= SECTION HEADING ================= */

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

.section-heading span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--blue);
    background: var(--light-blue);
    padding: 6px 15px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
}

.section-heading h2 {
    color: #071936;
    font-size: 28px;
    line-height: 1.2;
    margin-top: 10px;
}


/* ================= SOLUTIONS ================= */

.solutions-section {
    padding: 20px 0 96px;
    background: #fff;
}

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

.solution-card {
    position: relative;
    min-height: 186px;
    border: 1px solid #dfe6ef;
    border-radius: 14px;
    padding: 28px 24px;
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto 1fr auto;
    column-gap: 14px;
    box-shadow: 0 3px 12px rgba(30, 60, 90, .04);
    overflow: hidden;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1), box-shadow .35s cubic-bezier(.4, 0, .2, 1), border-color .35s ease;
}

.solution-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), #06b6d4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(30, 60, 90, .14);
    border-color: transparent;
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-icon {
    width: 42px;
    height: 42px;
    grid-row: 1 / span 2;
    display: grid;
    place-items: center;
    color: var(--blue);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.solution-card:hover .solution-icon {
    transform: scale(1.12) rotate(-5deg);
}

.solution-icon svg {
    width: 44px;
    height: 44px;
}

.wordpress-icon {
    border-radius: 50%;
    background: #1769aa;
    color: #fff;
    font-family: Georgia, serif;
    font-size: 29px;
    font-weight: bold;
}

.solution-content h3 {
    font-size: 17px;
    line-height: 1.25;
    margin-bottom: 7px;
}

.solution-content p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--muted);
}

.solution-card>a {
    grid-column: 1 / -1;
    margin-top: 12px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.solution-card>a span {
    margin-left: 5px;
    font-size: 22px;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

.solution-card:hover>a span {
    transform: translateX(5px);
}


/* ================= TESTIMONIALS ================= */

.testimonials-section {
    padding: 20px 0 96px;
    padding-bottom: 30px;
}

.testimonials-section .section-heading {
    margin-bottom: 16px;
}

.testimonials-section .section-heading h2 {
    font-size: 26px;
}

.review-platforms {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.review-platforms div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    background: var(--light-blue);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: 600;
    transition: transform .25s ease, box-shadow .25s ease;
}

.review-platforms div:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(9, 30, 70, .08);
}

.review-platforms span {
    color: #1599d2;
    letter-spacing: 1px;
    font-size: 16px;
}

.review-platforms small {
    color: #59657a;
    margin-left: 5px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.testimonial-card {
    min-height: 130px;
    border: 1px solid #dfe6ef;
    border-radius: 14px;
    padding: 42px 24px 26px;
    position: relative;
    background: var(--light-blue);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1), box-shadow .35s ease, background .35s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(9, 30, 70, .1);
    background: #fff;
}

.quote {
    position: absolute;
    left: 22px;
    top: -20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #06b6d4);
    display: grid;
    place-items: center;
    box-shadow: 0 10px 22px rgba(18, 96, 216, .3);
}

.quote svg {
    width: 18px;
    height: 18px;
}

.quote svg path {
    fill: #fff !important;
}

.testimonial-card>p {
    font-size: 14px;
    line-height: 1.6;
    padding-top: 6px;
    min-height: 52px;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #0a3f9e);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
}

.testimonial-author strong,
.testimonial-author small {
    display: block;
}

.testimonial-author strong {
    font-size: 13px;
}

.testimonial-author small {
    color: #59657a;
    font-size: 11px;
}


/* ================= PROCESS ================= */

.process-section {
    padding: 80px 0 96px;
    background: linear-gradient(180deg, #fff, var(--light-blue) 55%, #fff);
}

.process-section .section-heading {
    margin-bottom: 56px;
}

.process-section .section-heading span {
    color: var(--blue);
    background: var(--light-blue);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 70px 1fr 70px 1fr 70px 1fr 70px 1fr;
    align-items: start;
}

.process-step {
    text-align: center;
}

.process-icon {
    width: 58px;
    height: 58px;
    border: 1px solid #c9d9ed;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    margin: auto auto 10px;
    box-shadow: 0 4px 14px rgba(9, 30, 70, .05);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.process-step:hover .process-icon {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(9, 30, 70, .12);
    border-color: var(--blue);
}

.process-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: var(--blue);
    stroke-width: 1.5;
}

.process-step strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.process-step p {
    color: #59657a;
    font-size: 14px;
    line-height: 1.5;
}

.process-arrow {
    color: #438de5;
    font-size: 30px;
    text-align: center;
}


/* ================= CTA ================= */

.cta-section {
    padding: 0 0 50px;
}

.cta-box {
    position: relative;
    min-height: 95px;
    border-radius: 18px;
    padding: 40px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: linear-gradient(120deg, var(--dark-blue), #0a3f9e 55%, var(--blue));
    overflow: hidden;
    box-shadow: 0 25px 55px rgba(9, 30, 70, .18);
}

.cta-box::before,
.cta-box::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
}

.cta-box::before {
    width: 240px;
    height: 240px;
    background: rgba(6, 182, 212, .28);
    top: -90px;
    right: 30px;
}

.cta-box::after {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, .1);
    bottom: -100px;
    left: 20%;
}

.cta-box>div,
.cta-buttons {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: 24px;
    margin-bottom: 4px;
    color: #fff;
}

.cta-box p {
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    max-width: 440px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: #fff;
    color: var(--dark-blue);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.cta-buttons .btn-primary:hover {
    background: #f1f6ff;
}

.cta-buttons .btn-outline {
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
    background: transparent;
}

.cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
    color: #fff;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {

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

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 850px) {

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

    .hero-grid {
        display: flex;
        flex-direction: column-reverse;
        padding: 40px 0 20px;
    }

    .hero-content {
        padding-top: 0;
    }

    .hero-image {
        order: -1;
        min-height: 0;
        margin-bottom: 10px;
    }

    .hero-photo-frame {
        aspect-ratio: 16 / 10;
    }

    .review-platforms {
        gap: 12px;
    }

    .stats {
        flex-wrap: wrap;
        gap: 12px;
        padding: 20px 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-arrow {
        transform: rotate(90deg);
        padding: 0;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 600px) {

    .hero-content h1 {
        font-size: 37px;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn,
    .cta-buttons .btn {
        width: 100%;
    }

    .solutions-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .review-platforms {
        flex-wrap: wrap;
        gap: 10px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        padding: 15px 0;
        text-align: center;
    }

    .footer-bottom div {
        gap: 20px;
    }

    .footer-brand p {
        max-width: 95%;
    }

    .floating-card {
        padding: 10px 12px;
    }
}

                                                                                        