/* =================================================================
   INFLUENCER PARTNERSHIP LANDING PAGE STYLES
   ================================================================= */


/* Body background to prevent white bar beneath header */
body {
    background: linear-gradient(180deg, var(--forest-mid) 0%, var(--forest) 100%) !important;
}

.landing-influencer {
    background:
        radial-gradient(ellipse 90% 60% at 5% 15%, rgba(212,175,55,0.20) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 95% 35%, rgba(212,175,55,0.15) 0%, transparent 45%),
        radial-gradient(ellipse 80% 55% at 15% 65%, rgba(212,175,55,0.12) 0%, transparent 50%),
        radial-gradient(ellipse 65% 45% at 90% 80%, rgba(212,175,55,0.18) 0%, transparent 45%),
        linear-gradient(180deg, var(--forest-mid) 0%, var(--forest) 100%);
    min-height: 100vh;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
}

.landing-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

/* =================================================================
   SECTION HEADINGS (shared)
   ================================================================= */
.ip-section-title {
    font-family: 'Cinzel', Georgia, serif;
    color: var(--forest-mid);
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    margin-bottom: 16px;
    font-weight: 700;
}

.ip-section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.ip-section-title-light {
    font-family: 'Cinzel', Georgia, serif;
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    margin-bottom: 16px;
    font-weight: 700;
}

.ip-section-subtitle-light {
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* =================================================================
   PAGE HERO (typographic banner)
   ================================================================= */
.ip-page-hero {
    background: linear-gradient(135deg, var(--forest-mid) 0%, var(--forest) 100%);
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 64px 40px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 48px;
}

.ip-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(212,175,55,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212,175,55,0.10) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212,175,55,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.ip-page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,175,55,0.15);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(212,175,55,0.3);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.ip-page-hero-title {
    font-family: 'Cinzel', Georgia, serif;
    font-size: clamp(2.4rem, 6vw, 3.8rem);
    color: var(--gold);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2), 0 0 40px rgba(212,175,55,0.15);
}

.ip-page-hero-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto;
    border-radius: 2px;
    position: relative;
    z-index: 1;
}

.ip-page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* =================================================================
   HERO SECTION
   ================================================================= */
.ip-hero {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 60px 48px;
    margin-bottom: 48px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.ip-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--forest-mid);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ip-hero h2 {
    font-family: 'Cinzel', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--forest-mid);
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 700;
}

.ip-hero h2 strong {
    color: var(--gold);
    display: block;
}

.ip-hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ip-hero .btn-primary {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--forest-mid);
    box-shadow: 0 6px 24px rgba(212,175,55,0.35);
}

.ip-hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(212,175,55,0.5);
}

/* =================================================================
   WHY PARTNER WITH US (icon cards)
   ================================================================= */
.ip-benefits {
    margin-bottom: 48px;
}

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

.ip-benefit-card {
    background: var(--white);
    border: 2px solid var(--forest-mid);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}

.ip-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.ip-benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.ip-benefit-card h3 {
    font-family: 'Cinzel', Georgia, serif;
    color: var(--forest-mid);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.ip-benefit-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* =================================================================
   COMPENSATION TIERS (tabs + tables)
   ================================================================= */
.ip-compensation {
    background: var(--white);
    border: 2px solid var(--forest-mid);
    border-radius: var(--radius-lg);
    padding: 48px;
    margin-bottom: 48px;
}

.ip-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.ip-tab-btn {
    padding: 12px 28px;
    border: 2px solid var(--forest-mid);
    border-radius: 30px;
    background: transparent;
    color: var(--forest-mid);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
}

.ip-tab-btn:hover {
    background: var(--cream);
}

.ip-tab-btn.active {
    background: var(--forest-mid);
    color: var(--white);
    border-color: var(--forest-mid);
}

.ip-tab-panel {
    display: none;
}

.ip-tab-panel.active {
    display: block;
}

.ip-tier-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
}

.ip-tier-table thead th {
    background: var(--forest-mid);
    color: var(--white);
    padding: 14px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ip-tier-table thead th:first-child {
    border-radius: var(--radius-sm) 0 0 0;
}

.ip-tier-table thead th:last-child {
    border-radius: 0 var(--radius-sm) 0 0;
}

.ip-tier-table tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.ip-tier-table tbody tr:last-child td {
    border-bottom: none;
}

.ip-tier-table tbody tr:nth-child(even) {
    background: var(--cream);
}

.ip-tier-table tbody tr:hover {
    background: rgba(212,175,55,0.08);
}

.ip-tier-highlight {
    font-weight: 700;
    color: var(--forest-mid);
}

/* Bonus callout */
.ip-bonus-banner {
    background: linear-gradient(135deg, var(--forest-mid) 0%, var(--forest) 100%);
    border: 2px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 32px;
    margin-top: 32px;
}

.ip-bonus-banner h3 {
    font-family: 'Cinzel', Georgia, serif;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.ip-bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.ip-bonus-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    text-align: center;
}

.ip-bonus-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
}

