/* ==========================================================
   TICODESIGN — WEB HOSTING
   CSS LIMPIO Y UNIFICADO
   TD-01 → TD-10
   ========================================================== */

:root {

    /*
     * Cambiamos aquí únicamente los tonos
     * cuando definamos los colores exactos.
     */

    --td-orange: #f58220;
    --td-green: #62a744;

    --td-black: #161616;
    --td-dark: #242424;

    --td-text: #292929;
    --td-muted: #6d6d68;

    --td-line: #deded8;
    --td-soft: #f5f5f1;

    --td-white: #ffffff;
}


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

.td-hosting-hero {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.92) 0%,
            rgba(255,255,255,.80) 38%,
            rgba(255,255,255,.55) 66%,
            rgba(255,255,255,.30) 100%
        ),
        url("../../secciones/web-hosting.webp");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    color: var(--td-text);
}


/* ==========================================================
   TD 01
========================================================== */

.td-hosting-hero__number {
    position: absolute;

    top: 38px;
    left: clamp(25px, 4vw, 70px);

    display: flex;
    align-items: center;
    gap: 8px;

    z-index: 5;
}

.td-hosting-hero__number span {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .16em;

    color: #8a8a84;
}

.td-hosting-hero__number strong {
    font-size: 18px;
    font-weight: 500;

    color: var(--td-orange);
}


/* ==========================================================
   CONTAINER
========================================================== */

.td-hosting-hero__container {
    width: min(1380px, calc(100% - 80px));

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr .92fr;

    align-items: center;

    gap: clamp(60px, 7vw, 120px);

    padding:
        clamp(130px, 11vw, 165px)
        0
        clamp(85px, 8vw, 120px);
}


/* ==========================================================
   CONTENT
========================================================== */

.td-hosting-hero__content {
    max-width: 700px;
}


.td-hosting-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 25px;

    font-size: 11px;
    font-weight: 500;
    letter-spacing: .15em;

    color: var(--td-green);
}

.td-hosting-hero__eyebrow::before {
    content: "";

    width: 30px;
    height: 2px;

    background: var(--td-green);
}


/* ==========================================================
   H1
========================================================== */

.td-hosting-hero__title {
    max-width: 680px;

    margin: 0;

    font-size: clamp(42px, 4.1vw, 65px);
    line-height: 1.03;

    font-weight: 500;
    letter-spacing: -.045em;

    color: var(--td-black);
}

.td-hosting-hero__title span {
    color: var(--td-orange);
}


/* ==========================================================
   TEXT
========================================================== */

.td-hosting-hero__lead {
    max-width: 640px;

    margin: 29px 0 0;

    font-size: clamp(17px, 1.25vw, 19px);
    line-height: 1.65;

    color: #454545;
}


.td-hosting-hero__description {
    max-width: 620px;

    margin: 15px 0 0;

    font-size: 15px;
    line-height: 1.75;

    color: var(--td-muted);
}


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

.td-hosting-hero__actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}


.td-hosting-btn {
    min-height: 53px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    border-radius: 40px;

    font-size: 13px;
    font-weight: 500;

    text-decoration: none;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}


.td-hosting-btn:hover {
    transform: translateY(-2px);
}


.td-hosting-btn--primary {
    background: var(--td-black);
    border: 1px solid var(--td-black);

    color: #fff;
}


.td-hosting-btn--primary:hover {
    background: var(--td-orange);
    border-color: var(--td-orange);
}


.td-hosting-btn--primary span {
    font-size: 18px;
}


.td-hosting-btn--secondary {
    border: 1px solid #d2d2cc;

    color: var(--td-black);
}


.td-hosting-btn--secondary:hover {
    color: var(--td-green);

    border-color: var(--td-green);
}


/* ==========================================================
   MICRO FEATURES
========================================================== */

.td-hosting-hero__micro {
    display: flex;
    flex-wrap: wrap;

    gap: 8px 18px;

    margin-top: 36px;
}


.td-hosting-hero__micro span {
    position: relative;

    padding-left: 12px;

    font-size: 11px;
    font-weight: 500;

    color: #777;
}


.td-hosting-hero__micro span::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--td-green);

    transform: translateY(-50%);
}


/* ==========================================================
   VISUAL
========================================================== */

.td-hosting-hero__visual {
    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.td-hosting-map {
    position: relative;

    width: min(100%, 560px);
    aspect-ratio: 1 / 1;
}


/* ==========================================================
   RINGS
========================================================== */

.td-hosting-map__ring {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;
}


.td-hosting-map__ring--outer {
    width: 94%;
    height: 94%;

    border: 1px dashed #d5d5cf;
}


.td-hosting-map__ring--inner {
    width: 65%;
    height: 65%;

    border: 1px solid #e2e2dd;
}


/* ==========================================================
   CENTER
========================================================== */

.td-hosting-map__center {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 190px;
    height: 190px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: var(--td-black);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, .17);

    text-align: center;

    z-index: 3;
}


.td-hosting-map__label {
    margin-bottom: 8px;

    font-size: 8px;
    letter-spacing: .18em;

    color: var(--td-green);
}


.td-hosting-map__center strong {
    font-size: 26px;
    line-height: .95;

    font-weight: 500;
    letter-spacing: -.03em;

    color: #fff;
}


.td-hosting-map__center small {
    margin-top: 9px;

    font-size: 10px;

    color: rgba(255,255,255,.5);
}


/* ==========================================================
   CARDS
========================================================== */

.td-hosting-card {
    position: absolute;

    width: 190px;

    display: flex;
    align-items: flex-start;

    gap: 12px;

    padding: 17px;

    border: 1px solid #e0e0db;
    border-radius: 14px;

    background: rgba(255,255,255,.96);

    box-shadow:
        0 15px 38px rgba(0,0,0,.06);

    z-index: 5;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.td-hosting-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 22px 45px rgba(0,0,0,.1);
}


.td-hosting-card__number {
    flex: 0 0 auto;

    font-size: 9px;
    font-weight: 600;

    color: var(--td-orange);
}


.td-hosting-card strong {
    display: block;

    font-size: 13px;
    font-weight: 600;

    color: var(--td-black);
}


.td-hosting-card small {
    display: block;

    margin-top: 4px;

    font-size: 10px;
    line-height: 1.4;

    color: #777;
}


/* POSITIONS */

.td-hosting-card--web {
    top: 7%;
    left: 2%;
}


.td-hosting-card--mail {
    top: 14%;
    right: -3%;
}


.td-hosting-card--apps {
    bottom: 11%;
    left: -2%;
}


.td-hosting-card--security {
    right: 0;
    bottom: 5%;
}


/* ==========================================================
   BOTTOM STRIP
========================================================== */

.td-hosting-hero__bottom {
    border-top: 1px solid #e5e5df;

    background: var(--td-soft);
}


.td-hosting-hero__bottom-inner {
    width: min(1380px, calc(100% - 80px));

    min-height: 92px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(150px, .35fr)
        1fr
        auto;

    align-items: center;

    gap: 30px;
}


.td-hosting-hero__bottom-number {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .14em;

    color: var(--td-green);
}


.td-hosting-hero__bottom p {
    margin: 0;

    font-size: 14px;

    color: #62625e;
}


.td-hosting-hero__bottom p strong {
    color: var(--td-black);
}


.td-hosting-hero__bottom a {
    display: flex;
    align-items: center;

    gap: 13px;

    font-size: 12px;
    font-weight: 500;

    text-decoration: none;

    color: var(--td-black);
}


.td-hosting-hero__bottom a span {
    font-size: 18px;

    color: var(--td-orange);

    transition: transform .25s ease;
}


