/* =========================================================
   GOOGLE ADS · TICODESIGN
========================================================= */

:root {
    --gads-orange: #f28a1a;
    --gads-green: #2f9b57;
    --gads-dark: #101214;
    --gads-text: #292d31;
    --gads-muted: #6b7176;
    --gads-border: #e7e9ea;
    --gads-bg: #f7f8f8;
    --gads-white: #fff;
}

.gads-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.gads-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--gads-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.gads-section-tag::before {
    content: "";
    width: 22px;
    height: 2px;
    border-radius: 20px;
    background: var(--gads-orange);
}

.gads-heading {
    max-width: 760px;
    margin-bottom: 45px;
}

.gads-heading--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.gads-heading h2,
.gads-exclusive-section h2,
.gads-intro h2,
.gads-cpc h2,
.gads-budget h2,
.gads-costs h2,
.gads-seo h2,
.gads-results h2 {
    margin: 0 0 18px;
    color: var(--gads-dark);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -.035em;
}

.gads-heading h2 span,
.gads-exclusive-section h2 span,
.gads-intro h2 span,
.gads-cpc h2 span,
.gads-budget h2 span,
.gads-costs h2 span,
.gads-seo h2 span,
.gads-results h2 span {
    color: var(--gads-orange);
}

.gads-heading p,
.gads-exclusive-section p,
.gads-intro p,
.gads-cpc p,
.gads-budget p,
.gads-costs p,
.gads-seo p,
.gads-results p {
    color: var(--gads-muted);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   BUTTONS
========================================================= */

.gads-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 23px;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: .25s ease;
}

.gads-btn--primary {
    color: #fff;
    background: var(--gads-orange);
}

.gads-btn--primary:hover {
    transform: translateY(-2px);
    background: #dc7711;
}

.gads-btn--ghost {
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    background: rgba(255,255,255,.04);
}

.gads-btn--ghost:hover {
    background: rgba(255,255,255,.09);
}


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

.gads-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0 90px;
    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(242,138,26,.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 65%,
            rgba(47,155,87,.1),
            transparent 28%
        ),
        #101214;
}

.gads-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .15;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255,255,255,.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.03) 1px,
            transparent 1px
        );
    background-size: 50px 50px;
}

.gads-hero .gads-container {
    position: relative;
    z-index: 2;
}

.gads-hero__top {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.gads-exclusive {
    display: inline-flex;
    margin-bottom: 22px;
    padding: 8px 13px;
    border: 1px solid rgba(242,138,26,.25);
    border-radius: 30px;
    color: var(--gads-orange);
    background: rgba(242,138,26,.08);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gads-hero h1 {
    margin: 0 auto 25px;
    color: #fff;
    font-size: clamp(44px, 6vw, 74px);
    line-height: 1;
    letter-spacing: -.055em;
}

.gads-hero h1 span {
    color: var(--gads-orange);
}

.gads-hero__lead {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255,255,255,.65);
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   SEARCH STAGE
========================================================= */

.gads-search-stage {
    position: relative;
    max-width: 850px;
    margin: 0 auto 35px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    background: rgba(255,255,255,.055);
    box-shadow: 0 40px 100px rgba(0,0,0,.4);
    backdrop-filter: blur(16px);
}

.gads-search-stage__query {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 680px;
    margin: 0 auto 25px;
    padding: 16px 20px;
    border-radius: 40px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,.15);
}

.gads-search-stage__icon {
    color: #888;
    font-size: 21px;
}

.gads-search-stage__typing {
    flex: 1;
    color: #444;
    font-size: 12px;
}

.gads-search-stage__cursor {
    width: 2px;
    height: 17px;
    background: var(--gads-orange);
    animation: gadsBlink 1s steps(1) infinite;
}

@keyframes gadsBlink {
    50% {
        opacity: 0;
    }
}

.gads-search-stage__results {
    max-width: 690px;
    margin: auto;
}

.gads-search-result {
    padding: 20px;
    border-radius: 13px;
    background: #fff;
}

.gads-search-result__url {
    margin-bottom: 7px;
    color: #555;
    font-size: 9px;
}

.gads-search-result__url span {
    margin-right: 7px;
    color: #222;
    font-weight: 700;
}

.gads-search-result strong {
    display: block;
    color: #2756a3;
    font-size: 18px;
}

.gads-search-result p {
    margin: 7px 0 12px;
    color: #777;
    font-size: 10px;
    line-height: 1.6;
}

.gads-search-result__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #2756a3;
    font-size: 9px;
}

