/* =========================================================
   AARAV DIGITAL
   SEO PAGE - FINAL MOCKUP
========================================================= */

.ad-seo-page {

    --black:#050505;
    --black2:#090909;
    --panel:#0b0b0b;

    --gold:#e9ad28;
    --gold2:#ffc94c;
    --gold3:#8e5f00;

    --white:#ffffff;
    --text:#d7d7d7;
    --muted:#999999;

    width:100%;
    overflow:hidden;

    color:var(--white);

    background:
        radial-gradient(
            circle at 80% 8%,
            rgba(233,173,40,.07),
            transparent 27%
        ),
        radial-gradient(
            circle at 20% 35%,
            rgba(233,173,40,.025),
            transparent 25%
        ),
        #050505;

    font-family:
        "Poppins",
        "Manrope",
        Arial,
        sans-serif;
}


/* =========================================================
   RESET
========================================================= */

.ad-seo-page *,
.ad-seo-page *::before,
.ad-seo-page *::after {
    box-sizing:border-box;
}

.ad-seo-page h1,
.ad-seo-page h2,
.ad-seo-page h3,
.ad-seo-page p {
    margin:0;
}

.ad-seo-page a {
    text-decoration:none;
}


/* =========================================================
   HERO
========================================================= */

.ad-seo-hero {

    width:min(1450px, calc(100% - 70px));

    min-height:690px;

    margin:auto;

    display:grid;

    grid-template-columns:
        .92fr
        1.08fr;

    gap:60px;

    align-items:center;

    padding:65px 0 55px;
}


/* LEFT */

.ad-seo-hero-content {
    position:relative;
    z-index:5;
}

.ad-seo-badge {

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:8px 15px;

    border:
        1px solid
        rgba(233,173,40,.65);

    border-radius:30px;

    color:#fff;

    font-size:12px;

    margin-bottom:24px;

    background:
        rgba(233,173,40,.025);
}

.ad-seo-badge span {
    color:var(--gold);
    font-size:15px;
}


/* HERO H1 */

.ad-seo-hero h1 {

    color:#fff !important;

    font-size:
        clamp(54px, 5.5vw, 82px);

    line-height:.98;

    letter-spacing:-3px;

    font-weight:800;

    text-transform:uppercase;
}

.ad-seo-hero h1 span {

    display:block;

    color:var(--gold) !important;
}


/* DESCRIPTION */

.ad-seo-hero-description {

    max-width:600px;

    margin-top:28px !important;

    color:#e0e0e0 !important;

    font-size:17px;

    line-height:1.65;
}

.ad-seo-hero-description span {
    color:var(--gold);
}


/* BUTTONS */

.ad-seo-buttons {

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    margin-top:30px;
}

.seo-btn {

    min-height:52px;

    padding:0 25px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:15px;

    border-radius:7px;

    font-size:13px;

    font-weight:600;

    transition:.25s ease;
}

.seo-btn b {
    font-size:16px;
}

.seo-btn-primary {

    color:#000;

    background:
        linear-gradient(
            135deg,
            #ffd45a,
            #e2a31c
        );

    box-shadow:
        0 10px 35px
        rgba(233,173,40,.16);
}

.seo-btn-primary:hover {

    color:#000;

    transform:translateY(-3px);

    box-shadow:
        0 15px 40px
        rgba(233,173,40,.3);
}

.seo-btn-secondary {

    color:#fff;

    border:
        1px solid
        rgba(233,173,40,.65);

    background:
        rgba(255,255,255,.015);
}

.seo-btn-secondary:hover {

    color:var(--gold);

    transform:translateY(-3px);

    border-color:var(--gold);
}


/* STATS */

.ad-seo-stats {

    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:10px;

    max-width:570px;

    margin-top:30px;
}

.seo-stat {

    min-height:65px;

    padding:11px 13px;

    border:
        1px solid
        rgba(255,255,255,.11);

    border-radius:7px;

    background:
        rgba(255,255,255,.018);
}

.seo-stat strong {

    display:block;

    color:#fff !important;

    font-size:18px;
}

.seo-stat span {

    display:block;

    margin-top:3px;

    color:#888;

    font-size:9px;
}


/* =========================================================
   HERO DASHBOARD
/* =========================================================
   FINAL SEO REFERENCE ROCKET
========================================================= */

.ad-seo-hero-visual {
    position: relative !important;
    overflow: visible !important;
}


/* Rocket wrapper */

.seo-reference-rocket {

    position: absolute !important;

    width: 215px !important;
    height: 275px !important;

    /*
     * Reference ke according:
     * rocket dashboard ke right/top edge par
     */
    right: -45px !important;
    top: -18px !important;

    z-index: 50 !important;

    pointer-events: none !important;

    overflow: visible !important;
}


/* SVG */

.seo-reference-rocket-svg {

    width: 100% !important;
    height: 100% !important;

    display: block !important;

    overflow: visible !important;
}


/* =========================================================
   SUBTLE ROCKET MOTION
========================================================= */

@keyframes referenceRocketFloat {

    0% {
        transform:
            translateY(0px);
    }

    50% {
        transform:
            translateY(-4px);
    }

    100% {
        transform:
            translateY(0px);
    }
}

.seo-reference-rocket {

    animation:
        referenceRocketFloat
        3.2s
        ease-in-out
        infinite;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .seo-reference-rocket {

        width: 225px !important;
        height: 290px !important;

        right: -48px !important;
        top: -22px !important;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .seo-reference-rocket {

        width: 190px !important;
        height: 245px !important;

        right: -35px !important;
        top: -10px !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .seo-reference-rocket {

        width: 145px !important;
        height: 190px !important;

        right: -28px !important;
        top: -8px !important;
    }
}
/* TOP */

.seo-dashboard-top {

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.seo-traffic > span,
.seo-keywords > span,
.seo-mini-stat > span {

    display:block;

    color:#aaa;

    font-size:11px;
}

.seo-traffic strong {

    display:block;

    margin-top:6px;

    color:#fff !important;

    font-size:30px;
}

.seo-traffic em {

    color:#6fc45c;

    font-size:10px;

    font-style:normal;

    margin-left:7px;
}

.seo-keywords {

    min-width:145px;

    padding:13px 16px;

    border:
        1px solid
        rgba(233,173,40,.48);

    border-radius:7px;
}

.seo-keywords strong {

    display:block;

    color:var(--gold);

    font-size:21px;

    margin-top:4px;
}


/* CHART */

.seo-chart {

    height:260px;

    margin-top:22px;

    position:relative;
}

.seo-chart svg {

    width:100%;

    height:100%;

    position:relative;

    z-index:2;
}

.chart-grid {

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:space-between;
}

.chart-grid i {

    display:block;

    width:100%;

    border-top:
        1px solid
        rgba(255,255,255,.07);
}

.chart-labels {

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    display:flex;

    justify-content:space-between;

    color:#888;

    font-size:10px;
}


/* BOTTOM */

.seo-dashboard-bottom {

    display:grid;

    grid-template-columns:
        1fr
        120px
        1fr;

    gap:18px;

    align-items:center;
}

.seo-mini-stat {

    padding:15px;

    min-height:86px;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius:7px;

    background:
        rgba(255,255,255,.018);
}

.seo-mini-stat strong {

    display:block;

    margin-top:4px;

    color:#fff !important;

    font-size:23px;
}

.seo-mini-stat em {

    display:block;

    margin-top:3px;

    color:#68bd56;

    font-size:10px;

    font-style:normal;
}


/* ROI */

.seo-roi {

    width:108px;

    height:108px;

    margin:auto;

    border:
        2px solid
        var(--gold);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:
        0 0 30px
        rgba(233,173,40,.13);
}

.seo-roi div {
    text-align:center;
}

.seo-roi span {

    display:block;

    color:#aaa;

    font-size:11px;
}

.seo-roi strong {

    display:block;

    color:var(--gold);

    font-size:22px;
}


/* =========================================================
   LARGE CSS ROCKET
========================================================= */

.seo-rocket {

    position:absolute;

    right:-60px;

    top:35px;

    width:190px;

    height:300px;

    z-index:8;

    transform:rotate(29deg);

    filter:
        drop-shadow(
            0 0 15px
            rgba(255,190,40,.7)
        )
        drop-shadow(
            0 0 45px
            rgba(233,173,40,.25)
        );
}


/* rocket body */

.rocket-body {

    position:absolute;

    width:78px;

    height:170px;

    left:55px;

    top:30px;

    border-radius:
        50% 50% 43% 43%;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f0f0f0 42%,
            #bdbdbd 100%
        );

    border:
        3px solid
        var(--gold);

    box-shadow:
        inset -12px -5px 18px
        rgba(0,0,0,.18);
}


/* nose */

.rocket-nose {

    position:absolute;

    left:-3px;

    top:-28px;

    width:78px;

    height:62px;

    border-radius:
        50% 50% 20% 20%;

    background:
        linear-gradient(
            135deg,
            #fff,
            #cfcfcf
        );

    border-top:
        3px solid
        var(--gold);
}


/* window */

.rocket-window {

    position:absolute;

    left:18px;

    top:52px;

    width:39px;

    height:39px;

    border-radius:50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #fff 0%,
            #c18b17 30%,
            #161616 67%
        );

    border:
        6px solid
        var(--gold);

    z-index:3;
}

.rocket-window span {

    position:absolute;

    width:7px;

    height:7px;

    left:7px;

    top:6px;

    background:#fff;

    border-radius:50%;
}


/* wings */

.rocket-wing {

    position:absolute;

    bottom:17px;

    width:38px;

    height:70px;

    background:
        linear-gradient(
            135deg,
            #ffd04b,
            #a86d00
        );

    border:
        2px solid
        var(--gold);
}

.rocket-wing-left {

    left:-34px;

    clip-path:
        polygon(
            100% 0,
            0 65%,
            100% 100%
        );
}

.rocket-wing-right {

    right:-34px;

    clip-path:
        polygon(
            0 0,
            100% 65%,
            0 100%
        );
}


/* FIRE */

.rocket-fire {

    position:absolute;

    left:19px;

    bottom:-84px;

    width:40px;

    height:95px;

    background:
        linear-gradient(
            to bottom,
            #fff 0%,
            #ffd34d 25%,
            #e9ad28 55%,
            #875500 100%
        );

    clip-path:
        polygon(
            50% 100%,
            5% 42%,
            35% 52%,
            30% 0,
            70% 50%,
            68% 0,
            95% 42%
        );

    filter:
        drop-shadow(
            0 0 20px
            #e9ad28
        );
}


/* smoke */

.rocket-smoke {

    position:absolute;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(233,173,40,.32),
            transparent 70%
        );

    filter:blur(10px);
}

