/* =========================================================
   TICODESIGN — PROVEEDOR DE WEB HOSTING
========================================================= */

.ph-page,
.ph-page * {
    box-sizing: border-box;
}

.ph-page {
    --ph-orange: #f28a1a;
    --ph-orange-dark: #d96f08;
    --ph-green: #2f9b57;
    --ph-coffee: #211c18;
    --ph-coffee-soft: #332b25;
    --ph-text: #292724;
    --ph-muted: #6d6862;
    --ph-border: #e8e1da;
    --ph-light: #fffaf5;
    --ph-soft: #f7f4f1;
    --ph-white: #ffffff;

    color: var(--ph-text);
    font-family: "Poppins", sans-serif;
}

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


/* =========================================================
   ELEMENTOS GENERALES
========================================================= */

.ph-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 18px;

    color: var(--ph-orange-dark);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    line-height: 1.4;
    text-transform: uppercase;
}

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

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: var(--ph-orange);
    box-shadow: 0 0 0 5px rgba(242, 138, 26, .14);
}

.ph-section {
    padding: clamp(78px, 9vw, 120px) 0;
}

.ph-heading {
    max-width: 790px;
    margin-bottom: 48px;
}

.ph-heading--center {
    margin-inline: auto;
    text-align: center;
}

.ph-heading h2,
.ph-transfer__intro h2,
.ph-faq__intro h2,
.ph-final h2 {
    margin: 0 0 20px;

    color: var(--ph-coffee);

    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 750;
    letter-spacing: -1.8px;
    line-height: 1.08;
}

.ph-heading p,
.ph-transfer__intro p,
.ph-faq__intro p,
.ph-final p {
    margin: 0;

    color: var(--ph-muted);

    font-size: 17px;
    line-height: 1.85;
}

.ph-heading--center p {
    max-width: 720px;
    margin-inline: auto;
}


/* =========================================================
   BOTONES
========================================================= */

.ph-button {
    min-height: 52px;
    padding: 14px 24px;

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

    border: 2px solid transparent;
    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;

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

.ph-button:hover {
    transform: translateY(-3px);
}

.ph-button:focus-visible,
.ph-text-link:focus-visible,
.ph-faq summary:focus-visible {
    outline: 3px solid rgba(47, 155, 87, .4);
    outline-offset: 4px;
}

.ph-button--primary {
    color: #211c18;
    background: var(--ph-orange);
    box-shadow: 0 12px 26px rgba(242, 138, 26, .25);
}

.ph-button--primary:hover {
    color: #ffffff;
    background: var(--ph-orange-dark);
}

.ph-button--outline {
    color: var(--ph-coffee);
    border-color: rgba(33, 28, 24, .22);
    background: rgba(255, 255, 255, .6);
}

.ph-button--outline:hover {
    color: #ffffff;
    border-color: var(--ph-coffee);
    background: var(--ph-coffee);
}

.ph-button--light {
    color: #ffffff;
    border-color: rgba(255, 255, 255, .35);
    background: transparent;
}

.ph-button--light:hover {
    color: var(--ph-coffee);
    border-color: #ffffff;
    background: #ffffff;
}


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

.ph-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    padding:
        clamp(145px, 16vw, 200px)
        0
        clamp(80px, 9vw, 115px);

    background:
        radial-gradient(
            circle at 84% 22%,
            rgba(242, 138, 26, .19),
            transparent 30%
        ),
        radial-gradient(
            circle at 12% 88%,
            rgba(47, 155, 87, .11),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #fffdfb 0%,
            #fff8f0 54%,
            #f6efe8 100%
        );
}

.ph-hero::before {
    content: "";

    position: absolute;
    z-index: -1;

    width: 340px;
    height: 340px;

    right: -150px;
    top: 80px;

    border: 1px solid rgba(242, 138, 26, .18);
    border-radius: 50%;

    box-shadow:
        0 0 0 45px rgba(242, 138, 26, .035),
        0 0 0 90px rgba(242, 138, 26, .025);
}

.ph-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
    align-items: center;
    gap: clamp(50px, 7vw, 92px);
}

.ph-hero__content h1 {
    max-width: 760px;
    margin: 0;

    color: var(--ph-coffee);

    font-size: clamp(42px, 6.2vw, 72px);
    font-weight: 780;
    letter-spacing: -3px;
    line-height: 1.01;
}

.ph-hero__content h1 span {
    display: block;
    color: var(--ph-orange-dark);
}

.ph-hero__lead {
    max-width: 680px;
    margin: 28px 0 0;

    color: #5f5a55;

    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.75;
}

.ph-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;

    margin-top: 34px;
}