.gads-search-result--ghost {
    display: grid;
    gap: 9px;
    margin-top: 10px;
    opacity: .13;
}

.gads-search-result--ghost span {
    width: 75%;
    height: 8px;
    border-radius: 20px;
    background: #111;
}

.gads-search-result--ghost span:nth-child(2) {
    width: 55%;
}

.gads-search-result--ghost span:nth-child(3) {
    width: 65%;
}


/* floating */

.gads-floating {
    position: absolute;
    min-width: 120px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: rgba(16,18,20,.88);
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.gads-floating small,
.gads-floating strong {
    display: block;
}

.gads-floating small {
    margin-bottom: 4px;
    color: rgba(255,255,255,.32);
    font-size: 7px;
    letter-spacing: .08em;
}

.gads-floating strong {
    color: #fff;
    font-size: 10px;
}

.gads-floating--keyword {
    top: 35%;
    left: -65px;
}

.gads-floating--location {
    right: -55px;
    top: 20%;
}

.gads-floating--budget {
    right: -30px;
    bottom: 12%;
}

.gads-floating--budget strong {
    color: var(--gads-green);
}

.gads-hero__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.gads-hero__meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 25px;
    color: rgba(255,255,255,.48);
    font-size: 11px;
}

.gads-hero__meta strong {
    color: var(--gads-green);
}


/* =========================================================
   EXCLUSIVE
========================================================= */

.gads-exclusive-section {
    padding: 75px 0;
    background: #fff;
}

.gads-exclusive-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: auto;
    padding: 42px;
    border: 1px solid rgba(242,138,26,.22);
    border-radius: 20px;
    background: #fffaf5;
}

.gads-exclusive-card__mark {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border-radius: 17px;
    color: #fff;
    background: var(--gads-orange);
    font-weight: 800;
}

.gads-exclusive-section h2 {
    font-size: clamp(28px, 4vw, 40px);
}


/* =========================================================
   INTRO
========================================================= */

.gads-intro {
    padding: 105px 0;
    background: var(--gads-bg);
}

.gads-intro__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
}


/* =========================================================
   MOMENT
========================================================= */

.gads-moment {
    padding: 105px 0;
    background: #fff;
}

.gads-moment__flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
}

.gads-moment__flow article {
    padding: 24px;
    text-align: center;
}

.gads-moment__flow article > span {
    display: block;
    margin-bottom: 14px;
    color: #bbb;
    font-size: 9px;
    font-weight: 800;
}

.gads-moment__icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin: 0 auto 17px;
    place-items: center;
    border-radius: 15px;
    color: var(--gads-orange);
    background: rgba(242,138,26,.09);
    font-size: 15px;
    font-weight: 800;
}

.gads-moment__flow h3 {
    margin: 0 0 8px;
    color: var(--gads-dark);
    font-size: 14px;
}

.gads-moment__flow p {
    margin: 0;
    color: var(--gads-muted);
    font-size: 10px;
    line-height: 1.65;
}

.gads-moment__arrow {
    color: #ccc;
}

.gads-moment__featured {
    border-radius: 17px;
    background: var(--gads-dark);
}

.gads-moment__featured h3 {
    color: #fff;
}

.gads-moment__featured p {
    color: rgba(255,255,255,.55);
}


/* =========================================================
   CONFIG
========================================================= */

.gads-config {
    padding: 105px 0;
    background: var(--gads-bg);
}

.gads-config__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gads-config article {
    position: relative;
    padding: 30px 25px;
    border: 1px solid var(--gads-border);
    border-radius: 17px;
    background: #fff;
    transition: .25s ease;
}

.gads-config article:hover {
    transform: translateY(-4px);
    border-color: rgba(242,138,26,.3);
}

.gads-config__number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: #ddd;
    font-size: 10px;
    font-weight: 800;
}

.gads-config__icon {
    display: grid;
    width: 47px;
    height: 47px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 12px;
    color: var(--gads-orange);
    background: rgba(242,138,26,.09);
    font-size: 11px;
    font-weight: 800;
}