.smoke-one {

    width:150px;
    height:100px;

    right:-20px;
    bottom:5px;
}

.smoke-two {

    width:110px;
    height:80px;

    left:10px;
    bottom:30px;
}


/* =========================================================
   CHALLENGE
========================================================= */

.seo-challenge {

    width:min(1450px, calc(100% - 70px));

    margin:0 auto 16px;

    min-height:150px;

    display:grid;

    grid-template-columns:
        1.45fr
        repeat(4,1fr);

    border:
        1px solid
        rgba(233,173,40,.45);

    border-radius:10px;

    background:
        rgba(255,255,255,.012);
}

.challenge-intro {

    padding:25px 30px;
}

.challenge-intro > span {

    color:var(--gold);

    font-size:10px;

    font-weight:700;
}

.challenge-intro h2 {

    margin-top:7px;

    color:#fff !important;

    font-size:20px;

    line-height:1.2;
}

.challenge-intro h2 strong {

    display:block;

    color:var(--gold) !important;
}

.challenge-intro p {

    margin-top:10px;

    color:#aaa;

    font-size:10px;

    line-height:1.5;
}


.challenge-item {

    padding:24px 20px;

    border-left:
        1px solid
        rgba(255,255,255,.1);

    text-align:center;
}

.challenge-icon {

    color:var(--gold);

    font-size:29px;

    margin-bottom:7px;
}

.challenge-item h3 {

    color:#fff !important;

    font-size:12px;
}

.challenge-item p {

    color:#aaa;

    font-size:9px;

    line-height:1.5;

    margin-top:7px;
}


/* =========================================================
   TWO COLUMNS
========================================================= */

.seo-two-column {

    width:min(1450px, calc(100% - 70px));

    margin:16px auto;

    display:grid;

    grid-template-columns:
        1fr
        1fr;

    gap:16px;
}

.seo-panel {

    padding:28px;

    border:
        1px solid
        rgba(255,255,255,.13);

    border-radius:9px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(233,173,40,.04),
            transparent 28%
        ),
        #080808;
}

.section-label {

    color:var(--gold);

    font-size:10px;

    font-weight:700;

    letter-spacing:.8px;
}

.seo-panel > h2 {

    margin-top:8px;

    color:#fff !important;

    font-size:25px;

    line-height:1.25;
}

.seo-panel > h2 strong {

    color:var(--gold) !important;
}

.section-description {

    margin-top:8px !important;

    margin-bottom:22px !important;

    color:#aaa !important;

    font-size:11px;

    line-height:1.6;
}


/* =========================================================
   SERVICE CARDS
========================================================= */

.seo-service-grid {

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:9px;
}

.seo-service-grid article {

    min-height:155px;

    position:relative;

    padding:17px;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius:7px;

    background:
        rgba(255,255,255,.018);

    transition:.25s ease;
}

.seo-service-grid article:hover {

    transform:translateY(-4px);

    border-color:var(--gold);

    box-shadow:
        0 10px 35px
        rgba(233,173,40,.08);
}

.card-number {

    position:absolute;

    right:10px;

    top:9px;

    color:#555;

    font-size:9px;
}

.service-icon {

    color:var(--gold);

    font-size:23px;

    margin-bottom:12px;
}

.seo-service-grid h3 {

    color:#fff !important;

    font-size:12px;

    margin-bottom:6px;
}

.seo-service-grid p {

    color:#aaa !important;

    font-size:9px;

    line-height:1.55;
}

.seo-outline-link {

    display:inline-flex;

    align-items:center;

    gap:12px;

    margin-top:15px;

    padding:9px 15px;

    border:
        1px solid
        var(--gold);

    border-radius:5px;

    color:var(--gold);

    font-size:9px;
}

.seo-outline-link:hover {

    background:var(--gold);

    color:#000;
}


/* =========================================================
   PROCESS
========================================================= */

.seo-process {

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:28px 15px;

    margin-top:30px;
}

.seo-process article {

    display:grid;

    grid-template-columns:45px 1fr;

    gap:10px;
}

.process-number {

    width:39px;

    height:39px;

    border:
        1px solid
        var(--gold);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--gold);

    font-size:10px;

    box-shadow:
        0 0 20px
        rgba(233,173,40,.12);
}

.seo-process h3 {

    color:#fff !important;

    font-size:12px;

    margin-bottom:5px;
}

.seo-process p {

    color:#aaa !important;

    font-size:9px;

    line-height:1.5;
}


/* =========================================================
   RESULTS
========================================================= */

.result-grid {

    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:8px;
}

.result-grid div {

    padding:13px;

    border:
        1px solid
        rgba(255,255,255,.1);

    border-radius:6px;
}

.result-grid strong {

    display:block;

    color:var(--gold);

    font-size:20px;
}

.result-grid span {

    display:block;

    color:#aaa;

    font-size:8px;

    margin-top:5px;
}


/* GRAPH */

.result-chart {

    margin-top:16px;

    padding:14px;

    border:
        1px solid
        rgba(255,255,255,.1);

    border-radius:7px;
}

.result-chart-title {

    display:flex;

    justify-content:space-between;

    margin-bottom:5px;
}

.result-chart-title strong {

    color:#fff;

    font-size:10px;
}

.result-chart-title span {

    color:#666;

    font-size:7px;
}

.result-chart svg {

    width:100%;

    height:160px;
}


/* TESTIMONIAL */

.testimonial {

    margin-top:10px;

    padding:15px;

    border:
        1px solid
        rgba(233,173,40,.22);

    border-radius:7px;

    background:
        rgba(233,173,40,.025);
}

.testimonial-mark {

    color:var(--gold);

    font-size:27px;

    line-height:1;
}

.testimonial p {

    color:#ccc;

    font-size:9px;

    line-height:1.55;

    margin:5px 0 10px;
}

.testimonial > strong {

    display:block;

    color:#fff;

    font-size:10px;
}

.testimonial > span {

    color:#777;

    font-size:8px;
}

.testimonial-stars {

    color:var(--gold);

    font-size:10px;

    margin-top:5px;
}


/* =========================================================
   WHY
========================================================= */

.why-grid {

    display:grid;

    grid-template-columns:
        1fr 1fr;
}

.why-grid > div {

    min-height:100px;

    padding:15px 8px;

    border-bottom:
        1px solid
        rgba(255,255,255,.08);
}

.why-grid i {

    float:left;

    color:var(--gold);

    font-size:20px;

    margin-right:10px;

    font-style:normal;
}

.why-grid h3 {

    color:#fff !important;

    font-size:11px;

    margin-bottom:5px;
}

.why-grid p {

    color:#999;

    font-size:8px;

    line-height:1.5;
}


/* =========================================================
   PRICING
========================================================= */

.pricing-grid {

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:9px;
}

.price-card {

    position:relative;

    padding:20px 15px;

    border:
        1px solid
        rgba(255,255,255,.1);

    border-radius:7px;

    background:
        rgba(255,255,255,.015);
}

.price-card.featured {

    border-color:var(--gold);

    box-shadow:
        0 0 35px
        rgba(233,173,40,.09);
}

.popular {

    position:absolute;

    left:50%;

    top:-11px;

    transform:translateX(-50%);

    padding:5px 12px;

    border-radius:4px;

    background:var(--gold);

    color:#000;

    white-space:nowrap;

    font-size:8px;

    font-weight:700;
}

.price-card h3 {

    color:#fff !important;

    font-size:12px;
}

.price {

    margin:13px 0;

    color:#fff;

    font-size:23px;

    font-weight:800;
}

.price small {

    color:#777;

    font-size:8px;

    font-weight:400;
}

.price-card ul {

    list-style:none;

    padding:0;

    margin:0;
}

.price-card li {

    padding:5px 0;

    color:#aaa;

    font-size:8px;
}

.price-card a {

    display:block;

    margin-top:15px;

    padding:8px;

    text-align:center;

    border:
        1px solid
        rgba(233,173,40,.65);

    border-radius:4px;

    color:#fff;

    font-size:9px;
}

.price-card.featured a {

    background:var(--gold);

    color:#000;
}

.price-card a:hover {

    background:var(--gold);

    color:#000;
}

.price-note {

    display:block;

    margin-top:8px;

    color:#555;

    font-size:7px;
}


/* =========================================================
   FAQ
========================================================= */

.seo-faq details {

    margin-bottom:8px;

    border:
        1px solid
        rgba(255,255,255,.1);

    border-radius:6px;

    background:
        rgba(255,255,255,.012);
}

.seo-faq summary {

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px;

    cursor:pointer;

    color:#fff;

    font-size:10px;

    font-weight:600;

    list-style:none;
}

.seo-faq summary::-webkit-details-marker {
    display:none;
}

.seo-faq summary b {

    color:var(--gold);

    font-size:17px;
}

.seo-faq details p {

    padding:0 15px 15px;

    color:#aaa;

    font-size:9px;

    line-height:1.6;
}


/* =========================================================
   FINAL CTA
========================================================= */

.seo-final-cta {

    width:min(1450px, calc(100% - 70px));

    min-height:235px;

    margin:30px auto 60px;

    padding:35px 45px;

    display:grid;

    grid-template-columns:
        90px 1fr 180px;

    gap:25px;

    align-items:center;

    position:relative;

    overflow:hidden;

    border-top:
        1px solid
        rgba(233,173,40,.5);

    border-bottom:
        1px solid
        rgba(233,173,40,.5);

    background:
        radial-gradient(
            circle at 70% 100%,
            rgba(233,173,40,.08),
            transparent 45%
        );
}

.cta-chart-icon {

    width:75px;

    height:75px;

    border:
        1px solid
        var(--gold);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--gold);

    font-size:28px;

    box-shadow:
        0 0 30px
        rgba(233,173,40,.12);
}

.cta-content > span {

    color:var(--gold);

    font-size:9px;

    font-weight:700;

    letter-spacing:1px;
}

.cta-content h2 {

    margin-top:7px;

    color:#fff !important;

    font-size:29px;

    line-height:1.2;
}

.cta-content h2 strong {

    color:var(--gold) !important;
}

.cta-content p {

    margin-top:8px;

    color:#aaa;

    font-size:10px;
}

.cta-content .ad-seo-buttons {

    margin-top:18px;
}

.cta-points {

    display:flex;

    flex-direction:column;

    gap:10px;

    position:relative;

    z-index:5;
}

.cta-points span {

    padding:10px 13px;

    border:
        1px solid
        rgba(255,255,255,.1);

    border-radius:5px;

    color:#aaa;

    font-size:8px;
}


/* =========================================================
   BOTTOM ROCKET
========================================================= */

