/* Press Release page — Figma node 4937:11653 | brand tokens from indexmain.css */

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

/* Hero */
.pr-hero-section {
    /* position: relative;
    background: linear-gradient(180deg, #f5f6ff 0%, #ebe7ff 55%, #f8f7ff 100%); */
    padding: 70px 0 50px;
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: center;
    background-image: url("../images/press-release/press-hero.webp");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

.trusted-section {
    margin-bottom: 50px !important;
}

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

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

.pr-hero-content h1 {
    font-weight: 700;
    line-height: 52px;
    color: var(--headt-color);
    margin: 0;
}

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

.pr-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.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

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

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

.pr-hero-points i {
    color: #7b61ff;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Stats */
.pr-stats-section {
    padding: 70px 0 60px;
    background: #fff;
    text-align: center;
}

.pr-stats-section h2 {

    line-height: 50px;
    color: var(--headt-color);
    margin: 0 auto 36px;
    max-width: 920px;
}

.pr-stat-card {
    background: linear-gradient(180deg, #f3f0ff 0%, #ebe6ff 50%, #f7f5ff 100%);
    border-radius: 16px;
    padding: 28px 20px;
    height: 100%;
    box-shadow: 0 4px 24px rgba(5, 5, 62, 0.06);
}

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

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

.pr-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 */
.pr-problem-section {
    padding: 70px 0;
    background: var(--white);
}

.pr-problem-header {
    max-width: 900px;
    margin-bottom: 30px;
    text-align: left;
}

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

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

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

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

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

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

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

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

.pr-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) {
    .pr-problem-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

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

/* Override calendly heading for this page pattern */
.pr-services-section+

/* noop */
.strategys-bookings-sections,
main>.strategys-bookings-sections {
    margin-top: 0;
}

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

.pr-services-header {
    margin-bottom: 40px;
}

.pr-services-header h2 {

    line-height: 48px;
    color: var(--headt-color);
    margin: 0 0 8px;
}

.pr-services-header h3 {

    line-height: 36px;
    color: var(--headt-color);
    margin: 0 0 10px;
}

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

.pr-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;
}

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

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

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

.pr-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;
}

.pr-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 */
.pr-faq-section {
    padding: 70px 0;
    background: #f3f0ff;
    position: relative;
    overflow: hidden;
}

.pr-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;
}

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

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

.pr-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;
}

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

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

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

.pr-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;
}

.pr-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;
}

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

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

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

.pr-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 */
.pr-contact-section {
    position: relative;
    padding: 80px 0;
    min-height: 720px;
    overflow: hidden;
    background: #1a1a3a;
}

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

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

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

.pr-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);
}

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

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

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

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

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

.pr-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;
}

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

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

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

.pr-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;
}

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

.pr-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;
}

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

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

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

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

.pr-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;
}

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

/* Responsive */
@media (max-width: 991.98px) {

    .pr-hero-content h1,
    .pr-stats-section h2,
    .pr-problem-header h2,
    .pr-services-header h2,
    .pr-faq-header h2 {
        font-size: 34px;
        line-height: 42px;
    }

    .pr-hero-section {
        padding: 40px 0 28px;
        min-height: auto;
        text-align: left;
    }

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

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

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

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

@media (max-width: 767.98px) {
    .pr-hero-content h1 {
        font-size: 30px;
        line-height: 38px;
    }

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

    .pr-hero-section {
        background: #efedf9;
    }

    .pr-hero-points {
        flex-wrap: wrap;
    }

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

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

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

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

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