/* ==========================================================
   SUBCREWZ — Landing Page Typography & Spacing Standard
   Loaded on: index, features, comparison, pricing-plans
   ========================================================== */

/* -- CSS variables ---------------------------------------- */
:root {
    --lp-heading:    #1a1a2e;
    --lp-body:       #666;
    --lp-subtle:     #888;
    --lp-accent:     #3392e0;
    --lp-success:    #36bd78;
    --lp-section-py: 65px;
}

/* -- Section headlines ------------------------------------- */
.section-headline h2 {
    font-size: 2rem;
    color: var(--lp-heading);
    line-height: 1.3;
    margin-bottom: 12px;
}
.section-headline p {
    font-size: 1.05rem;
    color: var(--lp-body);
    line-height: 1.7;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* -- Feature section layout headings ----------------------- */
.lp-feature-heading {
    font-size: 2rem;
    color: var(--lp-heading);
    line-height: 1.3;
    margin: 0 0 20px 0;
}

/* -- Body / lead text -------------------------------------- */
.lp-lead {
    font-size: 1.05rem;
    color: var(--lp-body);
    line-height: 1.7;
    margin-bottom: 25px;
}
.lp-body {
    font-size: 1rem;
    color: var(--lp-body);
    line-height: 1.7;
}

/* -- Eyebrow label above heading --------------------------- */
.lp-eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

/* -- Feature bullet list ----------------------------------- */
.lp-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}
.lp-feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
}
.lp-feature-list li .lp-icon {
    font-size: 18px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}
.lp-feature-list li span {
    color: var(--lp-body);
    line-height: 1.6;
    font-size: 1rem;
}

/* -- CTA section ------------------------------------------- */
.cta-section h2,
.cta-section h3 {
    color: #fff;
}
.cta-section p {
    color: rgba(255,255,255,0.8);
}

/* -- Testimonial boxes ------------------------------------- */
.testimonial-box .testimonial p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}
.testimonial-author h4 {
    color: var(--lp-heading);
    font-size: 15px;
    margin-bottom: 2px;
}

/* -- Titlebar --------------------------------------------- */
#titlebar h1 {
    font-size: 2.25rem;
    line-height: 1.25;
}

/* -- Icon boxes (Why GCs Switch) --------------------------- */
.icon-box h3 {
    font-size: 1.1rem;
    color: var(--lp-heading);
    margin-top: 0;
    margin-bottom: 10px;
}
.icon-box p {
    color: var(--lp-body);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* -- Shared comparison / feature matrix table -------------- */
.comparison-table-wrap {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}
.comparison-table th {
    background: linear-gradient(135deg, #3392e0 0%, #2a7bb8 100%);
    color: #fff;
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}
.comparison-table th:first-child { width: 28%; }
.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--lp-body);
    font-size: 14px;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) { background: #f8f9fa; }
.comparison-table .feature-name {
    font-weight: 600;
    color: #333;
}
.comparison-table .check {
    color: #36bd78;
    font-size: 18px;
    text-align: center;
}
.comparison-table .cross {
    color: #e74c3c;
    font-size: 18px;
    text-align: center;
}
.comparison-table .partial {
    color: #f1c40f;
    font-size: 18px;
    text-align: center;
}
.comparison-table .cell-center {
    text-align: center;
}