.cta-rocket {

    position:absolute;

    right:40px;

    bottom:-20px;

    width:150px;

    height:190px;

    transform:rotate(25deg);

    opacity:.95;

    pointer-events:none;
}

.cta-rocket-body {

    position:absolute;

    left:55px;

    top:15px;

    width:54px;

    height:115px;

    border-radius:
        50% 50% 42% 42%;

    background:
        linear-gradient(
            135deg,
            #fff,
            #c9c9c9
        );

    border:
        2px solid
        var(--gold);

    box-shadow:
        0 0 25px
        rgba(233,173,40,.3);
}

.cta-window {

    position:absolute;

    width:27px;

    height:27px;

    left:11px;

    top:33px;

    border-radius:50%;

    background:#111;

    border:
        4px solid
        var(--gold);
}

.cta-wing {

    position:absolute;

    width:28px;

    height:50px;

    bottom:8px;

    background:
        linear-gradient(
            135deg,
            #ffc83d,
            #8b5b00
        );
}

.cta-wing.left {

    left:-23px;

    clip-path:
        polygon(
            100% 0,
            0 70%,
            100% 100%
        );
}

.cta-wing.right {

    right:-23px;

    clip-path:
        polygon(
            0 0,
            100% 70%,
            0 100%
        );
}

.cta-flame {

    position:absolute;

    left:17px;

    bottom:-60px;

    width:25px;

    height:70px;

    background:
        linear-gradient(
            #fff,
            #ffd44d,
            #e9ad28,
            transparent
        );

    clip-path:
        polygon(
            50% 100%,
            0 0,
            35% 40%,
            50% 15%,
            65% 40%,
            100% 0
        );

    filter:
        drop-shadow(
            0 0 15px
            #e9ad28
        );
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:1100px) {

    .ad-seo-hero {

        grid-template-columns:1fr;

        padding-top:55px;
    }

    .ad-seo-hero-visual {

        min-height:500px;
    }

    .seo-challenge {

        grid-template-columns:
            1fr 1fr;
    }

    .challenge-intro {

        grid-column:
            1 / -1;
    }

    .challenge-item:nth-child(2) {
        border-left:0;
    }

    .seo-two-column {

        grid-template-columns:1fr;
    }

    .seo-final-cta {

        grid-template-columns:
            80px 1fr;
    }

    .cta-points {

        grid-column:2;

        flex-direction:row;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:700px) {

    .ad-seo-hero,
    .seo-challenge,
    .seo-two-column,
    .seo-final-cta {

        width:calc(100% - 24px);
    }

    .ad-seo-hero {

        padding:45px 0 30px;

        gap:35px;
    }

    .ad-seo-hero h1 {

        font-size:42px;

        letter-spacing:-1.5px;
    }

    .ad-seo-hero-description {

        font-size:14px;
    }

    .ad-seo-buttons {

        flex-direction:column;
    }

    .seo-btn {

        width:100%;
    }

    .ad-seo-stats {

        grid-template-columns:
            1fr 1fr;
    }

    .ad-seo-hero-visual {

        min-height:400px;
    }

    .seo-dashboard {

        padding:17px;
    }

    .seo-traffic strong {

        font-size:23px;
    }

    .seo-chart {

        height:170px;
    }

    .seo-dashboard-bottom {

        grid-template-columns:
            1fr 70px 1fr;

        gap:7px;
    }

    .seo-roi {

        width:68px;
        height:68px;
    }

    .seo-roi strong {

        font-size:14px;
    }

    .seo-mini-stat strong {

        font-size:16px;
    }

    .seo-rocket {

        right:-45px;

        top:20px;

        transform:
            rotate(29deg)
            scale(.65);
    }

    .seo-challenge {

        grid-template-columns:
            1fr 1fr;
    }

    .challenge-intro {

        grid-column:1 / -1;
    }

    .challenge-item {

        border-top:
            1px solid
            rgba(255,255,255,.08);
    }

    .seo-service-grid {

        grid-template-columns:
            1fr 1fr;
    }

    .seo-process {

        grid-template-columns:
            1fr 1fr;
    }

    .result-grid {

        grid-template-columns:
            1fr 1fr;
    }

    .pricing-grid {

        grid-template-columns:1fr;
    }

    .why-grid {

        grid-template-columns:1fr;
    }

    .seo-final-cta {

        grid-template-columns:1fr;

        text-align:center;

        padding:30px 20px;
    }

    .cta-chart-icon {

        margin:auto;
    }

    .cta-points {

        grid-column:auto;

        align-items:center;
    }

    .cta-rocket {

        right:-40px;

        transform:
            rotate(25deg)
            scale(.65);
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width:450px) {

    .ad-seo-hero h1 {

        font-size:35px;
    }

    .seo-service-grid,
    .seo-process {

        grid-template-columns:1fr;
    }

    .seo-challenge {

        grid-template-columns:1fr;
    }

    .challenge-intro {

        grid-column:auto;
    }

    .challenge-item {

        border-left:0;
    }

    .seo-panel {

        padding:21px 16px;
    }

    .seo-panel > h2 {

        font-size:21px;
    }

    .seo-final-cta {

        width:calc(100% - 16px);
    }
}
/* =========================================================
   SEO DASHBOARD — TARGET MOCKUP MATCH
========================================================= */

.ad-seo-hero-visual {
    position: relative;
    min-height: 540px;
    overflow: visible !important;
}

/* Dashboard */
.seo-dashboard {
    position: relative;
    width: 100%;
    max-width: 720px;
    min-height: 445px;
    padding: 28px 28px 25px;

    border: 1px solid rgba(233,173,40,.72);
    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.008)
        ),
        #0b0b0b;

    box-shadow:
        0 0 65px rgba(233,173,40,.08),
        inset 0 0 35px rgba(255,255,255,.012);

    overflow: visible !important;
}


/* ---------------- TOP ---------------- */

.seo-dashboard-top {
    position: relative;
    z-index: 4;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.seo-traffic > span,
.seo-keywords > span {
    color: #999 !important;
    font-size: 11px;
}

.seo-traffic strong {
    color: #fff !important;
    font-size: 30px;
    line-height: 1.1;
    margin-top: 7px;
}

.seo-traffic em {
    color: #67c653 !important;
    font-size: 10px;
}

.seo-keywords {
    width: 145px;
    min-width: 145px;

    padding: 13px 15px;

    border: 1px solid rgba(233,173,40,.55);
    border-radius: 7px;

    background: rgba(255,255,255,.012);
}

.seo-keywords strong {
    color: #e9ad28 !important;
    font-size: 21px;
}


/* ---------------- CHART ---------------- */

.seo-chart {
    position: relative;

    height: 245px;

    margin-top: 12px;
}

.seo-chart svg {
    position: absolute;

    left: 0;
    right: 0;
    top: 0;

    width: 100%;
    height: 100%;

    z-index: 2;
}

.chart-grid {
    position: absolute;
    inset: 15px 0 20px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    z-index: 1;
}

.chart-grid i {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,.07);
}

.chart-labels {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    justify-content: space-between;

    color: #777 !important;

    font-size: 9px;
}


/* ---------------- BOTTOM CARDS ---------------- */

.seo-dashboard-bottom {
    position: relative;
    z-index: 4;

    display: grid;

    grid-template-columns:
        1fr
        105px
        1fr;

    gap: 20px;

    align-items: center;
}

.seo-mini-stat {
    min-height: 92px;

    padding: 16px;

    border:
        1px solid
        rgba(255,255,255,.11);

    border-radius: 7px;

    background:
        rgba(255,255,255,.018);
}

.seo-mini-stat > span {
    color: #999 !important;
    font-size: 10px;
}

.seo-mini-stat strong {
    display: block;

    color: #fff !important;

    font-size: 24px;

    line-height: 1.15;

    margin-top: 7px;
}

.seo-mini-stat em {
    color: #65bd55 !important;

    font-size: 9px;

    font-style: normal;

    display: block;

    margin-top: 5px;
}


/* ---------------- ROI ---------------- */

.seo-roi {
    width: 88px;
    height: 88px;

    margin: auto;

    border:
        2px solid
        #e9ad28;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0b0b0b;

    box-shadow:
        0 0 25px rgba(233,173,40,.10);
}

.seo-roi span {
    color: #999 !important;
    font-size: 9px;
}

.seo-roi strong {
    display: block;

    color: #e9ad28 !important;

    font-size: 20px;

    margin-top: 3px;
}


/* =========================================================
   ROCKET — TARGET POSITION
========================================================= */

.seo-rocket {
    position: absolute;

    width: 150px;
    height: 230px;

    /*
       Target rocket:
       dashboard ke right edge se bahar
    */
    right: -58px;
    top: 8px;

    z-index: 20;

    transform: rotate(25deg) scale(.78);

    transform-origin: center;

    pointer-events: none;

    filter:
        drop-shadow(
            0 0 12px
            rgba(255,195,45,.8)
        )
        drop-shadow(
            0 0 35px
            rgba(233,173,40,.30)
        );
}


/* Rocket body */

.seo-rocket .rocket-body {

    position: absolute;

    width: 66px;
    height: 145px;

    left: 42px;
    top: 24px;

    border-radius:
        50% 50% 44% 44%;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #eeeeee 42%,
            #bdbdbd 100%
        );

    border:
        3px solid
        #e9ad28;

    box-shadow:
        inset -10px -5px 15px
        rgba(0,0,0,.16);
}


/* Nose */

.seo-rocket .rocket-nose {

    position: absolute;

    width: 66px;
    height: 52px;

    left: -3px;
    top: -24px;

    border-radius:
        50% 50% 25% 25%;

    background:
        linear-gradient(
            135deg,
            #fff,
            #d0d0d0
        );

    border-top:
        3px solid
        #e9ad28;
}


/* Window */

.seo-rocket .rocket-window {

    position: absolute;

    width: 35px;
    height: 35px;

    left: 13px;
    top: 45px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #fff 0%,
            #d09a21 26%,
            #111 67%
        );

    border:
        5px solid
        #e9ad28;

    z-index: 5;
}

.seo-rocket .rocket-window span {
    position: absolute;

    width: 6px;
    height: 6px;

    left: 6px;
    top: 5px;

    border-radius: 50%;

    background: #fff;
}


/* Wings */

.seo-rocket .rocket-wing {

    position: absolute;

    bottom: 14px;

    width: 34px;
    height: 62px;

    background:
        linear-gradient(
            135deg,
            #ffc83d,
            #9a6500
        );

    border:
        2px solid
        #e9ad28;
}

.seo-rocket .rocket-wing-left {

    left: -30px;

    clip-path:
        polygon(
            100% 0,
            0 65%,
            100% 100%
        );
}

