/* ============================================================
   MODE MARKETING — START PAGE
   Multi-step package, brief and payment flow.
   ============================================================ */

/* ---- Accessibility utility --------------------------------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---- Page layout ------------------------------------------ */
.start-page {
    background-color: transparent;
    min-height: 100vh;
}

.start-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* ---- Intro section ---------------------------------------- */
/* padding-top clears fixed header (~180px) + breathing room */
.start-intro {
    padding: 220px 0 64px;
}

.start-intro__heading {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: clamp(40px, 5vw, 64px);
    color: var(--color-white);
    line-height: 1.05;
    margin-bottom: 24px;
}

.start-intro__body {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 17px;
    line-height: 1.75;
    color: var(--color-smoke);
    max-width: 580px;
}

/* ---- Form section ----------------------------------------- */
.start-form-section {
    padding-top: 48px;
    padding-bottom: 120px;
}

/* ---- Progress indicator ----------------------------------- */
.start-progress {
    margin-bottom: 64px;
}

.start-progress__track {
    height: 1px;
    background-color: var(--color-gunmetal);
    position: relative;
    overflow: hidden;
    margin-bottom: 14px;
}

.start-progress__fill {
    height: 1px;
    background-color: var(--color-volt);
    position: absolute;
    top: 0;
    left: 0;
    transition: width 400ms ease-out;
    width: 0%;
}

.start-progress__steps {
    display: flex;
    justify-content: space-between;
}

.start-progress__step {
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-smoke);
    opacity: 0.35;
    transition: opacity 300ms ease-out, color 300ms ease-out;
}

.start-progress__step.is-active {
    color: var(--color-chalk);
    opacity: 1;
}

.start-progress__step.is-done {
    opacity: 0.55;
}

/* ---- Step headings ---------------------------------------- */
.start-step__heading {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: clamp(28px, 3.5vw, 40px);
    color: var(--color-white);
    line-height: 1.1;
    margin: 0 0 8px;
}

.start-step__sub {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-smoke);
    margin: 0 0 40px;
}

/* ---- Steps ------------------------------------------------ */
.start-step {
    display: none;
    scroll-margin-top: 260px;
}

.start-step.is-active {
    display: block;
}

/* ---- Package groups --------------------------------------- */
.start-group {
    margin-bottom: 56px;
}

.start-group__header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 0.5px solid var(--color-gunmetal);
}

.start-group__label {
    flex-shrink: 0;
    margin-bottom: 0;
}

.start-group__desc {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 12px;
    color: var(--color-dark-grey);
    line-height: 1.5;
}

/* ---- Package cards ---------------------------------------- */
.start-packages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 0;
}

.start-package-card {
    display: block;
    background-color: var(--color-carbon);
    border: 0.5px solid var(--color-gunmetal);
    border-left-width: 0.5px;
    padding: 28px;
    cursor: pointer;
    transition: border-color 200ms ease-out, background-color 200ms ease-out;
    position: relative;
}

.start-package-card:hover {
    border-color: var(--color-dark-grey);
}

.start-package-card.is-selected {
    border-left: 2px solid var(--color-volt);
    background-color: #161616;
}

.start-package__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.start-package__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 16px;
}

.start-package__name {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 18px;
    color: var(--color-white);
    line-height: 1.2;
}

.start-package__badge {
    display: inline-block;
    background-color: var(--color-volt);
    color: var(--color-void);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 2px;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 2px;
}

.start-package__desc {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-smoke);
    margin-bottom: 20px;
    flex: 1;
}

.start-package__pricing {
    display: flex;
    align-items: baseline;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.start-package__amount {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 28px;
    color: var(--color-white);
    line-height: 1;
}

.start-package__vat {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 13px;
    color: var(--color-smoke);
    margin-left: 6px;
    line-height: 1;
}

.start-package__deposit-badge {
    display: block;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 11px;
    color: var(--color-volt);
    letter-spacing: 0.05em;
    margin-top: 8px;
    margin-bottom: 0;
}

.start-package__time {
    display: block;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-dark-grey);
    margin-top: 8px;
}

/* ---- Field groups ----------------------------------------- */
.start-field {
    margin-bottom: 28px;
}

.start-label {
    display: block;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-smoke);
    margin-bottom: 8px;
}

.start-required {
    color: var(--color-smoke);
}

.start-optional {
    font-weight: 300;
    letter-spacing: 0;
    text-transform: none;
    font-size: 11px;
    color: var(--color-dark-grey);
}