.ip-bonus-label {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
}

/* =================================================================
   IDEAL PARTNER PROFILE
   ================================================================= */
.ip-profile {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 48px;
    margin-bottom: 48px;
}

.ip-profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.ip-profile-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.ip-profile-check {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--forest-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 700;
}

.ip-profile-item p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    padding-top: 6px;
}

/* =================================================================
   HOW IT WORKS (timeline)
   ================================================================= */
.ip-process {
    margin-bottom: 48px;
}

.ip-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    position: relative;
}

.ip-timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    z-index: 0;
}

.ip-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.ip-step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--forest-mid);
    border: 3px solid var(--white);
    box-shadow: var(--shadow-md);
}

.ip-step h3 {
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.ip-step p {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    line-height: 1.4;
    margin: 0;
}

/* =================================================================
   APPLICATION FORM SECTION
   ================================================================= */
.ip-application {
    background: var(--white);
    border: 2px solid var(--forest-mid);
    border-radius: var(--radius-lg);
    padding: 48px;
    margin-bottom: 48px;
    text-align: center;
}

.ip-application .ip-section-title {
    margin-bottom: 12px;
}

.ip-application-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Container for the shortcode form output */
.ip-form-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

/* =================================================================
   FAQ SECTION (accordion)
   ================================================================= */
.ip-faq {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 48px;
    margin-bottom: 48px;
}

.ip-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.ip-faq-item {
    background: var(--white);
    border: 2px solid var(--forest-mid);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
}

.ip-faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--forest-mid);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition);
    font-family: 'Montserrat', sans-serif;
}

.ip-faq-question:hover {
    background: var(--cream);
}

.ip-faq-question[aria-expanded="true"] {
    background: var(--forest-mid);
    color: var(--white);
}

.ip-faq-question[aria-expanded="true"] span {
    color: var(--white);
}

.ip-faq-icon {
    font-size: 1.2rem;
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.ip-faq-question[aria-expanded="true"] .ip-faq-icon {
    transform: rotate(180deg);
}

.ip-faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.ip-faq-answer.open {
    padding: 20px 24px;
    max-height: 600px;
}

.ip-faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0 0 12px;
    font-size: 0.95rem;
}

.ip-faq-answer p:last-child {
    margin-bottom: 0;
}

/* =================================================================
   FOOTER CTA
   ================================================================= */
.ip-footer-cta {
    background: linear-gradient(135deg, var(--forest-mid) 0%, var(--forest) 100%);
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 60px 48px;
    text-align: center;
}

.ip-footer-cta h2 {
    font-family: 'Cinzel', Georgia, serif;
    color: var(--gold);
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 16px;
    font-weight: 700;
}

.ip-footer-cta p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ip-footer-cta .cta-btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--forest-mid);
    padding: 18px 40px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 6px 24px rgba(212,175,55,0.35);
}

.ip-footer-cta .cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(212,175,55,0.5);
}

/* =================================================================
   RESPONSIVE DESIGN
   ================================================================= */
@media (max-width: 968px) {
    .ip-page-hero {
        padding: 48px 24px 40px;
    }

    .ip-hero {
        padding: 40px 32px;
    }

    .ip-compensation,
    .ip-profile,
    .ip-faq,
    .ip-application {
        padding: 32px 24px;
    }

    .ip-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .ip-timeline::before {
        display: none;
    }

    .ip-tier-table thead th,
    .ip-tier-table tbody td {
        padding: 12px 14px;
        font-size: 0.88rem;
    }

    .ip-footer-cta {
        padding: 40px 24px;
    }
}

@media (max-width: 640px) {
    .landing-container {
        padding: 24px 16px 60px;
    }

    .ip-page-hero {
        padding: 32px 14px 24px;
        border-radius: 20px;
    }

    .ip-hero {
        padding: 28px 20px;
    }

    .ip-hero h2 {
        font-size: 1.6rem;
    }

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

    .ip-hero .btn-primary {
        width: 100%;
        text-align: center;
    }

    .ip-benefits-grid {
        grid-template-columns: 1fr;
    }

    .ip-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .ip-tab-btn {
        text-align: center;
    }

    .ip-tier-table {
        font-size: 0.85rem;
    }

    .ip-tier-table thead th,
    .ip-tier-table tbody td {
        padding: 10px 12px;
        font-size: 0.82rem;
    }

    .ip-bonus-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ip-profile-grid {
        grid-template-columns: 1fr;
    }

    .ip-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ip-footer-cta {
        padding: 32px 20px;
    }

    .ip-footer-cta .cta-btn-primary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ip-bonus-grid {
        grid-template-columns: 1fr;
    }

    .ip-timeline {
        grid-template-columns: 1fr;
    }
}