.seo-rocket .rocket-wing-right {

    right: -30px;

    clip-path:
        polygon(
            0 0,
            100% 65%,
            0 100%
        );
}


/* Flame */

.seo-rocket .rocket-fire {

    position: absolute;

    width: 36px;
    height: 82px;

    left: 15px;

    bottom: -72px;

    background:
        linear-gradient(
            to bottom,
            #ffffff 0%,
            #ffd54d 23%,
            #e9ad28 57%,
            #885600 100%
        );

    clip-path:
        polygon(
            50% 100%,
            5% 42%,
            35% 52%,
            30% 0,
            70% 50%,
            68% 0,
            95% 42%
        );

    filter:
        drop-shadow(
            0 0 16px
            #e9ad28
        );
}


/* Smoke */

.seo-rocket .rocket-smoke {

    position: absolute;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(233,173,40,.36),
            rgba(233,173,40,.08) 45%,
            transparent 72%
        );

    filter: blur(10px);

    z-index: -1;
}

.seo-rocket .smoke-one {

    width: 150px;
    height: 100px;

    right: -35px;
    bottom: 0;
}

.seo-rocket .smoke-two {

    width: 120px;
    height: 85px;

    left: -15px;
    bottom: 20px;
}


/* =========================================================
   DESKTOP TARGET SCALE
========================================================= */

@media (min-width:1200px) {

    .ad-seo-hero-visual {
        padding-right: 20px;
    }

    .seo-dashboard {
        max-width: 720px;
    }

    .seo-rocket {
        right: -52px;
        top: 5px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:1100px) {

    .seo-rocket {
        right: -30px;
        top: 10px;

        transform:
            rotate(25deg)
            scale(.70);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:700px) {

    .seo-dashboard {
        padding: 20px;

        min-height: 390px;
    }

    .seo-chart {
        height: 190px;
    }

    .seo-dashboard-bottom {
        grid-template-columns:
            1fr
            70px
            1fr;

        gap: 8px;
    }

    .seo-mini-stat {
        min-height: 75px;
        padding: 11px;
    }

    .seo-mini-stat strong {
        font-size: 17px;
    }

    .seo-roi {
        width: 65px;
        height: 65px;
    }

    .seo-roi strong {
        font-size: 14px;
    }

    .seo-rocket {
        right: -48px;
        top: 0;

        transform:
            rotate(25deg)
            scale(.50);
    }
}
/* =========================================================
   SEO HERO ROCKET — PREMIUM LAUNCH EFFECT
========================================================= */

/* Hero visual must allow rocket outside dashboard */
.ad-seo-hero-visual {
    position:relative !important;
    overflow:visible !important;
}


/* ---------------------------------------------------------
   ROCKET CONTAINER
--------------------------------------------------------- */

.seo-rocket {
    position:absolute !important;

    width:210px !important;
    height:320px !important;

    right:-62px !important;
    top:-2px !important;

    z-index:30 !important;

    transform:
        rotate(27deg)
        scale(.82) !important;

    transform-origin:center center;

    pointer-events:none;

    filter:
        drop-shadow(
            0 0 12px
            rgba(255,205,80,.95)
        )
        drop-shadow(
            0 0 30px
            rgba(238,170,35,.55)
        );
}


/* ---------------------------------------------------------
   GOLDEN AURA BEHIND ROCKET
--------------------------------------------------------- */

.seo-rocket::before {

    content:"";

    position:absolute;

    width:190px;
    height:190px;

    left:5px;
    top:105px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(255,205,74,.55) 0%,
            rgba(238,169,35,.30) 22%,
            rgba(238,169,35,.12) 43%,
            transparent 72%
        );

    filter:blur(14px);

    z-index:-4;

    animation:
        rocketGlow 2s ease-in-out infinite alternate;
}


/* ---------------------------------------------------------
   GOLD PARTICLE FIELD
--------------------------------------------------------- */

.seo-rocket::after {

    content:"";

    position:absolute;

    width:230px;
    height:240px;

    left:-5px;
    top:75px;

    background-image:
        radial-gradient(circle,
            rgba(255,213,100,.9) 0 1px,
            transparent 2px),

        radial-gradient(circle,
            rgba(233,173,40,.75) 0 1.5px,
            transparent 2.5px),

        radial-gradient(circle,
            rgba(255,255,255,.6) 0 1px,
            transparent 2px);

    background-size:
        42px 47px,
        67px 61px,
        51px 73px;

    background-position:
        5px 10px,
        20px 25px,
        35px 8px;

    opacity:.7;

    filter:
        blur(.2px)
        drop-shadow(0 0 5px #e9ad28);

    z-index:-3;

    animation:
        particleFloat 4s linear infinite;
}


/* ---------------------------------------------------------
   BODY
--------------------------------------------------------- */

.seo-rocket .rocket-body {

    position:absolute !important;

    width:70px !important;
    height:154px !important;

    left:66px !important;
    top:32px !important;

    border-radius:
        52% 52% 43% 43% !important;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fafafa 27%,
            #dedede 62%,
            #a7a7a7 100%
        ) !important;

    border:
        3px solid
        #e9ad28 !important;

    box-shadow:

        inset
        -10px
        -8px
        15px
        rgba(0,0,0,.18),

        inset
        8px
        5px
        12px
        rgba(255,255,255,.65),

        0 0 18px
        rgba(255,205,70,.28);

    z-index:5;
}


/* ---------------------------------------------------------
   NOSE
--------------------------------------------------------- */

.seo-rocket .rocket-nose {

    position:absolute !important;

    width:70px !important;
    height:58px !important;

    left:-3px !important;
    top:-28px !important;

    border-radius:
        52% 52% 24% 24% !important;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f4f4f4 35%,
            #c3c3c3 100%
        ) !important;

    border-top:
        3px solid
        #e9ad28 !important;

    box-shadow:
        inset -7px -4px 10px
        rgba(0,0,0,.12);
}


/* ---------------------------------------------------------
   WINDOW
--------------------------------------------------------- */

.seo-rocket .rocket-window {

    position:absolute !important;

    width:39px !important;
    height:39px !important;

    left:13px !important;
    top:48px !important;

    border-radius:50% !important;

    background:
        radial-gradient(
            circle at 32% 25%,
            #ffffff 0%,
            #f1c453 10%,
            #b17b0c 30%,
            #151515 67%,
            #050505 100%
        ) !important;

    border:
        5px solid
        #e9ad28 !important;

    box-shadow:

        0 0 8px
        rgba(255,205,70,.8),

        inset
        0 0 8px
        rgba(0,0,0,.8);

    z-index:8;
}

.seo-rocket .rocket-window span {

    position:absolute;

    width:7px;
    height:7px;

    left:6px;
    top:5px;

    border-radius:50%;

    background:#fff;

    box-shadow:
        0 0 8px #fff;
}


/* ---------------------------------------------------------
   WINGS
--------------------------------------------------------- */

.seo-rocket .rocket-wing {

    position:absolute !important;

    width:43px !important;
    height:75px !important;

    bottom:14px !important;

    background:
        linear-gradient(
            135deg,
            #ffd34e 0%,
            #e9ad28 45%,
            #9a6400 100%
        ) !important;

    border:
        2px solid
        #e9ad28 !important;

    box-shadow:
        0 0 12px
        rgba(233,173,40,.28);
}

.seo-rocket .rocket-wing-left {

    left:-38px !important;

    clip-path:
        polygon(
            100% 0,
            0 67%,
            100% 100%
        );
}

.seo-rocket .rocket-wing-right {

    right:-38px !important;

    clip-path:
        polygon(
            0 0,
            100% 67%,
            0 100%
        );
}


/* ---------------------------------------------------------
   ENGINE / FIRE CORE
--------------------------------------------------------- */

.seo-rocket .rocket-fire {

    position:absolute !important;

    left:15px !important;
    bottom:-105px !important;

    width:40px !important;
    height:125px !important;

    background:
        linear-gradient(
            to bottom,
            #ffffff 0%,
            #fff5c7 10%,
            #ffd84e 28%,
            #f0ad21 52%,
            #d87900 72%,
            rgba(126,69,0,0) 100%
        ) !important;

    clip-path:
        polygon(
            50% 100%,
            2% 47%,
            30% 55%,
            24% 0,
            49% 36%,
            62% 0,
            72% 48%,
            98% 38%
        ) !important;

    filter:
        drop-shadow(
            0 0 8px
            #fff
        )
        drop-shadow(
            0 0 22px
            #ffc72f
        )
        drop-shadow(
            0 0 38px
            #e9ad28
        );

    z-index:2;

    animation:
        flamePulse .18s infinite alternate;
}


/* Inner flame */

.seo-rocket .rocket-fire span {

    position:absolute;

    left:12px;
    top:8px;

    width:16px;
    height:70px;

    background:
        linear-gradient(
            to bottom,
            #fff,
            #fff8d5,
            #ffd84d,
            transparent
        );

    clip-path:
        polygon(
            50% 100%,
            0 0,
            50% 28%,
            100% 0
        );

    filter:
        blur(1px);
}


/* ---------------------------------------------------------
   SMOKE CLOUDS
--------------------------------------------------------- */

.seo-rocket .rocket-smoke {

    position:absolute !important;

    border-radius:50%;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(255,226,139,.70) 0%,
            rgba(236,175,39,.45) 20%,
            rgba(197,135,14,.22) 40%,
            rgba(80,52,0,.15) 57%,
            transparent 76%
        );

    filter:
        blur(10px)
        drop-shadow(
            0 0 12px
            rgba(233,173,40,.4)
        );

    z-index:-1;
}


/* Large smoke */

.seo-rocket .smoke-one {

    width:190px !important;
    height:135px !important;

    right:-65px !important;
    bottom:-5px !important;

    opacity:.8;

    animation:
        smokeMove 3s ease-in-out infinite alternate;
}


/* Secondary smoke */

