/* Guest Post page — Figma node 5014:17849 | brand tokens from indexmain.css */

.gp-accent {
    color: #7b61ff;
}

/* Hero — dark navy with wave visual */
.gp-hero-section {
    position: relative;
     background-image: url("../images/guest-post/hero.webp");
    padding: 70px 0 50px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;

}

/* .gp-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(58%, 780px);
    background-image: url("../images/guest-post/hero.webp");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
} */

.gp-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.gp-hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 560px;
}

.gp-hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 50px;
    color: var(--white);
    margin: 0;
}

.gp-hero-content p {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #d8d6e8;
    margin: 0;
    max-width: 520px;
}

.gp-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    background: linear-gradient(90deg, #6957ff 0%, #8b74ff 100%);
    color: var(--white) !important;
    font-family: Inter, sans-serif !important;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(105, 87, 255, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gp-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(105, 87, 255, 0.45);
    color: var(--white) !important;
}

.gp-hero-cta i {
    font-size: 14px;
}

.gp-hero-points {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gp-hero-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 22px;
    color: #f0eefc;
}

.gp-hero-points i {
    color: #c4b5ff;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Stats */
.gp-stats-section {
    padding: 70px 0 60px;
    background: linear-gradient(180deg, #f3f0ff 0%, #ebe6ff 50%, #f7f5ff 100%);
    text-align: center;
}

.gp-stats-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    color: var(--headt-color);
    margin: 0 auto 36px;
    max-width: 920px;
}

.gp-stat-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 20px;
    height: 100%;
    box-shadow: 0 4px 24px rgba(5, 5, 62, 0.06);
}

.gp-stat-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    color: #7b61ff;
    margin: 0 0 10px;
}

.gp-stat-card p {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #5f5d68;
    margin: 0;
}

.gp-stats-note {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: var(--headt-color);
    margin: 32px auto 0;
    max-width: 820px;
}

/* Problem */
.gp-problem-section {
    padding: 70px 0;
    background: var(--white);
}

.gp-problem-header {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.gp-problem-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    color: var(--headt-color);
    margin: 0;
}

.gp-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.gp-problem-card {
    background: #f5f6ff;
    border-radius: 20px;
    padding: 28px 24px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gp-problem-card span {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #7b61ff;
}

.gp-problem-card h3 {
    font-family: Inter, sans-serif !important;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    color: var(--headt-color);
    margin: 0;
}

.gp-problem-card p {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #5f5d68;
    margin: 0;
}

.gp-problem-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #f5f6ff;
    min-height: 220px;
}

.gp-problem-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 991.98px) {
    .gp-problem-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .gp-problem-grid {
        grid-template-columns: 1fr;
    }

    .gp-problem-image {
        min-height: 240px;
    }
}

/* Services */
.gp-services-section {
    padding: 70px 0;
    background: var(--white);
}

.gp-services-header {
    margin-bottom: 40px;
    text-align: center;
}

.gp-services-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    color: var(--headt-color);
    margin: 0 0 8px;
}

.gp-services-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    color: var(--headt-color);
    margin: 0 0 10px;
}

.gp-services-header p {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #5f5d68;
    margin: 0;
}

.gp-service-card {
    background: #f5f6ff;
    border: 1px solid rgba(123, 97, 255, 0.12);
    border-radius: 20px;
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gp-service-card--accent {
    background: #ebe7ff;
    border-color: rgba(123, 97, 255, 0.22);
}

.gp-service-image {
    border-radius: 14px;
    overflow: hidden;
    height: 220px;
    flex-shrink: 0;
    background: #e8e6f8;
}

.gp-service-image img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.gp-service-card span {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #7b61ff;
    padding: 0 4px;
}

.gp-service-card h3 {
    font-family: Inter, sans-serif !important;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    color: var(--headt-color);
    margin: 0;
    padding: 0 4px;
}

.gp-service-card p {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #5f5d68;
    margin: 0;
    padding: 0 4px 8px;
}

/* FAQ */
.gp-faq-section {
    padding: 70px 0;
    background: #f3f0ff;
    position: relative;
    overflow: hidden;
}

.gp-faq-section::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(123, 97, 255, 0.18);
    border-radius: 50%;
    top: -80px;
    right: -120px;
    pointer-events: none;
}

.gp-faq-section .container-width {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gp-faq-header {
    width: 100%;
    max-width: 900px;
    margin: 0 0 36px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.gp-faq-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    color: var(--headt-color);
    margin: 0;
    text-align: center;
}

.gp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    margin: 0;
}