/* ---- Inputs / selects / textareas ------------------------- */
.start-input,
.start-select,
.start-textarea {
    width: 100%;
    background-color: var(--color-carbon);
    border: 0.5px solid var(--color-gunmetal);
    color: var(--color-chalk);
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 15px;
    padding: 14px 16px;
    border-radius: 2px;
    outline: none;
    transition: border-color 200ms ease-out;
    -webkit-appearance: none;
    appearance: none;
}

.start-input::placeholder,
.start-textarea::placeholder {
    color: var(--color-dark-grey);
}

.start-input:focus,
.start-select:focus,
.start-textarea:focus {
    border-color: var(--color-dark-grey);
    outline: none;
}

.start-textarea {
    min-height: 100px;
    resize: vertical;
    line-height: 1.6;
}

/* ---- Select wrapper + chevron ----------------------------- */
.start-select-wrap {
    position: relative;
}

.start-select-wrap::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--color-smoke);
    pointer-events: none;
}

.start-select-wrap .start-select {
    padding-right: 40px;
    cursor: pointer;
}

/* ---- Radio & checkbox groups ------------------------------ */
.start-radio-group,
.start-check-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.start-radio-label,
.start-check-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 15px;
    color: var(--color-chalk);
    line-height: 1.4;
    user-select: none;
}

.start-radio-label input[type="radio"],
.start-check-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 0.5px solid var(--color-smoke);
    background-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    border-radius: 2px;
    position: relative;
    transition: border-color 200ms ease-out, background-color 200ms ease-out;
}

.start-radio-label input[type="radio"] {
    border-radius: 50%;
}

.start-radio-label input[type="radio"]:checked,
.start-check-label input[type="checkbox"]:checked {
    border-color: var(--color-volt);
    background-color: var(--color-volt);
}

.start-radio-label input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-void);
}

.start-check-label input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 4px;
    width: 5px;
    height: 9px;
    border: 2px solid var(--color-void);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* ---- Conditional sub-field (e.g. existing URL under radio) */
.start-conditional-field {
    margin-top: 12px;
    margin-left: 28px;
    display: none;
}

.start-conditional-field.is-visible {
    display: block;
}

/* ---- Inline validation errors ----------------------------- */
.start-field-error {
    display: block;
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 12px;
    color: #ff4444;
    margin-top: 6px;
}

.start-input.has-error,
.start-select.has-error,
.start-textarea.has-error {
    border-color: #ff4444;
}

/* ---- Order summary ---------------------------------------- */
.start-order-summary {
    background-color: var(--color-carbon);
    border: 0.5px solid var(--color-gunmetal);
    padding: 24px;
    margin-bottom: 32px;
    border-radius: 2px;
}

.start-order-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 0.5px solid var(--color-gunmetal);
}

.start-order-row:last-child {
    border-bottom: none;
}

.start-order-row--total {
    border-top: 1px solid var(--color-gunmetal);
    border-bottom: none;
    margin-top: 8px;
    padding-top: 16px;
}

.start-order-row__label {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 14px;
    color: var(--color-smoke);
}

.start-order-row__value {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-chalk);
}

.start-order-row--total .start-order-row__value {
    font-weight: 700;
    font-size: 20px;
    color: var(--color-white);
}

/* ---- Stripe card element ---------------------------------- */
#stripe-card-element {
    background-color: var(--color-carbon);
    border: 0.5px solid var(--color-gunmetal);
    padding: 14px 16px;
    border-radius: 2px;
    transition: border-color 200ms ease-out;
    min-height: 46px;
}

#stripe-card-element.StripeElement--focus {
    border-color: var(--color-dark-grey);
}

#stripe-card-element.StripeElement--invalid {
    border-color: #ff4444;
}

#stripe-card-errors {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 13px;
    color: #ff4444;
    margin-top: 8px;
    min-height: 20px;
    line-height: 1.5;
}

/* ---- Payment security note -------------------------------- */
.start-payment-note {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: flex-start;
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 12px;
    color: var(--color-dark-grey);
    margin-top: 20px;
    line-height: 1.6;
}

/* ---- Subscription commitment note ------------------------- */
.start-commitment-note {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 13px;
    color: var(--color-dark-grey);
    line-height: 1.6;
    background-color: var(--color-carbon);
    border: 0.5px solid var(--color-gunmetal);
    border-left: 2px solid var(--color-gunmetal);
    padding: 14px 16px;
    border-radius: 2px;
    margin-top: 16px;
}

/* ---- Step navigation buttons ------------------------------ */
.start-nav {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 40px;
    align-items: center;
}

/* ---- Confirmation screen (see .is-active state above) ----- */

