/* ============================================================
   CANNABIS 101 PAGE
   ============================================================ */

.c101-breadcrumb {
    background: var(--forest-authority);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 0;
}

.c101-hero {
    background: var(--forest-authority);
    color: #fff;
    padding: 78px 0 86px;
    position: relative;
    overflow: hidden;
}

.c101-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(212, 168, 67, 0.11), transparent 42%),
        radial-gradient(circle at 78% 24%, rgba(143, 186, 159, 0.18), transparent 30%);
    pointer-events: none;
}

.c101-hero-inner,
.c101-content-grid,
.c101-step-grid,
.c101-cta-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.c101-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: 52px;
    align-items: center;
}

.c101-eyebrow,
.c101-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    padding: 5px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--insight-highlight);
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.25);
}

.c101-hero h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin: 22px 0 20px;
}

.c101-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.c101-hero-actions,
.c101-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.c101-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    border-radius: 6px;
    padding: 12px 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.c101-btn-primary {
    background: var(--insight-highlight);
    color: var(--forest-authority);
    border-color: var(--insight-highlight);
}

.c101-btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.28);
}

.c101-btn:hover {
    transform: translateY(-1px);
}

.c101-compound-panel {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}

.c101-compound-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.c101-compound-row:last-child {
    border-bottom: 0;
}

.c101-compound-row span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
}

.c101-compound-row i {
    color: var(--insight-highlight);
    font-size: 22px;
}

.c101-compound-row strong {
    color: #fff;
    text-align: right;
}

.c101-section {
    padding: var(--section-pad);
}

.c101-content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.c101-feature,
.c101-step-card {
    background: #fff;
    border: 1px solid rgba(11, 59, 47, 0.08);
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(11, 59, 47, 0.08);
}

.c101-feature {
    padding: 34px;
}

.c101-feature-wide {
    grid-column: 1 / -1;
}

.c101-feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(11, 59, 47, 0.08);
    color: var(--forest-authority);
    font-size: 25px;
    margin-bottom: 18px;
}

.c101-feature h2,
.c101-section-header h2,
.c101-cta-inner h2 {
    font-family: 'Manrope', sans-serif;
    color: var(--readable-ink);
    letter-spacing: -0.02em;
}

.c101-feature h2 {
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.2;
    margin-bottom: 14px;
}

.c101-feature p,
.c101-step-card p,
.c101-cta-inner p {
    color: var(--subtle-ui);
    line-height: 1.75;
}

.c101-steps {
    background: var(--soft-cream);
}

.c101-section-header {
    max-width: 780px;
    margin: 0 auto 34px;
    text-align: center;
}

.c101-section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.16;
    margin-top: 16px;
}

.c101-step-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.c101-step-card {
    padding: 26px;
}

.c101-step-card span {
    display: inline-flex;
    color: var(--insight-highlight);
    font-weight: 800;
    margin-bottom: 16px;
}

.c101-step-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    color: var(--readable-ink);
    margin-bottom: 10px;
}

.c101-faq {
    background: #fff;
}

.c101-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    color: #fff;
}

.c101-cta-inner h2 {
    color: #fff;
    font-size: clamp(26px, 4vw, 40px);
    margin-bottom: 10px;
}

.c101-cta-inner p {
    color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 960px) {
    .c101-hero-inner,
    .c101-content-grid,
    .c101-cta-inner {
        grid-template-columns: 1fr;
    }

    .c101-step-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .c101-cta-inner {
        display: block;
    }
}

@media (max-width: 640px) {
    .c101-hero {
        padding: 54px 0 62px;
    }

    .c101-step-grid {
        grid-template-columns: 1fr;
    }

    .c101-compound-row {
        display: block;
    }

    .c101-compound-row strong {
        display: block;
        text-align: left;
        margin-top: 8px;
    }
}