.td-hosting-hero__bottom a:hover span {
    transform: translateX(4px);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1050px) {

    .td-hosting-hero__container {
        width: min(90%, 820px);

        grid-template-columns: 1fr;

        text-align: center;
    }


    .td-hosting-hero__content {
        max-width: 720px;

        margin: 0 auto;
    }


    .td-hosting-hero__eyebrow,
    .td-hosting-hero__actions,
    .td-hosting-hero__micro {
        justify-content: center;
    }


    .td-hosting-hero__lead,
    .td-hosting-hero__description {
        margin-left: auto;
        margin-right: auto;
    }


    .td-hosting-hero__visual {
        min-height: 500px;
    }


    .td-hosting-hero__bottom-inner {
        width: 90%;

        grid-template-columns: 1fr;

        gap: 10px;

        padding: 25px 0;

        text-align: center;
    }


    .td-hosting-hero__bottom a {
        justify-content: center;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 650px) {

    .td-hosting-hero {
        background:
            linear-gradient(
                rgba(255,255,255,.84),
                rgba(255,255,255,.72)
            ),
            url("../../secciones/web-hosting.webp");

        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }


    .td-hosting-hero__number {
        left: 20px;
        top: 28px;
    }


    .td-hosting-hero__container {
        width: calc(100% - 36px);

        padding-top: 105px;
        padding-bottom: 65px;
    }


    .td-hosting-hero__title {
        font-size: clamp(38px, 11vw, 50px);
    }


    .td-hosting-hero__lead {
        font-size: 16px;
    }


    .td-hosting-hero__actions {
        flex-direction: column;
    }


    .td-hosting-btn {
        width: 100%;
    }


    .td-hosting-hero__visual {
        min-height: 390px;
    }


    .td-hosting-map {
        width: 500px;

        transform: scale(.72);
    }

}


@media (max-width: 450px) {

    .td-hosting-hero__visual {
        min-height: 330px;
    }


    .td-hosting-map {
        transform: scale(.62);
    }

}


/* ==========================================================
   TD-02
========================================================== */

.td-hosting-uses {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            #2d2d2b 0%,
            #1c1c1b 38%,
            #121212 78%
        );

    color: #fff;

    padding:
        clamp(100px, 10vw, 150px)
        0
        clamp(90px, 9vw, 130px);
}


/* ==========================================================
   TD NUMBER
========================================================== */

.td-hosting-uses__number {
    position: absolute;

    top: 38px;
    left: clamp(25px, 4vw, 70px);

    display: flex;
    align-items: center;

    gap: 8px;

    z-index: 5;
}

.td-hosting-uses__number span {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .16em;

    color: rgba(255,255,255,.38);
}

.td-hosting-uses__number strong {
    font-size: 18px;
    font-weight: 500;

    color: var(--td-green);
}


/* ==========================================================
   CONTAINER
========================================================== */

.td-hosting-uses__container {
    width: min(1380px, calc(100% - 80px));

    margin: 0 auto;
}


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

.td-hosting-uses__heading {
    max-width: 740px;

    margin: 0 auto 75px;

    text-align: center;
}


.td-hosting-uses__eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    font-size: 10px;
    font-weight: 500;
    letter-spacing: .17em;

    color: var(--td-green);
}


.td-hosting-uses__eyebrow::before,
.td-hosting-uses__eyebrow::after {
    content: "";

    width: 24px;
    height: 1px;

    background: rgba(98,167,68,.7);
}


.td-hosting-uses__title {
    margin: 0;

    font-size: clamp(42px, 4.5vw, 67px);
    line-height: 1.02;

    font-weight: 500;
    letter-spacing: -.045em;

    color: #fff;
}


.td-hosting-uses__title span {
    color: var(--td-orange);
}


.td-hosting-uses__intro {
    max-width: 620px;

    margin: 24px auto 0;

    font-size: 16px;
    line-height: 1.7;

    color: rgba(255,255,255,.57);
}


/* ==========================================================
   ECOSYSTEM
========================================================== */

.td-hosting-ecosystem {
    position: relative;

    width: min(100%, 1000px);
    height: 620px;

    margin: 0 auto;
}


/* ==========================================================
   ORBITS
========================================================== */

.td-hosting-ecosystem__orbit {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    pointer-events: none;
}


.td-hosting-ecosystem__orbit--1 {
    width: 520px;
    height: 520px;

    border: 1px solid rgba(255,255,255,.07);
}


.td-hosting-ecosystem__orbit--2 {
    width: 360px;
    height: 360px;

    border: 1px dashed rgba(255,255,255,.09);
}


/* ==========================================================
   CENTER
========================================================== */

.td-hosting-ecosystem__center {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 225px;
    height: 225px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #242424,
            #101010
        );

    border: 1px solid rgba(255,255,255,.11);

    box-shadow:
        0 40px 80px rgba(0,0,0,.48),
        inset 0 0 0 12px rgba(255,255,255,.018);

    z-index: 5;
}


.td-hosting-ecosystem__center::before {
    content: "";

    position: absolute;

    inset: -10px;

    border-radius: 50%;

    border: 1px solid rgba(245,130,32,.26);
}


.td-hosting-ecosystem__center-label {
    margin-bottom: 10px;

    font-size: 8px;
    font-weight: 600;
    letter-spacing: .18em;

    color: var(--td-green);
}


.td-hosting-ecosystem__center strong {
    font-size: 34px;
    line-height: .88;

    font-weight: 500;
    letter-spacing: -.04em;

    color: #fff;
}


.td-hosting-ecosystem__center span {
    margin-top: 13px;

    font-size: 11px;
    letter-spacing: .05em;

    color: rgba(255,255,255,.46);
}


/* ==========================================================
   CARDS
========================================================== */

.td-hosting-use-card {
    position: absolute;

    width: 235px;
    min-height: 190px;

    padding: 24px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.085),
            rgba(255,255,255,.035)
        );

    border: 1px solid rgba(255,255,255,.10);

    backdrop-filter: blur(15px);

    box-shadow:
        0 25px 60px rgba(0,0,0,.18);

    z-index: 6;

    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease;
}


.td-hosting-use-card:hover {
    transform: translateY(-7px);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.12),
            rgba(255,255,255,.055)
        );

    border-color: rgba(245,130,32,.32);
}


/* TOP */

.td-hosting-use-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 25px;
}


.td-hosting-use-card__top span {
    font-size: 10px;
    font-weight: 600;

    color: var(--td-orange);
}


.td-hosting-use-card__top small {
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .15em;

    color: rgba(255,255,255,.36);
}


/* SYMBOL */

.td-hosting-use-card__symbol {
    width: 50px;
    height: 50px;

    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.07);

    font-size: 20px;
    font-weight: 500;

    color: var(--td-green);
}


.td-hosting-use-card__symbol--code {
    font-size: 15px;
}


/* TEXT */

.td-hosting-use-card h3 {
    margin: 0;

    font-size: 17px;
    line-height: 1.2;

    font-weight: 500;

    color: #fff;
}


.td-hosting-use-card p {
    margin: 9px 0 0;

    font-size: 12px;
    line-height: 1.55;

    color: rgba(255,255,255,.48);
}


/* ==========================================================
   POSITIONS
========================================================== */

.td-hosting-use-card--mail {
    top: 10%;
    left: 3%;
}


.td-hosting-use-card--web {
    top: 3%;
    right: 5%;
}


.td-hosting-use-card--apps {
    bottom: 4%;
    left: 7%;
}


.td-hosting-use-card--growth {
    bottom: 8%;
    right: 2%;
}


/* ==========================================================
   CONNECTION LINES
========================================================== */

.td-hosting-ecosystem__line {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 250px;
    height: 1px;

    transform-origin: left center;

    background:
        linear-gradient(
            90deg,
            rgba(245,130,32,.52),
            rgba(98,167,68,.10)
        );

    z-index: 2;
}


.td-hosting-ecosystem__line--mail {
    transform: rotate(212deg);
}


.td-hosting-ecosystem__line--web {
    transform: rotate(325deg);
}


.td-hosting-ecosystem__line--apps {
    transform: rotate(145deg);
}


.td-hosting-ecosystem__line--growth {
    transform: rotate(35deg);
}


/* ==========================================================
   FLOATING DOTS
========================================================== */