.start-confirmation__check {
    width: 64px;
    height: 64px;
    border: 2px solid var(--color-volt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.start-confirmation__check::before {
    content: '';
    display: block;
    width: 12px;
    height: 22px;
    border: 2px solid var(--color-volt);
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-3px);
}

.start-confirmation__heading {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--color-white);
    line-height: 1.1;
    margin: 24px 0 16px;
}

.start-confirmation__body {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 17px;
    line-height: 1.75;
    color: var(--color-smoke);
    max-width: 520px;
    margin: 0 auto 16px;
}

.start-confirmation__email {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 15px;
    color: var(--color-smoke);
    margin-bottom: 40px;
}

.start-confirmation__email strong {
    color: var(--color-chalk);
    font-weight: 500;
}

/* ---- Pay button disabled state ---------------------------- */
#pay-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* ---- Onboarding section (post-payment) -------------------- */
.start-onboarding {
    display: none;
    padding-bottom: 120px;
}

.start-onboarding.is-active {
    display: block;
}

/* Payment confirmed badge */
.start-payment-confirmed {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(200, 255, 0, 0.06);
    border: 0.5px solid rgba(200, 255, 0, 0.25);
    padding: 10px 20px;
    border-radius: 2px;
    margin-bottom: 40px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 13px;
    color: var(--color-chalk);
    letter-spacing: 0.03em;
}

.start-payment-confirmed strong {
    color: var(--color-white);
    font-weight: 600;
}

.start-payment-confirmed__icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-volt);
    flex-shrink: 0;
    position: relative;
}

.start-payment-confirmed__icon::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 6px;
    width: 5px;
    height: 9px;
    border: 2px solid var(--color-void);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* Onboarding submit button disabled */
#onboarding-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* Package card — selected check indicator */
.start-package__check {
    display: none;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-volt);
}

.start-package__check::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 6px;
    width: 5px;
    height: 9px;
    border: 2px solid var(--color-void);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.start-package-card.is-selected .start-package__check {
    display: block;
}

/* Package eyebrow */
.start-package__eyebrow {
    margin-bottom: 0;
    font-size: 10px;
}

/* Package name as h3 */
.start-package__name {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 20px;
    color: var(--color-white);
    line-height: 1.2;
    margin: 12px 0 12px;
}

/* Block-level field error (for package selection) */
.start-field-error--block {
    display: block;
    margin-top: 12px;
}

/* Confirmation hidden by default — use .is-active not .is-visible */
.start-confirmation {
    display: none;
    text-align: center;
    padding: 80px 40px;
}

.start-confirmation.is-active {
    display: block;
}

/* is-invalid state for inputs */
.start-input.is-invalid,
.start-select.is-invalid,
.start-textarea.is-invalid {
    border-color: #ff4444;
}

/* ---- Brief pages (/brief/brand, /brief/website, /brief/growth) --- */
.brief-page {
    background-color: var(--color-void);
    min-height: 100vh;
}

.brief-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 160px 40px 120px;
}

.brief-header {
    margin-bottom: 56px;
}

.brief-heading {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: clamp(36px, 4.5vw, 56px);
    color: var(--color-white);
    line-height: 1.05;
    margin: 16px 0 16px;
}

.brief-sub {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-smoke);
    max-width: 480px;
}

/* Sections with eyebrow dividers */
.brief-section {
    border-top: 0.5px solid var(--color-gunmetal);
    padding-top: 40px;
    margin-bottom: 40px;
}

.brief-section__label {
    display: block;
    margin-bottom: 32px;
}

/* Submit area */
.brief-submit {
    border-top: 0.5px solid var(--color-gunmetal);
    padding-top: 40px;
    margin-top: 8px;
}

/* Errors */
.brief-errors {
    background-color: rgba(255, 68, 68, 0.06);
    border: 0.5px solid rgba(255, 68, 68, 0.3);
    padding: 16px 20px;
    margin-bottom: 40px;
    border-radius: 2px;
}

.brief-errors p {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 14px;
    color: #ff6b6b;
    margin: 4px 0;
}

/* Short textarea variant */
.brief-textarea--short {
    min-height: 72px;
}

/* Brief index — /brief */
.brief-index {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
}

.brief-option {
    display: block;
    border-top: 0.5px solid var(--color-gunmetal);
    text-decoration: none;
    transition: background-color 200ms ease-out;
}

.brief-option:last-child {
    border-bottom: 0.5px solid var(--color-gunmetal);
}

.brief-option:hover {
    background-color: var(--color-carbon);
}

