:root {
    --avyro-blue: #1769e8;
    --avyro-blue-dark: #0d5dcc;
    --avyro-green: #83ce27;
    --avyro-navy: #071a38;
    --avyro-text: #647690;
    --avyro-light: #f7faff;
    --avyro-border: #dfe7f1;
    --avyro-white: #ffffff;
}

.seo-hero,
.seo-hero *,
.seo-services-section,
.seo-services-section *,
.seo-why-section,
.seo-why-section *,
.seo-process-section,
.seo-process-section *,
.seo-cta-section,
.seo-cta-section * {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}.seo-hero {
    position: relative;
    min-height: 650px;
    padding: 110px 0 85px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;

    background:
        linear-gradient(
            100deg,
            rgba(4, 15, 32, .68) 0%,
            rgba(6, 25, 50, .52) 48%,
            rgba(11, 49, 91, .38) 100%
        ),
        url("../assets/seo.webp") center center / cover no-repeat;
}

.seo-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        radial-gradient(
            circle at 80% 25%,
            rgba(23, 105, 232, .18),
            transparent 32%
        ),
        radial-gradient(
            circle at 20% 90%,
            rgba(131, 206, 39, .08),
            transparent 24%
        );

    pointer-events: none;
}

.seo-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(255,255,255,.12);
    pointer-events: none;
}

.seo-hero-container {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid !important;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr) !important;
    gap: 65px;
    align-items: center;
}

.seo-hero-content {
    position: relative;
    z-index: 5;
    max-width: 720px;
}

.seo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50px;
    background: rgba(255,255,255,.08);
    color: #dfffad;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.seo-eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--avyro-green);
    box-shadow: 0 0 0 5px rgba(131,206,39,.10);
}

.seo-hero-content h1 {
    max-width: 850px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(48px, 5.8vw, 76px);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -3px;
}

.seo-hero-content h1 span {
    display: block;
    margin-top: 2px;
    background: linear-gradient(
        90deg,
        #1879eb 0%,
        #31a0dd 45%,
        #83ce27 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-hero-content p {
    max-width: 650px;
    margin: 24px 0 30px;
    color: rgba(255,255,255,.82);
    font-size: 16px;
    line-height: 1.8;
}

.seo-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
}