.seo-rocket .smoke-two {

    width:140px !important;
    height:105px !important;

    left:-40px !important;
    bottom:5px !important;

    opacity:.7;

    animation:
        smokeMove 2.5s ease-in-out infinite alternate-reverse;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes rocketGlow {

    from {
        opacity:.55;
        transform:scale(.90);
    }

    to {
        opacity:.9;
        transform:scale(1.08);
    }
}


@keyframes flamePulse {

    from {
        transform:scaleY(.92) scaleX(.94);
    }

    to {
        transform:scaleY(1.08) scaleX(1.05);
    }
}


@keyframes smokeMove {

    from {
        transform:translate(
            -4px,
            3px
        ) scale(.92);
    }

    to {
        transform:translate(
            9px,
            -5px
        ) scale(1.08);
    }
}


@keyframes particleFloat {

    from {
        transform:
            translateY(0)
            translateX(0);
    }

    to {
        transform:
            translateY(15px)
            translateX(-12px);
    }
}


/* =========================================================
   DASHBOARD — TARGET PROPORTION
========================================================= */

.seo-dashboard {

    max-width:720px !important;

    min-height:445px !important;

    padding:27px !important;

    overflow:visible !important;

    position:relative !important;

    z-index:4 !important;
}


/* Rocket should sit outside dashboard */

.seo-dashboard + .seo-rocket {
    z-index:30 !important;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width:1200px) {

    .seo-rocket {

        right:-70px !important;
        top:-4px !important;

        transform:
            rotate(27deg)
            scale(.82) !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:700px) {

    .seo-rocket {

        right:-55px !important;
        top:-2px !important;

        transform:
            rotate(27deg)
            scale(.52) !important;
    }
}
/* =========================================================
   SEO PAGE — GLOBAL FONT SIZE BOOST
========================================================= */

/* Main page text */
.aarav-seo-page,
.aarav-seo-page p,
.aarav-seo-page li,
.aarav-seo-page span {
    font-size: 16px;
    line-height: 1.6;
}


/* Section labels */
.aarav-seo-page .section-label,
.aarav-seo-page .eyebrow,
.aarav-seo-page .seo-label {
    font-size: 13px;
    letter-spacing: 1.4px;
}


/* =========================================================
   HEADINGS
========================================================= */

.aarav-seo-page h1 {
    font-size: clamp(58px, 5.4vw, 82px) !important;
    line-height: .94 !important;
    letter-spacing: -2.5px !important;
    font-weight: 800 !important;
}

.aarav-seo-page h2 {
    font-size: clamp(32px, 3vw, 46px) !important;
    line-height: 1.08 !important;
    letter-spacing: -1px !important;
    font-weight: 700 !important;
}

.aarav-seo-page h3 {
    font-size: 21px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
}

.aarav-seo-page h4 {
    font-size: 17px !important;
    line-height: 1.3 !important;
}


/* =========================================================
   HERO
========================================================= */

.aarav-seo-page .hero-description,
.aarav-seo-page .seo-hero-description {
    font-size: 17px !important;
    line-height: 1.65 !important;
    max-width: 590px;
}

.aarav-seo-page .hero-buttons a,
.aarav-seo-page .seo-hero-buttons a {
    font-size: 15px !important;
    font-weight: 600 !important;
}

.aarav-seo-page .hero-stats strong,
.aarav-seo-page .seo-hero-stats strong {
    font-size: 25px !important;
}

.aarav-seo-page .hero-stats span,
.aarav-seo-page .seo-hero-stats span {
    font-size: 12px !important;
}


/* =========================================================
   CHALLENGE SECTION
========================================================= */

.aarav-seo-page .challenge-title {
    font-size: 27px !important;
}

.aarav-seo-page .challenge-text {
    font-size: 15px !important;
}

.aarav-seo-page .challenge-item h3 {
    font-size: 17px !important;
}

.aarav-seo-page .challenge-item p {
    font-size: 13px !important;
    line-height: 1.5 !important;
}


/* =========================================================
   SEO SERVICES CARDS
========================================================= */

.aarav-seo-page .service-card h3 {
    font-size: 17px !important;
}

.aarav-seo-page .service-card p {
    font-size: 13px !important;
    line-height: 1.55 !important;
}

.aarav-seo-page .service-card .number {
    font-size: 11px !important;
}


/* =========================================================
   SEO PROCESS
========================================================= */

.aarav-seo-page .process-item h3 {
    font-size: 17px !important;
}

.aarav-seo-page .process-item p {
    font-size: 13px !important;
    line-height: 1.5 !important;
}

.aarav-seo-page .process-number {
    font-size: 13px !important;
}


/* =========================================================
   RESULTS
========================================================= */

.aarav-seo-page .result-number {
    font-size: 28px !important;
    font-weight: 700 !important;
}

.aarav-seo-page .result-label {
    font-size: 12px !important;
}

.aarav-seo-page .result-card p {
    font-size: 13px !important;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.aarav-seo-page .why-item h3 {
    font-size: 16px !important;
}

.aarav-seo-page .why-item p {
    font-size: 13px !important;
    line-height: 1.5 !important;
}


/* =========================================================
   PACKAGES
========================================================= */

.aarav-seo-page .package-card h3 {
    font-size: 19px !important;
}

.aarav-seo-page .package-price {
    font-size: 34px !important;
    font-weight: 700 !important;
}

.aarav-seo-page .package-price span {
    font-size: 11px !important;
}

.aarav-seo-page .package-card li {
    font-size: 13px !important;
    line-height: 1.8 !important;
}

.aarav-seo-page .package-card .button {
    font-size: 14px !important;
}


/* =========================================================
   FAQ
========================================================= */

.aarav-seo-page .faq-question {
    font-size: 16px !important;
    font-weight: 600 !important;
}

.aarav-seo-page .faq-answer {
    font-size: 14px !important;
    line-height: 1.6 !important;
}


/* =========================================================
   FINAL CTA
========================================================= */

.aarav-seo-page .cta-title {
    font-size: clamp(30px, 3vw, 44px) !important;
    line-height: 1.1 !important;
}

.aarav-seo-page .cta-description {
    font-size: 15px !important;
}

.aarav-seo-page .cta-buttons a {
    font-size: 15px !important;
}


/* =========================================================
   DASHBOARD TEXT
========================================================= */

.aarav-seo-page .seo-dashboard {
    font-size: 14px;
}

.aarav-seo-page .seo-dashboard .seo-traffic > span,
.aarav-seo-page .seo-dashboard .seo-keywords > span {
    font-size: 12px !important;
}

.aarav-seo-page .seo-dashboard .seo-traffic strong {
    font-size: 31px !important;
}

.aarav-seo-page .seo-dashboard .seo-keywords strong {
    font-size: 23px !important;
}

.aarav-seo-page .seo-mini-stat > span {
    font-size: 11px !important;
}

.aarav-seo-page .seo-mini-stat strong {
    font-size: 25px !important;
}

.aarav-seo-page .seo-mini-stat em {
    font-size: 10px !important;
}

.aarav-seo-page .seo-roi span {
    font-size: 10px !important;
}

.aarav-seo-page .seo-roi strong {
    font-size: 21px !important;
}


/* =========================================================
   DESKTOP — EXTRA LARGE TYPOGRAPHY
========================================================= */

@media (min-width: 1200px) {

    .aarav-seo-page p {
        font-size: 16px;
    }

    .aarav-seo-page h2 {
        font-size: 43px !important;
    }

    .aarav-seo-page h3 {
        font-size: 21px !important;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .aarav-seo-page h1 {
        font-size: 52px !important;
    }

    .aarav-seo-page h2 {
        font-size: 34px !important;
    }

    .aarav-seo-page p {
        font-size: 15px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .aarav-seo-page h1 {
        font-size: 42px !important;
        letter-spacing: -1.5px !important;
    }

    .aarav-seo-page h2 {
        font-size: 30px !important;
    }

    .aarav-seo-page h3 {
        font-size: 19px !important;
    }

    .aarav-seo-page p {
        font-size: 14px;
        line-height: 1.55;
    }

    .aarav-seo-page .hero-description {
        font-size: 15px !important;
    }

    .aarav-seo-page .service-card p,
    .aarav-seo-page .process-item p,
    .aarav-seo-page .why-item p {
        font-size: 13px !important;
    }
}
/* =========================================================
   SEO PACKAGES — CLICK TO ZOOM
========================================================= */

.seo-packages-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch;
}


/* Package card */

.seo-packages-grid .package-card {
    position: relative;
    z-index: 1;

    transform: scale(1);
    transform-origin: center center;

    transition:
        transform .35s ease,
        opacity .35s ease,
        filter .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

    cursor: pointer;

    will-change: transform;
}


/* Hover */

.seo-packages-grid .package-card:hover {
    transform: translateY(-4px);
}


/* =========================================================
   ACTIVE / ZOOMED CARD
========================================================= */

.seo-packages-grid .package-card.package-active {
    z-index: 20;

    transform:
        scale(1.08)
        translateY(-5px) !important;

    border-color: #e9ad28 !important;

    box-shadow:
        0 0 0 1px rgba(233,173,40,.18),
        0 20px 55px rgba(0,0,0,.65),
        0 0 35px rgba(233,173,40,.13);
}


/* =========================================================
   OTHER CARDS WHEN ONE IS ACTIVE
========================================================= */

.seo-packages-grid.has-active
.package-card:not(.package-active) {

    transform:
        scale(.94) !important;

    opacity: .58;

    filter:
        brightness(.72);
}


/* Hover on inactive card */

.seo-packages-grid.has-active
.package-card:not(.package-active):hover {

    opacity: .8;

    transform:
        scale(.97) !important;
}


/* =========================================================
   ACTIVE STANDARD SEO / POPULAR
========================================================= */

.seo-packages-grid
.package-card.package-active
.most-popular {

    transform:
        translateX(-50%)
        scale(1.04);

    box-shadow:
        0 5px 20px
        rgba(233,173,40,.25);
}


/* =========================================================
   PACKAGE CONTENT
========================================================= */

.seo-packages-grid .package-card h3 {
    transition:
        font-size .35s ease,
        color .35s ease;
}

.seo-packages-grid
.package-card.package-active h3 {

    color: #fff !important;

    font-size: 22px !important;
}


.seo-packages-grid .package-price {
    transition:
        font-size .35s ease;
}

.seo-packages-grid
.package-card.package-active
.package-price {

    font-size: 36px !important;
}


/* =========================================================
   ACTIVE BUTTON
========================================================= */

.seo-packages-grid
.package-card.package-active
.package-button {

    background: #efb225 !important;

    color: #111 !important;

    border-color: #efb225 !important;

    box-shadow:
        0 8px 25px
        rgba(239,178,37,.20);
}


/* =========================================================
   BACKDROP FEEL
========================================================= */

.seo-packages-grid.has-active::after {

    content: "";

    position: absolute;

    inset: -20px;

    z-index: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at center,
            rgba(233,173,40,.035),
            transparent 55%
        );
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .seo-packages-grid
    .package-card.package-active {

        transform:
            scale(1.04)
            translateY(-4px) !important;
    }

    .seo-packages-grid
    .package-card.package-active
    .package-price {

        font-size: 31px !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .seo-packages-grid {

        grid-template-columns: 1fr;

        gap: 18px;
    }


    .seo-packages-grid
    .package-card.package-active {

        transform:
            scale(1.025)
            translateY(-3px) !important;
    }


    .seo-packages-grid.has-active
    .package-card:not(.package-active) {

        transform:
            scale(.98) !important;

        opacity: .55;
    }
}
/* =========================================================
   SEO CHALLENGE — FINAL PREMIUM LAYOUT
========================================================= */

.seo-challenge {
    width: 100%;
    min-height: 205px;

    display: grid;

    /*
     * Left intro = 2.25 parts
     * 4 items   = 1 part each
     */
    grid-template-columns:
        2.25fr
        1fr
        1fr
        1fr
        1fr;

    align-items: stretch;

    background:
        linear-gradient(
            120deg,
            #0a0a09 0%,
            #0d0d0c 50%,
            #090909 100%
        );

    border: 1px solid rgba(233, 173, 40, .45);

    border-radius: 12px;

    overflow: hidden;

    box-sizing: border-box;

    margin: 0 0 18px;

    box-shadow:
        inset 0 0 45px rgba(233, 173, 40, .025);
}


/* =========================================================
   LEFT INTRO
========================================================= */

.seo-challenge .challenge-intro {

    min-width: 0;

    padding:
        25px
        30px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-right:
        1px solid
        rgba(255,255,255,.12);
}


/* Small gold label */

.seo-challenge .challenge-intro > span {

    display: block;

    margin-bottom: 9px;

    color: #e9ad28;

    font-size: 11px !important;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


/* Main heading */

.seo-challenge .challenge-intro h2 {

    margin: 0;

    padding: 0;

    color: #ffffff;

    font-size: 27px !important;

    line-height: 1.12 !important;

    letter-spacing: -.5px;

    font-weight: 700;

    max-width: 430px;
}


/* Gold second line */

.seo-challenge .challenge-intro h2 strong {

    display: block;

    margin-top: 1px;

    color: #efb225;

    font-size: inherit;

    line-height: inherit;

    font-weight: 700;
}


/* Intro paragraph */

.seo-challenge .challenge-intro p {

    margin:
        10px
        0
        0;

    color: #999999;

    font-size: 12px !important;

    line-height: 1.5 !important;

    max-width: 430px;
}


/* =========================================================
   CHALLENGE ITEMS
========================================================= */

.seo-challenge .challenge-item {

    min-width: 0;

    padding:
        24px
        18px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: flex-start;

    text-align: center;

    border-right:
        1px solid
        rgba(255,255,255,.12);

    box-sizing: border-box;
}


/* Last item — no separator */

.seo-challenge .challenge-item:last-child {

    border-right: none;
}


/* =========================================================
   ICON
========================================================= */

.seo-challenge .challenge-icon {

    height: 30px;

    margin-bottom: 9px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #e9ad28;

    font-size: 23px !important;

    line-height: 1;

    font-weight: 400;

    text-shadow:
        0 0 12px
        rgba(233,173,40,.25);
}


/* =========================================================
   ITEM TITLE
========================================================= */

.seo-challenge .challenge-item h3 {

    margin:
        0
        0
        8px;

    color: #ffffff;

    font-size: 15px !important;

    line-height: 1.2 !important;

    font-weight: 700;

    white-space: nowrap;
}


/* =========================================================
   ITEM DESCRIPTION
========================================================= */

.seo-challenge .challenge-item p {

    margin: 0;

    max-width: 175px;

    color: #999999;

    font-size: 12px !important;

    line-height: 1.5 !important;
}


/* =========================================================
   DESKTOP LARGE
========================================================= */

@media (min-width: 1200px) {

    .seo-challenge {

        min-height: 205px;

        grid-template-columns:
            2.35fr
            1fr
            1fr
            1fr
            1fr;
    }


    .seo-challenge .challenge-intro {

        padding:
            25px
            30px;
    }


    .seo-challenge .challenge-intro h2 {

        font-size: 28px !important;
    }


    .seo-challenge .challenge-item {

        padding:
            25px
            18px;
    }


    .seo-challenge .challenge-item h3 {

        font-size: 15px !important;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .seo-challenge {

        grid-template-columns:
            1.8fr
            1fr
            1fr
            1fr
            1fr;

        min-height: 190px;
    }


    .seo-challenge .challenge-intro {

        padding:
            20px;
    }


    .seo-challenge .challenge-intro h2 {

        font-size: 23px !important;
    }


    .seo-challenge .challenge-item {

        padding:
            20px
            12px;
    }


    .seo-challenge .challenge-item h3 {

        font-size: 14px !important;
    }


    .seo-challenge .challenge-item p {

        font-size: 11px !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .seo-challenge {

        display: grid;

        grid-template-columns: 1fr 1fr;

        min-height: auto;

        border-radius: 10px;
    }


    .seo-challenge .challenge-intro {

        grid-column: 1 / -1;

        padding: 22px;

        border-right: none;

        border-bottom:
            1px solid
            rgba(255,255,255,.12);
    }


    .seo-challenge .challenge-intro h2 {

        font-size: 27px !important;

        line-height: 1.12 !important;
    }


    .seo-challenge .challenge-intro p {

        font-size: 13px !important;
    }


    .seo-challenge .challenge-item {

        min-height: 150px;

        padding:
            20px
            12px;

        border-bottom:
            1px solid
            rgba(255,255,255,.10);
    }


    .seo-challenge .challenge-item:nth-child(3) {

        border-right: none;
    }


    .seo-challenge .challenge-item:nth-child(4),
    .seo-challenge .challenge-item:nth-child(5) {

        border-bottom: none;
    }


    .seo-challenge .challenge-item h3 {

        font-size: 14px !important;

        white-space: normal;
    }


    .seo-challenge .challenge-item p {

        font-size: 11px !important;

        line-height: 1.45 !important;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .seo-challenge .challenge-intro h2 {

        font-size: 24px !important;
    }

}
/* =========================================================
   SEO PACKAGES — 3 EQUAL SIZE CARDS
========================================================= */

.seo-packages-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
    align-items: stretch !important;
}

.seo-packages-grid .package-card {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 530px !important;
    height: 530px !important;

    box-sizing: border-box !important;

    display: flex !important;
    flex-direction: column !important;

    transform: scale(1) !important;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        opacity .3s ease !important;
}


/* Package content */

.seo-packages-grid .package-card h3 {
    font-size: 20px !important;
    line-height: 1.2 !important;
}

.seo-packages-grid .package-card li {
    font-size: 14px !important;
    line-height: 1.65 !important;
}


/* Price */

.seo-packages-grid .package-price {
    font-size: 32px !important;
}


/* Button always stays near bottom */

.seo-packages-grid .package-card .package-button,
.seo-packages-grid .package-card a:last-child {
    margin-top: auto !important;
}


/* =========================================================
   CLICK ZOOM
========================================================= */

.seo-packages-grid.has-active .package-card {
    opacity: .55 !important;
    filter: brightness(.7);
}

.seo-packages-grid .package-card.package-active {
    opacity: 1 !important;
    filter: none !important;

    transform:
        scale(1.06) !important;

    z-index: 20 !important;

    box-shadow:
        0 20px 60px rgba(0,0,0,.7),
        0 0 35px rgba(233,173,40,.18) !important;
}


/* Standard card */

.seo-packages-grid
.package-card.package-active
.most-popular {
    z-index: 30 !important;
}


/* =========================================================
   FAQ — BIGGER FONT
========================================================= */

.seo-faq h2,
.seo-faq .faq-title {
    font-size: 38px !important;
    line-height: 1.1 !important;
}


/* FAQ question */

.seo-faq .faq-question,
.seo-faq .faq-item button,
.seo-faq .faq-item h3 {
    font-size: 16px !important;
    line-height: 1.4 !important;
    font-weight: 600 !important;
}


/* FAQ answer */

.seo-faq .faq-answer,
.seo-faq .faq-item p {
    font-size: 14px !important;
    line-height: 1.65 !important;
}


/* FAQ plus/minus */

.seo-faq .faq-icon {
    font-size: 18px !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .seo-packages-grid {
        grid-template-columns: 1fr !important;
    }

    .seo-packages-grid .package-card {
        height: auto !important;
        min-height: 480px !important;
    }

    .seo-packages-grid .package-card.package-active {
        transform: scale(1.025) !important;
    }

    .seo-faq h2,
    .seo-faq .faq-title {
        font-size: 30px !important;
    }

}
/* =========================================================
   SEO PACKAGES + FAQ
   FINAL VERSION
========================================================= */


/* =========================================================
   PACKAGES GRID
========================================================= */

.pricing-grid {

    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;

    align-items: stretch;

    position: relative;

    padding: 10px 0 0;

}


/* =========================================================
   PACKAGE CARD
========================================================= */

.pricing-grid .price-card {

    position: relative;

    width: 100%;

    min-width: 0;

    height: 530px;

    min-height: 530px;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    padding: 28px 20px 20px;

    cursor: pointer;

    z-index: 1;

    transform: scale(1);

    opacity: 1;

    filter: none;

    transition:
        transform .35s ease,
        opacity .35s ease,
        filter .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}


/* =========================================================
   CARD HOVER
========================================================= */

.pricing-grid .price-card:hover {

    transform:
        translateY(-4px);

}


/* =========================================================
   CLICK ZOOM MODE
========================================================= */

.pricing-grid.zooming
.price-card {

    opacity: .48;

    filter:
        brightness(.65);

    transform:
        scale(.94);

}


/* =========================================================
   ACTIVE / ZOOMED CARD
========================================================= */

.pricing-grid
.price-card.zoom-active {

    opacity: 1 !important;

    filter: none !important;

    transform:
        scale(1.07) !important;

    z-index: 100;

    border-color:
        #efb225 !important;

    box-shadow:

        0 25px 70px
        rgba(0,0,0,.75),

        0 0 40px
        rgba(239,178,37,.20);

}


/* =========================================================
   CARD TITLE
========================================================= */

.pricing-grid
.price-card h3 {

    margin: 0 0 14px;

    color: #ffffff !important;

    font-size: 20px !important;

    line-height: 1.2 !important;

    font-weight: 700 !important;

}


/* ACTIVE TITLE */

.pricing-grid
.price-card.zoom-active h3 {

    font-size: 23px !important;

}


/* =========================================================
   PRICE
========================================================= */

.pricing-grid
.price-card .price {

    margin-bottom: 20px;

    color: #ffffff !important;

    font-size: 31px !important;

    line-height: 1.1;

    font-weight: 700;

}


/* Active price */

.pricing-grid
.price-card.zoom-active .price {

    font-size: 35px !important;

}


/* Month */

.pricing-grid
.price-card .price small {

    font-size: 9px !important;

    color: #777777 !important;

    font-weight: 400;

}


/* =========================================================
   PACKAGE LIST
========================================================= */

.pricing-grid
.price-card ul {

    margin: 0;

    padding: 0;

    list-style: none;

    flex: 1;

}


.pricing-grid
.price-card li {

    margin: 0 0 10px;

    padding: 0;

    color: #aaaaaa !important;

    font-size: 14px !important;

    line-height: 1.55 !important;

}


/* =========================================================
   PACKAGE BUTTON
========================================================= */

.pricing-grid
.price-card > a {

    width: 100%;

    min-height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: auto;

    box-sizing: border-box;

    border: 1px solid #d99f16;

    border-radius: 5px;

    color: #ffffff;

    background: transparent;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    transition:
        background .25s ease,
        color .25s ease,
        box-shadow .25s ease;

}


.pricing-grid
.price-card > a:hover {

    background: #efb225;

    color: #111111;

    box-shadow:
        0 8px 25px
        rgba(239,178,37,.18);

}


/* ACTIVE BUTTON */

.pricing-grid
.price-card.zoom-active > a {

    background: #efb225 !important;

    color: #111111 !important;

    border-color: #efb225 !important;

}


/* =========================================================
   MOST POPULAR BADGE
========================================================= */

.pricing-grid
.price-card.featured {

    border-color:
        #efb225;

}


.pricing-grid
.price-card .popular {

    position: absolute;

    top: -14px;

    left: 50%;

    transform:
        translateX(-50%);

    z-index: 150;

    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 125px;

    height: 36px;

    padding: 0 14px;

    box-sizing: border-box;

    border-radius: 4px;

    background: #efb225;

    color: #111111;

    font-size: 13px !important;

    line-height: 1;

    font-weight: 700;

    white-space: nowrap;

}


/* =========================================================
   PRICE NOTE
========================================================= */

.price-note {

    display: block;

    margin-top: 10px;

    color: #666666;

    font-size: 10px !important;

}


/* =========================================================
   FAQ PANEL
========================================================= */

.seo-faq-panel {

    overflow: visible;

}


/* FAQ heading */

.seo-faq-panel > h2 {

    margin-bottom: 20px;

    color: #ffffff !important;

    font-size: 38px !important;

    line-height: 1.12 !important;

}


/* =========================================================
   FAQ DETAILS
========================================================= */

.seo-faq {

    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.seo-faq details {

    width: 100%;

    box-sizing: border-box;

    border: 1px solid
        rgba(255,255,255,.12);

    border-radius: 7px;

    background:
        rgba(255,255,255,.015);

    overflow: hidden;

    transition:
        border-color .25s ease,
        background .25s ease;

}


.seo-faq details[open] {

    border-color:
        rgba(233,173,40,.45);

    background:
        rgba(233,173,40,.025);

}


/* =========================================================
   FAQ QUESTION
========================================================= */

.seo-faq details summary {

    min-height: 58px;

    padding:
        0 17px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    box-sizing: border-box;

    cursor: pointer;

    list-style: none;

    color: #ffffff !important;

    font-size: 16px !important;

    line-height: 1.4 !important;

    font-weight: 600 !important;

}


.seo-faq details summary::-webkit-details-marker {

    display: none;

}


/* Question text */

.seo-faq details summary span {

    flex: 1;

}


/* =========================================================
   FAQ PLUS / MINUS
========================================================= */

.seo-faq details summary b {

    flex: 0 0 auto;

    color: #efb225;

    font-size: 22px !important;

    line-height: 1;

    font-weight: 500;

}


/* =========================================================
   FAQ ANSWER
========================================================= */

.seo-faq details p {

    margin: 0;

    padding:
        0 17px 18px;

    color: #aaaaaa !important;

    font-size: 14px !important;

    line-height: 1.65 !important;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .pricing-grid {

        gap: 12px;

    }


    .pricing-grid
    .price-card {

        height: 510px;

        min-height: 510px;

        padding:
            25px 16px 18px;

    }


    .pricing-grid
    .price-card h3 {

        font-size: 18px !important;

    }


    .pricing-grid
    .price-card .price {

        font-size: 28px !important;

    }


    .seo-faq-panel > h2 {

        font-size: 32px !important;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .pricing-grid {

        grid-template-columns: 1fr;

        gap: 18px;

    }


    .pricing-grid
    .price-card {

        height: auto;

        min-height: 480px;

    }


    .pricing-grid
    .price-card.zoom-active {

        transform:
            scale(1.025) !important;

    }


    .seo-faq-panel > h2 {

        font-size: 30px !important;

    }


    .seo-faq details summary {

        min-height: 62px;

        padding:
            0 15px;

        font-size: 15px !important;

    }


    .seo-faq details p {

        font-size: 13px !important;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .pricing-grid
    .price-card {

        min-height: 450px;

    }


    .seo-faq-panel > h2 {

        font-size: 27px !important;

    }

}
/* =========================================================
   PACKAGE ZOOM — KEEP BORDER INSIDE
========================================================= */

.pricing-grid {
    position: relative !important;

    /*
     * Zoomed card ke liye andar space
     */
    padding: 16px 10px 18px !important;

    box-sizing: border-box !important;

    overflow: visible !important;
}


/* Normal cards */

.pricing-grid .price-card {
    transform: scale(1) !important;

    transform-origin: center center !important;

    z-index: 1 !important;
}


/* Zoom mode */

.pricing-grid.zooming .price-card {

    transform: scale(.96) !important;

    opacity: .55 !important;

    filter: brightness(.7);

}


/* Active card */

.pricing-grid .price-card.zoom-active {

    /*
     * Pehle 1.07 tha.
     * Ab controlled zoom.
     */
    transform: scale(1.035) !important;

    transform-origin: center center !important;

    z-index: 20 !important;

    opacity: 1 !important;

    filter: none !important;

    box-sizing: border-box !important;

    border-color: #efb225 !important;

    box-shadow:
        0 12px 35px rgba(0,0,0,.65),
        0 0 25px rgba(239,178,37,.16) !important;
}


/* =========================================================
   POPULAR BADGE — STAY INSIDE CARD
========================================================= */

.pricing-grid
.price-card.featured
.popular {

    top: -8px !important;

    z-index: 30 !important;
}


/* =========================================================
   BUTTON — DON'T GO OUTSIDE
========================================================= */

.pricing-grid
.price-card > a {

    position: relative !important;

    bottom: auto !important;

    margin-top: auto !important;

    box-sizing: border-box !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .pricing-grid {

        padding:
            12px
            8px
            15px !important;
    }

    .pricing-grid
    .price-card.zoom-active {

        transform:
            scale(1.02) !important;
    }

}
/* =========================================================
   SEO PRICING CARDS — FINAL FIX
   NO OUTSIDE BORDER / NO SCALE OVERFLOW
========================================================= */


/* ---------------------------------------------------------
   GRID
--------------------------------------------------------- */

.pricing-grid {

    display: grid !important;

    grid-template-columns:
        repeat(3, minmax(0, 1fr)) !important;

    gap: 16px !important;

    align-items: stretch !important;

    position: relative !important;

    padding: 16px 8px 18px !important;

    box-sizing: border-box !important;

    overflow: visible !important;
}


/* ---------------------------------------------------------
   ALL CARDS — SAME SIZE
--------------------------------------------------------- */

.pricing-grid .price-card {

    position: relative !important;

    width: 100% !important;

    height: 520px !important;

    min-height: 520px !important;

    max-height: 520px !important;

    box-sizing: border-box !important;

    display: flex !important;

    flex-direction: column !important;

    padding:
        26px 20px 18px !important;

    margin: 0 !important;

    transform: none !important;

    opacity: 1 !important;

    filter: none !important;

    overflow: hidden !important;

    z-index: 1 !important;

    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        background .3s ease,
        opacity .3s ease,
        filter .3s ease !important;
}


/* ---------------------------------------------------------
   REMOVE ALL OLD SCALE
--------------------------------------------------------- */

.pricing-grid .price-card:hover {

    transform: none !important;

}


/* ---------------------------------------------------------
   CLICK MODE
--------------------------------------------------------- */

.pricing-grid.zooming .price-card {

    opacity: .45 !important;

    filter:
        brightness(.65) !important;
}


/* ---------------------------------------------------------
   ACTIVE CARD
   IMPORTANT: NO SCALE
--------------------------------------------------------- */

.pricing-grid
.price-card.zoom-active {

    transform: none !important;

    opacity: 1 !important;

    filter: none !important;

    z-index: 10 !important;

    border-color:
        #efb225 !important;

    background:
        linear-gradient(
            145deg,
            rgba(239,178,37,.055),
            rgba(0,0,0,.12)
        ) !important;

    box-shadow:
        inset 0 0 35px
        rgba(239,178,37,.055),

        0 0 25px
        rgba(239,178,37,.12) !important;
}


/* ---------------------------------------------------------
   ACTIVE CARD CONTENT FEELS ZOOMED
--------------------------------------------------------- */

.pricing-grid
.price-card.zoom-active h3 {

    font-size: 22px !important;

    transform:
        scale(1.03);

    transform-origin:
        left center;
}


.pricing-grid
.price-card.zoom-active .price {

    font-size: 34px !important;
}


/* ---------------------------------------------------------
   PACKAGE TITLE
--------------------------------------------------------- */

.pricing-grid
.price-card h3 {

    margin:
        0 0 14px !important;

    font-size:
        20px !important;

    line-height:
        1.2 !important;

    color:
        #ffffff !important;
}


/* ---------------------------------------------------------
   PRICE
--------------------------------------------------------- */

.pricing-grid
.price-card .price {

    margin:
        0 0 18px !important;

    font-size:
        30px !important;

    line-height:
        1.1 !important;

    color:
        #ffffff !important;

    font-weight:
        700 !important;
}


/* ---------------------------------------------------------
   MONTH
--------------------------------------------------------- */

.pricing-grid
.price-card .price small {

    font-size:
        9px !important;

    color:
        #777 !important;

    font-weight:
        400 !important;
}


/* ---------------------------------------------------------
   FEATURES
--------------------------------------------------------- */

.pricing-grid
.price-card ul {

    flex:
        1 1 auto !important;

    min-height:
        0 !important;

    margin:
        0 0 15px !important;

    padding:
        0 !important;

    list-style:
        none !important;

    overflow:
        hidden !important;
}


.pricing-grid
.price-card li {

    margin:
        0 0 9px !important;

    padding:
        0 !important;

    font-size:
        14px !important;

    line-height:
        1.5 !important;

    color:
        #aaaaaa !important;
}


/* ---------------------------------------------------------
   BUTTON — FORCE INSIDE CARD
--------------------------------------------------------- */

.pricing-grid
.price-card > a {

    position:
        static !important;

    left:
        auto !important;

    right:
        auto !important;

    top:
        auto !important;

    bottom:
        auto !important;

    transform:
        none !important;

    flex:
        0 0 44px !important;

    width:
        100% !important;

    height:
        44px !important;

    min-height:
        44px !important;

    max-height:
        44px !important;

    margin:
        auto 0 0 !important;

    padding:
        0 10px !important;

    box-sizing:
        border-box !important;

    display:
        flex !important;

    align-items:
        center !important;

    justify-content:
        center !important;

    border:
        1px solid #d99f16 !important;

    border-radius:
        5px !important;

    color:
        #ffffff !important;

    background:
        transparent !important;

    text-decoration:
        none !important;

    font-size:
        13px !important;

    line-height:
        1 !important;
}


/* ---------------------------------------------------------
   ACTIVE BUTTON
--------------------------------------------------------- */

.pricing-grid
.price-card.zoom-active > a {

    background:
        #efb225 !important;

    border-color:
        #efb225 !important;

    color:
        #111111 !important;

    box-shadow:
        0 6px 20px
        rgba(239,178,37,.18) !important;
}


/* ---------------------------------------------------------
   MOST POPULAR
--------------------------------------------------------- */

.pricing-grid
.price-card.featured
.popular {

    position:
        absolute !important;

    top:
        -1px !important;

    left:
        50% !important;

    transform:
        translateX(-50%) !important;

    z-index:
        30 !important;

    white-space:
        nowrap !important;
}


/* ---------------------------------------------------------
   FEATURED CARD
--------------------------------------------------------- */

.pricing-grid
.price-card.featured {

    border-color:
        rgba(239,178,37,.75) !important;
}


/* ---------------------------------------------------------
   IMPORTANT:
   PREVENT OLD TRANSFORM RULES
--------------------------------------------------------- */

.pricing-grid .price-card,
.pricing-grid .price-card:hover,
.pricing-grid .price-card.zoom-active,
.pricing-grid .price-card.featured,
.pricing-grid .price-card.featured:hover {

    transform:
        none !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .pricing-grid {

        grid-template-columns:
            1fr !important;

        padding:
            12px 6px 16px !important;
    }


    .pricing-grid
    .price-card {

        height:
            500px !important;

        min-height:
            500px !important;

        max-height:
            500px !important;
    }


    .pricing-grid
    .price-card.zoom-active h3 {

        font-size:
            21px !important;
    }


    .pricing-grid
    .price-card.zoom-active .price {

        font-size:
            32px !important;
    }

}
/* =========================================================
   PACKAGE CARD — GOLD BORDER ONLY AFTER CLICK
========================================================= */

/* Sabhi cards default normal border */
.pricing-grid .price-card,
.pricing-grid .price-card.featured {

    border: 1px solid rgba(255,255,255,0.14) !important;

    box-shadow: none !important;
}


/* Hover par bhi gold border nahi */
.pricing-grid .price-card:hover,
.pricing-grid .price-card.featured:hover {

    border-color: rgba(255,255,255,0.20) !important;

    box-shadow: none !important;
}


/* Click ke baad selected card */
.pricing-grid .price-card.zoom-active {

    border: 1px solid #efb225 !important;

    box-shadow:
        0 0 25px rgba(239,178,37,0.12) !important;
}


/* Featured Standard ko default gold mat rakho */
.pricing-grid .price-card.featured {

    border-color: rgba(255,255,255,0.14) !important;
}


/* Featured + clicked = gold */
.pricing-grid
.price-card.featured.zoom-active {

    border-color: #efb225 !important;
}
/* =========================================================
   SEO PACKAGE SELECT EFFECT
========================================================= */


/* ALL CARDS DEFAULT */

.pricing-grid .price-card {

    border:
        1px solid
        rgba(255,255,255,.14) !important;

    box-shadow:
        none !important;

    transform:
        none !important;

    opacity:
        1 !important;

    filter:
        none !important;

    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        background .3s ease,
        opacity .3s ease,
        filter .3s ease !important;
}


/* IMPORTANT:
   Standard / Featured ko bhi default normal */

.pricing-grid .price-card.featured {

    border-color:
        rgba(255,255,255,.14) !important;

    box-shadow:
        none !important;
}


/* =========================================================
   WHEN ONE CARD IS SELECTED
========================================================= */

.pricing-grid.zooming .price-card {

    opacity:
        .45 !important;

    filter:
        brightness(.65) !important;
}


/* =========================================================
   SELECTED CARD
========================================================= */

.pricing-grid .price-card.zoom-active {

    opacity:
        1 !important;

    filter:
        none !important;

    border:
        1px solid
        #efb225 !important;

    background:
        linear-gradient(
            145deg,
            rgba(239,178,37,.07),
            rgba(0,0,0,.15)
        ) !important;

    box-shadow:
        0 0 30px
        rgba(239,178,37,.18),

        inset 0 0 25px
        rgba(239,178,37,.04) !important;

    z-index:
        20 !important;
}


/* =========================================================
   SELECTED CARD CONTENT — ZOOM FEEL
========================================================= */

.pricing-grid
.price-card.zoom-active
h3 {

    font-size:
        23px !important;

    transition:
        font-size .3s ease;
}


.pricing-grid
.price-card.zoom-active
.price {

    font-size:
        35px !important;

    transition:
        font-size .3s ease;
}


/* Selected button */

.pricing-grid
.price-card.zoom-active
> a {

    background:
        #efb225 !important;

    color:
        #111111 !important;

    border-color:
        #efb225 !important;
}


/* =========================================================
   POPULAR BADGE
========================================================= */

.pricing-grid
.price-card.featured
.popular {

    z-index:
        50 !important;
}
/* =========================================
   SEO CHALLENGE — RESPONSIVE FIX
========================================= */

.seo-challenge {
    overflow: hidden;
}

.seo-challenge .challenge-item {
    min-width: 0;
}

.seo-challenge .challenge-item h3,
.seo-challenge .challenge-item p {
    overflow-wrap: anywhere;
    word-break: normal;
}

@media (min-width: 769px) {

    .seo-challenge {
        display: grid;
        grid-template-columns: 1.7fr repeat(4, 1fr);
        width: 100%;
    }

    .seo-challenge .challenge-intro,
    .seo-challenge .challenge-item {
        min-width: 0;
    }

}

@media (max-width: 1100px) and (min-width: 769px) {

    .seo-challenge {
        grid-template-columns: 1.5fr repeat(4, 1fr);
    }

    .seo-challenge .challenge-item h3 {
        font-size: 16px;
    }

}

@media (max-width: 768px) {

    .seo-challenge {
        display: grid;
        grid-template-columns: 1fr;
    }

    .seo-challenge .challenge-item {
        min-width: 0;
    }

}
/* =========================================================
   COMPREHENSIVE SEO SERVICES
   PREMIUM BLACK + GOLD
========================================================= */

#seo-services {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(212, 166, 44, 0.08),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(212, 166, 44, 0.06),
            transparent 35%
        ),
        #050505;
    color: #ffffff;
    overflow: hidden;
}

#seo-services * {
    box-sizing: border-box;
}

.seo-services-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.seo-services-header {
    max-width: 900px;
    margin: 0 auto 55px;
    text-align: center;
}

.seo-section-label {
    display: inline-block;
    margin-bottom: 16px;
    color: #d6a92e;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.seo-services-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.seo-services-header h2 span {
    display: block;
    margin-top: 8px;
    color: #d6a92e;
}

.seo-services-header p {
    max-width: 850px;
    margin: 22px auto 0;
    color: #b8b8b8;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.seo-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.seo-service-card {
    position: relative;
    min-height: 430px;
    padding: 32px 30px;
    border: 1px solid rgba(214, 169, 46, 0.45);
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.035),
            rgba(255,255,255,0.008)
        );
    overflow: hidden;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.seo-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        #d6a92e,
        transparent
    );
    opacity: 0.7;
}

.seo-service-card:hover {
    transform: translateY(-7px);
    border-color: #d6a92e;
    box-shadow:
        0 20px 55px rgba(0,0,0,0.5),
        0 0 30px rgba(214,169,46,0.08);
}


/* =========================================================
   NUMBER
========================================================= */

.seo-service-number {
    position: absolute;
    top: 22px;
    right: 25px;
    color: rgba(214,169,46,0.35);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* =========================================================
   ICON
========================================================= */

.seo-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    margin-bottom: 24px;

    border: 1px solid rgba(214,169,46,0.55);
    border-radius: 14px;

    background: rgba(214,169,46,0.06);

    color: #d6a92e;
    font-size: 25px;

    box-shadow:
        0 0 25px rgba(214,169,46,0.06);
}


/* =========================================================
   LABEL
========================================================= */

.seo-service-label {
    display: block;
    margin-bottom: 10px;

    color: #d6a92e;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* =========================================================
   CARD HEADING
========================================================= */

.seo-service-card h3 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 25px;
    line-height: 1.2;
    font-weight: 750;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.seo-service-card > p {
    margin: 0 0 22px;

    color: #a9a9a9;

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   LIST
========================================================= */

.seo-service-card ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.seo-service-card li {
    position: relative;

    margin-bottom: 11px;
    padding-left: 20px;

    color: #d0d0d0;

    font-size: 13px;
    line-height: 1.5;
}

.seo-service-card li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    color: #d6a92e;

    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   BOTTOM NOTE
========================================================= */

.seo-services-note {
    display: flex;
    align-items: center;
    gap: 25px;

    margin-top: 25px;
    padding: 25px 30px;

    border: 1px solid rgba(214,169,46,0.35);
    border-radius: 16px;

    background: rgba(214,169,46,0.035);
}

.seo-services-note strong {
    flex: 0 0 auto;

    color: #d6a92e;

    font-size: 16px;
}

.seo-services-note p {
    margin: 0;

    color: #a9a9a9;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    #seo-services {
        padding: 80px 0;
    }

    .seo-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .seo-service-card {
        min-height: 410px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    #seo-services {
        padding: 70px 0;
    }

    .seo-services-container {
        width: min(100% - 28px, 560px);
    }

    .seo-services-header {
        margin-bottom: 35px;
    }

    .seo-services-header h2 {
        font-size: 36px;
        letter-spacing: -0.8px;
    }

    .seo-services-header h2 span {
        margin-top: 5px;
    }

    .seo-services-header p {
        font-size: 14px;
        line-height: 1.7;
    }

    .seo-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .seo-service-card {
        min-height: auto;
        padding: 28px 24px;
    }

    .seo-service-card h3 {
        font-size: 23px;
    }

    .seo-service-card > p {
        font-size: 14px;
    }

    .seo-services-note {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 22px;
    }

}