/* ═══════════════════════════════════════════════════════
   HomePage Studios — Service Pages & Package Builder
   ═══════════════════════════════════════════════════════ */

/* ── Two Column Feature ────────────────────────── */
.two-col-feature {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}
.two-col-feature.reverse { direction: rtl; }
.two-col-feature.reverse > * { direction: ltr; }
.feature-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}
.feature-lead {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 16px;
}
.feature-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Highlight Card */
.highlight-card {
    background: var(--cream);
    padding: 40px 36px;
    border-left: 3px solid var(--gold);
}
.highlight-card .service-num {
    font-size: 56px;
    margin-bottom: 8px;
}

/* Competitor Lines */
.comp-line {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 14px;
}
.comp-line strong { color: var(--navy); }
.comp-line span { color: var(--text-light); }
.comp-line.ours {
    border-bottom: none;
    background: var(--navy);
    margin: 8px -36px -40px;
    padding: 16px 36px;
}
.comp-line.ours strong { color: var(--gold); }
.comp-line.ours span { color: var(--cream); font-weight: 600; }

/* ── Competitor Breakdown ──────────────────────── */
.competitor-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}
.comp-card {
    background: var(--white);
    padding: 32px 28px;
    border: 1px solid #e0ddd6;
}
.comp-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 8px;
}
.comp-price {
    font-family: var(--font-heading);
    font-size: 18px;
    color: #c0392b;
    display: block;
    margin-bottom: 12px;
}
.comp-card p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-light);
}

/* ── VS Banner ─────────────────────────────────── */
.vs-banner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
}
.vs-them, .vs-us {
    padding: 36px 32px;
}
.vs-them {
    background: var(--white);
    border: 1px solid #e0ddd6;
}
.vs-us { background: var(--navy); }
.vs-them h4, .vs-us h4 {
    font-family: var(--font-accent);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.vs-them h4 { color: var(--text-light); }
.vs-us h4 { color: var(--gold); }
.vs-them p { font-size: 14px; color: var(--text-light); line-height: 1.7; }
.vs-us p { font-size: 14px; color: rgba(245,243,239,0.7); line-height: 1.7; }
.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    width: 56px;
}

/* ── Speed Timeline ────────────────────────────── */
.speed-timeline { padding: 20px 0; }
.speed-step {
    display: flex;
    align-items: center;
    gap: 20px;
}
.speed-day {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: rgba(245,243,239,0.4);
    min-width: 80px;
}
.speed-label {
    font-size: 14px;
    color: rgba(245,243,239,0.5);
}
.speed-step.active .speed-day { color: var(--gold); font-size: 24px; font-weight: 500; }
.speed-step.active .speed-label { color: var(--cream); font-weight: 600; }
.speed-line {
    width: 1px;
    height: 28px;
    background: rgba(176,152,88,0.2);
    margin: 8px 0 8px 38px;
}

/* ── Include Grid ──────────────────────────────── */
.include-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.include-item {
    background: var(--white);
    padding: 32px 24px;
    transition: all 0.3s ease;
}
.include-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.include-item .service-num { font-size: 32px; margin-bottom: 12px; }
.include-item h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 8px;
}
.include-item p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-light);
}

/* ── STEP LABELS & PROGRESSIVE REVEAL ──────────── */
.builder-step-label {
    font-family: var(--font-accent);
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(176,152,88,0.2);
}
.hidden-step {
    display: none !important;
}
.addon-sections-hidden {
    display: none;
}
.addon-sections-visible {
    display: block;
}

/* ── PACKAGE BUILDER ───────────────────────────── */
.builder-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.builder-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--cream-dark);
}
.builder-section:last-child { border-bottom: none; }
.builder-section-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}
.builder-section-header .service-num { font-size: 36px; min-width: 50px; }
.builder-section-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 4px;
}
.builder-section-header p {
    font-size: 13px;
    color: var(--text-light);
}

.builder-choices {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 70px;
}
.builder-choice {
    display: block;
    cursor: pointer;
    position: relative;
}
.builder-choice input { display: none; }
.choice-content {
    display: block;
    padding: 16px 20px;
    background: var(--cream);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.builder-choice input:checked + .choice-content {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 4px 20px rgba(176,152,88,0.1);
}
.choice-content strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    display: block;
}
.choice-desc {
    font-size: 13px;
    color: var(--text-light);
    display: block;
    margin-top: 4px;
    line-height: 1.5;
}
.choice-price {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--gold);
    display: block;
    margin-top: 6px;
}
.choice-tag {
    font-family: var(--font-accent);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--gold);
    display: inline-block;
    padding: 3px 10px;
    margin-top: 6px;
}
.builder-choice.popular .choice-content {
    border-color: rgba(176,152,88,0.3);
}

/* Sticky Summary */
.builder-summary-wrap {
    position: sticky;
    top: 100px;
}
.builder-summary {
    background: var(--navy);
    padding: 32px 28px;
}
.builder-summary h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(176,152,88,0.2);
}
.summary-empty {
    font-size: 14px;
    color: rgba(245,243,239,0.35);
    padding: 20px 0;
    text-align: center;
}
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid rgba(245,243,239,0.06);
    gap: 12px;
}
.summary-item span {
    font-size: 13px;
    color: rgba(245,243,239,0.6);
    flex: 1;
}
.summary-item strong {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--gold);
    white-space: nowrap;
}
.summary-totals {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(176,152,88,0.3);
}
.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}
.summary-line span {
    font-size: 13px;
    color: rgba(245,243,239,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.summary-line strong {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--gold);
}
.summary-line.monthly strong { font-size: 24px; }
.summary-note {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(176,152,88,0.1);
    font-size: 12px;
    line-height: 1.6;
    color: rgba(245,243,239,0.5);
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 1024px) {
    .include-grid { grid-template-columns: 1fr 1fr; }
    .builder-layout { grid-template-columns: 1fr; }
    .builder-summary-wrap { position: static; }
}
@media (max-width: 768px) {
    .two-col-feature { grid-template-columns: 1fr; gap: 40px; }
    .two-col-feature.reverse { direction: ltr; }
    .competitor-breakdown { grid-template-columns: 1fr; }
    .vs-banner { grid-template-columns: 1fr; }
    .vs-divider { width: 100%; height: 48px; }
    .include-grid { grid-template-columns: 1fr; }
    .builder-choices { margin-left: 0; }
    .builder-section-header .service-num { display: none; }
}