.td-hosting-ecosystem__dot {
    position: absolute;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--td-orange);

    box-shadow:
        0 0 20px rgba(245,130,32,.8);

    animation:
        tdHostingDot 4s ease-in-out infinite;
}


.td-hosting-ecosystem__dot--1 {
    top: 16%;
    left: 43%;
}


.td-hosting-ecosystem__dot--2 {
    right: 20%;
    top: 55%;

    animation-delay: 1.2s;

    background: var(--td-green);

    box-shadow:
        0 0 20px rgba(98,167,68,.7);
}


.td-hosting-ecosystem__dot--3 {
    left: 24%;
    bottom: 22%;

    animation-delay: 2s;
}


@keyframes tdHostingDot {

    0%,
    100% {
        opacity: .35;
        transform: scale(.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.35);
    }

}


/* ==========================================================
   CLOSING
========================================================== */

.td-hosting-uses__closing {
    margin-top: 55px;

    padding-top: 35px;

    border-top: 1px solid rgba(255,255,255,.09);

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;
}


.td-hosting-uses__closing > div {
    display: flex;
    align-items: center;

    gap: 28px;
}


.td-hosting-uses__closing > div > span {
    flex: 0 0 auto;

    font-size: 8px;
    font-weight: 600;
    letter-spacing: .15em;

    color: var(--td-green);
}


.td-hosting-uses__closing strong {
    max-width: 640px;

    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.45;

    font-weight: 400;

    color: rgba(255,255,255,.84);
}


.td-hosting-uses__closing a {
    flex: 0 0 auto;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 15px 21px;

    border: 1px solid rgba(255,255,255,.14);
    border-radius: 40px;

    text-decoration: none;

    font-size: 11px;

    color: #fff;

    transition:
        background .25s ease,
        border-color .25s ease;
}


.td-hosting-uses__closing a span {
    font-size: 18px;

    color: var(--td-orange);
}


.td-hosting-uses__closing a:hover {
    background: rgba(255,255,255,.07);

    border-color: rgba(255,255,255,.24);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1050px) {

    .td-hosting-uses__container {
        width: min(90%, 850px);
    }


    .td-hosting-ecosystem {
        height: auto;

        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 18px;
    }


    .td-hosting-ecosystem__orbit,
    .td-hosting-ecosystem__line,
    .td-hosting-ecosystem__dot {
        display: none;
    }


    .td-hosting-ecosystem__center {
        position: relative;

        left: auto;
        top: auto;

        transform: none;

        grid-column: 1 / -1;

        margin: 0 auto 35px;
    }


    .td-hosting-use-card {
        position: relative;

        top: auto;
        left: auto;
        right: auto;
        bottom: auto;

        width: auto;
        min-height: 195px;
    }


    .td-hosting-uses__closing {
        flex-direction: column;

        text-align: center;
    }


    .td-hosting-uses__closing > div {
        flex-direction: column;

        gap: 12px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 650px) {

    .td-hosting-uses {
        padding-top: 105px;
    }


    .td-hosting-uses__number {
        top: 28px;
        left: 20px;
    }


    .td-hosting-uses__container {
        width: calc(100% - 36px);
    }


    .td-hosting-uses__heading {
        margin-bottom: 50px;
    }


    .td-hosting-uses__title {
        font-size: clamp(38px, 11vw, 50px);
    }


    .td-hosting-uses__intro {
        font-size: 15px;
    }


    .td-hosting-ecosystem {
        grid-template-columns: 1fr;
    }


    .td-hosting-ecosystem__center {
        width: 190px;
        height: 190px;
    }


    .td-hosting-use-card {
        min-height: auto;
    }


    .td-hosting-uses__closing {
        margin-top: 40px;
    }

}


/* ==========================================================
   TD-03
========================================================== */

.td-hosting-growth {
    position: relative;
    overflow: hidden;

    padding:
        clamp(105px, 10vw, 155px)
        0
        clamp(100px, 9vw, 140px);

    background:
        linear-gradient(
            180deg,
            #f7f7f3 0%,
            #ffffff 48%,
            #f5f5f1 100%
        );

    color: var(--td-text);
}


/* ==========================================================
   TD NUMBER
========================================================== */

.td-hosting-growth__number {
    position: absolute;

    top: 38px;
    left: clamp(25px, 4vw, 70px);

    display: flex;
    align-items: center;
    gap: 8px;

    z-index: 5;
}

.td-hosting-growth__number span {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .16em;

    color: #92928c;
}

.td-hosting-growth__number strong {
    font-size: 18px;
    font-weight: 500;

    color: var(--td-orange);
}


/* ==========================================================
   CONTAINER
========================================================== */

.td-hosting-growth__container {
    width: min(1380px, calc(100% - 80px));

    margin: 0 auto;
}


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

.td-hosting-growth__heading {
    max-width: 850px;

    margin-bottom: 90px;
}


.td-hosting-growth__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 20px;

    font-size: 10px;
    font-weight: 500;
    letter-spacing: .16em;

    color: var(--td-green);
}


.td-hosting-growth__eyebrow::before {
    content: "";

    width: 30px;
    height: 2px;

    background: var(--td-green);
}


.td-hosting-growth__title {
    margin: 0;

    max-width: 820px;

    font-size: clamp(42px, 4.5vw, 68px);
    line-height: 1.02;

    font-weight: 500;
    letter-spacing: -.045em;

    color: var(--td-black);
}


.td-hosting-growth__title span {
    display: block;

    color: var(--td-orange);
}


.td-hosting-growth__intro {
    max-width: 650px;

    margin: 25px 0 0;

    font-size: 16px;
    line-height: 1.7;

    color: var(--td-muted);
}


/* ==========================================================
   PATH
========================================================== */

.td-hosting-growth__path {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: clamp(25px, 3vw, 50px);
}


/* MAIN LINE */

.td-hosting-growth__line {
    position: absolute;

    left: 8%;
    right: 8%;
    top: 34px;

    height: 1px;

    background: #d9d9d3;

    z-index: 1;
}


.td-hosting-growth__line span {
    display: block;

    width: 68%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            var(--td-green),
            var(--td-orange)
        );
}


/* ==========================================================
   ITEM
========================================================== */

.td-hosting-growth__item {
    position: relative;

    z-index: 2;
}


.td-hosting-growth__dot {
    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 34px;

    border-radius: 50%;

    background: #fff;

    border: 1px solid #dcdcd6;

    box-shadow:
        0 10px 30px rgba(0,0,0,.055);

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease;
}


.td-hosting-growth__item:hover .td-hosting-growth__dot {
    transform: translateY(-5px);

    background: var(--td-black);
    border-color: var(--td-black);
}


.td-hosting-growth__dot span {
    font-size: 11px;
    font-weight: 600;

    color: var(--td-orange);

    transition: color .3s ease;
}


.td-hosting-growth__item:hover .td-hosting-growth__dot span {
    color: #fff;
}


/* CONTENT */

.td-hosting-growth__content {
    max-width: 270px;
}


.td-hosting-growth__content small {
    display: block;

    margin-bottom: 13px;

    font-size: 8px;
    font-weight: 600;
    letter-spacing: .15em;

    color: var(--td-green);
}


.td-hosting-growth__content h3 {
    margin: 0;

    font-size: clamp(20px, 1.7vw, 26px);
    line-height: 1.08;

    font-weight: 500;
    letter-spacing: -.025em;

    color: var(--td-black);
}


.td-hosting-growth__content p {
    margin: 14px 0 0;

    font-size: 13px;
    line-height: 1.7;

    color: #72726d;
}


/* ==========================================================
   EXAMPLE
========================================================== */

.td-hosting-growth__example {
    display: inline-flex;

    margin-top: 20px;

    padding: 10px 14px;

    border-radius: 30px;

    background: #fff;

    border: 1px solid #e0e0da;

    font-size: 11px;
    font-weight: 500;

    color: var(--td-black);
}