.brief-option:hover .brief-option__arrow {
    transform: translateX(6px);
    color: var(--color-volt);
}

.brief-option__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 32px 0;
}

.brief-option__left {
    flex: 1;
}

.brief-option__eyebrow {
    display: block;
    margin-bottom: 10px;
}

.brief-option__name {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 22px;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 8px;
}

.brief-option__desc {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 14px;
    color: var(--color-smoke);
    line-height: 1.65;
    max-width: 440px;
}

.brief-option__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

.brief-option__price {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 20px;
    color: var(--color-white);
    white-space: nowrap;
}

.brief-option__price span {
    font-weight: 300;
    font-size: 13px;
    color: var(--color-smoke);
}

.brief-option__arrow {
    font-size: 20px;
    color: var(--color-smoke);
    transition: transform 200ms ease-out, color 200ms ease-out;
    display: block;
}

.brief-index__note {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 13px;
    color: var(--color-dark-grey);
    line-height: 1.6;
    padding-top: 24px;
}

@media (max-width: 600px) {
    .brief-option__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .brief-option__right {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }
}

/* Confirmation state */
.brief-confirm {
    padding: 80px 0;
    text-align: center;
}

.brief-confirm__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--color-volt);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    position: relative;
}

.brief-confirm__icon::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 16px;
    width: 10px;
    height: 18px;
    border: 2px solid var(--color-volt);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.brief-confirm__heading {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 40px);
    color: var(--color-white);
    line-height: 1.1;
    margin: 20px 0 16px;
}

.brief-confirm__body {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 16px;
    color: var(--color-smoke);
    line-height: 1.7;
}

.brief-confirm__body strong {
    color: var(--color-chalk);
    font-weight: 500;
}

@media (max-width: 768px) {
    .brief-container {
        padding: 120px 24px 80px;
    }
}

/* ---- Mobile ----------------------------------------------- */
@media (max-width: 768px) {
    .start-container {
        padding: 0 24px;
    }

    .start-intro {
        padding-top: 100px;
    }

    .start-form-section {
        padding-bottom: 64px;
    }

    .start-packages {
        grid-template-columns: 1fr;
    }

    .start-group {
        margin-bottom: 40px;
    }

    .start-group__header {
        flex-direction: column;
        gap: 6px;
    }

    .start-nav {
        flex-direction: column;
    }

    .start-nav .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .start-confirmation {
        padding: 64px 0;
    }
}

@media (max-width: 480px) {
    .start-intro {
        padding-top: 80px;
    }

    .start-package-card {
        padding: 20px;
    }
}

/* ============================================================
   CALL PAGE — /call
   Premium sell-and-handoff page. No Calendly embed.
   ============================================================ */

.call-page {
    background-color: var(--color-void);
    min-height: 100vh;
}

.call-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 160px 40px 120px;
}

/* Header */
.call-header {
    margin-bottom: 64px;
}

.call-header .eyebrow {
    display: block;
    margin-bottom: 24px;
}

.call-heading {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: clamp(32px, 4vw, 52px);
    color: var(--color-white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 28px;
}

.call-sub {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 17px;
    line-height: 1.75;
    color: var(--color-smoke);
    max-width: 600px;
    margin: 0;
}

/* Outcomes list */
.call-outcomes {
    margin-bottom: 64px;
    border-top: 0.5px solid var(--color-gunmetal);
    padding-top: 48px;
}

.call-outcomes__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.call-outcomes__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 0.5px solid var(--color-gunmetal);
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-chalk);
}

/* Tick mark */
.call-outcomes__tick {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    position: relative;
}

.call-outcomes__tick::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 11px;
    border: 1.5px solid var(--color-volt);
    border-top: none;
    border-left: none;
    transform: translate(-50%, -60%) rotate(45deg);
}

