/* Patients Page Specific Styles */

.patients-page {
    background-color: var(--bg-white);
}

/* Hero */
.patients-hero {
    background: var(--bg-white);
    padding: 160px 64px 112px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.patients-hero-inner {
    max-width: 956px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.patients-hero-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 80px;
    font-weight: 500;
    line-height: 80px;
    color: var(--text-dark);
    font-variation-settings: 'opsz' 14, 'wdth' 100;
}

.patients-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    line-height: 32px;
    color: var(--text-subdued);
}

.store-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.store-button-dark {
    background: var(--black);
    border-radius: 8px;
    padding: 12px 20px 12px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.store-button-dark:hover {
    opacity: 0.9;
}

.store-icon {
    width: 32px;
    height: 32px;
}

.store-text-small {
    font-size: 12px;
    line-height: 16px;
    color: var(--text-disabled);
}

.store-text-large {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: var(--bg-white);
}

/* Hero image and bullets */
.patients-hero-visual {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.patients-hero-phone {
    width: 971px;
    max-width: 100%;
}

.patients-hero-phone img {
    width: 100%;
    height: auto;
    display: block;
}

.patients-hero-bullets {
    display: flex;
    gap: 16px;
    width: 100%;
    max-width: 1312px;
}

.patients-hero-bullets .bullet {
    flex: 1;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.patients-hero-bullets .bullet-line {
    width: 75px;
    height: 1px;
    background: #d8d9da;
    transform: rotate(90deg);
    transform-origin: left center;
    margin-top: 38px;
}

.patients-hero-bullets p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-subdued);
}

/* App overview cards section */
.patients-app-overview {
    background: var(--bg-light);
    padding: 88px 64px 48px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.patients-card-main,
.patients-card,
.patients-card-wide {
    background: var(--bg-white);
    border-radius: 24px;
}

.patients-card-main {
    width: 465px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 668px;
}

.patients-card-main h3,
.patients-card h3,
.patients-card-wide h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.patients-card-main p,
.patients-card p,
.patients-card-wide p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-subdued);
}

.patients-card-main-image {
    width: 332px;
    height: 460px;
    margin: 0 auto;
}

.patients-card-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.patients-card-column {
    width: 357px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.patients-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.patients-card-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.patients-card-icon-wrapper.yellow {
    background: #fdfaee;
}

.patients-card-icon-wrapper.green {
    background: #f4fce8;
}

.patients-card-icon {
    width: 40px;
    height: 40px;
}

.patients-card-wide {
    width: 466px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 668px;
}

.patients-card-wide-image {
    border-radius: 12px;
    overflow: hidden;
}

.patients-card-wide-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Pocket AI-Doc section */
.patients-ai-section {
    background: #f4fce8;
    padding: 48px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.patients-ai-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.patients-ai-header h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 56px;
    font-weight: 500;
    line-height: 64px;
    text-align: center;
    color: var(--text-dark);
}

.patients-ai-store-actions {
    display: flex;
    gap: 12px;
}

.patients-ai-chat {
    position: relative;
    width: 100%;
    max-width: 1312px;
}

.patients-ai-bubble {
    max-width: 529px;
    padding: 16px;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
}

.patients-ai-bubble.bot {
    background: #e1edce;
    border: 1px solid var(--border-default);
    color: var(--text-dark);
}

.patients-ai-bubble.user {
    background: #77ad23;
    border: 1px solid var(--border-default);
    color: #ffffff;
    margin-left: auto;
}

/* Patients FAQs section (reuses existing FAQ look but copy for page) */
.patients-faqs {
    background: #0f0f0f;
    padding: 88px 64px;
    display: flex;
    gap: 24px;
}

.patients-faqs-header {
    width: 485px;
}

.patients-faqs-header h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 96px;
    font-weight: 700;
    line-height: 96px;
    color: #ffffff;
    margin-bottom: 24px;
    font-variation-settings: 'opsz' 14, 'wdth' 100;
}

.patients-faqs-header p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    line-height: 32px;
    color: var(--text-subdued);
}

.patients-faqs-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.patients-faq-card {
    background: var(--bg-gray);
    border-radius: 12px;
    border: 1px solid var(--border-default);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.patients-faq-card:hover {
    background: #ffffff;
}

.patients-faq-card h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: var(--text-dark);
}

.patients-faq-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1200px) {
    .patients-hero {
        padding: 160px 40px 80px;
    }

    .patients-hero-title {
        font-size: 64px;
        line-height: 68px;
    }

    .patients-hero-phone {
        width: 100%;
    }

    .patients-hero-bullets {
        flex-direction: column;
    }

    .patients-app-overview {
        padding: 64px 40px 40px;
    }

    .patients-faqs {
        flex-direction: column;
    }

    .patients-faqs-header {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .patients-hero {
        padding: 140px 20px 60px;
    }

    .patients-hero-title {
        font-size: 40px;
        line-height: 44px;
    }

    .patients-hero-subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .patients-hero-bullets .bullet-line {
        display: none;
    }

    .patients-app-overview {
        padding: 48px 20px 32px;
    }

    .patients-card-main,
    .patients-card-column,
    .patients-card-wide {
        width: 100%;
        max-width: 465px;
    }

    .patients-ai-section {
        padding: 48px 20px;
    }

    .patients-ai-header h2 {
        font-size: 40px;
        line-height: 48px;
    }

    .patients-faqs {
        padding: 48px 20px;
    }

    .patients-faqs-header h2 {
        font-size: 56px;
        line-height: 64px;
    }
}


