/* =========================================================
   GET HOSTING COUPON
   HOMEPAGE
========================================================= */

:root {
    --ghc-purple: #673de6;
    --ghc-purple-dark: #4c20c9;
    --ghc-purple-light: #f5f1ff;

    --ghc-text: #211633;
    --ghc-muted: #6d6479;

    --ghc-border: #e7e0f2;
    --ghc-white: #ffffff;
}


/* =========================================================
   FULL WIDTH
========================================================= */

.home .site-content,
.front-page .site-content {
    width: 100%;
    max-width: none;
    padding: 0;
}

.home .content-area,
.front-page .content-area {
    width: 100%;
    max-width: none;
    float: none;
    margin: 0;
}

.home .site-main,
.front-page .site-main {
    margin: 0;
}

.home .inside-article,
.front-page .inside-article {
    padding: 0;
}

.home .entry-header,
.front-page .entry-header {
    display: none;
}

.home .entry-content,
.front-page .entry-content {
    margin: 0;
}


/* =========================================================
   GENERAL
========================================================= */

.ghc-home {
    color: var(--ghc-text);
    overflow: hidden;
}

.ghc-home *,
.ghc-home *::before,
.ghc-home *::after {
    box-sizing: border-box;
}

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

.ghc-home a {
    text-decoration: none;
}


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

.ghc-home-hero {
    padding: 80px 0 100px;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(103, 61, 230, 0.15),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8f5ff 100%
        );
}

.ghc-home-container {
    position: relative;
}

.ghc-home-hero .ghc-home-container {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;
}

.ghc-home-badge {
    display: inline-block;

    padding: 9px 16px;

    border-radius: 30px;

    background: var(--ghc-purple-light);
    color: var(--ghc-purple);

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

    margin-bottom: 22px;
}

.ghc-home-hero h1 {
    margin: 0 0 22px;

    font-size: clamp(45px, 6vw, 72px);

    line-height: 1.02;

    letter-spacing: -2px;

    font-weight: 700;
}

.ghc-home-hero h1 span {
    display: block;
    color: var(--ghc-purple);
}

.ghc-home-hero-content > p {
    max-width: 600px;

    margin: 0 0 30px;

    color: var(--ghc-muted);

    font-size: 18px;

    line-height: 1.7;
}

.ghc-home-hero-actions {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 30px;
}