/* ==========================================================
   TAGS
========================================================== */

.td-hosting-growth__tags {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;

    margin-top: 20px;
}


.td-hosting-growth__tags span {
    padding: 7px 10px;

    border-radius: 20px;

    background: #ebebe6;

    font-size: 9px;
    font-weight: 500;

    color: #60605c;
}


/* ==========================================================
   PLUS
========================================================== */

.td-hosting-growth__plus {
    width: 39px;
    height: 39px;

    margin-top: 18px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--td-orange);

    font-size: 22px;
    font-weight: 300;

    color: #fff;
}


/* ==========================================================
   HELP BLOCK
========================================================== */

.td-hosting-growth__help {
    position: relative;

    margin-top: clamp(80px, 8vw, 120px);

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;

    gap: 30px;

    padding:
        clamp(30px, 4vw, 50px)
        clamp(25px, 4vw, 55px);

    border-radius: 24px;

    background: var(--td-black);

    overflow: hidden;
}


/* ORANGE DECORATION */

.td-hosting-growth__help::after {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    right: -170px;
    top: -170px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(245,130,32,.27),
            rgba(245,130,32,0) 70%
        );

    pointer-events: none;
}


/* ICON */

.td-hosting-growth__help-icon {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.15);

    font-size: 25px;
    font-weight: 300;

    color: var(--td-green);
}


/* HELP CONTENT */

.td-hosting-growth__help-content {
    position: relative;

    z-index: 2;
}


.td-hosting-growth__help-content small {
    display: block;

    margin-bottom: 9px;

    font-size: 8px;
    font-weight: 600;
    letter-spacing: .16em;

    color: var(--td-green);
}


.td-hosting-growth__help-content strong {
    display: block;

    max-width: 670px;

    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.25;

    font-weight: 400;

    color: #fff;
}


.td-hosting-growth__help-content p {
    margin: 10px 0 0;

    max-width: 670px;

    font-size: 12px;
    line-height: 1.6;

    color: rgba(255,255,255,.48);
}


/* CTA */

.td-hosting-growth__help-link {
    position: relative;

    z-index: 2;

    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    padding: 0 22px;

    border-radius: 40px;

    border: 1px solid rgba(255,255,255,.14);

    text-decoration: none;

    font-size: 11px;
    font-weight: 500;

    white-space: nowrap;

    color: #fff;

    transition:
        background .25s ease,
        transform .25s ease;
}


.td-hosting-growth__help-link span {
    font-size: 18px;

    color: var(--td-orange);

    transition: transform .25s ease;
}


.td-hosting-growth__help-link:hover {
    transform: translateY(-2px);

    background: rgba(255,255,255,.07);
}


.td-hosting-growth__help-link:hover span {
    transform: translateX(4px);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

    .td-hosting-growth__container {
        width: min(90%, 820px);
    }


    .td-hosting-growth__path {
        grid-template-columns: 1fr 1fr;

        gap: 55px 35px;
    }


    .td-hosting-growth__line {
        display: none;
    }


    .td-hosting-growth__content {
        max-width: none;
    }


    .td-hosting-growth__help {
        grid-template-columns: auto 1fr;
    }


    .td-hosting-growth__help-link {
        grid-column: 1 / -1;

        width: fit-content;

        margin-left: 102px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 650px) {

    .td-hosting-growth {
        padding-top: 105px;
    }


    .td-hosting-growth__number {
        top: 28px;
        left: 20px;
    }


    .td-hosting-growth__container {
        width: calc(100% - 36px);
    }


    .td-hosting-growth__heading {
        margin-bottom: 60px;
    }


    .td-hosting-growth__title {
        font-size: clamp(38px, 11vw, 50px);
    }


    .td-hosting-growth__path {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .td-hosting-growth__item {
        display: grid;
        grid-template-columns: 55px 1fr;

        gap: 20px;
    }


    .td-hosting-growth__dot {
        width: 55px;
        height: 55px;

        margin: 0;
    }


    .td-hosting-growth__help {
        grid-template-columns: 1fr;

        text-align: center;
    }


    .td-hosting-growth__help-icon {
        margin: 0 auto;
    }


    .td-hosting-growth__help-link {
        grid-column: auto;

        width: 100%;

        margin-left: 0;
    }

}


/* ==========================================================
   TD-04
========================================================== */

.td-hosting-plans {
    position: relative;
    overflow: hidden;

    padding:
        clamp(90px, 8vw, 125px)
        0
        clamp(80px, 7vw, 110px);

    background: #ffffff;
    color: var(--td-text);
}


/* ==========================================================
   TD NUMBER
========================================================== */

.td-hosting-plans__number {
    position: absolute;

    top: 34px;
    left: clamp(25px, 4vw, 70px);

    display: flex;
    align-items: center;
    gap: 8px;
}

.td-hosting-plans__number span {
    font-size: 10px;
    letter-spacing: .16em;
    color: #92928d;
}

.td-hosting-plans__number strong {
    font-size: 18px;
    font-weight: 500;
    color: var(--td-green);
}


/* ==========================================================
   CONTAINER
========================================================== */

.td-hosting-plans__container {
    width: min(1380px, calc(100% - 80px));
    margin: 0 auto;
}


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

.td-hosting-plans__heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(280px, .55fr);

    align-items: end;

    gap: 70px;

    margin-bottom: 42px;
}


.td-hosting-plans__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 18px;

    font-size: 10px;
    font-weight: 500;
    letter-spacing: .16em;

    color: var(--td-green);
}

.td-hosting-plans__eyebrow::before {
    content: "";

    width: 30px;
    height: 2px;

    background: var(--td-green);
}


.td-hosting-plans__title {
    max-width: 820px;

    margin: 0;

    font-size: clamp(42px, 4.5vw, 68px);
    line-height: 1;

    font-weight: 500;
    letter-spacing: -.045em;

    color: var(--td-black);
}

.td-hosting-plans__title span {
    display: block;
    color: var(--td-orange);
}


.td-hosting-plans__heading-right {
    padding-bottom: 5px;
}

.td-hosting-plans__heading-right p {
    margin: 0;

    font-size: 14px;
    line-height: 1.7;

    color: var(--td-muted);
}

.td-hosting-plans__heading-right span {
    display: block;

    margin-top: 12px;

    font-size: 11px;
    font-weight: 500;

    color: var(--td-black);
}


/* ==========================================================
   SELECTOR
========================================================== */

.td-hosting-selector {
    display: flex;
    align-items: center;

    gap: 7px;

    margin-bottom: 28px;

    padding: 8px;

    border: 1px solid #e1e1db;
    border-radius: 50px;

    background: #f5f5f1;
}


.td-hosting-selector__label {
    flex: 0 0 auto;

    padding: 0 17px;

    font-size: 8px;
    font-weight: 600;
    letter-spacing: .14em;

    color: #989892;
}


.td-hosting-selector__option {
    flex: 1;

    min-height: 43px;

    border: 0;
    border-radius: 30px;

    background: transparent;

    cursor: pointer;

    font-family: inherit;

    font-size: 11px;

    color: #595955;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}


.td-hosting-selector__option span {
    margin-right: 7px;

    font-size: 8px;

    color: #9b9b96;
}


.td-hosting-selector__option:hover {
    color: var(--td-black);
}


.td-hosting-selector__option.is-active {
    background: var(--td-black);
    color: #fff;

    box-shadow:
        0 10px 28px rgba(0,0,0,.12);
}


.td-hosting-selector__option.is-active span {
    color: var(--td-orange);
}


/* ==========================================================
   GRID
========================================================== */

.td-hosting-plans__grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px;

    transition: all .3s ease;
}


/* CUANDO SE FILTRA */

.td-hosting-plans__grid.is-filtered {
    display: flex;

    justify-content: center;
    align-items: stretch;

    flex-wrap: wrap;

    gap: 18px;
}


.td-hosting-plans__grid.is-filtered .td-hosting-plan {
    width: min(320px, 100%);
}


