/* File: app/static/css/public.css */
/* Public-facing page styles for PixelSuite Hub Help Center */

/* ===== Public Page Overrides ===== */
/* Override the gray background from layout.css for public pages */
body {
    background: #f8fafc;
}

.wrapper {
    background: #f8fafc;
}

.content {
    background: #f8fafc;
}

/* Remove extra padding from container for better hero display */
.content > .container {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
}

/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(135deg, var(--ps-blue) 0%, var(--ps-blue-dark) 100%);
    padding: 4rem 2rem 5rem;
    color: white;
    border-radius: 16px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(117, 255, 219, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Search Box ===== */
.search-box {
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 0.5rem;
    transition: all 0.2s ease;
}

.search-input-wrapper:focus-within {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--ps-teal, #75FFDB);
}

.search-icon {
    width: 24px;
    height: 24px;
    margin: 0 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    padding: 0.5rem;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-input:focus {
    outline: none;
}

.search-btn {
    background: var(--ps-teal, #75FFDB);
    color: var(--ps-blue-dark, #003d5c);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-btn:hover {
    background: #5ce0c4;
    transform: translateY(-1px);
}

/* Popular Searches */
.popular-searches {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.popular-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.popular-tag {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.popular-tag:hover {
    background: rgba(117, 255, 219, 0.3);
    color: white;
}

/* ===== Quick Links Section ===== */
.quick-links-section {
    margin-bottom: 2rem;
}

.quick-link-card {
    display: block;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.quick-link-card:hover {
    border-color: var(--ps-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 100, 162, 0.15);
}

.quick-link-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--ps-blue) 0%, var(--ps-blue-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.quick-link-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.quick-link-title {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.quick-link-text {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0;
}

/* ===== Section Styling ===== */
.section-header {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

/* ===== Getting Started Section ===== */
.getting-started-section {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.step-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.2s ease;
}

.step-card:hover {
    border-color: var(--ps-blue);
    box-shadow: 0 4px 12px rgba(0, 100, 162, 0.1);
}

.step-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--ps-blue) 0%, var(--ps-blue-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.step-title {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-text {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-link {
    color: var(--ps-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.step-link:hover {
    color: var(--ps-blue-dark);
}

/* ===== Popular Articles Section ===== */
.popular-articles-section {
    margin-bottom: 2rem;
}

.article-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.article-card:hover {
    border-color: var(--ps-blue);
    box-shadow: 0 4px 12px rgba(0, 100, 162, 0.1);
}

.article-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 100, 162, 0.1) 0%, rgba(0, 100, 162, 0.05) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.article-icon svg {
    width: 24px;
    height: 24px;
    color: var(--ps-blue);
}

.article-title {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.article-excerpt {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0;
}

/* ===== CTA Section ===== */
.cta-section {
    margin-bottom: 2rem;
}

.cta-card {
    background: linear-gradient(135deg, var(--ps-blue) 0%, var(--ps-blue-dark) 100%);
    border-radius: 16px;
    padding: 2.5rem;
    color: white;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-text {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 1rem;
}

.cta-section .btn-light {
    background: white;
    color: var(--ps-blue);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
}

.cta-section .btn-light:hover {
    background: var(--ps-teal);
    color: var(--ps-blue-dark);
}

/* ===== Page Hero ===== */
.page-hero {
    background: linear-gradient(135deg, var(--ps-blue) 0%, var(--ps-blue-dark) 100%);
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    border-radius: 16px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(117, 255, 219, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero-sm {
    padding: 2rem 1.5rem;
}

.page-hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
}

.page-hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

/* ===== Content Sections ===== */
.content-section {
    padding: 2rem 0;
}

.content-section.pt-0 {
    padding-top: 0;
}

/* ===== Documentation Page ===== */
.docs-browser-section {
    margin-bottom: 2rem;
}

.docs-sidebar {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    position: sticky;
    top: 1rem;
}

.docs-sidebar-section {
    margin-bottom: 1.5rem;
}

.docs-sidebar-section:last-child {
    margin-bottom: 0;
}

.docs-sidebar-title {
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.docs-sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.docs-sidebar-links li {
    margin-bottom: 0.25rem;
}

.docs-sidebar-links a {
    color: #475569;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.375rem 0;
    display: block;
    transition: all 0.2s ease;
}

.docs-sidebar-links a:hover,
.docs-sidebar-links a.active {
    color: var(--ps-blue);
}

.docs-content {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    min-height: 400px;
}

.docs-breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.docs-breadcrumb a {
    color: #64748b;
    text-decoration: none;
}

.docs-breadcrumb a:hover {
    color: var(--ps-blue);
}

.docs-breadcrumb .separator {
    color: #cbd5e1;
    margin: 0 0.5rem;
}

.docs-breadcrumb .current {
    color: #1e293b;
}

.docs-content-title {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.docs-intro {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.docs-placeholder {
    text-align: center;
    padding: 3rem;
    color: #64748b;
}

.docs-placeholder svg {
    margin-bottom: 1rem;
    opacity: 0.5;
}

.docs-category-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.docs-category-card:hover {
    border-color: var(--ps-blue);
    box-shadow: 0 4px 12px rgba(0, 100, 162, 0.1);
}

.docs-category-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--ps-blue) 0%, var(--ps-blue-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.docs-category-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.docs-category-card h4 {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.docs-category-card p {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0;
}

/* ===== FAQ Page ===== */
.faq-section {
    margin-bottom: 2rem;
}

.faq-categories {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    position: sticky;
    top: 1rem;
}

.faq-categories-title {
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.faq-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-categories-list li {
    margin-bottom: 0.25rem;
}

.faq-categories-list a {
    color: #475569;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    display: block;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.faq-categories-list a:hover,
.faq-categories-list a.active {
    background: rgba(0, 100, 162, 0.1);
    color: var(--ps-blue);
}

.faq-category {
    margin-bottom: 2rem;
}

.faq-category-title {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-item.open {
    border-color: var(--ps-blue);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #1e293b;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-arrow {
    width: 20px;
    height: 20px;
    color: #64748b;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: var(--ps-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
    color: #475569;
    padding: 0 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.faq-answer p:last-child,
.faq-answer ul:last-child,
.faq-answer ol:last-child {
    padding-bottom: 1rem;
}

.faq-answer a {
    color: var(--ps-blue);
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 2.5rem;
}

/* ===== Contact Page ===== */
.contact-option-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.2s ease;
}

.contact-option-card:hover {
    border-color: var(--ps-blue);
    box-shadow: 0 4px 12px rgba(0, 100, 162, 0.1);
}

.contact-option-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--ps-blue) 0%, var(--ps-blue-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-option-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-option-title {
    color: #1e293b;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-option-text {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-option-link {
    color: var(--ps-blue);
    text-decoration: none;
    font-weight: 500;
    display: block;
}

.contact-option-link:hover {
    color: var(--ps-blue-dark);
}

.contact-option-hours {
    display: block;
    color: #94a3b8;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.contact-info-sidebar {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
}

.sidebar-title {
    color: #1e293b;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sidebar-text {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.support-hours h5,
.response-times h5,
.employee-access h5 {
    color: #64748b;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.support-hours ul,
.response-times ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.support-hours li,
.response-times li {
    display: flex;
    justify-content: space-between;
    color: #475569;
    font-size: 0.9rem;
    padding: 0.375rem 0;
}

.sidebar-divider {
    border-color: #e2e8f0;
    margin: 1.5rem 0;
}

.employee-access p {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.btn-primary-outline {
    background: transparent;
    border: 2px solid var(--ps-blue);
    color: var(--ps-blue);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary-outline:hover {
    background: var(--ps-blue);
    color: white;
}

.btn-primary-outline.btn-sm {
    padding: 0.375rem 0.875rem;
    font-size: 0.875rem;
}

/* ===== Brand Suffix ===== */
.brand-suffix {
    font-weight: 400;
    opacity: 0.8;
}

/* ===== Footer Link Hover ===== */
.footer a.footer-text:hover {
    color: var(--ps-blue);
}

/* ===== PixelSuite Links Card (Contact Page) ===== */
.pixelsuite-links-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
}

.pixelsuite-links-card h4 {
    color: #1e293b;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #475569;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.resource-link:hover {
    background: rgba(0, 100, 162, 0.08);
    color: var(--ps-blue);
}

.resource-link svg {
    color: var(--ps-blue);
    flex-shrink: 0;
}

/* ===== Feature Cards ===== */
.feature-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.2s ease;
}

.feature-card:hover {
    border-color: var(--ps-blue);
    box-shadow: 0 8px 25px rgba(0, 100, 162, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--ps-blue) 0%, var(--ps-blue-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.feature-title {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-text {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== Info Cards ===== */
.info-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem;
}

.info-card-icon {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.info-card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--ps-blue);
}

.info-card-title {
    color: #1e293b;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-card-text {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
}

/* ===== Stat Cards ===== */
.stat-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ps-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
}

/* ===== Badge Styles ===== */
.badge-success-light {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.badge-warning-light {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.badge-info-light {
    background: rgba(0, 100, 162, 0.1);
    color: var(--ps-blue);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ===== Link Arrow ===== */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ps-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.link-arrow:hover {
    color: var(--ps-blue-dark);
    gap: 0.75rem;
}

.link-arrow svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.link-arrow:hover svg {
    transform: translateX(3px);
}

/* ===== Divider with Text ===== */
.divider-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 1.5rem 0;
}

.divider-text::before,
.divider-text::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

/* ===== Alert Boxes ===== */
.alert-box {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.alert-box-info {
    background: rgba(0, 100, 162, 0.08);
    border: 1px solid rgba(0, 100, 162, 0.2);
}

.alert-box-info svg {
    color: var(--ps-blue);
    flex-shrink: 0;
}

.alert-box-info p {
    color: #1e293b;
    margin: 0;
    font-size: 0.9rem;
}

.alert-box-success {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-box-success svg {
    color: #059669;
    flex-shrink: 0;
}

.alert-box-warning {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.alert-box-warning svg {
    color: #d97706;
    flex-shrink: 0;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-section {
        padding: 3rem 1.5rem;
    }

    .faq-categories,
    .docs-sidebar {
        position: static;
        margin-bottom: 1.5rem;
    }

    .contact-info-sidebar {
        margin-top: 1.5rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .cta-card {
        padding: 1.5rem;
        text-align: center;
    }

    .cta-title {
        font-size: 1.25rem;
    }

    .page-hero {
        padding: 2rem 1.5rem;
    }

    .page-hero-title {
        font-size: 1.5rem;
    }

    .getting-started-section {
        padding: 1.5rem;
    }

    .step-card {
        padding: 1.25rem;
    }

    .quick-link-card {
        padding: 1.25rem;
    }

    .article-card {
        flex-direction: column;
        text-align: center;
    }

    .article-icon {
        margin: 0 auto;
    }

    .docs-content {
        padding: 1.5rem;
    }

    .contact-option-card {
        padding: 1.25rem;
    }

    .pixelsuite-links-card {
        padding: 1.5rem;
    }

    .resource-link {
        padding: 0.5rem 0.75rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .search-input-wrapper {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .search-btn {
        width: 100%;
    }

    .search-icon {
        display: none;
    }

    .popular-searches {
        flex-direction: column;
    }
}