.gads-config h3 {
    margin: 0 0 9px;
    color: var(--gads-dark);
    font-size: 16px;
}

.gads-config p {
    margin: 0;
    color: var(--gads-muted);
    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   CPC
========================================================= */

.gads-cpc {
    padding: 105px 0;
    background: #fff;
}

.gads-cpc__grid,
.gads-budget__grid,
.gads-seo__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 85px;
    align-items: center;
}

.gads-click {
    display: grid;
    max-width: 360px;
    min-height: 320px;
    margin: auto;
    place-items: center;
    padding: 35px;
    border-radius: 25px;
    color: #fff;
    background:
        radial-gradient(
            circle,
            rgba(242,138,26,.22),
            transparent 50%
        ),
        #101214;
}

.gads-click__label {
    color: rgba(255,255,255,.35);
    font-size: 8px;
    letter-spacing: .14em;
}

.gads-click__mouse {
    display: grid;
    width: 100px;
    height: 100px;
    place-items: center;
    border: 1px solid rgba(242,138,26,.3);
    border-radius: 50%;
    color: var(--gads-orange);
    background: rgba(242,138,26,.08);
    font-size: 36px;
}

.gads-click > strong {
    font-size: 30px;
}

.gads-click > span:last-child {
    color: rgba(255,255,255,.45);
    font-size: 10px;
}


/* =========================================================
   IMPRESSIONS
========================================================= */

.gads-impressions {
    padding: 100px 0;
    background: var(--gads-bg);
}

.gads-impressions__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 25px;
    align-items: center;
    max-width: 820px;
    margin: auto;
}

.gads-impressions article {
    padding: 35px;
    border: 1px solid var(--gads-border);
    border-radius: 18px;
    background: #fff;
}

.gads-impressions article > strong {
    display: block;
    margin: 20px 0;
    color: var(--gads-orange);
    font-size: 27px;
}

.gads-impressions__label {
    color: #999;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
}

.gads-impressions h3 {
    margin: 0 0 10px;
    color: var(--gads-dark);
}

.gads-impressions p {
    margin: 0;
    color: var(--gads-muted);
    font-size: 11px;
    line-height: 1.7;
}

.gads-impressions__featured {
    border-color: rgba(47,155,87,.25) !important;
}

.gads-impressions__vs {
    color: #bbb;
    font-size: 10px;
    font-weight: 800;
}


/* =========================================================
   BUDGET
========================================================= */

.gads-budget {
    padding: 105px 0;
    background: #fff;
}

.gads-budget__panel {
    padding: 32px;
    border: 1px solid var(--gads-border);
    border-radius: 20px;
    background: var(--gads-bg);
}

.gads-budget__title {
    display: block;
    margin-bottom: 25px;
    color: #aaa;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .12em;
}

.gads-budget__amount small,
.gads-budget__amount strong {
    display: block;
}

.gads-budget__amount small {
    color: var(--gads-muted);
    font-size: 9px;
}

.gads-budget__amount strong {
    margin-top: 4px;
    color: var(--gads-dark);
    font-size: 24px;
}

.gads-budget__bars {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    height: 150px;
    margin: 30px 0;
}

.gads-budget__bars div {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.gads-budget__bars i {
    display: block;
    border-radius: 6px 6px 2px 2px;
    background: var(--gads-orange);
}

.gads-budget__bars span {
    order: 2;
    margin-top: 7px;
    color: #999;
    font-size: 8px;
    text-align: center;
}

.gads-budget__panel p {
    margin-bottom: 0;
    font-size: 10px;
}


/* =========================================================
   COSTS
========================================================= */

.gads-costs {
    padding: 90px 0;
    background: var(--gads-bg);
}

.gads-costs__card {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
    max-width: 1000px;
    margin: auto;
    padding: 42px;
    border: 1px solid var(--gads-border);
    border-radius: 20px;
    background: #fff;
}

.gads-costs__items {
    display: grid;
    gap: 12px;
}

.gads-costs__items article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 12px;
    background: var(--gads-bg);
}

.gads-costs__items article > span {
    color: var(--gads-orange);
    font-size: 10px;
    font-weight: 800;
}

.gads-costs__items strong {
    display: block;
    color: var(--gads-dark);
    font-size: 13px;
}

.gads-costs__items p {
    margin: 5px 0 0;
    font-size: 10px;
}