/* ==========================================================
   PLAN
========================================================== */

.td-hosting-plan {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 555px;

    padding: 24px;

    border: 1px solid #e1e1db;
    border-radius: 24px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8f8f5 100%
        );

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.td-hosting-plan:hover {
    transform: translateY(-7px);

    border-color: #d0d0ca;

    box-shadow:
        0 30px 60px rgba(0,0,0,.085);
}


/* ==========================================================
   FEATURED
========================================================== */

.td-hosting-plan--featured {
    background: var(--td-black);

    border-color: var(--td-black);

    color: #fff;
}


.td-hosting-plan--featured:hover {
    border-color: var(--td-orange);
}


.td-hosting-plan__featured {
    position: absolute;

    top: 0;
    right: 25px;

    transform: translateY(-50%);

    padding: 7px 12px;

    border-radius: 20px;

    background: var(--td-orange);

    font-size: 7px;
    font-weight: 700;
    letter-spacing: .14em;

    color: #fff;

    z-index: 5;
}


/* ==========================================================
   TOP
========================================================== */

.td-hosting-plan__top {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;

    min-height: 46px;
}


.td-hosting-plan__index {
    font-size: 10px;
    font-weight: 600;

    color: var(--td-orange);
}


.td-hosting-plan__capacity {
    text-align: right;
}


.td-hosting-plan__capacity span {
    display: block;

    margin-bottom: 4px;

    font-size: 7px;
    font-weight: 600;
    letter-spacing: .15em;

    color: #9c9c96;
}


.td-hosting-plan__capacity strong {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -.035em;

    color: var(--td-black);
}


.td-hosting-plan--featured .td-hosting-plan__capacity strong {
    color: #fff;
}


/* ==========================================================
   NAME
========================================================== */

.td-hosting-plan__name {
    min-height: 135px;

    padding-top: 20px;
}


.td-hosting-plan__name small {
    display: block;

    margin-bottom: 9px;

    font-size: 8px;
    font-weight: 600;
    letter-spacing: .12em;

    color: var(--td-green);
}


.td-hosting-plan__name h3 {
    margin: 0;

    font-size: clamp(22px, 1.8vw, 28px);
    line-height: 1.05;

    font-weight: 500;
    letter-spacing: -.035em;

    color: var(--td-black);
}


.td-hosting-plan--featured .td-hosting-plan__name h3 {
    color: #fff;
}


.td-hosting-plan__name p {
    margin: 10px 0 0;

    font-size: 12px;
    line-height: 1.55;

    color: #777771;
}


.td-hosting-plan--featured .td-hosting-plan__name p {
    color: rgba(255,255,255,.52);
}


/* ==========================================================
   SAVING / RECOMMENDATION
========================================================== */

.td-hosting-plan__saving {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-top: 12px;

    padding: 7px 11px;

    border-radius: 20px;

    background: rgba(98,167,68,.12);

    font-size: 9px;
    font-weight: 500;

    color: var(--td-green);
}


.td-hosting-plan__saving span {
    font-size: 10px;
}


.td-hosting-plan--featured .td-hosting-plan__saving {
    background: rgba(98,167,68,.14);
}


/* ==========================================================
   PRICE
========================================================== */

.td-hosting-plan__price {
    padding: 19px 0;

    border-top: 1px solid #e2e2dd;
    border-bottom: 1px solid #e2e2dd;
}


.td-hosting-plan--featured .td-hosting-plan__price {
    border-color: rgba(255,255,255,.1);
}


.td-hosting-plan__price small {
    display: block;

    margin-bottom: 6px;

    font-size: 7px;
    font-weight: 600;
    letter-spacing: .15em;

    color: #9e9e98;
}


.td-hosting-plan__price strong {
    display: block;

    font-size: clamp(30px, 2.5vw, 38px);
    line-height: 1;

    font-weight: 500;
    letter-spacing: -.04em;

    color: var(--td-black);
}


.td-hosting-plan--featured .td-hosting-plan__price strong {
    color: #fff;
}


.td-hosting-plan__price span {
    display: block;

    margin-top: 7px;

    font-size: 10px;

    color: #85857f;
}


/* ==========================================================
   FEATURES
========================================================== */

.td-hosting-plan__features {
    flex: 1;

    margin: 20px 0;

    padding: 0;

    list-style: none;
}


.td-hosting-plan__features li {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin-bottom: 8px;

    font-size: 11px;
    line-height: 1.45;

    color: #666661;
}


.td-hosting-plan--featured .td-hosting-plan__features li {
    color: rgba(255,255,255,.67);
}


.td-hosting-plan__features li > span {
    flex: 0 0 auto;

    width: 5px;
    height: 5px;

    margin-top: 5px;

    border-radius: 50%;

    background: var(--td-green);
}


/* ==========================================================
   BUTTON
========================================================== */

.td-hosting-plan__button {
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 18px;

    border-radius: 30px;

    border: 1px solid #d8d8d2;

    text-decoration: none;

    font-size: 11px;
    font-weight: 500;

    color: var(--td-black);

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease;
}


.td-hosting-plan__button strong {
    font-size: 18px;
    font-weight: 400;

    color: var(--td-orange);

    transition: transform .25s ease;
}


.td-hosting-plan__button:hover {
    background: var(--td-black);

    border-color: var(--td-black);

    color: #fff;
}


.td-hosting-plan__button:hover strong {
    transform: translateX(4px);
}


.td-hosting-plan--featured .td-hosting-plan__button {
    border-color: rgba(255,255,255,.15);

    color: #fff;
}


.td-hosting-plan--featured .td-hosting-plan__button:hover {
    background: var(--td-orange);

    border-color: var(--td-orange);
}


/* ==========================================================
   FILTER
========================================================== */

.td-hosting-plan.is-hidden {
    display: none;
}


/* ==========================================================
   FOOTER
========================================================== */

.td-hosting-plans__footer {
    margin-top: 28px;

    padding-top: 28px;

    border-top: 1px solid #e1e1dc;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;
}


.td-hosting-plans__footer-text {
    display: flex;
    align-items: center;

    gap: 25px;
}


.td-hosting-plans__footer-text span {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .15em;

    color: var(--td-green);
}


.td-hosting-plans__footer-text strong {
    max-width: 570px;

    font-size: 16px;
    line-height: 1.45;

    font-weight: 400;

    color: var(--td-black);
}


.td-hosting-plans__footer > a {
    flex: 0 0 auto;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 14px 20px;

    border-radius: 30px;

    background: var(--td-black);

    text-decoration: none;

    font-size: 11px;

    color: #fff;

    transition:
        background .25s ease,
        transform .25s ease;
}


.td-hosting-plans__footer > a span {
    font-size: 17px;

    color: var(--td-orange);
}


.td-hosting-plans__footer > a:hover {
    transform: translateY(-2px);

    background: var(--td-orange);
}