.ghc-home-primary-btn {
    display: inline-flex;

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

    gap: 10px;

    padding: 16px 25px;

    border-radius: 10px;

    background: var(--ghc-purple);

    color: white;

    font-size: 15px;
    font-weight: 700;

    box-shadow:
        0 12px 30px rgba(103, 61, 230, 0.25);

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

.ghc-home-primary-btn:hover {
    background: var(--ghc-purple-dark);

    color: white;

    transform: translateY(-2px);
}

.ghc-home-primary-btn span {
    font-size: 20px;
}

.ghc-home-secondary-btn {
    display: inline-flex;

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

    padding: 15px 22px;

    border: 1px solid var(--ghc-border);

    border-radius: 10px;

    color: var(--ghc-text);

    font-size: 15px;
    font-weight: 700;

    background: white;
}

.ghc-home-secondary-btn:hover {
    border-color: var(--ghc-purple);

    color: var(--ghc-purple);
}

.ghc-home-trust {
    display: flex;

    flex-wrap: wrap;

    gap: 22px;

    color: var(--ghc-muted);

    font-size: 13px;
}

.ghc-home-trust strong {
    color: var(--ghc-purple);
}


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

.ghc-home-hero-visual {
    position: relative;

    min-height: 470px;

    display: flex;

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

.ghc-home-main-visual {
    width: 90%;

    border-radius: 16px;

    overflow: hidden;

    background: white;

    box-shadow:
        0 30px 70px rgba(65, 35, 130, .18);

    transform: rotate(2deg);
}

.ghc-home-visual-header {
    height: 38px;

    display: flex;

    align-items: center;

    gap: 7px;

    padding-left: 15px;

    background: #f6f3fa;
}

.ghc-home-visual-header span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #d1c8dc;
}

.ghc-home-visual-body {
    display: flex;

    min-height: 330px;
}

.ghc-home-visual-sidebar {
    width: 75px;

    padding: 30px 17px;

    background: var(--ghc-purple);
}

.ghc-home-visual-sidebar div {
    height: 8px;

    margin-bottom: 22px;

    border-radius: 10px;

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

.ghc-home-visual-content {
    flex: 1;

    padding: 50px 35px;
}

.ghc-visual-title {
    width: 65%;

    height: 20px;

    margin-bottom: 30px;

    border-radius: 10px;

    background: #dcd1f7;
}

.ghc-visual-line {
    width: 90%;

    height: 9px;

    margin-bottom: 12px;

    border-radius: 10px;

    background: #eee8f8;
}

.ghc-visual-line.short {
    width: 65%;
}

.ghc-visual-grid {
    display: grid;

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

    gap: 15px;

    margin-top: 35px;
}

.ghc-visual-grid div {
    height: 100px;

    border-radius: 10px;

    background: var(--ghc-purple-light);
}


/* floating cards */

.ghc-home-floating-card {
    position: absolute;

    z-index: 2;

    display: flex;

    flex-direction: column;

    padding: 18px 20px;

    border-radius: 14px;

    background: white;

    box-shadow:
        0 15px 40px rgba(50, 20, 100, .15);
}

.ghc-home-floating-card span {
    color: var(--ghc-purple);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}

.ghc-home-floating-card strong {
    margin: 5px 0;

    font-size: 20px;
}

.ghc-home-floating-card small {
    color: var(--ghc-muted);
}

.ghc-card-one {
    right: 0;

    top: 55px;
}

.ghc-card-two {
    left: 0;

    bottom: 30px;
}


/* =========================================================
   SECTIONS
========================================================= */

.ghc-home-deals,
.ghc-home-why,
.ghc-home-how {
    padding: 90px 0;
}

.ghc-home-deals {
    background: white;
}

.ghc-home-why {
    background: #faf8ff;
}

.ghc-home-how {
    background: white;
}

.ghc-home-section-heading {
    display: flex;

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

    gap: 30px;

    margin-bottom: 45px;
}

.ghc-home-section-heading.centered {
    display: block;

    text-align: center;

    max-width: 700px;

    margin-left: auto;
    margin-right: auto;
}

.ghc-home-eyebrow {
    display: block;

    margin-bottom: 10px;

    color: var(--ghc-purple);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.ghc-home-section-heading h2 {
    margin: 0;

    font-size: 43px;

    line-height: 1.1;
}

.ghc-home-section-heading > p {
    max-width: 450px;

    margin: 0;

    color: var(--ghc-muted);

    line-height: 1.6;
}


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

.ghc-home-provider-grid {
    display: grid;

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

    gap: 22px;
}

.ghc-home-provider-card {
    padding: 28px;

    border: 1px solid var(--ghc-border);

    border-radius: 17px;

    background: white;

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

.ghc-home-provider-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 45px rgba(60, 30, 120, .10);
}

.ghc-provider-card-top {
    display: flex;

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

    margin-bottom: 25px;
}

.ghc-provider-logo {
    width: 50px;
    height: 50px;

    display: flex;

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

    border-radius: 12px;

    background: var(--ghc-purple-light);

    color: var(--ghc-purple);

    font-size: 22px;

    font-weight: 800;
}

.ghc-provider-tag {
    padding: 6px 10px;

    border-radius: 20px;

    background: #f5f3f8;

    color: var(--ghc-muted);

    font-size: 11px;

    font-weight: 700;
}

.ghc-home-provider-card h3 {
    margin: 0 0 12px;

    font-size: 24px;
}

.ghc-home-provider-card > p {
    min-height: 70px;

    margin: 0 0 25px;

    color: var(--ghc-muted);

    line-height: 1.6;
}

.ghc-provider-card-bottom {
    display: flex;

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

    padding-top: 18px;

    border-top: 1px solid var(--ghc-border);
}

.ghc-provider-card-bottom span {
    color: var(--ghc-muted);

    font-size: 14px;

    font-weight: 600;
}

.ghc-provider-card-bottom a {
    width: 38px;
    height: 38px;

    display: flex;

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

    border-radius: 50%;

    background: var(--ghc-purple);

    color: white;

    font-size: 18px;
}


/* =========================================================
   WHY
========================================================= */

.ghc-home-why-grid {
    display: grid;

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

    gap: 25px;
}

.ghc-home-why-card {
    padding: 35px;

    text-align: center;

    background: white;

    border-radius: 17px;

    border: 1px solid var(--ghc-border);
}

.ghc-home-icon {
    width: 58px;
    height: 58px;

    display: flex;

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

    margin: 0 auto 20px;

    border-radius: 15px;

    background: var(--ghc-purple-light);

    font-size: 25px;
}

.ghc-home-why-card h3 {
    margin: 0 0 12px;

    font-size: 21px;
}

.ghc-home-why-card p {
    margin: 0;

    color: var(--ghc-muted);

    line-height: 1.6;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.ghc-home-steps {
    display: grid;

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

    gap: 30px;
}

.ghc-home-step {
    position: relative;

    padding: 35px;

    border-radius: 17px;

    border: 1px solid var(--ghc-border);
}

.ghc-step-number {
    margin-bottom: 20px;

    color: var(--ghc-purple);

    font-size: 15px;

    font-weight: 900;

    letter-spacing: 1px;
}

.ghc-home-step h3 {
    margin: 0 0 12px;

    font-size: 21px;
}

.ghc-home-step p {
    margin: 0;

    color: var(--ghc-muted);

    line-height: 1.6;
}


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

.ghc-home-final {
    padding: 90px 0;

    background: var(--ghc-purple);
}

.ghc-home-final-card {
    max-width: 750px;

    margin: auto;

    text-align: center;
}

.ghc-home-final .ghc-home-eyebrow {
    color: #dcd0ff;
}

.ghc-home-final h2 {
    margin: 0 0 15px;

    color: white;

    font-size: 48px;

    line-height: 1.1;
}

.ghc-home-final p {
    margin: 0 0 30px;

    color: #e4dcf5;

    font-size: 18px;

    line-height: 1.6;
}

.ghc-home-final .ghc-home-primary-btn {
    background: white;

    color: var(--ghc-purple);
}

.ghc-home-final .ghc-home-primary-btn:hover {
    background: #f2ecff;

    color: var(--ghc-purple-dark);
}


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

@media (max-width: 900px) {

    .ghc-home-hero .ghc-home-container {
        grid-template-columns: 1fr;
    }

    .ghc-home-hero-visual {
        min-height: 400px;
    }

    .ghc-home-provider-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ghc-home-why-grid {
        grid-template-columns: 1fr;
    }

    .ghc-home-steps {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .ghc-home-container {
        width: calc(100% - 28px);
    }

    .ghc-home-hero {
        padding: 55px 0 65px;
    }

    .ghc-home-hero h1 {
        font-size: 43px;
    }

    .ghc-home-hero-content > p {
        font-size: 16px;
    }

    .ghc-home-hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .ghc-home-primary-btn,
    .ghc-home-secondary-btn {
        width: 100%;
    }

    .ghc-home-trust {
        flex-direction: column;

        gap: 10px;
    }

    .ghc-home-hero-visual {
        min-height: 300px;
    }

    .ghc-home-main-visual {
        width: 100%;
    }

    .ghc-card-one {
        right: -5px;
        top: 20px;
    }

    .ghc-card-two {
        left: -5px;
        bottom: 10px;
    }

    .ghc-home-section-heading {
        display: block;
    }

    .ghc-home-section-heading > p {
        margin-top: 15px;
    }

    .ghc-home-section-heading h2 {
        font-size: 34px;
    }

    .ghc-home-provider-grid {
        grid-template-columns: 1fr;
    }

    .ghc-home-deals,
    .ghc-home-why,
    .ghc-home-how,
    .ghc-home-final {
        padding: 65px 0;
    }

    .ghc-home-final h2 {
        font-size: 36px;
    }

}