.seo-btn {
    min-height: 50px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.seo-btn-primary {
    color: #fff;
    background: var(--avyro-blue);
    border: 1px solid var(--avyro-blue);
    box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

.seo-btn-primary:hover {
    color: #fff;
    background: var(--avyro-blue-dark);
    border-color: var(--avyro-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 17px 35px rgba(0,0,0,.27);
}

.seo-btn-secondary {
    color: var(--avyro-navy);
    background: #fff;
    border: 1px solid #fff;
}

.seo-btn-secondary:hover {
    color: var(--avyro-blue);
    background: #f4f8fd;
    transform: translateY(-3px);
}

.seo-hero-points {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 24px;
}

.seo-hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.76);
    font-size: 11px;
    font-weight: 500;
}

.seo-hero-points i {
    color: var(--avyro-green);
    font-size: 10px;
}

.seo-hero-visual {
    position: relative !important;
    min-width: 0;
    width: 100%;
    height: 430px;
    display: block !important;
    visibility: visible !important;
}

.seo-orbit {
    position: absolute;
    display: block;
    border-radius: 50%;
    pointer-events: none;
}

.seo-orbit-one {
    width: 360px;
    height: 360px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(255,255,255,.18);
    animation: seoOrbitOne 20s linear infinite;
}

.seo-orbit-two {
    width: 270px;
    height: 270px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(131,206,39,.18);
    animation: seoOrbitTwo 25s linear infinite;
}

.seo-score-card {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    z-index: 5;
    width: 275px;
    min-height: 220px;
    margin: 0 !important;
    padding: 25px;
    display: block !important;
    transform: translate(-50%, -50%) !important;
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 20px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 25px 60px rgba(0,0,0,.20);
    visibility: visible !important;
}

.seo-score-card span {
    display: block;
    color: #75879d;
    font-size: 11px;
    font-weight: 500;
}

.seo-score-card strong {
    display: block;
    margin-top: 8px;
    color: var(--avyro-blue);
    font-size: 40px;
    line-height: 1;
    font-weight: 700;
}

.seo-score-card small {
    display: block;
    margin-top: 7px;
    color: #8190a2;
    font-size: 10px;
}

.seo-mini-chart {
    width: 100%;
    height: 75px;
    margin-top: 20px;
    display: flex !important;
    align-items: flex-end;
    gap: 7px;
}

.seo-mini-chart span {
    display: block;
    flex: 1;
    min-width: 0;
    border-radius: 4px 4px 1px 1px;
    background: var(--avyro-blue);
}

.seo-mini-chart span:nth-child(1) {
    height: 30%;
}

.seo-mini-chart span:nth-child(2) {
    height: 42%;
}

.seo-mini-chart span:nth-child(3) {
    height: 38%;
}

.seo-mini-chart span:nth-child(4) {
    height: 55%;
}

.seo-mini-chart span:nth-child(5) {
    height: 65%;
}

.seo-mini-chart span:nth-child(6) {
    height: 77%;
}

.seo-mini-chart span:nth-child(7) {
    height: 92%;
}

.seo-floating-card {
    position: absolute !important;
    z-index: 7;
    display: flex !important;
    align-items: center;
    gap: 10px;
    min-width: 205px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 12px;
    background: rgba(7,26,56,.78);
    box-shadow: 0 15px 40px rgba(0,0,0,.22);
    backdrop-filter: blur(12px);
    visibility: visible !important;
}

.seo-floating-card i {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(23,105,232,.16);
    color: var(--avyro-green);
    font-size: 14px;
}

.seo-floating-card div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.seo-floating-card strong {
    color: #fff;
    font-size: 11px;
    font-weight: 600;
}

.seo-floating-card small {
    color: rgba(255,255,255,.60);
    font-size: 9px;
}

.seo-card-top {
    right: 0;
    top: 35px;
}

.seo-card-bottom {
    left: 0;
    bottom: 35px;
}

@keyframes seoOrbitOne {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes seoOrbitTwo {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}


.seo-services-section {
    position: relative;
    padding: 95px 0;
    background: #fff;
    overflow: hidden;
}

.seo-services-section .container,
.seo-process-section .container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.seo-services-section::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    left: -180px;
    top: 90px;
    border-radius: 50%;
    background: rgba(23,105,232,.06);
    filter: blur(70px);
}

.seo-section-heading {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}

.seo-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--avyro-blue);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.seo-section-label::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 20px;
    background: var(--avyro-green);
}

.seo-section-heading h2 {
    margin: 11px 0 13px;
    color: var(--avyro-navy);
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: -1.8px;
}

.seo-section-heading h2 span {
    color: var(--avyro-blue);
}

.seo-section-heading p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--avyro-text);
    font-size: 14px;
    line-height: 1.75;
}

.seo-services-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
}

.seo-service-card {
    position: relative;
    min-width: 0;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--avyro-border);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(7,26,56,.035);
    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.seo-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(23,105,232,.28);
    box-shadow: 0 18px 40px rgba(7,26,56,.08);
}

.seo-service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 11px;
    background: #edf5ff;
    color: var(--avyro-blue);
    font-size: 17px;
}

.seo-service-number {
    position: absolute;
    right: 22px;
    top: 22px;
    color: #c8d4e0;
    font-size: 10px;
    font-weight: 700;
}

.seo-service-card h3 {
    margin: 0 0 9px;
    color: var(--avyro-navy);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
}

.seo-service-card p {
    margin: 0 0 18px;
    color: var(--avyro-text);
    font-size: 13px;
    line-height: 1.75;
}

.seo-service-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--avyro-blue);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
}

.seo-service-card a i {
    transition: transform .2s ease;
}

.seo-service-card a:hover i {
    transform: translateX(4px);
}


.seo-why-section {
    position: relative;
    padding: 95px 0;
    background: var(--avyro-light);
    overflow: hidden;
}

.seo-why-container {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 75px;
    align-items: start;
}

.seo-why-content h2 {
    margin: 11px 0 17px;
    color: var(--avyro-navy);
    font-size: clamp(36px, 4vw, 50px);
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: -1.8px;
}

.seo-why-content h2 span {
    display: block;
    color: var(--avyro-blue);
}

.seo-why-content p {
    max-width: 500px;
    margin: 0 0 25px;
    color: var(--avyro-text);
    font-size: 14px;
    line-height: 1.8;
}