.td-hosting-plans__footer > a:hover span {
    color: #fff;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {

    .td-hosting-plans__container {
        width: min(90%, 900px);
    }

    .td-hosting-plans__heading {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .td-hosting-plans__heading-right {
        max-width: 600px;
    }

    .td-hosting-selector {
        overflow-x: auto;

        justify-content: flex-start;

        border-radius: 18px;
    }

    .td-hosting-selector__option {
        flex: 0 0 auto;

        padding: 0 18px;
    }

    .td-hosting-plans__grid {
        grid-template-columns: 1fr 1fr;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 650px) {

    .td-hosting-plans {
        padding-top: 95px;
    }

    .td-hosting-plans__number {
        top: 28px;
        left: 20px;
    }

    .td-hosting-plans__container {
        width: calc(100% - 36px);
    }

    .td-hosting-plans__title {
        font-size: clamp(38px, 11vw, 50px);
    }

    .td-hosting-selector {
        padding: 7px;

        margin-left: -2px;
        margin-right: -2px;
    }

    .td-hosting-selector__label {
        display: none;
    }

    .td-hosting-plans__grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .td-hosting-plans__grid.is-filtered {
        display: grid;
        grid-template-columns: 1fr;
    }

    .td-hosting-plans__grid.is-filtered .td-hosting-plan {
        width: 100%;
    }

    .td-hosting-plan {
        min-height: auto;
    }

    .td-hosting-plan__name {
        min-height: auto;

        padding-bottom: 20px;
    }

    .td-hosting-plans__footer {
        flex-direction: column;

        align-items: stretch;
    }

    .td-hosting-plans__footer-text {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }

    .td-hosting-plans__footer > a {
        justify-content: space-between;
    }

}


/* ==========================================================
   BASE COMPARTIDA TD-05 → TD-10
========================================================== */

.td-shell {
    width: min(1380px, calc(100% - 80px));
    margin: 0 auto;
}

.td-section-number {
    position: absolute;
    top: 35px;
    left: clamp(25px, 4vw, 70px);

    display: flex;
    align-items: center;
    gap: 8px;

    z-index: 10;
}

.td-section-number span {
    font-size: 10px;
    letter-spacing: .16em;
    color: #92928d;
}

.td-section-number strong {
    font-size: 18px;
    font-weight: 500;
    color: var(--td-orange);
}

.td-section-number--light span {
    color: rgba(255,255,255,.35);
}

.td-section-number--light strong {
    color: var(--td-green);
}


/* EYEBROW */

.td-eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 18px;

    font-size: 9px;
    font-weight: 600;
    letter-spacing: .17em;

    color: var(--td-green);
}

.td-eyebrow::before {
    content: "";

    width: 28px;
    height: 2px;

    background: currentColor;
}


/* SHARED HEADING */

.td-heading {
    max-width: 800px;
}

.td-heading--center {
    text-align: center;
    margin: 0 auto 65px;
}

.td-heading--center .td-eyebrow {
    justify-content: center;
}

.td-heading h2,
.td-migration h2,
.td-mail h2,
.td-domain h2,
.td-faq h2 {
    margin: 0;

    font-size: clamp(40px, 4.2vw, 64px);
    line-height: 1.01;

    font-weight: 500;
    letter-spacing: -.045em;
}

.td-heading h2 span,
.td-migration h2 span,
.td-mail h2 span,
.td-domain h2 span,
.td-faq h2 span {
    color: var(--td-orange);
}

.td-heading p {
    max-width: 650px;

    margin: 22px auto 0;

    font-size: 15px;
    line-height: 1.7;

    color: rgba(255,255,255,.5);
}


/* PILLS */

.td-pill {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    margin-top: 30px;
    padding: 0 23px;

    border-radius: 30px;

    text-decoration: none;

    font-size: 11px;
    font-weight: 500;

    transition:
        transform .25s ease,
        background .25s ease;
}

.td-pill span {
    font-size: 18px;
}

.td-pill:hover {
    transform: translateY(-2px);
}

.td-pill--dark {
    background: var(--td-black);
    color: #fff;
}

.td-pill--dark span {
    color: var(--td-orange);
}

.td-pill--dark:hover {
    background: var(--td-orange);
}

.td-pill--dark:hover span {
    color: #fff;
}

.td-pill--light {
    border: 1px solid rgba(255,255,255,.16);
    color: #fff;
}

.td-pill--light span {
    color: var(--td-orange);
}

.td-pill--light:hover {
    background: rgba(255,255,255,.07);
}


/* ==========================================================
   TD-05
========================================================== */

.td-tech {
    position: relative;
    overflow: hidden;

    padding:
        clamp(105px, 9vw, 145px)
        0
        clamp(90px, 8vw, 125px);

    background:
        radial-gradient(
            circle at 50% 55%,
            #2b2b29,
            #171717 48%,
            #101010 100%
        );

    color: #fff;
}


.td-tech__stage {
    position: relative;

    width: min(100%, 1050px);
    min-height: 590px;

    margin: 0 auto;
}


.td-tech__rings {
    position: absolute;

    width: 520px;
    height: 520px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    border:
        1px dashed rgba(255,255,255,.08);
}

.td-tech__rings::before {
    content: "";

    position: absolute;

    inset: 80px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.06);
}


.td-tech__core {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 215px;
    height: 215px;

    border-radius: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #0c0c0c;

    border:
        1px solid rgba(255,255,255,.12);

    box-shadow:
        0 35px 80px rgba(0,0,0,.5);

    text-align: center;

    z-index: 3;
}


.td-tech__core small {
    font-size: 7px;
    letter-spacing: .17em;

    color: var(--td-green);
}

.td-tech__core strong {
    margin-top: 8px;

    font-size: 28px;
    font-weight: 500;

    color: #fff;
}

.td-tech__core > span {
    margin-top: 5px;

    font-size: 10px;

    color: rgba(255,255,255,.4);
}


.td-tech__pulse {
    position: absolute;

    inset: -12px;

    border-radius: 50%;

    border:
        1px solid rgba(245,130,32,.25);

    animation:
        tdPulse 3.5s ease-in-out infinite;
}


@keyframes tdPulse {

    0%,
    100% {
        transform: scale(.98);
        opacity: .35;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}


.td-tech__card {
    position: absolute;

    width: 235px;
    min-height: 175px;

    padding: 22px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.09),
            rgba(255,255,255,.035)
        );

    border:
        1px solid rgba(255,255,255,.1);

    backdrop-filter:
        blur(12px);

    transition:
        transform .3s ease,
        border-color .3s ease;
}


.td-tech__card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(245,130,32,.35);
}


.td-tech__card--1 {
    left: 2%;
    top: 5%;
}

.td-tech__card--2 {
    right: 2%;
    top: 10%;
}

.td-tech__card--3 {
    left: 7%;
    bottom: 2%;
}

.td-tech__card--4 {
    right: 5%;
    bottom: 6%;
}


.td-tech__index {
    display: block;

    font-size: 8px;

    color: var(--td-orange);
}


.td-tech__icon {
    width: 47px;
    height: 47px;

    margin: 18px 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.06);

    font-size: 12px;
    font-weight: 500;

    color: var(--td-green);
}


.td-tech__card h3 {
    margin: 0;

    font-size: 18px;
    font-weight: 500;
}


.td-tech__card p {
    margin: 8px 0 0;

    font-size: 11px;
    line-height: 1.55;

    color: rgba(255,255,255,.47);
}


.td-tech__bar {
    display: grid;
    grid-template-columns: auto 1fr auto;

    align-items: center;

    gap: 28px;

    padding-top: 30px;

    border-top:
        1px solid rgba(255,255,255,.09);
}


.td-tech__bar span {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .15em;

    color: var(--td-green);
}


.td-tech__bar strong {
    font-size: 18px;
    font-weight: 400;

    color: #fff;
}


.td-tech__bar p {
    margin: 0;

    font-size: 11px;

    color: rgba(255,255,255,.45);
}


/* ==========================================================
   TD-06
========================================================== */

.td-migration {
    position: relative;

    padding:
        clamp(100px, 9vw, 145px)
        0;

    background:
        #f5f5f1;
}


.td-migration__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;

    align-items: center;

    gap: clamp(60px, 8vw, 130px);
}


.td-migration h2 {
    color: var(--td-black);
}


.td-migration__lead {
    max-width: 620px;

    margin: 24px 0 0;

    font-size: 15px;
    line-height: 1.75;

    color: #6d6d68;
}


.td-migration__checks {
    display: grid;
    grid-template-columns: repeat(3,1fr);

    gap: 10px;

    margin-top: 32px;
}


.td-migration__checks div {
    padding: 17px;

    border:
        1px solid #deded8;

    border-radius: 15px;

    background: #fff;
}


.td-migration__checks span {
    display: block;

    margin-bottom: 15px;

    font-size: 9px;
    font-weight: 600;

    color: var(--td-orange);
}


.td-migration__checks strong {
    display: block;

    font-size: 13px;
    font-weight: 500;

    color: var(--td-black);
}


