:root {
    --navy:    #0F1B3C;
    --navy-2:  #1A2F6F;
    --red:     #C8281A;
    --gold:    #C9A84C;
    --gold-lt: #E2C76A;
    --white:   #F5F3EE;
    --off:     #EAE7E0;
    --text:    #2d3748;
    --dim:     #6a7280;
    --border:  #e2dfd8;
    --green:   #22c55e;
    --blue:    #3b82f6;
    --ease:    cubic-bezier(.16,1,.3,1);
    --fd:      'Cormorant Garamond', serif;
    --fb:      'Barlow', sans-serif;
    --fc:      'Barlow Condensed', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--fb); color: var(--text); background: var(--off); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.ir-topnav {
    position: sticky; top: 0; z-index: 100;
    background: var(--navy);
    border-bottom: 1px solid rgba(201,168,76,.12);
    height: 56px;
    display: flex; align-items: center;
    padding: 0 40px; gap: 20px;
}
.ir-topnav__back {
    display: flex; align-items: center; gap: 7px;
    font-family: var(--fc); font-size: 11.5px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    color: rgba(245,243,238,.5); flex-shrink: 0;
    transition: color .2s;
}
.ir-topnav__back:hover { color: var(--gold); }
.ir-topnav__logo {
    position: absolute; left: 50%; transform: translateX(-50%);
}
.ir-topnav__logo img {
    height: 50px; width: auto; object-fit: contain;
    opacity: .92;
}
.ir-topnav__account {
    margin-left: auto; flex-shrink: 0;
    display: flex; align-items: center; gap: 7px;
    font-family: var(--fc); font-size: 11.5px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    color: rgba(245,243,238,.5);
    transition: color .2s;
}
.ir-topnav__account:hover { color: var(--gold); }

.ir-hero {
    background: var(--navy);
    padding: 60px 0 52px;
    position: relative; overflow: hidden;
}
.ir-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(-55deg,transparent,transparent 44px,
        rgba(255,255,255,.013) 44px,rgba(255,255,255,.013) 45px);
    pointer-events: none;
}
.ir-hero__line {
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--red) 55%, transparent);
}
.ir-hero__inner {
    max-width: 1200px; margin: 0 auto; padding: 0 40px;
    position: relative; z-index: 1;
    display: flex; flex-direction: column; gap: 36px;
}
.ir-hero__label {
    font-family: var(--fc); font-size: 11px; font-weight: 700;
    letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
    display: block; margin-bottom: 10px;
}
.ir-hero__title {
    font-family: var(--fd);
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 600; color: var(--white);
    line-height: 1.06; letter-spacing: -.02em;
    margin-bottom: 16px;
}
.ir-hero__sub {
    font-family: var(--fb); font-size: 15px; font-weight: 300;
    color: rgba(245,243,238,.5); line-height: 1.82;
    max-width: 580px; margin-bottom: 20px;
}
.ir-hero__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ir-chip {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.2);
    padding: 6px 12px;
    font-family: var(--fc); font-size: 11px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
}
.ir-chip svg { color: var(--gold); flex-shrink: 0; }

.ir-hero__steps {
    display: flex; align-items: center; gap: 12px;
    flex-wrap: wrap;
}
.ir-mini-step {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
    padding: 14px 18px; flex: 1; min-width: 180px;
}
.ir-mini-step__num {
    font-family: var(--fd); font-size: 28px; font-weight: 700;
    color: rgba(201,168,76,.25); line-height: 1; flex-shrink: 0;
}
.ir-mini-step__body strong {
    display: block; font-family: var(--fb); font-size: 13px; font-weight: 600;
    color: var(--white); margin-bottom: 3px;
}
.ir-mini-step__body span {
    font-family: var(--fb); font-size: 11.5px; font-weight: 300;
    color: rgba(245,243,238,.38);
}
.ir-mini-step__arrow {
    font-family: var(--fc); font-size: 18px; color: rgba(201,168,76,.35);
    flex-shrink: 0;
}

.ir-main {
    max-width: 1200px; margin: 0 auto;
    padding: 40px 40px 80px;
}

