/* Shared Sub-Page Styles — matches homepage design system */

/* Override body background to match homepage blue-white gradient */
body {
    background: linear-gradient(180deg, #fdfcfb 0%, #a9dbff 30%, #ffffff 100%) !important;
    background-attachment: fixed !important;
}

/* Page Hero */
.page-hero {
    padding: 140px 0 70px;
    background: transparent;
}

.page-hero h1 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.page-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    line-height: 1.7;
}

.page-hero .last-updated {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    font-weight: 400;
}

/* Page Content */
.page-content {
    padding: 60px 0 100px;
}

.page-content h2 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 1.65rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.page-content p {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Legal Content Sections */
.legal-content {
    max-width: 800px;
}

.legal-content h2 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 1.45rem;
    font-weight: 600;
    margin: 40px 0 16px;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 28px 0 12px;
    color: var(--color-text);
}

.legal-content p {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 1rem;
}

.legal-content ul {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 14px;
    padding-left: 24px;
    font-size: 1rem;
}

.legal-content li {
    margin-bottom: 6px;
}

.legal-content a {
    color: #667eea;
    font-weight: 500;
}

/* Content Sections */
.content-section {
    margin-bottom: 56px;
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 24px;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--color-text);
    opacity: 1;
}

/* Cards (value cards, right cards, perk items, etc.) */
.value-card,
.right-card,
.perk-item,
.contact-card,
.blog-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.value-card:hover,
.contact-card:hover,
.blog-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.value-card h3,
.right-card h4,
.perk-item h4,
.contact-card h3,
.blog-title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.value-card p,
.right-card p,
.perk-item p,
.contact-card p,
.blog-excerpt {
    font-family: 'Inter', sans-serif;
}

/* Team highlight */
.team-highlight {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 44px;
    margin-top: 44px;
}

.team-highlight h2 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

/* Jobs section */
.jobs-section {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 44px;
    text-align: center;
}

.jobs-section h2 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

.jobs-empty {
    background: rgba(255, 255, 255, 0.7);
    border: 2px dashed rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}

.jobs-empty h3 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

/* Callout box */
.callout-box {
    background: rgba(102, 126, 234, 0.08);
    border-left: 4px solid #667eea;
    border-radius: 0 12px 12px 0;
    padding: 24px;
    margin: 28px 0;
}

.callout-box p {
    font-family: 'Inter', sans-serif;
    margin-bottom: 0;
}

/* FAQ callout */
.faq-callout {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 44px;
    margin-top: 56px;
    text-align: center;
}

.faq-callout h2 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

.faq-callout p {
    font-family: 'Inter', sans-serif;
}

/* Contact icon */
.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    fill: none;
}

/* Contact link */
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-link:hover {
    text-decoration: underline;
    opacity: 1;
}

/* Cookie table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: 'Inter', sans-serif;
}

.cookie-table th,
.cookie-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.95rem;
}

.cookie-table th {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.5);
    color: var(--color-text);
}

.cookie-table td {
    color: var(--color-text-secondary);
}

/* Blog image placeholder (replaces emojis) */
.blog-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image svg {
    width: 48px;
    height: 48px;
    stroke: rgba(255, 255, 255, 0.9);
    fill: none;
    stroke-width: 1.5;
}

/* Blog meta */
.blog-category {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #667eea;
}

.blog-meta {
    font-family: 'Inter', sans-serif;
}

.coming-soon-badge {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
}

/* Newsletter section */
.newsletter-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    border-radius: 20px;
    padding: 56px;
    margin-top: 72px;
    text-align: center;
    color: #fff;
}

.newsletter-section h2 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 1.85rem;
    letter-spacing: -0.02em;
}

.newsletter-section p {
    font-family: 'Inter', sans-serif;
    opacity: 0.8;
}

/* Rights grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin: 28px 0;
}

.right-card {
    padding: 22px;
}

.right-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.right-card p {
    margin-bottom: 0;
    font-size: 0.92rem;
}

/* Values grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.value-card {
    padding: 28px;
}

.value-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Perks grid */
.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.perk-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
}

.perk-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.perk-icon svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}

.perk-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.perk-item p {
    font-size: 0.92rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Contact grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.contact-card {
    padding: 36px;
    text-align: center;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Blog grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.blog-card {
    overflow: hidden;
}

.blog-body {
    padding: 24px;
}

.blog-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 14px;
}