/* ========================================
   01 VARIABLES
======================================== */

:root {
    --bg: #f0f2f4;
    --panel: #ffffff;
    --text: #1f2933;
    --muted: #657386;
    --line: #d7dde5;
    --blue: #184b87;
    --green: #2e9447;
    --red: #c23d3d;
    --shadow: 0 10px 28px rgba(0, 0, 0, .08);
}


/* ========================================
   02 RESET / BASE
======================================== */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Inter, system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    padding-top: 138px;
}

.faq-card{padding:20px 24px;margin-top:18px}
.faq-content{
  padding:0 0 16px;
  color:#607086;
  line-height:1.6;
}

/* ========================================
   03 FIXED HEADER
======================================== */

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;

    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.header-main {
    border-bottom: 1px solid #e2e7ee;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 52px;
    height: 52px;

    border-radius: 12px;

    display: grid;
    place-items: center;

    color: #ffffff;
    font-weight: 900;
    font-size: 1.6rem;

    background:
        linear-gradient(
            135deg,
            #111111 0 35%,
            #e52320 36% 68%,
            #f5b400 69% 100%
        );
}

.brand strong {
    display: block;

    font-size: 1.25rem;
    letter-spacing: -.04em;
}

.brand span {
    font-size: .84rem;
    color: #516070;
}

.header-trust {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 10px 22px;

    color: #28394b;
    font-size: .88rem;
    font-weight: 600;
}

.header-strip {
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1d3a83;
    color: #ffffff;

    font-weight: 600;
    letter-spacing: .08em;
}


/* ========================================
   04 PAGE LAYOUT
======================================== */

.page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 34px 20px 50px;
}

.layout-shell {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 22px;
    align-items: start;
}

.content-main,
.sidebar-card,
.payment-main {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.content-main,
.payment-main {
    padding: 30px;
}


/* ========================================
   05 INTRO / HEADINGS
======================================== */

.intro h1,
.payment-main h1 {
    margin: 16px 0 10px;

    font-size: 1.8rem;
    line-height: 1.08;
    letter-spacing: -.045em;

    color: #162f50;
}

.intro p,
.lead {
    margin: 0;

    color: var(--muted);
    line-height: 1.6;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;

    padding: 0 10px;

    border-radius: 999px;
    border: 1px solid #d6e2f0;

    background: #edf3fa;
    color: var(--blue);

    font-size: .86rem;
    font-weight: 800;
}

.requirement {
    margin-top: 8px;
    padding: 10px 10px;

    border: 1px solid var(--line);
    border-radius: 8px;

    background: #fbfcfd;
    color: #44556b;
}

.requirement strong {
    color: #a54d38;
}


/* ========================================
   06 STEP INDICATOR
======================================== */

.step-indicator {
    display: flex;
    gap: 12px;

    margin: 24px 0;
    padding-bottom: 18px;

    
}

.step-pill {
    width: 20px;
    height: 20px;

    border-radius: 50%;
    border: 1px solid #d3dae4;

    display: grid;
    place-items: center;

    background: #e9edf2;
    color: #657386;

    font-weight: 600;
font-size:0.8rem;
}

.step-pill.active {
    background: var(--blue);
    color: #ffffff;
}


/* ========================================
   07 FORM STEPS / FIELDS
======================================== */

.step {
    display: none;
}

.step.active {
    display: block;
}

.step h2 {
    margin: 0 0 8px;

    font-size: 1.8rem;
    letter-spacing: -.035em;

    color: #163657;
}

.step-copy {
    margin: 0 0 20px;

    color: var(--muted);
    line-height: 1.6;
}

label {
    display: block;
    margin-bottom: 8px;

    color: #33485f;
    font-size: .93rem;
    font-weight: 800;
}

input {
    width: 100%;
    min-height: 54px;

    border: 2px solid #0000ff;
    border-radius: 6px;

    padding: 0 14px;

    background: #ffffff;
    color: var(--text);

    font: inherit;
    outline: none;
}

input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(24, 75, 135, .08);
}

.hint-row {
    margin: 12px 0 18px;
    padding: 12px 14px;

    border: 1px solid var(--line);
    border-radius: 6px;

    background: #f5f7fa;
    color: #516070;

    font-size: .94rem;
}

.grid {
    display: grid;
    gap: 14px;
}

.grid.two {
    grid-template-columns: 1fr 1fr;
}

.field {
    display: grid;
}

.nav-row {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 12px;

    margin-top: 20px;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin-top: 18px;
    padding: 13px 14px;

    border: 1px solid var(--line);
    border-radius: 8px;

    background: #f6f8fb;
}

.checkbox-row input {
    width: 18px;
    height: 18px;
    min-height: auto;

    margin-top: 2px;

    accent-color: var(--blue);
}

.checkbox-row span {
    color: #516070;
    font-size: .94rem;
    line-height: 1.5;
}

.form-status {
    min-height: 22px;
    margin-top: 16px;

    font-size: .95rem;
}

.form-status.success {
    color: var(--green);
}

.form-status.error {
    color: var(--red);
}


/* ========================================
   08 BUTTONS / LINKS
======================================== */

.btn {
    min-height: 54px;
    max-width: 300px;

    border: none;
    border-radius: 7px;

    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font: inherit;
    font-weight: 600;
font-size:0.8rem;
    text-decoration: none;

    cursor: pointer;
}

.btn-primary {
    background:#64b469;

    color: #ffffff;
    box-shadow: 0 10px 18px rgba(24, 75, 135, .18);
}

.btn-secondary {
    background: #eef2f6;
    color: #36506b;
    border: 1px solid var(--line);
}