.ir-success {
    background: #fff; padding: 60px 40px;
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 20px;
    border-top: 4px solid var(--green);
    max-width: 700px; margin: 0 auto;
    animation: popUp .6s var(--ease);
}
@keyframes popUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:none} }
.ir-success__icon {
    width: 80px; height: 80px; border-radius: 50%;
    background: rgba(34,197,94,.1); color: var(--green);
    border: 3px solid rgba(34,197,94,.2);
    display: flex; align-items: center; justify-content: center;
}
.ir-success h2 {
    font-family: var(--fd); font-size: clamp(24px,4vw,38px);
    font-weight: 600; color: var(--navy);
}
.ir-success p {
    font-family: var(--fb); font-size: 15px; font-weight: 300;
    color: var(--dim); line-height: 1.8; max-width: 500px;
}
.ir-success__next {
    background: var(--off); padding: 22px 28px; text-align: left;
    width: 100%; border-left: 3px solid var(--gold);
}
.ir-success__next h4 {
    font-family: var(--fd); font-size: 18px; font-weight: 600;
    color: var(--navy); margin-bottom: 10px;
}
.ir-success__next ul {
    list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.ir-success__next li {
    font-family: var(--fb); font-size: 13.5px; font-weight: 300;
    color: var(--dim); padding-left: 18px; position: relative;
}
.ir-success__next li::before {
    content: '→'; position: absolute; left: 0; color: var(--gold);
    font-size: 11px;
}
.ir-success__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.ir-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px; align-items: start;
}

.ir-alert {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 14px 18px; margin-bottom: 16px;
    background: #fff5f5; border-left: 3px solid var(--red);
    font-size: 13.5px; color: #7f1d1d; line-height: 1.65;
    animation: slideIn .4s var(--ease);
}
@keyframes slideIn { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:none} }
.ir-alert svg { flex-shrink: 0; margin-top: 2px; }
.ir-alert p + p { margin-top: 4px; }

.ir-form { display: flex; flex-direction: column; gap: 3px; }
.ir-section { background: #fff; }
.ir-section__head {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 22px 28px 16px;
    border-bottom: 1px solid var(--border);
}
.ir-section__num {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--navy); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--fc); font-size: 14px; font-weight: 700;
    flex-shrink: 0; margin-top: 2px;
}
.ir-section__head h3 {
    font-family: var(--fd); font-size: clamp(18px,2.5vw,24px);
    font-weight: 600; color: var(--navy); line-height: 1.2; margin-bottom: 3px;
}
.ir-section__head p {
    font-family: var(--fb); font-size: 13px; font-weight: 300; color: var(--dim);
}
.ir-section__body {
    padding: 22px 28px;
    display: flex; flex-direction: column; gap: 18px;
}

.ir-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ir-field { display: flex; flex-direction: column; gap: 8px; }
.ir-field--full { width: 100%; }
.ir-field--focused .ir-label { color: var(--navy); }

.ir-label {
    font-family: var(--fc); font-size: 10.5px; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase; color: var(--dim);
    display: flex; flex-direction: column; gap: 3px;
    transition: color .2s;
}
.ir-label-hint {
    font-family: var(--fb); font-size: 11px; font-weight: 300;
    letter-spacing: 0; text-transform: none; color: #b0a9a0;
}
.ir-req { color: var(--red); margin-left: 2px; }

