/* ============================================
   CUSTOM PAGE STYLES
   (Add to style.css or load separately)
   ============================================ */

/* --- Custom Page Hero --- */
.custom-page-hero {
    background: linear-gradient(135deg, #e91e8c 0%, #c2185b 50%, #880e4f 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.custom-page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.05) 0%, transparent 40%);
}

.custom-page-hero .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.custom-page-hero .hero-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #f0d9b5;
    margin-bottom: 16px;
}

.custom-page-hero h1 {
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
}

.custom-page-hero .hero-description {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Start Here Page --- */
.start-intro {
    padding: 80px 0;
}

.intro-text h2 {
    margin-bottom: 24px;
    font-size: 2rem;
}

.intro-text p {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #2d2d44;
}

/* Roadmap */
.roadmap-section {
    padding: 60px 0 80px;
    background: #f8f8fc;
}

.roadmap-steps {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.roadmap-step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e8e8ef;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.roadmap-step:hover {
    border-color: #f48fb1;
    box-shadow: 0 8px 40px rgba(233, 30, 140, 0.12);
    transform: translateY(-3px);
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e91e8c, #c2185b);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.step-content p {
    color: #6b6b80;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Must Read */
.must-read-section {
    padding: 80px 0;
}

/* Coming Soon Card */
.coming-soon-card {
    background: #fff0f5;
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    border: 2px dashed #f48fb1;
    grid-column: 1 / -1;
}

.coming-soon-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

.coming-soon-card h3 {
    margin-bottom: 10px;
}

.coming-soon-card p {
    color: #6b6b80;
}

/* Community CTA */
.community-cta {
    padding: 80px 0;
    background: #f8f8fc;
}

.cta-box {
    background: linear-gradient(135deg, #e91e8c 0%, #c2185b 100%);
    border-radius: 24px;
    padding: 60px 48px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.cta-box > * {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 2rem;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

/* --- About Page --- */
.about-mission {
    padding: 80px 0;
}

.mission-block {
    text-align: center;
}

.mission-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.mission-block h2 {
    margin-bottom: 24px;
    font-size: 2rem;
}

.mission-block p {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #2d2d44;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Values */
.values-section {
    padding: 80px 0;
    background: #f8f8fc;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.value-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    border: 1px solid #e8e8ef;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    border-color: #f48fb1;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.value-card p {
    color: #6b6b80;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Who For */
.who-for-section {
    padding: 80px 0;
}

.who-for-block h2 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 2rem;
}

.for-list {
    max-width: 600px;
    margin: 0 auto 32px;
}

.for-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f5;
    font-size: 1.02rem;
    line-height: 1.6;
    color: #2d2d44;
}

.for-check {
    flex-shrink: 0;
    color: #e91e8c;
    font-weight: 800;
    font-size: 1.1rem;
}

.for-disclaimer {
    text-align: center;
    font-size: 0.95rem;
    color: #6b6b80;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fff0f5;
    border-radius: 12px;
}

/* Story */
.story-section {
    padding: 80px 0;
    background: #f8f8fc;
}

.story-block h2 {
    margin-bottom: 24px;
    font-size: 2rem;
    text-align: center;
}

.story-block p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #2d2d44;
}

/* --- Resources Page --- */
.resources-section {
    padding: 80px 0;
}

.resources-section.alt-bg {
    background: #f8f8fc;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.resource-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid #e8e8ef;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    border-color: #f48fb1;
}

.resource-badge {
    display: inline-block;
    background: #e91e8c;
    color: #fff;
    padding: 3px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 9999px;
    margin-bottom: 14px;
}

.badge-tool {
    background: #d4a574;
}

.badge-podcast {
    background: #1a1a2e;
}

.resource-card h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.resource-author {
    color: #e91e8c;
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 12px;
}

.resource-card p {
    color: #6b6b80;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

/* Community Resources */
.community-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.community-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    border: 1px solid #e8e8ef;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.community-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    border-color: #f48fb1;
}

.community-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.community-card h3 {
    margin-bottom: 12px;
}

.community-card p {
    color: #6b6b80;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link-btn {
    display: inline-block;
    padding: 8px 18px;
    background: #fff0f5;
    color: #e91e8c;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 9999px;
    border: 1px solid #f48fb1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link-btn:hover {
    background: #e91e8c;
    color: #fff;
    border-color: #e91e8c;
}

/* --- Contact Page --- */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form-wrapper h2 {
    margin-bottom: 12px;
}

.contact-intro {
    color: #6b6b80;
    margin-bottom: 32px;
    font-size: 1.02rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #2d2d44;
    margin-bottom: 6px;
}

.form-group label .required {
    color: #e91e8c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8e8ef;
    border-radius: 10px;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    color: #2d2d44;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #e91e8c;
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
}

.form-consent {
    margin-top: 8px;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400 !important;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #e91e8c;
}

.checkbox-label span {
    font-size: 0.85rem;
    color: #6b6b80;
    line-height: 1.5;
}

/* Contact Info Cards */
.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e8e8ef;
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #fff0f5;
}

.info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid #f5f5fa;
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-item p {
    font-size: 0.88rem;
    color: #6b6b80;
    margin-bottom: 6px;
}

.info-item a {
    color: #e91e8c;
    font-weight: 600;
}

/* FAQ Card */
.faq-card {
    background: linear-gradient(135deg, #fff0f5, #fff);
}

.faq-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(233, 30, 140, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #e91e8c;
    margin-bottom: 6px;
}

.faq-item p {
    font-size: 0.88rem;
    color: #6b6b80;
    line-height: 1.5;
}

/* --- Contact Form Notices --- */
.contact-notice {
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 24px;
    text-align: center;
}

.contact-notice.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.contact-notice.error {
    background: #fff3e0;
    color: #e65100;
    border: 1px solid #ffcc80;
}

/* --- Responsive for Custom Pages --- */
@media (max-width: 768px) {
    .custom-page-hero {
        padding: 60px 0;
    }

    .roadmap-step {
        flex-direction: column;
        gap: 16px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .values-grid,
    .resources-grid,
    .tools-grid,
    .community-resources {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .custom-page-hero h1 {
        font-size: 2rem;
    }

    .roadmap-step {
        padding: 24px;
    }
}