.seo-outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 17px;
    color: var(--avyro-blue);
    background: #fff;
    border: 1px solid #d6e2ef;
    border-radius: 8px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    transition: .25s ease;
}

.seo-outline-btn:hover {
    color: #fff;
    background: var(--avyro-blue);
    border-color: var(--avyro-blue);
    transform: translateY(-2px);
}

.seo-benefits {
    border-top: 1px solid var(--avyro-border);
}

.seo-benefit {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 17px;
    padding: 21px 0;
    border-bottom: 1px solid var(--avyro-border);
}

.seo-benefit > span {
    color: var(--avyro-green);
    font-size: 10px;
    font-weight: 700;
}

.seo-benefit h3 {
    margin: 0 0 5px;
    color: var(--avyro-navy);
    font-size: 17px;
    font-weight: 600;
}

.seo-benefit p {
    margin: 0;
    color: var(--avyro-text);
    font-size: 13px;
    line-height: 1.7;
}


.seo-process-section {
    padding: 95px 0;
    background: #fff;
}

.seo-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.seo-process-card {
    position: relative;
    min-width: 0;
    padding: 26px 22px;
    background: var(--avyro-light);
    border: 1px solid var(--avyro-border);
    border-radius: 15px;
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.seo-process-card:hover {
    transform: translateY(-5px);
    border-color: rgba(23,105,232,.25);
    box-shadow: 0 16px 35px rgba(7,26,56,.07);
}

.seo-process-number {
    position: absolute;
    top: 18px;
    right: 18px;
    color: #c6d3e1;
    font-size: 10px;
    font-weight: 700;
}

.seo-process-card > i {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    border-radius: 11px;
    background: #fff;
    color: var(--avyro-blue);
    font-size: 17px;
}

.seo-process-card h3 {
    margin: 0 0 7px;
    color: var(--avyro-navy);
    font-size: 17px;
    font-weight: 600;
}

.seo-process-card p {
    margin: 0;
    color: var(--avyro-text);
    font-size: 12.5px;
    line-height: 1.7;
}

.seo-cta-section {
    position: relative;
    padding: 65px 0;
    overflow: hidden;
    background:
        linear-gradient(
            120deg,
            #071a38 0%,
            #0b2c5e 56%,
            #1769e8 100%
        );
}

.seo-cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255,255,255,.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.045) 1px,
            transparent 1px
        );
    background-size: 52px 52px;
    pointer-events: none;
}

.seo-cta-section::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -180px;
    top: -180px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 65px rgba(255,255,255,.025),
        0 0 0 130px rgba(255,255,255,.015);
    pointer-events: none;
}

.seo-cta-container {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.seo-cta-label {
    color: #dfffad;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.seo-cta-container h2 {
    max-width: 680px;
    margin: 8px 0 10px;
    color: #fff;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -1.8px;
}

.seo-cta-container h2 span {
    color: var(--avyro-green);
}

.seo-cta-container p {
    max-width: 590px;
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 13.5px;
    line-height: 1.75;
}

.seo-cta-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}


