/* Prefix: gh-htp- */

:root {
    --gh-blue: #008cff;
    --gh-deep: #0c30ce;
    --gh-dark: #0A0A23;
    --gh-card-bg: #13132E;
}

.gh-htp-page {
    background-color: var(--gh-dark);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.gh-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.gh-htp-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    background: linear-gradient(rgba(10, 10, 35, 0.8), rgba(10, 10, 35, 0.9)),
        url('https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=1740&q=80') center/cover;
}

.gh-htp-title {
    font-size: 4.5rem;
    font-family: 'Oxanium';
    background: linear-gradient(45deg, var(--gh-blue), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gh-htp-subheading {
    font-size: 2rem;
    color: var(--gh-blue);
    margin: 20px 0;
    min-height: 1.5em;
    font-family: 'Oxanium';
}

.gh-htp-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #ccc;
    line-height: 1.8;
}

/* Steps Grid */
.gh-htp-steps-section {
    padding: 100px 0;
}

.gh-htp-sec-title {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Oxanium';
    margin-bottom: 50px;
}

.gh-htp-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    gap: 30px;
}

.gh-htp-step-card {
    background: var(--gh-card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 140, 255, 0.1);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gh-htp-step-card:hover {
    transform: translateY(-12px);
    border-color: var(--gh-blue);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.gh-htp-step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--gh-deep), var(--gh-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

/* FAQ Smooth Accordion (Grid Trick) */
.gh-htp-faq-section {
    padding: 100px 0;
    background: #08081a;
}

.gh-htp-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.gh-htp-faq-item {
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gh-htp-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: 0.3s;
}

.gh-htp-faq-question.active {
    color: var(--gh-blue);
}

.gh-htp-faq-arrow {
    transition: 0.4s ease;
    color: var(--gh-blue);
}

.gh-htp-faq-arrow.rotated {
    transform: rotate(180deg);
    color: #fff;
}

/* THE SMOOTH MAGIC */
.gh-htp-faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.gh-htp-faq-answer-wrapper.is-open {
    grid-template-rows: 1fr;
}

.gh-htp-faq-answer {
    padding: 0 25px;
    min-height: 0;
    color: #aaa;
    line-height: 1.7;
}

.gh-htp-faq-answer-wrapper.is-open .gh-htp-faq-answer {
    padding-bottom: 25px;
}

/* CTA */
.gh-htp-cta {
    padding: 100px 0;
    text-align: center;
    background: #13132e;
    position: relative;
    border-top: 4px solid var(--gh-blue);
}

.gh-htp-cta-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Oxanium';
}

.gh-htp-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.gh-htp-btn {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Oxanium';
    transition: 0.3s;
}

.gh-htp-btn-primary {
    background: var(--gh-blue);
    color: #fff;
}

.gh-htp-btn-secondary {
    border: 2px solid var(--gh-blue);
    color: #fff;
}

.gh-htp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 140, 255, 0.3);
}

@media (max-width: 768px) {
    .gh-htp-title {
        font-size: 2.8rem;
    }

    .gh-htp-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}