/* ── CONTACT PAGE ── */

/* ── HERO — 2 column split ── */
.ct-page-wrap {
    width: min(1152px, calc(100% - (var(--page-gutter) * 2)));
    margin-inline: auto;
    min-width: 0;
    overflow-x: hidden;
    min-height: calc(100vh - 52px);
    display: flex;
    flex-direction: column;
}

.ct-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex: 1;
    border-bottom: 0.5px solid var(--border);
    min-width: 0;
}

/* LEFT */
.ct-hero-left {
    padding: 64px 48px;
    border-right: 0.5px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.ct-tag {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ct-tag::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--green);
    flex-shrink: 0;
}

.ct-h1 {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 72px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 0.88;
    margin: 32px 0 0;
}

.ct-hero-p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
    max-width: 340px;
    margin-top: 28px;
}

/* Direct contact rows */
.ct-direct {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    padding-top: 48px;
}

.ct-direct-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    border-top: 0.5px solid var(--border);
    text-decoration: none;
    cursor: pointer;
}

.ct-direct-row:last-child {
    border-bottom: 0.5px solid var(--border);
}

.ct-direct-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 0.5px solid var(--light2);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.ct-direct-row:hover .ct-direct-icon {
    background: #eaf5e9;
    border-color: #b3ddb0;
    color: var(--green);
}

.ct-direct-lbl {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.ct-direct-val {
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 0.02em;
}

.ct-direct-arrow {
    margin-left: auto;
    font-size: 18px;
    color: var(--light2);
    transition: color 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.ct-direct-row:hover .ct-direct-arrow {
    color: var(--green);
    transform: translateX(3px);
}

/* RIGHT — form */
.ct-hero-right {
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    min-width: 0;
}

.ct-form-heading {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ct-form-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.ct-form-title {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 32px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 0.95;
    margin: 0;
}

.ct-form-sub {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

/* Form fields */
.ct-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ct-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ct-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ct-field label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.ct-field input,
.ct-field select,
.ct-field textarea {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--black);
    background: var(--white);
    border: 0.5px solid var(--light2);
    border-radius: 8px;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    resize: none;
    -webkit-appearance: none;
    appearance: none;
}

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
    border-color: var(--green);
}

.ct-field input::placeholder,
.ct-field textarea::placeholder {
    color: var(--light2);
}

.ct-field select {
    cursor: pointer;
    color: var(--text-body);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239E9E9E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.ct-submit-btn {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 4px;
    transition: opacity 0.2s;
}

.ct-submit-btn:hover { opacity: 0.8; }

.ct-form-note {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
    margin: 0;
}

/* ── FOUNDER STRIP ── */
.ct-founder-strip {
    background: #111111;
    padding: 48px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: center;
    border-top: 0.5px solid var(--green);
}

.ct-founder-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1e1e1e;
    border: 0.5px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    color: var(--white);
}

.ct-founder-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ct-founder-quote {
    font-family: var(--font-head);
    font-weight: 300;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.25;
    margin: 0;
}

.ct-founder-quote em {
    color: var(--green);
    font-style: italic;
}

.ct-founder-sig {
    font-family: var(--font-body);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.1em;
}

/* ── FOOTER ── */
.ct-footer {
    border-top: 0.5px solid var(--border);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    background: var(--light1);
}

.ct-page-wrap > * {
    min-width: 0;
}

.ct-footer-copy {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--text-muted);
}

.ct-footer-links {
    display: flex;
    gap: 16px;
}

.ct-footer-links a {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--text-muted);
    text-decoration: underline;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
    .ct-hero { grid-template-columns: 1fr; }
    .ct-hero-left {
        border-right: none;
        border-bottom: 0.5px solid var(--border);
        padding: 40px 0;
    }
    .ct-h1 { font-size: 48px; }
    .ct-hero-right { padding: 40px 0; }
    .ct-field-row { grid-template-columns: 1fr; }
    .ct-founder-strip { padding: 32px 0; grid-template-columns: 1fr; }
    .ct-founder-avatar { display: none; }
    .ct-page-wrap { width: min(100%, calc(100% - (var(--page-gutter) * 2))); }
}

/* ── WIZARD FORM ── */
.ct-wizard {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.ct-wizard-progress {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ct-wizard-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--light2);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: all 0.2s;
}

.ct-wizard-dot.active {
    border-color: var(--green);
    color: var(--green);
    background: #eaf5e9;
}

.ct-wizard-dot.done {
    border-color: var(--green);
    background: var(--green);
    color: var(--white);
}

.ct-wizard-line {
    flex: 1;
    height: 1px;
    background: var(--light2);
}

.ct-wizard-line.done {
    background: var(--green);
}

.ct-wizard-step-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.ct-wizard-panel {
    display: none;
    flex-direction: column;
    gap: 16px;
}

.ct-wizard-panel.active {
    display: flex;
}

.ct-wizard-q {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--black);
    margin: 0 0 -4px;
    line-height: 1.1;
}

.ct-wizard-panel-sub {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-body);
    line-height: 1.6;
    margin: -12px 0 0;
}

/* Concern cards */
.ct-concern-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ct-concern-card {
    border: 0.5px solid var(--light2);
    border-radius: 10px;
    padding: 16px 18px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: border-color 0.2s, background 0.2s;
}

.ct-concern-card:hover {
    border-color: var(--green);
}

.ct-concern-card.selected {
    border-color: var(--green);
    background: #eaf5e9;
}

.ct-concern-card input {
    display: none;
}

.ct-concern-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
}

.ct-concern-desc {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-body);
    line-height: 1.6;
}

/* Nav buttons */
.ct-wizard-nav {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.ct-wizard-btn {
    flex: 1;
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 13px 20px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s, background 0.2s;
}

.ct-wizard-btn.primary {
    background: var(--black);
    color: var(--white);
}

.ct-wizard-btn.primary:hover {
    opacity: 0.85;
}

.ct-wizard-btn.secondary {
    background: transparent;
    color: var(--black);
    border: 0.5px solid var(--light2);
}

.ct-wizard-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.ct-wizard-skip {
    background: none;
    border: none;
    text-decoration: underline;
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--text-muted);
    cursor: pointer;
    text-align: center;
    margin-top: 2px;
}

.ct-wizard-skip:hover {
    color: var(--black);
}

/* Review step */
.ct-review-list {
    display: flex;
    flex-direction: column;
    border: 0.5px solid var(--light2);
    border-radius: 10px;
    overflow: hidden;
}

.ct-review-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 0.5px solid var(--light2);
}

.ct-review-row:last-child {
    border-bottom: none;
}

.ct-review-label {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text-muted);
    flex-shrink: 0;
}

.ct-review-value {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--black);
    font-weight: 500;
    text-align: right;
}

/* ── MODAL ── */
.ct-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 20000;
    padding: 24px;
}

.ct-modal-overlay.open {
    display: flex;
}

.ct-modal {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 32px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.ct-modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.ct-modal-icon.success {
    background: #eaf5e9;
    color: var(--green);
}

.ct-modal-icon.failure {
    background: #fdeaea;
    color: #d9534f;
}

.ct-modal-title {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--black);
    margin: 0;
}

.ct-modal-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

.ct-modal-btn {
    margin-top: 8px;
    font-family: var(--font-head);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
}

.ct-modal-btn:hover {
    opacity: 0.85;
}