@media (max-width: 1100px) {
    .seo-hero-container {
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
    }

    .seo-hero-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .seo-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .seo-hero-actions,
    .seo-hero-points {
        justify-content: center;
    }

    .seo-hero-visual {
        width: 500px;
        max-width: 100%;
        margin: 0 auto;
    }

    .seo-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .seo-why-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .seo-why-content p {
        max-width: 700px;
    }

    .seo-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .seo-cta-container {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media (max-width: 700px) {
 .seo-hero {
        min-height: auto;
        padding: 85px 0 55px;

        background:
            linear-gradient(
                180deg,
                rgba(4, 15, 32, .58),
                rgba(6, 25, 50, .50)
            ),
            url("../assets/seo.webp") center center / cover no-repeat;
    }

    .seo-hero-container,
    .seo-services-section .container,
    .seo-why-container,
    .seo-process-section .container,
    .seo-cta-container {
        width: min(100% - 28px, 1160px);
    }

    .seo-hero-container {
        gap: 25px;
        text-align: left;
    }

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

    .seo-eyebrow {
        margin-bottom: 15px;
        padding: 7px 12px;
        font-size: 8px;
        letter-spacing: 1.2px;
    }

    .seo-hero-content h1 {
        font-size: 39px;
        line-height: 1.05;
        letter-spacing: -1.6px;
    }

    .seo-hero-content p {
        margin: 17px 0 24px;
        font-size: 13.5px;
        line-height: 1.7;
    }

    .seo-hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .seo-btn {
        width: 100%;
        min-height: 46px;
        font-size: 12px;
    }

    .seo-hero-points {
        justify-content: flex-start;
        gap: 9px 14px;
        margin-top: 19px;
    }

    .seo-hero-points span {
        font-size: 9px;
    }

    .seo-hero-visual {
        width: 100%;
        height: 300px;
        min-height: 300px;
        margin-top: 5px;
    }

    .seo-orbit-one {
        width: 255px;
        height: 255px;
    }

    .seo-orbit-two {
        width: 190px;
        height: 190px;
    }

    .seo-score-card {
        width: 215px;
        min-height: 175px;
        padding: 19px;
    }

    .seo-score-card strong {
        font-size: 32px;
    }

    .seo-mini-chart {
        height: 57px;
        margin-top: 15px;
    }

    .seo-floating-card {
        min-width: 165px;
        padding: 9px 11px;
    }

    .seo-floating-card i {
        width: 31px;
        height: 31px;
        flex-basis: 31px;
        font-size: 12px;
    }

    .seo-floating-card strong {
        font-size: 9px;
    }

    .seo-floating-card small {
        font-size: 7px;
    }

    .seo-card-top {
        right: 0;
        top: 12px;
    }

    .seo-card-bottom {
        left: 0;
        bottom: 12px;
    }

    .seo-services-section {
        padding: 60px 0;
    }

    .seo-section-heading {
        margin-bottom: 30px;
    }

    .seo-section-label {
        font-size: 9px;
        letter-spacing: 1.3px;
    }

    .seo-section-heading h2,
    .seo-why-content h2 {
        font-size: 31px;
        line-height: 1.08;
        letter-spacing: -1.1px;
    }

    .seo-section-heading p,
    .seo-why-content p {
        font-size: 13px;
        line-height: 1.7;
    }

    .seo-services-grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .seo-service-card {
        padding: 23px;
        border-radius: 13px;
    }

    .seo-service-card h3 {
        font-size: 17px;
    }

    .seo-service-card p {
        font-size: 12.5px;
    }

    .seo-why-section {
        padding: 60px 0;
    }

    .seo-benefit {
        grid-template-columns: 33px 1fr;
        gap: 11px;
        padding: 18px 0;
    }

    .seo-benefit h3 {
        font-size: 15px;
    }

    .seo-benefit p {
        font-size: 12px;
    }

    .seo-process-section {
        padding: 60px 0;
    }

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

    .seo-process-card {
        padding: 22px;
    }

    .seo-process-card h3 {
        font-size: 16px;
    }

    .seo-process-card p {
        font-size: 12px;
    }

    .seo-cta-section {
        padding: 52px 0;
    }

    .seo-cta-container {
        gap: 24px;
        align-items: flex-start;
    }

    .seo-cta-container h2 {
        font-size: 31px;
        line-height: 1.08;
        letter-spacing: -1.1px;
    }

    .seo-cta-container p {
        font-size: 12.5px;
    }

    .seo-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .seo-cta-actions .seo-btn {
        width: 100%;
    }
}

@media (max-width: 380px) {
    .seo-hero {
        padding-top: 78px;
    }

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

    .seo-hero-content p {
        font-size: 12.5px;
    }

    .seo-hero-visual {
        height: 270px;
        min-height: 270px;
    }

    .seo-score-card {
        width: 195px;
        padding: 17px;
    }

    .seo-score-card strong {
        font-size: 29px;
    }

    .seo-section-heading h2,
    .seo-why-content h2,
    .seo-cta-container h2 {
        font-size: 29px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .seo-orbit-one,
    .seo-orbit-two {
        animation: none;
    }

    .seo-btn,
    .seo-service-card,
    .seo-process-card,
    .seo-outline-btn {
        transition: none;
    }
}

.seo-cta-actions .seo-btn-light {
    color: #fff;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.35);
}

.seo-cta-actions .seo-btn-light:hover {
    color: #071a38;
    background: #fff;
    border-color: #fff;
    transform: translateY(-3px);
}

.seo-cta-actions .seo-btn i {
    font-size: 13px;
}