.td-migration__checks small {
    display: block;

    margin-top: 4px;

    font-size: 10px;

    color: #898983;
}


.td-migration__visual {
    position: relative;

    min-height: 460px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.td-migration__provider,
.td-migration__td {
    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}


.td-migration__provider {
    left: 1%;

    background: #fff;

    border:
        1px solid #dbdbd5;

    color: #777;
}


.td-migration__td {
    right: 1%;

    background: var(--td-black);

    color: #fff;

    box-shadow:
        0 30px 60px rgba(0,0,0,.17);
}


.td-migration__provider small,
.td-migration__td small {
    margin-bottom: 9px;

    font-size: 7px;
    letter-spacing: .15em;

    color: #969690;
}


.td-migration__td small {
    color: var(--td-green);
}


.td-migration__provider strong,
.td-migration__td strong {
    font-size: 21px;
    line-height: .95;

    font-weight: 500;
}


.td-migration__td span {
    margin-top: 5px;

    font-size: 10px;

    color: var(--td-orange);
}


.td-migration__route {
    position: relative;

    width: 160px;

    text-align: center;

    z-index: 5;
}


.td-migration__route::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    top: 28px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            #ccc,
            var(--td-orange),
            var(--td-green)
        );
}


.td-migration__route-arrow {
    position: relative;

    width: 57px;
    height: 57px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--td-orange);

    font-size: 22px;

    color: #fff;

    z-index: 3;
}


.td-migration__route small {
    display: block;

    margin-top: 13px;

    font-size: 7px;
    letter-spacing: .15em;

    color: #777;
}


/* ==========================================================
   TD-07
========================================================== */

.td-mail {
    position: relative;

    padding:
        clamp(105px, 9vw, 150px)
        0;

    overflow: hidden;

    background: var(--td-black);

    color: #fff;
}


.td-mail__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;

    gap: clamp(60px, 8vw, 120px);

    align-items: center;
}


.td-mail__window {
    overflow: hidden;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.025)
        );

    box-shadow:
        0 40px 80px rgba(0,0,0,.25);
}


.td-mail__window-top {
    min-height: 54px;

    display: flex;
    align-items: center;

    gap: 7px;

    padding: 0 22px;

    border-bottom:
        1px solid rgba(255,255,255,.08);
}


.td-mail__window-top > span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.2);
}


.td-mail__window-top small {
    margin-left: auto;

    font-size: 7px;
    letter-spacing: .16em;

    color:
        rgba(255,255,255,.35);
}


.td-mail__address {
    padding:
        clamp(45px, 6vw, 75px)
        30px;

    text-align: center;
}


.td-mail__address small {
    display: block;

    margin-bottom: 14px;

    font-size: 8px;
    letter-spacing: .15em;

    color: var(--td-green);
}


.td-mail__address strong {
    font-size:
        clamp(23px, 3vw, 42px);

    font-weight: 400;
    letter-spacing: -.04em;
}


.td-mail__address strong span {
    color: var(--td-orange);
}


.td-mail__addresses {
    padding:
        0 25px 25px;

    display: grid;
    gap: 8px;
}


.td-mail__addresses div {
    display: flex;
    align-items: center;

    gap: 15px;

    padding:
        14px 17px;

    border-radius: 12px;

    background:
        rgba(255,255,255,.045);

    font-size: 10px;

    color:
        rgba(255,255,255,.55);
}


.td-mail__addresses span {
    font-size: 8px;

    color: var(--td-orange);
}


.td-mail h2 {
    color: #fff;
}


.td-mail__content > p {
    max-width: 560px;

    margin: 24px 0 0;

    font-size: 15px;
    line-height: 1.75;

    color:
        rgba(255,255,255,.56);
}


.td-mail__important {
    margin-top: 30px;

    padding:
        20px 22px;

    border-left:
        2px solid var(--td-orange);

    background:
        rgba(255,255,255,.04);
}


.td-mail__important span {
    display: block;

    margin-bottom: 8px;

    font-size: 7px;
    font-weight: 600;
    letter-spacing: .16em;

    color: var(--td-green);
}


.td-mail__important strong {
    display: block;

    font-size: 17px;
    line-height: 1.45;

    font-weight: 400;

    color: #fff;
}


.td-mail__small {
    font-size: 12px !important;
}


/* ==========================================================
   TD-08
========================================================== */

.td-domain {
    position: relative;

    padding:
        clamp(105px, 9vw, 145px)
        0;

    background: #fff;
}


.td-domain__box {
    position: relative;

    overflow: hidden;

    padding:
        clamp(45px, 6vw, 80px);

    border-radius: 30px;

    background: #f4f4ef;
}


.td-domain__box::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -180px;
    top: -200px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(245,130,32,.18),
            rgba(245,130,32,0) 70%
        );
}


.td-domain__heading {
    position: relative;

    max-width: 750px;

    z-index: 2;
}


.td-domain h2 {
    color: var(--td-black);
}


.td-domain__heading p {
    max-width: 570px;

    margin: 20px 0 0;

    font-size: 14px;
    line-height: 1.7;

    color: #71716c;
}


.td-domain__search {
    position: relative;

    z-index: 3;

    display: grid;
    grid-template-columns: 1fr auto;

    gap: 10px;

    margin-top: 43px;

    padding: 9px;

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 20px 50px rgba(0,0,0,.07);
}


.td-domain__field {
    min-height: 64px;

    display: flex;
    align-items: center;

    padding-left: 20px;
}


.td-domain__field > span {
    font-size: 15px;

    color: #999;
}


.td-domain__field input {
    flex: 1;

    min-width: 0;

    padding: 0 5px;

    border: 0;
    outline: 0;

    background: transparent;

    font-family: inherit;

    font-size: 20px;

    color: var(--td-black);
}


.td-domain__field select {
    min-height: 42px;

    padding: 0 15px;

    border:
        1px solid #e1e1db;

    border-radius: 22px;

    background: #f6f6f2;

    font-family: inherit;

    color: var(--td-black);
}


.td-domain__search button {
    min-width: 190px;

    border: 0;
    border-radius: 13px;

    background: var(--td-black);

    color: #fff;

    cursor: pointer;

    font-family: inherit;

    font-size: 11px;

    transition:
        background .25s ease,
        transform .25s ease;
}


.td-domain__search button span {
    margin-left: 15px;

    font-size: 17px;

    color: var(--td-orange);
}


.td-domain__search button:hover {
    transform: translateY(-2px);

    background: var(--td-orange);
}


.td-domain__search button:hover span {
    color: #fff;
}


.td-domain__extensions {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 18px;
}


.td-domain__extensions span {
    padding:
        7px 11px;

    border-radius: 20px;

    border:
        1px solid #ddddD7;

    background: #fff;

    font-size: 8px;

    color: #6c6c67;
}


.td-domain__footer {
    margin-top: 42px;

    padding-top: 25px;

    border-top:
        1px solid #ddddD7;

    display: flex;
    align-items: center;

    gap: 24px;
}


.td-domain__footer span {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .14em;

    color: var(--td-green);
}


.td-domain__footer p {
    margin: 0;

    font-size: 12px;

    color: #74746f;
}


/* ==========================================================
   TD-09
========================================================== */

.td-faq {
    position: relative;

    padding:
        clamp(105px, 9vw, 145px)
        0;

    background: #f5f5f1;
}


.td-faq__grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;

    gap: clamp(60px, 8vw, 130px);
}


.td-faq__heading {
    position: relative;
}


.td-faq h2 {
    color: var(--td-black);
}


.td-faq__heading > p {
    max-width: 400px;

    margin: 22px 0 0;

    font-size: 14px;
    line-height: 1.7;

    color: #73736e;
}


.td-faq__big {
    margin-top: 45px;

    font-size:
        clamp(100px, 13vw, 190px);

    line-height: .8;

    font-weight: 300;

    color:
        rgba(0,0,0,.055);
}


.td-faq__item {
    border-bottom:
        1px solid #dcdcd6;
}