/* =========================================================
   SERVICE
========================================================= */

.gads-service {
    padding: 105px 0;
    background: #fff;
}

.gads-service__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.gads-service article {
    padding: 25px;
    border-left: 1px solid var(--gads-border);
}

.gads-service article:first-child {
    border-left: 0;
}

.gads-service article > span {
    display: block;
    margin-bottom: 20px;
    color: var(--gads-orange);
    font-size: 10px;
    font-weight: 800;
}

.gads-service h3 {
    margin: 0 0 8px;
    color: var(--gads-dark);
    font-size: 15px;
}

.gads-service p {
    margin: 0;
    color: var(--gads-muted);
    font-size: 10px;
    line-height: 1.7;
}


/* =========================================================
   SEO
========================================================= */

.gads-seo {
    padding: 105px 0;
    background: var(--gads-bg);
}

.gads-seo__comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 25px;
}

.gads-seo__comparison div {
    padding: 18px;
    border: 1px solid var(--gads-border);
    border-radius: 11px;
    background: #fff;
}

.gads-seo__comparison span,
.gads-seo__comparison strong {
    display: block;
}

.gads-seo__comparison span {
    margin-bottom: 5px;
    color: var(--gads-orange);
    font-size: 9px;
    font-weight: 800;
}

.gads-seo__comparison strong {
    color: var(--gads-dark);
    font-size: 12px;
}


/* =========================================================
   RESULTS
========================================================= */

.gads-results {
    padding: 90px 0;
    background: #fff;
}

.gads-results__card {
    display: grid;
    grid-template-columns: 75px 1fr;
    gap: 30px;
    max-width: 950px;
    margin: auto;
    padding: 42px;
    border: 1px solid rgba(242,138,26,.22);
    border-radius: 19px;
    background: #fffaf5;
}

.gads-results__alert {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border-radius: 17px;
    color: #fff;
    background: var(--gads-orange);
    font-size: 22px;
    font-weight: 800;
}

.gads-results h2 {
    font-size: clamp(27px, 4vw, 39px);
}


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

.gads-cta {
    padding: 25px 0 100px;
    background: #fff;
}

.gads-cta__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 50px;
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(47,155,87,.14),
            transparent 30%
        ),
        #101214;
}

.gads-section-tag--light {
    color: var(--gads-orange);
}

.gads-cta h2 {
    max-width: 700px;
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(30px, 4vw, 43px);
    line-height: 1.12;
    letter-spacing: -.035em;
}

.gads-cta p {
    max-width: 700px;
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 13px;
    line-height: 1.8;
}

.gads-btn--white {
    color: #111;
    background: #fff;
}

.gads-btn--white:hover {
    transform: translateY(-2px);
    color: #fff;
    background: var(--gads-orange);
}


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

@media (max-width: 1000px) {

    .gads-floating {
        display: none;
    }

    .gads-intro__grid,
    .gads-cpc__grid,
    .gads-budget__grid,
    .gads-seo__grid {
        grid-template-columns: 1fr;
    }

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

    .gads-moment__flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gads-moment__arrow {
        display: none;
    }

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

    .gads-service article {
        border: 0;
        border-top: 1px solid var(--gads-border);
    }

    .gads-costs__card {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 700px) {

    .gads-container {
        width: min(100% - 28px, 1180px);
    }

    .gads-hero {
        padding: 75px 0 65px;
    }

    .gads-search-stage {
        padding: 17px;
    }

    .gads-search-stage__query {
        padding: 13px 15px;
    }

    .gads-search-result strong {
        font-size: 15px;
    }

    .gads-hero__actions {
        flex-direction: column;
    }

    .gads-btn {
        width: 100%;
    }

    .gads-exclusive-card,
    .gads-results__card {
        grid-template-columns: 1fr;
        padding: 27px 22px;
    }

    .gads-config__grid,
    .gads-moment__flow,
    .gads-impressions__grid,
    .gads-service__grid,
    .gads-seo__comparison {
        grid-template-columns: 1fr;
    }

    .gads-impressions__vs {
        text-align: center;
    }

    .gads-costs__card {
        padding: 27px 22px;
    }

    .gads-cta__inner {
        grid-template-columns: 1fr;
        padding: 35px 25px;
    }

}