.text-button,
.help-link {
    background: none;
    border: none;

    color: #3d93f3;

    font: inherit;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;

    cursor: pointer;
}


/* ========================================
   09 LATER BOX
======================================== */

.later-box {
    margin-top: 28px;
    padding: 16px;

    border: 1px solid var(--line);
    border-radius: 8px;

    background: #f7f9fc;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}


/* ========================================
   10 SIDEBAR
======================================== */

.sidebar{display:grid;gap:16px;position:sticky;top:160px}
.sidebar-card{font-size:0.85rem;padding:18px}
.sidebar-card h3{margin:0 0 12px;color:#163657;font-size:1.0rem}
.sidebar-card p{color:#5f6f82;line-height:1.55;margin:0 0 10px}
.sidebar-card ul{margin:10px 0 0;padding-left:18px;color:#516070;line-height:1.65}
.price-card{background:linear-gradient(180deg,#fff8e7,#fff1c8);border-color:#e8d28d}
.price{font-size:2rem;font-weight:700;color:#163657;letter-spacing:-.05em}


.sidebar-content {
    display: none;
}

.sidebar-content.active {
    display: block;
}

.check-list {
    list-style: none;
    padding: 0 !important;
}

.check-list li {
    position: relative;
    padding-left: 26px;
}

.check-list li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: var(--green);
    font-weight: 900;
}

.subtle {
    background: #f7f9fc;
}


/* ========================================
   11 VALIDATION / ERRORS
======================================== */

.input-error {
    border-color: #c23d3d !important;
    box-shadow: 0 0 0 4px rgba(194, 61, 61, .08) !important;
}

.field-error {
    margin-top: 6px;

    color: #c23d3d;
    font-size: .88rem;
    font-weight: 700;
}


/* ========================================
   12 MODALS
======================================== */

.modal,
.help-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;

    padding: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, .4);
}

.modal.hidden,
.help-modal.hidden {
    display: none;
}

.modal-content,
.help-modal-box {
    position: relative;

    width: min(850px, 100%);

    padding: 24px;

    border-radius: 12px;

    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .18);
}

.modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;

    margin-top: 12px;
}

.lead-status {
    min-height: 20px;
    margin-top: 12px;
}

.lead-status.success {
    color: var(--green);
}

.lead-status.error {
    color: var(--red);
}

.help-modal-backdrop {
    position: absolute;
    inset: 0;
}

.help-modal-box {
    z-index: 1;
}

.help-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;

    width: 36px;
    height: 36px;

    border: none;
    border-radius: 50%;

    background: #eef2f6;

    font-size: 1.4rem;

    cursor: pointer;
}

.help-tip {
    padding: 10px 12px;

    border-left: 4px solid var(--blue);
    border-radius: 6px;

    background: #f3f7fb;
}


/* ========================================
   13 PAYMENT PAGE
======================================== */

.summary-box,
.payment-box {
    margin-top: 20px;
    padding: 18px;

    border: 1px solid var(--line);
    border-radius: 8px;

    background: #fbfcfd;
}

.summary-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.summary-price {
    padding: 8px 12px;

    border-radius: 999px;

    background: #edf3fa;
    color: var(--blue);

    font-weight: 900;
}

.summary-grid {
    margin-top: 14px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.summary-item {
    padding: 12px;

    border: 1px solid var(--line);
    border-radius: 8px;

    background: #ffffff;
}

.summary-label {
    color: #728396;
    font-size: .82rem;
    font-weight: 800;
}

.summary-value {
    margin-top: 4px;
    word-break: break-word;
}

.payment-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;

    margin-top: 16px;
}

.payment-link {
    min-height: 56px;

    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 900;
    text-decoration: none;
}

.paypal {
    background: #0070ba;
    color: #ffffff;
}

.stripe {
    background: #635bff;
    color: #ffffff;
}

.light {
    background: #eef2f6;
    color: #36506b;
    border: 1px solid var(--line);
}

.invoice {
    background: #fff8e7;
    color: #6c5b24;
    border: 1px solid #e8d28d;
}

.back-link {
    margin-top: 18px;
}


/* ========================================
   14 RESPONSIVE
======================================== */

@media (max-width: 980px) {

    body {
        padding-top: 180px;
    }

    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-trust {
        grid-template-columns: 1fr;
    }

    .layout-shell {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

}

@media (max-width: 680px) {

    body {
        padding-top: 210px;
    }

    .page {
        padding: 18px 12px 40px;
    }

    .content-main,
    .payment-main {
        padding: 20px;
    }

    .intro h1,
    .payment-main h1 {
        font-size: 2rem;
    }

    .grid.two,
    .nav-row,
    .payment-links,
    .summary-grid,
    .modal-actions {
        grid-template-columns: 1fr;
    }

    .later-box {
        flex-direction: column;
        align-items: flex-start;
    }

}

.faq-card {
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:10px;
  box-shadow:var(--shadow);
  padding:20px 24px;
  margin-top:18px
}

.faq-content {
  padding:0 0 16px;
  color:#607086;
  line-height:1.6;
}

details{
  border:1px solid var(--line);
  border-radius:14px;
  background:#fbfcfe;
  padding:0 16px;
  margin-bottom:10px;
}

summary{
  list-style:none;
  cursor:pointer;
  padding:16px 0;
  font-weight:700;
  color:#2f4965;
}
summary::-webkit-details-marker{display:none}
.faq-content{
  padding:0 0 16px;
  color:#607086;
  line-height:1.6;
}

.prep-box{
  background:#f7f9fc;
  border:1px solid var(--line);
  padding:6px 8px;
  border-radius:8px;
  margin:0 0 5px;

}