.ir-input, .ir-textarea {
    width: 100%; background: var(--off);
    border: 1.5px solid var(--border);
    padding: 12px 14px;
    font-family: var(--fb); font-size: 14px; font-weight: 300; color: var(--navy);
    outline: none; border-radius: 0;
    -webkit-appearance: none; appearance: none;
    transition: border-color .25s, background .25s, box-shadow .25s;
    line-height: 1.6;
}
.ir-input::placeholder, .ir-textarea::placeholder { color: #b0a9a0; }
.ir-input:focus, .ir-textarea:focus {
    border-color: var(--navy); background: #fff;
    box-shadow: 0 0 0 3px rgba(15,27,60,.07);
}
.ir-input--lg { font-size: 15px; padding: 14px; }
.ir-textarea  { resize: vertical; min-height: 90px; }

.ir-input-with-unit { display: flex; }
.ir-input-with-unit .ir-input { border-right: none; flex: 1; }
.ir-unit-select {
    background: var(--navy); color: var(--gold);
    border: 1.5px solid var(--navy);
    padding: 0 12px;
    font-family: var(--fc); font-size: 11px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    outline: none; cursor: pointer; flex-shrink: 0;
    -webkit-appearance: none; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 10px center;
    padding-right: 28px; min-width: 80px;
    transition: background-color .2s;
}
.ir-unit-select option { background: var(--navy); }
.ir-unit-select:focus { outline: none; }

.ir-urgency-row { display: flex; gap: 8px; }
.ir-urgency-label { flex: 1; cursor: pointer; }
.ir-urgency-label input { display: none; }
.ir-urgency-card {
    padding: 12px 10px; text-align: center;
    border: 2px solid transparent; background: var(--off);
    display: flex; flex-direction: column; gap: 4px;
    transition: border-color .25s, background .25s, transform .25s var(--ease);
}
.ir-urgency-card:hover { border-color: rgba(15,27,60,.15); background: rgba(15,27,60,.03); }
.ir-urgency-card--selected { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(15,27,60,.1); }
.ir-urgency-card__lbl {
    font-family: var(--fc); font-size: 11.5px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
}
.ir-urgency-card__note {
    font-family: var(--fb); font-size: 11.5px; font-weight: 300; color: var(--dim);
}
.ir-urgency--red.ir-urgency-card--selected   { border-color: var(--red);   background: rgba(200,40,26,.05); }
.ir-urgency--red   .ir-urgency-card__lbl     { color: var(--red); }
.ir-urgency--blue.ir-urgency-card--selected  { border-color: var(--blue);  background: rgba(59,130,246,.05); }
.ir-urgency--blue  .ir-urgency-card__lbl     { color: var(--blue); }
.ir-urgency--green.ir-urgency-card--selected { border-color: var(--green); background: rgba(34,197,94,.05); }
.ir-urgency--green .ir-urgency-card__lbl     { color: var(--green); }

.ir-submit-btn {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    width: 100%; padding: 16px 24px; margin-top: 3px;
    font-family: var(--fc); font-size: 14px; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase;
    background: var(--navy); color: var(--white); border: none; cursor: pointer;
    position: relative; overflow: hidden; isolation: isolate;
    transition: color .35s;
}
.ir-submit-btn::before {
    content: ''; position: absolute; inset: 0;
    background: var(--red); transform: translateX(-101%);
    transition: transform .4s var(--ease); z-index: -1;
}
.ir-submit-btn:hover::before { transform: translateX(0); }
.ir-submit-btn:hover { color: var(--white); }

.ir-form-note {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    font-family: var(--fc); font-size: 10.5px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase; color: var(--dim);
    padding: 13px 28px; background: #fff; border-top: 1px solid var(--border);
}
.ir-form-note svg { color: var(--green); flex-shrink: 0; }

.ir-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px;
    font-family: var(--fc); font-size: 12px; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase;
    border: 1.5px solid transparent;
    position: relative; overflow: hidden; isolation: isolate;
    transition: color .35s;
}
.ir-btn::before { content:''; position:absolute; inset:0; transform:translateX(-101%); transition:transform .35s var(--ease); z-index:-1; }
.ir-btn:hover::before { transform:translateX(0); }
.ir-btn--primary { background:var(--navy); color:var(--white); border-color:var(--navy); }
.ir-btn--primary::before { background:var(--red); }
.ir-btn--primary:hover { color:var(--white); border-color:var(--red); }
.ir-btn--outline { background:transparent; color:var(--navy); border-color:var(--navy); }
.ir-btn--outline::before { background:var(--off); }
.ir-btn--outline:hover { color:var(--navy); }

.ir-sidebar { display: flex; flex-direction: column; gap: 3px; position: sticky; top: 72px; }

.ir-info-card {
    background: var(--navy); padding: 26px;
    display: flex; flex-direction: column; gap: 20px;
    border-bottom: 3px solid var(--gold);
}
.ir-info-card h3 {
    font-family: var(--fd); font-size: 20px; font-weight: 600; color: var(--white);
}
.ir-info-steps { display: flex; flex-direction: column; gap: 16px; }
.ir-info-step { display: flex; align-items: flex-start; gap: 12px; }
.ir-info-step__num {
    width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
    background: rgba(201,168,76,.12); border: 1.5px solid rgba(201,168,76,.25);
    color: var(--gold); display: flex; align-items: center; justify-content: center;
    font-family: var(--fc); font-size: 12px; font-weight: 700; margin-top: 1px;
}
.ir-info-step__body strong {
    display: block; font-family: var(--fb); font-size: 13px; font-weight: 500;
    color: var(--white); margin-bottom: 3px;
}
.ir-info-step__body p {
    font-family: var(--fb); font-size: 12px; font-weight: 300;
    color: rgba(245,243,238,.4); line-height: 1.65;
}