.td-faq__item button {
    width: 100%;

    min-height: 78px;

    display: grid;
    grid-template-columns: 40px 1fr auto;

    align-items: center;

    gap: 15px;

    padding: 0;

    border: 0;

    background: transparent;

    text-align: left;

    cursor: pointer;

    font-family: inherit;
}


.td-faq__item button > span {
    font-size: 9px;

    color: var(--td-orange);
}


.td-faq__item button strong {
    font-size:
        clamp(15px, 1.3vw, 18px);

    font-weight: 500;

    color: var(--td-black);
}


.td-faq__item button i {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        1px solid #d5d5cf;

    font-size: 17px;
    font-style: normal;
    font-weight: 300;

    color: var(--td-green);

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}


.td-faq__answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height .35s ease;
}


.td-faq__answer p {
    margin:
        0 50px 25px 55px;

    max-width: 650px;

    font-size: 13px;
    line-height: 1.7;

    color: #70706b;
}


.td-faq__item.is-open .td-faq__answer {
    max-height: 220px;
}


.td-faq__item.is-open button i {
    transform: rotate(45deg);

    background: var(--td-black);

    border-color: var(--td-black);

    color: #fff;
}


/* ==========================================================
   TD-10
========================================================== */

.td-hosting-final {
    position: relative;

    overflow: hidden;

    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding:
        110px 30px;

    background:
        #101010;

    text-align: center;

    color: #fff;
}


.td-hosting-final__number {
    position: absolute;

    left: clamp(25px, 4vw, 70px);
    top: 35px;

    display: flex;
    gap: 8px;

    align-items: center;
}


.td-hosting-final__number span {
    font-size: 10px;
    letter-spacing: .16em;

    color: rgba(255,255,255,.32);
}


.td-hosting-final__number strong {
    font-size: 18px;
    font-weight: 500;

    color: var(--td-orange);
}


.td-hosting-final__inner {
    position: relative;

    max-width: 940px;

    z-index: 2;
}


.td-hosting-final__eyebrow {
    margin-bottom: 20px;

    font-size: 9px;
    font-weight: 600;
    letter-spacing: .18em;

    color: var(--td-green);
}


.td-hosting-final h2 {
    margin: 0;

    font-size:
        clamp(48px, 6vw, 88px);

    line-height: .95;

    font-weight: 500;
    letter-spacing: -.055em;
}


.td-hosting-final h2 span {
    display: block;

    color: var(--td-orange);
}


.td-hosting-final p {
    max-width: 670px;

    margin: 28px auto 0;

    font-size: 15px;
    line-height: 1.75;

    color:
        rgba(255,255,255,.52);
}


.td-hosting-final__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 35px;
}


.td-hosting-final__actions a {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 27px;

    border-radius: 30px;

    text-decoration: none;

    font-size: 11px;

    transition:
        transform .25s ease,
        background .25s ease;
}


.td-hosting-final__primary {
    gap: 18px;

    background: #fff;

    color: var(--td-black);
}


.td-hosting-final__primary span {
    font-size: 18px;

    color: var(--td-orange);
}


.td-hosting-final__primary:hover {
    transform: translateY(-2px);

    background: var(--td-orange);

    color: #fff;
}


.td-hosting-final__primary:hover span {
    color: #fff;
}


.td-hosting-final__secondary {
    border:
        1px solid rgba(255,255,255,.15);

    color: #fff;
}


.td-hosting-final__secondary:hover {
    transform: translateY(-2px);

    background:
        rgba(255,255,255,.07);
}


.td-hosting-final__signature {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    margin-top: 60px;
}


.td-hosting-final__signature span {
    width: 45px;
    height: 1px;

    background:
        rgba(255,255,255,.13);
}


.td-hosting-final__signature small {
    font-size: 7px;
    letter-spacing: .17em;

    color:
        rgba(255,255,255,.30);
}


.td-hosting-final__glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.td-hosting-final__glow--orange {
    width: 500px;
    height: 500px;

    left: -250px;
    top: -240px;

    background:
        radial-gradient(
            circle,
            rgba(245,130,32,.25),
            rgba(245,130,32,0) 70%
        );
}


.td-hosting-final__glow--green {
    width: 520px;
    height: 520px;

    right: -280px;
    bottom: -300px;

    background:
        radial-gradient(
            circle,
            rgba(98,167,68,.20),
            rgba(98,167,68,0) 70%
        );
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

    .td-shell {
        width: min(90%, 850px);
    }


    .td-tech__stage {
        min-height: auto;

        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 15px;
    }


    .td-tech__rings {
        display: none;
    }


    .td-tech__core {
        position: relative;

        left: auto;
        top: auto;

        transform: none;

        grid-column: 1 / -1;

        margin: 0 auto 25px;
    }


    .td-tech__card {
        position: relative;

        left: auto;
        right: auto;
        top: auto;
        bottom: auto;

        width: auto;
    }


    .td-migration__grid,
    .td-mail__grid,
    .td-faq__grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .td-migration__visual {
        min-height: 420px;
    }


    .td-mail__visual {
        max-width: 700px;

        margin: 0 auto;
    }


    .td-faq__big {
        display: none;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 650px) {

    .td-shell {
        width: calc(100% - 36px);
    }


    .td-tech,
    .td-migration,
    .td-mail,
    .td-domain,
    .td-faq {
        padding-top: 95px;
        padding-bottom: 80px;
    }


    .td-section-number {
        top: 25px;
        left: 20px;
    }


    .td-heading h2,
    .td-migration h2,
    .td-mail h2,
    .td-domain h2,
    .td-faq h2 {
        font-size:
            clamp(37px, 10vw, 48px);
    }


    /* TD05 */

    .td-tech__stage {
        grid-template-columns: 1fr;
    }


    .td-tech__core {
        grid-column: auto;

        width: 180px;
        height: 180px;
    }


    .td-tech__bar {
        grid-template-columns: 1fr;

        text-align: center;

        gap: 8px;
    }


    /* TD06 */

    .td-migration__checks {
        grid-template-columns: 1fr;
    }


    .td-migration__visual {
        min-height: auto;

        flex-direction: column;

        gap: 20px;

        margin-top: 20px;
    }


    .td-migration__provider,
    .td-migration__td {
        position: relative;

        left: auto;
        right: auto;

        width: 190px;
        height: 190px;
    }


    .td-migration__route {
        transform: rotate(90deg);

        margin: -25px 0;
    }


    .td-migration__route small {
        display: none;
    }


    /* TD07 */

    .td-mail__address {
        padding:
            40px 15px;
    }


    .td-mail__address strong {
        font-size: 22px;
    }


    /* TD08 */

    .td-domain__box {
        padding:
            38px 20px;
    }


    .td-domain__search {
        grid-template-columns: 1fr;

        background: transparent;

        padding: 0;

        box-shadow: none;
    }


    .td-domain__field {
        min-height: 62px;

        padding: 0 12px;

        border-radius: 15px;

        background: #fff;
    }


    .td-domain__field input {
        font-size: 16px;
    }


    .td-domain__field select {
        padding: 0 9px;
    }


    .td-domain__search button {
        min-height: 54px;

        width: 100%;
    }


    .td-domain__footer {
        flex-direction: column;
        align-items: flex-start;

        gap: 7px;
    }


    /* TD09 */

    .td-faq__item button {
        grid-template-columns: 30px 1fr auto;

        min-height: 72px;
    }


    .td-faq__answer p {
        margin:
            0 0 22px 45px;
    }


    /* TD10 */

    .td-hosting-final {
        min-height: 570px;

        padding:
            100px 20px 80px;
    }


    .td-hosting-final h2 {
        font-size:
            clamp(43px, 12vw, 61px);
    }


    .td-hosting-final__actions {
        flex-direction: column;
    }


    .td-hosting-final__actions a {
        width: 100%;
    }


    .td-hosting-final__signature span {
        display: none;
    }

}