/* ========================================================================== 
   ReportIT WSS Public Professional V7
   Home + Login refinement
   ========================================================================== */
:root {
    --rit-v7-red: #b91c1c;
    --rit-v7-red-dark: #7f1111;
    --rit-v7-red-deep: #551010;
    --rit-v7-red-soft: #fff1f1;
    --rit-v7-ink: #101828;
    --rit-v7-muted: #667085;
    --rit-v7-line: #e4e7ec;
    --rit-v7-soft: #f6f8fb;
    --rit-v7-shadow: 0 24px 70px rgba(15, 23, 42, .12);
}

html { scroll-behavior: smooth; }
body { color: var(--rit-v7-ink); background: #fff; }

/* Header and shared public navigation */
.rit-v7-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 1px solid rgba(228, 231, 236, .9);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 5px 20px rgba(15, 23, 42, .035);
    backdrop-filter: blur(14px);
}
.rit-v7-header-inner {
    position: relative;
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.rit-v7-brand { display: inline-flex; align-items: center; text-decoration: none !important; }
.rit-v7-brand img { width: auto; max-width: 175px; height: 49px; object-fit: contain; }
.rit-v7-menu { display: flex; align-items: center; gap: 5px; }
.rit-v7-menu a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 10px;
    color: #475467;
    padding: 0 14px;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: .18s ease;
}
.rit-v7-menu a:hover { color: var(--rit-v7-red); background: #fff5f5; }
.rit-v7-menu .rit-v7-nav-secondary { margin-left: 9px; border: 1px solid #d0d5dd; color: #344054; background: #fff; }
.rit-v7-menu .rit-v7-nav-primary { color: #fff; background: linear-gradient(135deg, var(--rit-v7-red), #991b1b); box-shadow: 0 9px 22px rgba(185, 28, 28, .19); }
.rit-v7-menu .rit-v7-nav-primary:hover { color: #fff; background: var(--rit-v7-red-dark); transform: translateY(-1px); }
.rit-v7-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    color: #344054;
    background: #fff;
}

/* Home */
.rit-v7-home { overflow: hidden; background: #fff; }
.rit-v7-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 88% 12%, rgba(255, 255, 255, .13), transparent 27%),
        radial-gradient(circle at 6% 95%, rgba(239, 68, 68, .18), transparent 31%),
        linear-gradient(125deg, #4c0d0d 0%, #7f1111 46%, #b91c1c 100%);
    padding: 92px 0 100px;
}
.rit-v7-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: .095;
    background-image:
        linear-gradient(45deg, rgba(255,255,255,.8) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(255,255,255,.8) 1px, transparent 1px);
    background-size: 32px 32px;
}
.rit-v7-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(360px, .78fr);
    align-items: center;
    gap: 70px;
}
.rit-v7-eyebrow,
.rit-v7-section-label,
.rit-v7-section-heading > span,
.rit-v7-cta-inner > div > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fecaca;
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.rit-v7-hero-copy h1 {
    max-width: 840px;
    margin: 20px 0 20px;
    color: #fff;
    font-size: clamp(2.75rem, 5.2vw, 4.8rem);
    font-weight: 850;
    letter-spacing: -.052em;
    line-height: 1.02;
}
.rit-v7-hero-copy > p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .8);
    font-size: 1.05rem;
    line-height: 1.82;
}
.rit-v7-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.rit-v7-button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 13px;
    padding: 10px 18px;
    text-decoration: none !important;
    transition: .18s ease;
}
.rit-v7-button > i { font-size: 1.15rem; }
.rit-v7-button span, .rit-v7-button strong, .rit-v7-button small { display: block; }
.rit-v7-button strong { font-size: .84rem; }
.rit-v7-button small { margin-top: 2px; font-size: .67rem; font-weight: 550; opacity: .72; }
.rit-v7-button-light { color: #7f1d1d; background: #fff; box-shadow: 0 13px 28px rgba(0, 0, 0, .16); }
.rit-v7-button-light:hover { color: #7f1d1d; transform: translateY(-2px); box-shadow: 0 17px 34px rgba(0, 0, 0, .2); }
.rit-v7-button-outline { border-color: rgba(255,255,255,.28); color: #fff; background: rgba(255,255,255,.075); }
.rit-v7-button-outline:hover { color: #fff; background: rgba(255,255,255,.14); transform: translateY(-2px); }
.rit-v7-trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 28px; color: rgba(255,255,255,.72); font-size: .72rem; font-weight: 650; }
.rit-v7-trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.rit-v7-trust-row i { color: #fca5a5; }

.rit-v7-hero-card {
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 23px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 35px 90px rgba(0,0,0,.26);
    color: var(--rit-v7-ink);
    padding: 26px;
    transform: rotate(1deg);
}
.rit-v7-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; border-bottom: 1px solid #eaecf0; padding-bottom: 18px; }
.rit-v7-card-head > div { position: relative; padding-left: 18px; }
.rit-v7-card-head small, .rit-v7-card-head strong { display: block; }
.rit-v7-card-head small { color: #98a2b3; font-size: .61rem; font-weight: 800; letter-spacing: .12em; }
.rit-v7-card-head strong { margin-top: 3px; font-size: 1.15rem; }
.rit-v7-live-dot { position: absolute; top: 5px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 5px rgba(34,197,94,.12); }
.rit-v7-ticket-code { border-radius: 8px; color: #991b1b; background: #fee2e2; padding: 7px 9px; font-size: .65rem; font-weight: 800; }
.rit-v7-ticket-item { display: flex; align-items: center; gap: 14px; border-bottom: 1px solid #f2f4f7; padding: 16px 0; }
.rit-v7-ticket-icon { display: grid; flex: 0 0 42px; width: 42px; height: 42px; place-items: center; border-radius: 12px; color: var(--rit-v7-red); background: #fff1f1; }
.rit-v7-ticket-item small, .rit-v7-ticket-item strong { display: block; }
.rit-v7-ticket-item small { color: #98a2b3; font-size: .65rem; }
.rit-v7-ticket-item strong { margin-top: 2px; color: #344054; font-size: .79rem; }
.rit-v7-ticket-progress { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 8px; margin-top: 20px; border-radius: 14px; background: #f8fafc; padding: 13px; }
.rit-v7-ticket-progress div { text-align: center; }
.rit-v7-ticket-progress span, .rit-v7-ticket-progress strong { display: block; }
.rit-v7-ticket-progress span { color: #98a2b3; font-size: .58rem; }
.rit-v7-ticket-progress strong { margin-top: 3px; color: var(--rit-v7-red); font-size: .86rem; }
.rit-v7-ticket-progress > i { color: #d0d5dd; font-size: .6rem; }

.rit-v7-quick-section,
.rit-v7-info-section,
.rit-v7-flow-section,
.rit-v7-feedback-section { padding: 88px 0; }
.rit-v7-quick-section { background: #fff; }
.rit-v7-section-heading { max-width: 760px; margin-bottom: 38px; }
.rit-v7-section-heading-center { margin-right: auto; margin-left: auto; text-align: center; }
.rit-v7-section-heading > span,
.rit-v7-section-label { color: var(--rit-v7-red); }
.rit-v7-section-heading h2,
.rit-v7-info-copy h2,
.rit-v7-feedback-copy h2,
.rit-v7-cta-inner h2 {
    margin: 12px 0 0;
    color: var(--rit-v7-ink);
    font-size: clamp(2rem, 3.5vw, 3.15rem);
    font-weight: 850;
    letter-spacing: -.04em;
    line-height: 1.13;
}
.rit-v7-section-heading p { margin: 14px 0 0; color: var(--rit-v7-muted); line-height: 1.75; }
.rit-v7-service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.rit-v7-service-card {
    position: relative;
    display: flex;
    min-height: 245px;
    flex-direction: column;
    border: 1px solid var(--rit-v7-line);
    border-radius: 20px;
    color: var(--rit-v7-ink);
    background: #fff;
    box-shadow: 0 12px 36px rgba(15,23,42,.055);
    padding: 26px;
    text-decoration: none !important;
    transition: .2s ease;
}
.rit-v7-service-card:hover { color: var(--rit-v7-ink); transform: translateY(-5px); box-shadow: 0 23px 48px rgba(15,23,42,.11); }
.rit-v7-service-primary { border-color: #fecaca; background: linear-gradient(145deg, #fff, #fff7f7); }
.rit-v7-service-icon { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 14px; color: var(--rit-v7-red); background: #fee2e2; font-size: 1.15rem; }
.rit-v7-service-card small { display: block; margin-top: 22px; color: var(--rit-v7-red); font-size: .62rem; font-weight: 850; letter-spacing: .12em; }
.rit-v7-service-card h3 { margin: 7px 0 9px; font-size: 1.08rem; font-weight: 830; }
.rit-v7-service-card p { margin: 0; color: var(--rit-v7-muted); font-size: .8rem; line-height: 1.72; }
.rit-v7-service-arrow { position: absolute; right: 24px; bottom: 23px; display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; color: var(--rit-v7-red); background: #fff1f1; }

.rit-v7-info-section { background: var(--rit-v7-soft); }
.rit-v7-info-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .78fr); align-items: center; gap: 75px; }
.rit-v7-info-copy > p { margin: 20px 0; color: var(--rit-v7-muted); line-height: 1.82; }
.rit-v7-info-copy ul { margin: 0; padding: 0; list-style: none; }
.rit-v7-info-copy li { display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #e7ebf0; color: #475467; padding: 13px 0; font-size: .88rem; }
.rit-v7-info-copy li i { display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; color: #fff; background: var(--rit-v7-red); font-size: .62rem; }
.rit-v7-info-panel { border: 1px solid #e1e5ea; border-radius: 22px; background: #fff; box-shadow: var(--rit-v7-shadow); padding: 27px; }
.rit-v7-info-panel-head { display: flex; align-items: center; gap: 14px; border-bottom: 1px solid #eaecf0; padding-bottom: 19px; }
.rit-v7-info-panel-head > span { display: grid; width: 47px; height: 47px; place-items: center; border-radius: 14px; color: #fff; background: linear-gradient(135deg, var(--rit-v7-red), var(--rit-v7-red-dark)); }
.rit-v7-info-panel-head small, .rit-v7-info-panel-head strong { display: block; }
.rit-v7-info-panel-head small { color: #98a2b3; font-size: .62rem; font-weight: 800; letter-spacing: .1em; }
.rit-v7-info-panel-head strong { margin-top: 3px; }
.rit-v7-info-step { display: flex; gap: 14px; padding-top: 20px; }
.rit-v7-info-step > span { display: grid; flex: 0 0 34px; width: 34px; height: 34px; place-items: center; border-radius: 10px; color: var(--rit-v7-red); background: #fff1f1; font-size: .68rem; font-weight: 850; }
.rit-v7-info-step strong, .rit-v7-info-step small { display: block; }
.rit-v7-info-step strong { font-size: .86rem; }
.rit-v7-info-step small { margin-top: 4px; color: var(--rit-v7-muted); font-size: .72rem; line-height: 1.55; }

.rit-v7-flow-section { background: #fff; }
.rit-v7-flow-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.rit-v7-flow-grid article { position: relative; min-height: 245px; overflow: hidden; border: 1px solid var(--rit-v7-line); border-radius: 19px; background: #fff; padding: 24px; }
.rit-v7-flow-grid article > span { position: absolute; top: 12px; right: 16px; color: #eef0f3; font-size: 2.25rem; font-weight: 900; }
.rit-v7-flow-grid article > i { display: grid; width: 45px; height: 45px; place-items: center; border-radius: 13px; color: #fff; background: linear-gradient(135deg, var(--rit-v7-red), var(--rit-v7-red-dark)); box-shadow: 0 10px 22px rgba(185,28,28,.17); }
.rit-v7-flow-grid h3 { margin: 25px 0 10px; font-size: .96rem; font-weight: 820; }
.rit-v7-flow-grid p { margin: 0; color: var(--rit-v7-muted); font-size: .75rem; line-height: 1.7; }

.rit-v7-cta-section { color: #fff; background: linear-gradient(120deg, #541010, #921919 55%, #b91c1c); padding: 62px 0; }
.rit-v7-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.rit-v7-cta-inner h2 { max-width: 820px; color: #fff; }
.rit-v7-cta-inner p { margin: 11px 0 0; color: rgba(255,255,255,.73); }

.rit-v7-feedback-section { background: var(--rit-v7-soft); }
.rit-v7-feedback-grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(440px, 1.22fr); align-items: center; gap: 72px; }
.rit-v7-feedback-copy > p { margin: 19px 0 25px; color: var(--rit-v7-muted); line-height: 1.8; }
.rit-v7-feedback-note { display: flex; align-items: flex-start; gap: 13px; border: 1px solid #fecaca; border-radius: 15px; color: #7f1d1d; background: #fff7f7; padding: 17px; }
.rit-v7-feedback-note > i { margin-top: 2px; font-size: 1.25rem; }
.rit-v7-feedback-note strong, .rit-v7-feedback-note small { display: block; }
.rit-v7-feedback-note small { margin-top: 4px; color: #9f4444; line-height: 1.55; }
.rit-v7-feedback-card { border: 1px solid var(--rit-v7-line); border-radius: 21px; background: #fff; box-shadow: var(--rit-v7-shadow); padding: 30px; }
.rit-v7-feedback-card label { color: #344054; font-size: .78rem; font-weight: 750; }
.rit-v7-feedback-card .form-control { min-height: 49px; border-color: #d0d5dd; border-radius: 11px; }
.rit-v7-feedback-card textarea.form-control { min-height: 140px; }
.rit-v7-feedback-card .form-control:focus { border-color: var(--rit-v7-red); box-shadow: 0 0 0 .2rem rgba(185,28,28,.1); }
.rit-v7-submit { display: inline-flex; width: 100%; min-height: 50px; align-items: center; justify-content: center; gap: 9px; border: 0; border-radius: 11px; color: #fff; background: linear-gradient(135deg, var(--rit-v7-red), #991b1b); font-size: .82rem; font-weight: 800; box-shadow: 0 10px 22px rgba(185,28,28,.18); }

/* Login */
.rit-v7-auth-page { display: flex; min-height: auto; flex-direction: column; background: #f3f6fa; }
.rit-v7-auth-header { flex: 0 0 auto; border-bottom: 1px solid #e4e7ec; background: #fff; }
.rit-v7-auth-header-inner { display: flex; min-height: 74px; align-items: center; justify-content: space-between; gap: 20px; }
.rit-v7-auth-brand { display: inline-flex; align-items: center; }
.rit-v7-auth-brand img { width: auto; max-width: 168px; height: 48px; object-fit: contain; }
.rit-v7-auth-header-actions { display: flex; gap: 8px; }
.rit-v7-auth-header-actions a { display: inline-flex; min-height: 41px; align-items: center; gap: 7px; border: 1px solid #d0d5dd; border-radius: 10px; color: #344054; background: #fff; padding: 0 14px; font-size: .75rem; font-weight: 750; text-decoration: none !important; }
.rit-v7-auth-header-actions .rit-v7-auth-report-link { border-color: #fecaca; color: #991b1b; background: #fff7f7; }
.rit-v7-auth-main { display: flex; min-height: calc(100vh - 185px); flex: 1 0 auto; align-items: center; padding: 54px 0; }
.rit-v7-auth-shell { display: grid; max-width: 1080px; min-height: 620px; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); overflow: hidden; border: 1px solid #dfe3e8; border-radius: 25px; background: #fff; box-shadow: 0 28px 80px rgba(15,23,42,.15); margin: 0 auto; }
.rit-v7-auth-aside { position: relative; display: flex; min-width: 0; flex-direction: column; justify-content: space-between; overflow: hidden; color: #fff; background: linear-gradient(145deg, #4e0c0c, #7f1111 58%, #a71919); padding: 52px 45px; }
.rit-v7-auth-aside::before { position: absolute; inset: 0; content: ''; opacity: .08; background-image: radial-gradient(#fff 1px, transparent 1px); background-size: 24px 24px; }
.rit-v7-auth-aside-content, .rit-v7-auth-security { position: relative; z-index: 2; }
.rit-v7-auth-kicker { display: inline-flex; align-items: center; gap: 8px; color: #fecaca; font-size: .68rem; font-weight: 850; letter-spacing: .14em; }
.rit-v7-auth-aside h1 { margin: 21px 0 16px; color: #fff; font-size: clamp(2rem, 3.2vw, 3.05rem); font-weight: 850; letter-spacing: -.045em; line-height: 1.09; }
.rit-v7-auth-aside-content > p { margin: 0; color: rgba(255,255,255,.73); font-size: .91rem; line-height: 1.8; }
.rit-v7-auth-feature-list { margin-top: 31px; }
.rit-v7-auth-feature-list > div { display: flex; gap: 13px; border-top: 1px solid rgba(255,255,255,.13); padding: 17px 0; }
.rit-v7-auth-feature-list > div > span { display: grid; flex: 0 0 39px; width: 39px; height: 39px; place-items: center; border-radius: 11px; color: #fff; background: rgba(255,255,255,.11); }
.rit-v7-auth-feature-list strong, .rit-v7-auth-feature-list small { display: block; }
.rit-v7-auth-feature-list strong { color: #fff; font-size: .8rem; }
.rit-v7-auth-feature-list small { margin-top: 4px; color: rgba(255,255,255,.6); font-size: .68rem; line-height: 1.5; }
.rit-v7-auth-security { display: flex; align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; background: rgba(0,0,0,.09); padding: 15px; }
.rit-v7-auth-security > i { color: #fecaca; }
.rit-v7-auth-security strong, .rit-v7-auth-security small { display: block; }
.rit-v7-auth-security strong { color: #fff; font-size: .72rem; }
.rit-v7-auth-security small { margin-top: 3px; color: rgba(255,255,255,.56); font-size: .65rem; }
.rit-v7-auth-form-panel { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: 58px 62px; }
.rit-v7-auth-form-head > span { color: var(--rit-v7-red); font-size: .68rem; font-weight: 850; letter-spacing: .14em; }
.rit-v7-auth-form-head h2 { margin: 9px 0 4px; color: var(--rit-v7-ink); font-size: 2.05rem; font-weight: 850; letter-spacing: -.035em; }
.rit-v7-auth-form-head p { margin: 0 0 30px; color: var(--rit-v7-muted); font-size: .82rem; }
.rit-v7-auth-form .form-group { margin-bottom: 20px; }
.rit-v7-auth-form label { color: #344054; font-size: .76rem; font-weight: 760; }
.rit-v7-input-wrap { position: relative; display: flex; align-items: center; }
.rit-v7-input-wrap > span { position: absolute; left: 0; z-index: 2; display: grid; width: 48px; height: 52px; place-items: center; border-right: 1px solid #e4e7ec; color: #98a2b3; }
.rit-v7-input-wrap .form-control { min-height: 52px; border-color: #d0d5dd; border-radius: 11px; padding-right: 48px; padding-left: 61px; font-size: .84rem; }
.rit-v7-input-wrap .form-control:focus { border-color: var(--rit-v7-red); box-shadow: 0 0 0 .2rem rgba(185,28,28,.1); }
.rit-v7-password-toggle { position: absolute; right: 7px; z-index: 3; display: grid; width: 38px; height: 38px; place-items: center; border: 0; border-radius: 8px; color: #667085; background: transparent; }
.rit-v7-password-toggle:hover { color: var(--rit-v7-red); background: #fff1f1; }
.rit-v7-auth-submit { display: inline-flex; width: 100%; min-height: 53px; align-items: center; justify-content: center; gap: 9px; border: 0; border-radius: 11px; color: #fff; background: linear-gradient(135deg, var(--rit-v7-red), #991b1b); font-size: .82rem; font-weight: 820; box-shadow: 0 12px 25px rgba(185,28,28,.19); transition: .18s ease; }
.rit-v7-auth-submit:hover { transform: translateY(-1px); box-shadow: 0 16px 29px rgba(185,28,28,.23); }
.rit-v7-auth-help { display: flex; align-items: flex-start; gap: 9px; margin-top: 22px; border-radius: 11px; color: #667085; background: #f8fafc; padding: 13px; font-size: .69rem; line-height: 1.55; }
.rit-v7-auth-help i { margin-top: 2px; color: var(--rit-v7-red); }

/* Prevent legacy login/public styles from interfering */
.rit-v7-auth-page + .rit-site-footer { margin-top: 0 !important; }
body:has(.rit-v7-auth-page) .rit-site-footer { margin-top: 0; }

@media (min-width: 992px) {
    .rit-v7-menu.collapse { display: flex !important; }
}
@media (max-width: 1199px) {
    .rit-v7-hero-grid { gap: 40px; }
    .rit-v7-flow-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 991px) {
    .rit-v7-menu-button { display: inline-flex; }
    .rit-v7-menu { position: absolute; top: calc(100% + 8px); right: 15px; left: 15px; flex-direction: column; align-items: stretch; gap: 3px; border: 1px solid var(--rit-v7-line); border-radius: 15px; background: #fff; box-shadow: var(--rit-v7-shadow); padding: 11px; }
    .rit-v7-menu:not(.show):not(.collapsing) { display: none; }
    .rit-v7-menu a { justify-content: flex-start; }
    .rit-v7-menu .rit-v7-nav-secondary { margin-left: 0; }
    .rit-v7-hero { padding: 72px 0 86px; }
    .rit-v7-hero-grid, .rit-v7-info-grid, .rit-v7-feedback-grid { grid-template-columns: 1fr; gap: 38px; }
    .rit-v7-hero-card { max-width: 600px; transform: none; }
    .rit-v7-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .rit-v7-cta-inner { align-items: flex-start; flex-direction: column; }
    .rit-v7-auth-main { padding: 44px 0; }
    .rit-v7-auth-shell { min-height: 0; grid-template-columns: 1fr; }
    .rit-v7-auth-aside { padding: 40px; }
    .rit-v7-auth-form-panel { padding: 44px 40px; }
}
@media (max-width: 767px) {
    .rit-v7-header-inner, .rit-v7-auth-header-inner { min-height: 68px; }
    .rit-v7-brand img, .rit-v7-auth-brand img { max-width: 145px; height: 41px; }
    .rit-v7-hero-copy h1 { font-size: 2.65rem; }
    .rit-v7-quick-section, .rit-v7-info-section, .rit-v7-flow-section, .rit-v7-feedback-section { padding: 67px 0; }
    .rit-v7-service-grid, .rit-v7-flow-grid { grid-template-columns: 1fr; }
    .rit-v7-service-card, .rit-v7-flow-grid article { min-height: 0; }
    .rit-v7-feedback-card { padding: 23px; }
    .rit-v7-auth-header-actions a:first-child { display: none; }
    .rit-v7-auth-aside { display: none; }
    .rit-v7-auth-form-panel { padding: 36px 26px; }
    .rit-v7-auth-shell { border-radius: 19px; }
}
@media (max-width: 479px) {
    .rit-v7-hero { padding: 57px 0 70px; }
    .rit-v7-hero-copy h1 { font-size: 2.1rem; }
    .rit-v7-hero-copy > p { font-size: .92rem; }
    .rit-v7-hero-actions { flex-direction: column; }
    .rit-v7-hero-actions .rit-v7-button { width: 100%; }
    .rit-v7-trust-row { flex-direction: column; gap: 10px; }
    .rit-v7-hero-card { padding: 20px; }
    .rit-v7-ticket-progress { gap: 4px; }
    .rit-v7-quick-section, .rit-v7-info-section, .rit-v7-flow-section, .rit-v7-feedback-section { padding: 55px 0; }
    .rit-v7-section-heading h2, .rit-v7-info-copy h2, .rit-v7-feedback-copy h2, .rit-v7-cta-inner h2 { font-size: 1.9rem; }
    .rit-v7-auth-header-actions .rit-v7-auth-report-link { padding: 0 10px; font-size: .68rem; }
    .rit-v7-auth-main { padding: 27px 0; }
    .rit-v7-auth-form-panel { padding: 30px 20px; }
    .rit-v7-auth-form-head h2 { font-size: 1.75rem; }
}