.ir-faq-card {
    background: #fff; padding: 22px 24px;
    display: flex; flex-direction: column; gap: 14px;
}
.ir-faq-card h4 {
    font-family: var(--fd); font-size: 18px; font-weight: 600; color: var(--navy);
    padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.ir-faq-list { display: flex; flex-direction: column; gap: 12px; }
.ir-faq-item { display: flex; flex-direction: column; gap: 5px; }
.ir-faq-q {
    font-family: var(--fb); font-size: 13px; font-weight: 600;
    color: var(--navy); line-height: 1.4;
}
.ir-faq-a {
    font-family: var(--fb); font-size: 12.5px; font-weight: 300;
    color: var(--dim); line-height: 1.7;
    padding-left: 8px; border-left: 2px solid var(--border);
}

.ir-contact-card {
    background: var(--off); padding: 22px 24px;
    display: flex; flex-direction: column; gap: 14px;
    border-left: 3px solid var(--gold);
}
.ir-contact-card h4 {
    font-family: var(--fd); font-size: 18px; font-weight: 600; color: var(--navy);
}
.ir-contact-card p {
    font-family: var(--fb); font-size: 13px; font-weight: 300;
    color: var(--dim); line-height: 1.65;
}
.ir-contact-links { display: flex; flex-direction: column; gap: 8px; }
.ir-contact-link {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px;
    font-family: var(--fb); font-size: 13.5px; font-weight: 400; color: var(--navy);
    background: #fff; border: 1.5px solid var(--border);
    transition: background .25s, border-color .25s, color .25s;
}
.ir-contact-link svg { flex-shrink: 0; color: var(--gold); }
.ir-contact-link:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.ir-contact-link:hover svg { color: var(--gold); }
.ir-contact-link--wa:hover { background: #25d366; border-color: #25d366; color: #fff; }
.ir-contact-link--wa:hover svg { color: #fff; }

@media (max-width: 1100px) {
    .ir-layout { grid-template-columns: 1fr 300px; gap: 20px; }
    .ir-hero__steps { gap: 6px; }
    .ir-mini-step { min-width: 140px; padding: 12px 14px; }
    .ir-mini-step__arrow { font-size: 14px; }
}

@media (max-width: 768px) {
    .ir-topnav { padding: 0 20px; }
    .ir-topnav__logo { position: static; transform: none; margin: 0 auto; }
    .ir-hero { padding: 44px 0 36px; }
    .ir-hero__inner { padding: 0 20px; }
    .ir-hero__steps { flex-direction: column; gap: 8px; }
    .ir-mini-step { width: 100%; }
    .ir-mini-step__arrow { display: none; }
    .ir-main { padding: 20px 20px 52px; }
    .ir-layout { grid-template-columns: 1fr; }
    .ir-sidebar { position: static; order: -1; }
    .ir-info-card,.ir-faq-card,.ir-contact-card { padding: 20px; }
    .ir-section__head { padding: 16px 20px 12px; }
    .ir-section__body { padding: 18px 20px; gap: 14px; }
    .ir-row { grid-template-columns: 1fr; gap: 14px; }
    .ir-urgency-row { gap: 6px; }
    .ir-urgency-card { padding: 10px 8px; }
}

@media (max-width: 480px) {
    .ir-hero__title { font-size: 28px; }
    .ir-hero__chips { gap: 6px; }
    .ir-chip { font-size: 10px; padding: 5px 10px; }
    .ir-section__num { width: 26px; height: 26px; font-size: 12px; }
    .ir-section__head h3 { font-size: 18px; }
    .ir-submit-btn { padding: 14px; font-size: 12.5px; }
    .ir-success { padding: 40px 20px; }
    .ir-success__next { padding: 18px; }
    .ir-success__actions { flex-direction: column; align-items: stretch; }
    .ir-btn { justify-content: center; }
    .ir-urgency-card__note { display: none; }
}

@media (max-width: 360px) {
    .ir-topnav { padding: 0 14px; }
    .ir-hero__inner,.ir-main { padding-left: 14px; padding-right: 14px; }
    .ir-section__head { padding: 12px 14px; }
    .ir-section__body { padding: 14px; }
    .ir-submit-btn { font-size: 11.5px; }
    .ir-urgency-row { flex-direction: column; }
}