.gp-faq-section .faq-item {
    background: var(--white);
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow: 0 4px 20px rgba(5, 5, 62, 0.05);
}

.gp-faq-section .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
}

.gp-faq-section .faq-question h4 {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    color: var(--headt-color);
    margin: 0;
}

.gp-faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #a99cff;
    background: transparent;
    color: #7b61ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease, background 0.2s ease;
}

.gp-faq-section .faq-item.active .gp-faq-toggle {
    transform: rotate(45deg);
    background: rgba(123, 97, 255, 0.08);
}

.gp-faq-section .faq-answer {
    display: none;
    padding-top: 12px;
}

.gp-faq-section .faq-item.active .faq-answer {
    display: block;
}

.gp-faq-section .faq-answer p {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #5f5d68;
    margin: 0;
    max-width: 860px;
}

/* Contact */
.gp-contact-section {
    position: relative;
    padding: 80px 0;
    min-height: 720px;
    overflow: hidden;
    background: #1a1a3a;
}

.gp-contact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gp-contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
}

.gp-contact-section .container-width {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}

.gp-contact-form-wrap {
    width: 100%;
    max-width: 560px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}

.gp-contact-form-header {
    background: linear-gradient(90deg, #6957ff 0%, #8b74ff 100%);
    padding: 18px 24px;
    text-align: center;
}

.gp-contact-form-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    color: var(--white);
    margin: 0;
}

.gp-contact-form {
    padding: 24px;
}

.gp-label {
    display: block;
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--headt-color);
    margin-bottom: 6px;
}

.gp-label span {
    color: #e11d48;
}

.gp-input {
    width: 100%;
    border: 1px solid #d4d4de;
    border-radius: 8px;
    padding: 10px 12px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 22px;
    color: var(--headt-color);
    background: var(--white);
    outline: none;
}

.gp-input:focus {
    border-color: #7b61ff;
}

.gp-contact-form small {
    display: block;
    margin-top: 4px;
    font-family: Inter, sans-serif;
    font-size: 12px;
    color: #8b8a96;
}

.gp-phone-row {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.gp-phone-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid #d4d4de;
    border-radius: 8px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    white-space: nowrap;
    background: #f8f8fc;
}

.gp-sms-title {
    font-family: Inter, sans-serif !important;
    font-weight: 700;
    font-size: 16px;
    color: var(--headt-color);
    margin: 8px 0 10px;
}

.gp-sms-box {
    border: 1px solid #cfcfda;
    border-radius: 8px;
    padding: 12px 14px;
    font-family: Inter, sans-serif;
    font-size: 13px;
    line-height: 20px;
    color: #5f5d68;
    margin-bottom: 12px;
}

.gp-sms-box a {
    color: var(--headt-color);
    text-decoration: underline;
}

.gp-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: Inter, sans-serif;
    font-size: 13px;
    line-height: 20px;
    color: #5f5d68;
    cursor: pointer;
}

.gp-checkbox input {
    margin-top: 3px;
    flex-shrink: 0;
}

.gp-textarea {
    resize: vertical;
    min-height: 110px;
}

.gp-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 12px 36px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(90deg, #6957ff 0%, #8b74ff 100%);
    color: var(--white);
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    margin-top: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gp-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(105, 87, 255, 0.3);
}

/* Responsive */
@media (max-width: 991.98px) {
    .gp-hero-content h1,
    .gp-stats-section h2,
    .gp-problem-header h2,
    .gp-services-header h2,
    .gp-faq-header h2 {
        font-size: 34px;
        line-height: 42px;
    }

    .gp-hero-section {
        padding: 40px 0 28px;
        min-height: auto;
    }

    .gp-hero-bg {
        width: 100%;
        opacity: 0.22;
        background-position: center right;
        background-size: cover;
    }

    .gp-hero-content {
        max-width: 100%;
    }

    .gp-contact-section .container-width {
        justify-content: center;
    }

    .gp-contact-bg img {
        object-position: center top;
        opacity: 0.35;
    }
}

@media (max-width: 767.98px) {
    .gp-hero-content h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .gp-hero-bg {
        display: none;
    }

    .gp-stats-section h2,
    .gp-problem-header h2,
    .gp-services-header h2,
    .gp-faq-header h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .gp-services-header h3 {
        font-size: 22px;
        line-height: 30px;
    }

    .gp-hero-cta {
        width: 100%;
        justify-content: center;
    }

    .gp-contact-form-wrap {
        max-width: 100%;
    }

    .gp-contact-form {
        padding: 18px;
    }
}