/* CTA block */
.call-cta {
    padding-top: 56px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.call-cta__btn {
    font-size: 13px;
    padding: 18px 40px;
}

.call-cta__meta {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 13px;
    color: var(--color-smoke);
    letter-spacing: 0.04em;
    margin: 0;
}

.call-cta__scarcity {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 12px;
    color: var(--color-dark-grey);
    margin: 0;
    letter-spacing: 0.02em;
}

/* Mobile */
@media (max-width: 768px) {
    .call-container {
        padding: 120px 24px 80px;
    }

    .call-heading {
        font-size: clamp(28px, 7vw, 40px);
    }
}

@media (max-width: 480px) {
    .call-container {
        padding: 100px 20px 64px;
    }

    .call-cta__btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ============================================================
   MEET PAGE — /meet
   In-person meeting request. Selective. Request-only.
   ============================================================ */

.meet-page {
    background-color: var(--color-void);
    min-height: 100vh;
}

.meet-container {
    max-width: 640px;
    margin: 0 auto;
    padding: 160px 40px 120px;
}

/* Header */
.meet-header {
    margin-bottom: 72px;
}

.meet-header .eyebrow {
    display: block;
    margin-bottom: 28px;
}

.meet-heading {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: clamp(30px, 3.5vw, 48px);
    color: var(--color-white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 28px;
}

.meet-sub {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-smoke);
    margin: 0 0 4px;
}

.meet-sub--secondary {
    font-weight: 300;
    font-size: 15px;
    color: var(--color-dark-grey);
    margin: 0;
}

/* Outcomes */
.meet-outcomes {
    margin-bottom: 48px;
}

.meet-outcomes__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.meet-outcomes__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 0.5px solid var(--color-gunmetal);
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-chalk);
}

.meet-outcomes__item:first-child {
    border-top: 0.5px solid var(--color-gunmetal);
}

/* Em dash marker — restrained, not volt */
.meet-outcomes__marker {
    flex-shrink: 0;
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 15px;
    color: var(--color-dark-grey);
    line-height: 1.7;
    user-select: none;
}

/* Gate line — "Used when a working session is more effective in person." */
.meet-outcomes__gate {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--color-dark-grey);
    margin: 28px 0 0;
    text-transform: uppercase;
}

/* Closing line — "If it makes sense, we'll arrange a time." */
.meet-closing {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-smoke);
    margin: 0 0 48px;
    padding-bottom: 0;
}

/* Form fields */
.meet-fields {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
    border-top: 0.5px solid var(--color-gunmetal);
    padding-top: 48px;
}

/* Submit area */
.meet-submit {
    border-top: 0.5px solid var(--color-gunmetal);
    padding-top: 40px;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.meet-submit__note {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 12px;
    color: var(--color-dark-grey);
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.02em;
}

/* Confirmation state */
.meet-confirm {
    padding: 80px 0;
}

.meet-confirm .eyebrow {
    display: block;
    margin-bottom: 20px;
}

.meet-confirm__heading {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 40px);
    color: var(--color-white);
    line-height: 1.1;
    margin: 0 0 20px;
}

.meet-confirm__body {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 16px;
    color: var(--color-smoke);
    line-height: 1.7;
    margin: 0;
}

.meet-confirm__body strong {
    color: var(--color-chalk);
    font-weight: 400;
}

/* Mobile */
@media (max-width: 768px) {
    .meet-container {
        padding: 120px 24px 80px;
    }
}

@media (max-width: 480px) {
    .meet-container {
        padding: 100px 20px 64px;
    }

    .meet-submit .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ── Bundle badge ─────────────────────────────────────────── */
.start-package__badge--save {
    background: transparent;
    color: var(--color-volt);
    border: 0.5px solid var(--color-volt);
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ── Growth Sprint commitment disclosure ──────────────────── */
.start-commitment-note {
    font-size: 13px;
    font-weight: 300;
    color: var(--color-chalk);
    line-height: 1.6;
    border-left: 2px solid var(--color-gunmetal);
    padding: 12px 16px;
    margin: 16px 0 8px;
    background: var(--color-carbon);
}

/* ── Instalment note ──────────────────────────────────────── */
.start-instalment-note {
    font-size: 13px;
    font-weight: 300;
    color: var(--color-smoke);
    margin: 12px 0 24px;
}

.start-instalment-note a {
    color: var(--color-chalk);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── Confirmation: What happens next ─────────────────────── */
.start-confirmation__next {
    margin: 40px 0 32px;
    padding: 32px;
    background: var(--color-carbon);
    border: 0.5px solid var(--color-gunmetal);
    text-align: left;
}

.start-confirmation__next-heading {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-smoke);
    margin-bottom: 20px;
}

.start-confirmation__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: confirm-steps;
}

.start-confirmation__steps li {
    counter-increment: confirm-steps;
    font-size: 15px;
    font-weight: 300;
    color: var(--color-smoke);
    line-height: 1.7;
    padding: 12px 0 12px 40px;
    position: relative;
    border-bottom: 0.5px solid var(--color-gunmetal);
}

.start-confirmation__steps li:last-child {
    border-bottom: none;
}

.start-confirmation__steps li::before {
    content: counter(confirm-steps);
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-gunmetal);
    letter-spacing: 0.05em;
}

.start-confirmation__steps li strong {
    color: var(--color-chalk);
    font-weight: 500;
}