.ph-hero__assurances {
    padding: 0;
    margin: 30px 0 0;

    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;

    list-style: none;
}

.ph-hero__assurances li {
    position: relative;

    padding-left: 20px;

    color: #5d5853;

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

.ph-hero__assurances li::before {
    content: "";

    position: absolute;
    left: 0;
    top: 50%;

    width: 9px;
    height: 9px;

    border: 2px solid #ffffff;
    border-radius: 50%;

    background: var(--ph-green);
    box-shadow: 0 0 0 2px var(--ph-green);

    transform: translateY(-50%);
}


/* =========================================================
   TARJETA DE MIGRACIÓN
========================================================= */

.ph-hero__visual {
    position: relative;
}

.ph-migration-card {
    position: relative;

    padding: clamp(25px, 4vw, 38px);

    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #37302a 0%,
            #211c18 70%
        );

    box-shadow: 0 30px 70px rgba(33, 28, 24, .25);
}

.ph-migration-card::before {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    right: 24px;
    top: 20px;

    border-radius: 50%;

    background: rgba(242, 138, 26, .12);
    filter: blur(2px);
}

.ph-migration-card__header {
    position: relative;
    z-index: 1;

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

    padding-bottom: 24px;

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

.ph-status-dot {
    flex: 0 0 auto;

    width: 13px;
    height: 13px;

    border: 3px solid rgba(47, 155, 87, .3);
    border-radius: 50%;

    background: #65d78c;
    box-shadow: 0 0 18px rgba(101, 215, 140, .65);
}

.ph-migration-card__header small,
.ph-migration-card__header strong {
    display: block;
}

.ph-migration-card__header small {
    margin-bottom: 4px;

    color: rgba(255, 255, 255, .62);

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ph-migration-card__header strong {
    font-size: 17px;
}

.ph-migration-card__route {
    display: grid;
    grid-template-columns: 1fr 64px 1fr;
    align-items: center;
    gap: 13px;

    padding: 35px 0;
}

.ph-server-node {
    min-height: 112px;
    padding: 20px 16px;

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

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

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

.ph-server-node--destination {
    border-color: rgba(242, 138, 26, .46);
    background: rgba(242, 138, 26, .11);
}

.ph-server-node span {
    margin-bottom: 7px;

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

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.ph-server-node strong {
    font-size: 14px;
    line-height: 1.4;
}

.ph-route-arrow {
    position: relative;

    height: 2px;

    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, .25),
        var(--ph-orange)
    );
}

.ph-route-arrow::after {
    content: "";

    position: absolute;
    right: -1px;
    top: 50%;

    width: 8px;
    height: 8px;

    border-top: 2px solid var(--ph-orange);
    border-right: 2px solid var(--ph-orange);

    transform: translateY(-50%) rotate(45deg);
}

.ph-route-arrow span {
    position: absolute;
    left: 50%;
    top: 50%;

    width: 10px;
    height: 10px;

    border: 2px solid var(--ph-orange);
    border-radius: 50%;

    background: var(--ph-coffee);

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

.ph-migration-card__list {
    padding: 0;
    margin: 0;

    display: grid;
    gap: 13px;

    list-style: none;
}

.ph-migration-card__list li {
    display: flex;
    align-items: center;
    gap: 11px;

    color: rgba(255, 255, 255, .78);

    font-size: 13px;
    line-height: 1.5;
}

.ph-migration-card__list li span {
    color: #6fdfa0;
    font-weight: 800;
}

.ph-experience-badge {
    position: absolute;
    right: -28px;
    bottom: -30px;

    min-width: 168px;
    padding: 17px 20px;

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

    border: 5px solid #fff8f0;
    border-radius: 16px;

    color: var(--ph-coffee);
    background: var(--ph-orange);

    box-shadow: 0 18px 35px rgba(33, 28, 24, .18);
}

.ph-experience-badge strong {
    font-size: 31px;
    line-height: 1;
}

.ph-experience-badge span {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}


/* =========================================================
   FRANJA DE CONFIANZA
========================================================= */

.ph-trust {
    position: relative;
    z-index: 2;

    border-top: 1px solid var(--ph-border);
    border-bottom: 1px solid var(--ph-border);

    background: #ffffff;
}

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

.ph-trust article {
    padding: 28px clamp(20px, 4vw, 45px);
    text-align: center;
}

.ph-trust article + article {
    border-left: 1px solid var(--ph-border);
}

.ph-trust strong,
.ph-trust span {
    display: block;
}

.ph-trust strong {
    margin-bottom: 6px;

    color: var(--ph-coffee);

    font-size: 15px;
}

.ph-trust span {
    color: var(--ph-muted);
    font-size: 12px;
}


/* =========================================================
   MOTIVOS
========================================================= */

.ph-reasons {
    background: #ffffff;
}

.ph-reasons__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.ph-reason-card {
    min-height: 280px;
    padding: 32px;

    border: 1px solid var(--ph-border);
    border-radius: 18px;

    background: #ffffff;

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

.ph-reason-card:hover {
    transform: translateY(-6px);

    border-color: rgba(242, 138, 26, .5);
    box-shadow: 0 20px 40px rgba(45, 36, 28, .08);
}

.ph-reason-card__number {
    width: 48px;
    height: 48px;

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

    margin-bottom: 42px;

    border-radius: 50%;

    color: var(--ph-orange-dark);
    background: rgba(242, 138, 26, .12);

    font-size: 13px;
    font-weight: 800;
}

.ph-reason-card h3 {
    margin: 0 0 13px;

    color: var(--ph-coffee);

    font-size: 20px;
    line-height: 1.35;
}

.ph-reason-card p {
    margin: 0;

    color: var(--ph-muted);

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   PROCESO
========================================================= */

.ph-process {
    background: var(--ph-light);
}

.ph-process__grid {
    padding: 0;
    margin: 0;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;

    list-style: none;
}

.ph-process-card {
    padding: 28px;

    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 20px;

    border: 1px solid #eadfd5;
    border-radius: 17px;

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

.ph-process-card__number {
    width: 58px;
    height: 58px;

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

    border-radius: 14px;

    color: #ffffff;
    background: var(--ph-coffee);

    font-size: 15px;
    font-weight: 800;
}

.ph-process-card h3 {
    margin: 3px 0 9px;

    color: var(--ph-coffee);

    font-size: 18px;
}

.ph-process-card p {
    margin: 0;

    color: var(--ph-muted);

    font-size: 13px;
    line-height: 1.75;
}

.ph-process__message {
    margin-top: 26px;
    padding: 24px 30px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;

    border-radius: 14px;

    color: #ffffff;
    background: var(--ph-green);

    text-align: center;
}

.ph-process__message span,
.ph-process__message strong {
    font-size: clamp(15px, 2vw, 18px);
}


/* =========================================================
   QUÉ TRASLADAMOS
========================================================= */

.ph-transfer {
    background: #ffffff;
}

.ph-transfer__grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    align-items: center;
    gap: clamp(50px, 8vw, 100px);
}

.ph-transfer__intro p + p {
    margin-top: 18px;
}

.ph-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 28px;

    color: var(--ph-orange-dark);

    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
}

.ph-text-link span {
    font-size: 21px;

    transition: transform .2s ease;
}

.ph-text-link:hover span {
    transform: translateX(5px);
}

.ph-transfer__checklist {
    padding: clamp(28px, 5vw, 45px);

    border: 1px solid var(--ph-border);
    border-radius: 22px;

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

.ph-transfer__checklist h3 {
    margin: 0 0 27px;

    color: var(--ph-coffee);

    font-size: 24px;
}

.ph-transfer__checklist ul {
    padding: 0;
    margin: 0;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;

    list-style: none;
}

.ph-transfer__checklist li {
    display: grid;
    grid-template-columns: 31px 1fr;
    align-items: start;
    gap: 11px;
}

.ph-transfer__checklist li > span {
    width: 29px;
    height: 29px;

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

    border-radius: 50%;

    color: #ffffff;
    background: var(--ph-green);

    font-size: 13px;
    font-weight: 800;
}

.ph-transfer__checklist strong {
    display: block;
    margin-bottom: 5px;

    color: var(--ph-coffee);

    font-size: 14px;
}

.ph-transfer__checklist p {
    margin: 0;

    color: var(--ph-muted);

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

.ph-transfer__note {
    margin-top: 28px !important;
    padding-top: 20px;

    border-top: 1px solid var(--ph-border);

    font-size: 11px !important;
    line-height: 1.7 !important;
}


/* =========================================================
   SERVICIOS COMPLEMENTARIOS
========================================================= */

.ph-support {
    background: var(--ph-soft);
}

.ph-support__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.ph-support-card {
    min-height: 255px;
    padding: 28px 25px;

    border: 1px solid var(--ph-border);
    border-radius: 17px;

    background: #ffffff;
}

.ph-support-card > span {
    display: block;
    margin-bottom: 47px;

    color: var(--ph-orange-dark);

    font-size: 13px;
    font-weight: 800;
}

.ph-support-card h3 {
    margin: 0 0 12px;

    color: var(--ph-coffee);

    font-size: 18px;
}

.ph-support-card p {
    margin: 0;

    color: var(--ph-muted);

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


/* =========================================================
   PREGUNTAS FRECUENTES
========================================================= */

.ph-faq {
    background: #ffffff;
}

.ph-faq__grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    align-items: start;
    gap: clamp(50px, 8vw, 100px);
}

.ph-faq__intro {
    position: sticky;
    top: 130px;
}

.ph-faq__list {
    display: grid;
    gap: 13px;
}

.ph-faq details {
    overflow: hidden;

    border: 1px solid var(--ph-border);
    border-radius: 13px;

    background: #ffffff;
}

.ph-faq details[open] {
    border-color: rgba(242, 138, 26, .4);
    box-shadow: 0 14px 30px rgba(38, 31, 25, .06);
}

.ph-faq summary {
    position: relative;

    padding: 21px 56px 21px 22px;

    color: var(--ph-coffee);

    cursor: pointer;

    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;

    list-style: none;
}

.ph-faq summary::-webkit-details-marker {
    display: none;
}

.ph-faq summary::after {
    content: "+";

    position: absolute;
    right: 20px;
    top: 50%;

    width: 28px;
    height: 28px;

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

    border-radius: 50%;

    color: var(--ph-orange-dark);
    background: rgba(242, 138, 26, .12);

    font-size: 19px;

    transform: translateY(-50%);
}

.ph-faq details[open] summary::after {
    content: "−";
}

.ph-faq details p {
    padding: 0 22px 22px;
    margin: 0;

    color: var(--ph-muted);

    font-size: 13px;
    line-height: 1.8;
}


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

.ph-final {
    padding: clamp(75px, 9vw, 110px) 0;

    background:
        radial-gradient(
            circle at 87% 25%,
            rgba(242, 138, 26, .18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #211c18,
            #302821
        );
}

.ph-eyebrow--dark {
    color: #ffad55;
}

.ph-final__content {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
}

.ph-final h2 {
    max-width: 760px;
    color: #ffffff;
}

.ph-final p {
    max-width: 700px;
    color: rgba(255, 255, 255, .68);
}

.ph-final__actions {
    min-width: 225px;

    display: grid;
    gap: 12px;
}


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

@media (max-width: 980px) {

    .ph-hero__grid,
    .ph-transfer__grid,
    .ph-faq__grid {
        grid-template-columns: 1fr;
    }

    .ph-hero__visual {
        max-width: 650px;
    }

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

    .ph-reason-card:last-child {
        grid-column: 1 / -1;
    }

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

    .ph-faq__intro {
        position: static;
    }

    .ph-final__content {
        grid-template-columns: 1fr;
    }

    .ph-final__actions {
        min-width: 0;
        grid-template-columns: repeat(2, auto);
        justify-content: start;
    }

}

@media (max-width: 700px) {

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

    .ph-hero {
        padding-top: 132px;
    }

    .ph-hero__content h1 {
        font-size: clamp(38px, 11vw, 52px);
        letter-spacing: -2px;
    }

    .ph-hero__actions,
    .ph-final__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ph-button {
        width: 100%;
    }

    .ph-experience-badge {
        position: relative;
        right: auto;
        bottom: auto;

        width: max-content;
        margin: 16px 0 0 auto;

        border-width: 0;
    }

    .ph-trust__grid,
    .ph-reasons__grid,
    .ph-process__grid,
    .ph-support__grid {
        grid-template-columns: 1fr;
    }

    .ph-trust article + article {
        border-top: 1px solid var(--ph-border);
        border-left: 0;
    }

    .ph-reason-card:last-child {
        grid-column: auto;
    }

    .ph-reason-card {
        min-height: 0;
    }

    .ph-reason-card__number {
        margin-bottom: 28px;
    }

    .ph-process-card {
        grid-template-columns: 48px 1fr;
        padding: 22px;
    }

    .ph-process-card__number {
        width: 48px;
        height: 48px;
    }

    .ph-transfer__checklist ul {
        grid-template-columns: 1fr;
    }

    .ph-support-card {
        min-height: 0;
    }

    .ph-support-card > span {
        margin-bottom: 28px;
    }

}

@media (max-width: 480px) {

    .ph-migration-card__route {
        grid-template-columns: 1fr;
    }

    .ph-route-arrow {
        width: 2px;
        height: 42px;
        margin-inline: auto;

        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, .25),
            var(--ph-orange)
        );
    }

    .ph-route-arrow::after {
        right: 50%;
        top: auto;
        bottom: 0;

        transform: translateX(50%) rotate(135deg);
    }

    .ph-route-arrow span {
        left: 50%;
        top: 50%;
    }

    .ph-process-card {
        grid-template-columns: 1fr;
    }

}

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

    .ph-button,
    .ph-reason-card,
    .ph-text-link span {
        transition: none;
    }

}