/* =====================================================================
   JJP META SYSTEMS — dpdpa.css
   DPDP Act 2023 compliance page. Builds on the tokens in style.css.
===================================================================== */

/* ------------------------------------------------------------------
   HERO
------------------------------------------------------------------ */
.dpdp-hero {
    position: relative;
    background: linear-gradient(140deg, var(--navy-xd) 0%, var(--navy-dark) 45%, var(--navy) 100%);
    padding: 150px 0 80px;
    overflow: hidden;
}
.dpdp-hero canvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    opacity: .75;
}
.dpdp-hero::after {
    content: '';
    position: absolute;
    top: -180px; right: -140px;
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(244,121,32,.22), transparent 68%);
    pointer-events: none;
}
.dpdp-hero-inner { position: relative; z-index: 2; max-width: 860px; }

.dpdp-eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 7px 16px;
    background: rgba(244,121,32,.14);
    border: 1px solid rgba(244,121,32,.35);
    border-radius: 100px;
    color: var(--orange-lt);
    font-size: .74rem; font-weight: 600;
    letter-spacing: .5px; text-transform: uppercase;
    margin-bottom: 24px;
}
.dpdp-hero h1 {
    font-size: clamp(2rem, 4.6vw, 3.35rem);
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.14;
}
.dpdp-hero h1 .hl { color: var(--orange); }
.dpdp-hero-lead {
    color: rgba(255,255,255,.72);
    font-size: 1.03rem;
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 32px;
}
.dpdp-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }

/* countdown */
.countdown-wrap {
    display: inline-block;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--r);
    padding: 20px 26px;
    backdrop-filter: blur(6px);
}
.countdown-label {
    font-size: .7rem; text-transform: uppercase; letter-spacing: 1px;
    color: rgba(255,255,255,.5); margin-bottom: 14px;
}
.countdown { display: flex; gap: 12px; flex-wrap: wrap; }
.cd-unit {
    min-width: 74px; text-align: center;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-sm);
    padding: 10px 12px;
}
.cd-num {
    display: block;
    font-family: 'Poppins', sans-serif; font-weight: 800;
    font-size: 1.5rem; color: #fff; line-height: 1.1;
    font-variant-numeric: tabular-nums;
}
.cd-lbl { font-size: .62rem; text-transform: uppercase; letter-spacing: .7px; color: rgba(255,255,255,.45); }

/* ------------------------------------------------------------------
   TIMELINE
------------------------------------------------------------------ */
.tl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tl-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--r);
    padding: 34px 26px 30px;
    box-shadow: 0 6px 22px rgba(10,31,92,.09);
    overflow: hidden;
    transition: var(--trans);
}
.tl-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 44px rgba(10,31,92,.18);
}
/* Full-bleed accent bar across the top of each card. */
.tl-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 5px;
    background: var(--gray-mid);
}
.tl-card.is-live::before   { background: #16a34a; }
.tl-card.is-next::before   { background: var(--orange); }
.tl-card.is-final::before  { background: #dc2626; }

.tl-card.is-live:hover   { border-color: rgba(22,163,74,.45); }
.tl-card.is-next:hover   { border-color: rgba(244,121,32,.5); }
.tl-card.is-final:hover  { border-color: rgba(220,38,38,.45); }

.tl-status {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .7px;
    padding: 5px 11px; border-radius: 100px; margin-bottom: 16px;
}
.tl-card.is-live  .tl-status { background: rgba(22,163,74,.1);  color: #16a34a; }
.tl-card.is-next  .tl-status { background: rgba(244,121,32,.1); color: var(--orange-dk); }
.tl-card.is-final .tl-status { background: rgba(220,38,38,.1);  color: #dc2626; }

.tl-date { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--navy); margin-bottom: 8px; }
.tl-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 10px; }
.tl-card p  { font-size: .875rem; color: var(--text-muted); line-height: 1.7; }

/* ------------------------------------------------------------------
   PENALTIES
------------------------------------------------------------------ */
.penalty-section { background: var(--navy-dark); }
.penalty-section .section-header h2 { color: #fff; }
.penalty-section .section-header p  { color: rgba(255,255,255,.6); }

.penalty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.penalty-card {
    display: flex; flex-direction: column;
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--r);
    padding: 26px 24px;
    box-shadow: 0 6px 24px rgba(0,0,0,.22);
    transition: var(--trans);
}
.penalty-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
    box-shadow: 0 14px 40px rgba(0,0,0,.32);
}
.penalty-amt {
    font-family: 'Poppins', sans-serif; font-weight: 800;
    font-size: 1.9rem; color: var(--orange-dk);
    line-height: 1; margin-bottom: 12px;
}
.penalty-card h3 { font-size: .96rem; color: var(--navy); margin-bottom: 9px; line-height: 1.4; }
.penalty-card p  { font-size: .8rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.penalty-ref {
    display: block; margin-top: auto;
    font-size: .68rem; letter-spacing: .4px; font-weight: 600;
    text-transform: uppercase;
    color: var(--gray-mid);
    border-top: 1px solid var(--gray);
    padding-top: 10px;
}
.penalty-note {
    margin-top: 30px; text-align: center;
    font-size: .82rem; color: rgba(255,255,255,.45);
}

/* ------------------------------------------------------------------
   ASSESSMENT TOOL
------------------------------------------------------------------ */
.assess-section { background: var(--gray-lt); }

.assess-shell {
    max-width: 900px; margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--r);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.assess-head {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 24px 32px;
    color: #fff;
}
.assess-head-top {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; flex-wrap: wrap; margin-bottom: 14px;
}
.assess-head h3 { font-size: 1.06rem; color: #fff; }
.assess-step-count { font-size: .78rem; color: rgba(255,255,255,.6); font-variant-numeric: tabular-nums; }
.progress-track {
    height: 6px; border-radius: 100px;
    background: rgba(255,255,255,.14);
    overflow: hidden;
}
.progress-fill {
    height: 100%; width: 0;
    background: linear-gradient(90deg, var(--orange), var(--orange-lt));
    border-radius: 100px;
    transition: width .45s var(--ease);
}

.assess-body { padding: 34px 32px 30px; }
.assess-step { display: none; }
.assess-step.active { display: block; animation: stepIn .35s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.domain-head { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.domain-icon {
    width: 46px; height: 46px; flex-shrink: 0;
    display: grid; place-items: center;
    border-radius: 12px;
    background: rgba(244,121,32,.1);
    color: var(--orange);
    font-size: 1.15rem;
}
.domain-head h4 { font-size: 1.12rem; color: var(--navy); margin-bottom: 3px; }
.domain-head span { font-size: .78rem; color: var(--text-muted); }

.q-block { margin-bottom: 30px; }
.q-block:last-of-type { margin-bottom: 6px; }
.q-text {
    display: flex; gap: 11px;
    font-size: .95rem; font-weight: 600; color: var(--text);
    line-height: 1.6; margin-bottom: 14px;
}
.q-num {
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif; font-weight: 700;
    color: var(--orange);
}
.opt-list { display: grid; gap: 9px; }
.opt {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 13px 16px;
    border: 1.5px solid var(--gray);
    border-radius: var(--r-sm);
    cursor: pointer;
    font-size: .875rem; line-height: 1.55; color: var(--text);
    transition: var(--trans);
}
.opt:hover { border-color: rgba(244,121,32,.45); background: rgba(244,121,32,.035); }
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt-dot {
    width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
    border: 2px solid var(--gray-mid);
    border-radius: 50%;
    position: relative;
    transition: var(--trans);
}
.opt input:checked ~ .opt-dot { border-color: var(--orange); }
.opt input:checked ~ .opt-dot::after {
    content: '';
    position: absolute; inset: 3px;
    border-radius: 50%;
    background: var(--orange);
}
.opt:has(input:checked) {
    border-color: var(--orange);
    background: rgba(244,121,32,.07);
    font-weight: 500;
}
.opt input:focus-visible ~ .opt-dot { box-shadow: 0 0 0 3px rgba(244,121,32,.3); }

.q-block.q-missing .q-text { color: #dc2626; }
.q-block.q-missing .opt   { border-color: rgba(220,38,38,.4); }

.assess-nav {
    display: flex; justify-content: space-between; align-items: center;
    gap: 14px; flex-wrap: wrap;
    margin-top: 30px; padding-top: 24px;
    border-top: 1px solid var(--gray);
}
.assess-hint { font-size: .78rem; color: var(--text-muted); }
.assess-nav-btns { display: flex; gap: 10px; }
.btn-ghost {
    background: transparent;
    border: 1.5px solid var(--gray);
    color: var(--text-muted);
}
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn:disabled { opacity: .4; cursor: not-allowed; transform: none !important; }

/* gate form */
.gate-intro { text-align: center; max-width: 560px; margin: 0 auto 28px; }
.gate-lock {
    width: 58px; height: 58px; margin: 0 auto 18px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: rgba(244,121,32,.1);
    color: var(--orange);
    font-size: 1.3rem;
}
.gate-intro h4 { font-size: 1.3rem; color: var(--navy); margin-bottom: 10px; }
.gate-intro p  { font-size: .89rem; color: var(--text-muted); line-height: 1.7; }

.gate-form { max-width: 620px; margin: 0 auto; }
.gate-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.gate-form .fg { margin-bottom: 14px; }
.gate-form .fg label { display: block; font-size: .82rem; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.gate-form .req { color: #dc2626; }
.gate-form input,
.gate-form select,
.gate-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--gray);
    border-radius: var(--r-sm);
    font-family: 'Inter', sans-serif;
    font-size: .9rem;
    color: var(--text);
    background: var(--white);
    transition: var(--trans);
}
.gate-form input:focus,
.gate-form select:focus,
.gate-form textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(244,121,32,.14);
}
.gate-form input:invalid:not(:placeholder-shown) { border-color: rgba(220,38,38,.6); }
.gate-form textarea { resize: vertical; min-height: 90px; }
.gate-privacy {
    display: flex; gap: 10px; align-items: flex-start;
    font-size: .76rem; color: var(--text-muted); line-height: 1.6;
    background: var(--gray-lt);
    border-radius: var(--r-sm);
    padding: 13px 15px;
    margin: 4px 0 18px;
}
.gate-privacy i { color: var(--orange); margin-top: 2px; }
.form-error {
    display: none;
    background: rgba(220,38,38,.08);
    border: 1px solid rgba(220,38,38,.3);
    color: #b91c1c;
    font-size: .83rem;
    border-radius: var(--r-sm);
    padding: 11px 14px;
    margin-bottom: 14px;
}
.form-error.show { display: block; }

/* ------------------------------------------------------------------
   RESULTS
------------------------------------------------------------------ */
.res-hero {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 30px; align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray);
    margin-bottom: 30px;
}
.score-ring { position: relative; width: 190px; height: 190px; }
.score-ring svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.score-ring .ring-bg   { fill: none; stroke: var(--gray); stroke-width: 13; }
.score-ring .ring-fill {
    fill: none; stroke-width: 13; stroke-linecap: round;
    transition: stroke-dashoffset 1.1s var(--ease);
}
.score-ring .ring-text {
    position: absolute; inset: 0;
    display: grid; place-content: center; text-align: center;
}
.ring-num {
    font-family: 'Poppins', sans-serif; font-weight: 800;
    font-size: 2.7rem; line-height: 1; color: var(--navy);
}
.ring-sub { font-size: .68rem; text-transform: uppercase; letter-spacing: .8px; color: var(--text-muted); margin-top: 5px; }

.res-band {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 15px; border-radius: 100px;
    font-size: .76rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .6px;
    color: #fff; margin-bottom: 14px;
}
.res-summary-title { font-size: 1.45rem; color: var(--navy); margin-bottom: 12px; }
.res-summary { font-size: .9rem; color: var(--text-muted); line-height: 1.75; }
.res-org { font-size: .78rem; color: var(--text-muted); margin-top: 14px; }
.res-org strong { color: var(--navy); }

/* estimated statutory exposure */
.exposure-panel {
    background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 100%);
    border-radius: var(--r);
    padding: 28px 30px;
    margin: 0 0 34px;
    color: #fff;
}
.exposure-top {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 22px; flex-wrap: wrap;
    padding-bottom: 20px; margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.13);
}
.exposure-label {
    display: flex; align-items: center; gap: 9px;
    font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .8px;
    color: #fca5a5; margin-bottom: 10px;
}
.exposure-amount {
    font-family: 'Poppins', sans-serif; font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.1rem);
    line-height: 1; color: #ff6b6b;
}
.exposure-of {
    font-size: .82rem; color: rgba(255,255,255,.55);
    margin-top: 10px; max-width: 380px; line-height: 1.6;
}
.exposure-meter { flex: 1; min-width: 240px; }
.exposure-meter-top {
    display: flex; justify-content: space-between;
    font-size: .72rem; color: rgba(255,255,255,.5);
    margin-bottom: 7px;
}
.exposure-meter-track {
    height: 10px; border-radius: 100px;
    background: rgba(255,255,255,.12);
    overflow: hidden;
}
.exposure-meter-fill {
    height: 100%; width: 0;
    background: linear-gradient(90deg, #f47920, #dc2626);
    border-radius: 100px;
    transition: width 1.1s var(--ease);
}

.exp-head {
    display: grid;
    grid-template-columns: 1fr 92px 96px;
    gap: 14px; align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.exp-head:last-child { border-bottom: 0; padding-bottom: 0; }
.exp-head-title { font-size: .855rem; color: rgba(255,255,255,.9); line-height: 1.45; }
.exp-head-sec   { display: block; font-size: .68rem; color: rgba(255,255,255,.38); margin-top: 3px; }
.exp-head-ceil  { font-size: .75rem; color: rgba(255,255,255,.45); text-align: center; }
.exp-head-amt   {
    font-family: 'Poppins', sans-serif; font-weight: 700;
    font-size: .95rem; color: #ff8f6b; text-align: right;
    font-variant-numeric: tabular-nums;
}
.exp-head-amt.is-clear { color: #4ade80; }

.exposure-note {
    font-size: .74rem; color: rgba(255,255,255,.42);
    line-height: 1.65; margin-top: 20px;
    padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1);
}

@media (max-width: 620px) {
    .exposure-panel { padding: 22px 20px; }
    .exp-head { grid-template-columns: 1fr 84px; }
    .exp-head-ceil { display: none; }
}

.res-block-title {
    font-size: 1.05rem; color: var(--navy);
    margin: 0 0 18px;
    display: flex; align-items: center; gap: 10px;
}
.res-block-title i { color: var(--orange); font-size: .95rem; }

.dbar { margin-bottom: 16px; }
.dbar-top {
    display: flex; justify-content: space-between; align-items: baseline;
    gap: 12px; margin-bottom: 7px;
}
.dbar-name { font-size: .855rem; font-weight: 500; color: var(--text); }
.dbar-val  { font-size: .8rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.dbar-track { height: 8px; border-radius: 100px; background: var(--gray); overflow: hidden; }
.dbar-fill  { height: 100%; width: 0; border-radius: 100px; transition: width .9s var(--ease); }
.dbar-status { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-left: 8px; }

.gap-list { margin: 0 0 34px; }
.gap-item {
    display: flex; gap: 14px;
    padding: 15px 17px;
    background: rgba(220,38,38,.045);
    border-left: 3px solid #dc2626;
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    margin-bottom: 11px;
}
.gap-item i { color: #dc2626; margin-top: 3px; flex-shrink: 0; }
.gap-domain { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: #b91c1c; margin-bottom: 5px; }
.gap-q { font-size: .855rem; color: var(--text); line-height: 1.6; margin-bottom: 5px; }
.gap-a { font-size: .79rem; color: var(--text-muted); }
.gap-clear {
    display: flex; gap: 12px; align-items: center;
    padding: 16px 18px;
    background: rgba(22,163,74,.06);
    border-left: 3px solid #16a34a;
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    font-size: .875rem; color: var(--text);
}
.gap-clear i { color: #16a34a; }

.res-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: var(--r);
    padding: 30px 32px;
    text-align: center;
    margin-top: 34px;
}
.res-cta h4 { color: #fff; font-size: 1.2rem; margin-bottom: 10px; }
.res-cta p  { color: rgba(255,255,255,.65); font-size: .875rem; line-height: 1.7; max-width: 520px; margin: 0 auto 22px; }
.res-mailed {
    display: inline-flex; align-items: center; gap: 9px;
    background: rgba(22,163,74,.1);
    border: 1px solid rgba(22,163,74,.3);
    color: #15803d;
    border-radius: 100px;
    padding: 9px 18px;
    font-size: .8rem; font-weight: 500;
    margin-bottom: 26px;
}
.res-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.res-disclaimer {
    max-width: 900px; margin: 24px auto 0;
    font-size: .76rem; color: var(--text-muted);
    line-height: 1.7; text-align: center;
}

/* ------------------------------------------------------------------
   COVERAGE
------------------------------------------------------------------ */
.cov-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}
.cov-card {
    background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 100%);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--r);
    padding: 26px 24px;
    box-shadow: var(--shadow);
    transition: var(--trans);
}
.cov-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(244,121,32,.45);
}
.cov-icon {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border-radius: 12px;
    background: rgba(244,121,32,.14);
    border: 1px solid rgba(244,121,32,.28);
    color: var(--orange-lt);
    font-size: 1.05rem;
    margin-bottom: 16px;
    transition: var(--trans);
}
.cov-card:hover .cov-icon { background: var(--orange); border-color: var(--orange); color: #fff; }
.cov-card h3 { font-size: 1rem; color: #fff; margin-bottom: 9px; }
.cov-card p  { font-size: .84rem; color: rgba(255,255,255,.62); line-height: 1.7; }

/* ------------------------------------------------------------------
   FULL ASSESSMENT
------------------------------------------------------------------ */
.full-section {
    position: relative;
    background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 100%);
    overflow: hidden;
}
.full-section::before {
    content: '';
    position: absolute; bottom: -170px; left: -130px;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(244,121,32,.18), transparent 68%);
}
.full-grid {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.full-info h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 16px; }
.full-info > p { color: rgba(255,255,255,.65); font-size: .95rem; line-height: 1.8; margin-bottom: 30px; }
.full-points { margin-bottom: 30px; }
.full-points li {
    display: flex; gap: 13px; align-items: flex-start;
    color: rgba(255,255,255,.78);
    font-size: .89rem; line-height: 1.65;
    margin-bottom: 15px;
}
.full-points i { color: var(--orange); margin-top: 4px; flex-shrink: 0; }
.full-meta { display: flex; gap: 28px; flex-wrap: wrap; }
.full-meta div span { display: block; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.35rem; color: #fff; }
.full-meta div small { font-size: .7rem; text-transform: uppercase; letter-spacing: .6px; color: rgba(255,255,255,.45); }

.full-form-box {
    background: var(--white);
    border-radius: var(--r);
    padding: 34px 32px;
    box-shadow: var(--shadow-lg);
}
.full-form-box h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 8px; }
.full-form-box > p { font-size: .85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 24px; }

/* success panel shared by the full-assessment form */
.form-success { display: none; text-align: center; padding: 24px 8px; }
.form-success.show { display: block; animation: stepIn .4s var(--ease); }
.success-tick {
    width: 72px; height: 72px; margin: 0 auto 20px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: rgba(22,163,74,.1);
    color: #16a34a;
    font-size: 1.7rem;
}
.form-success h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 12px; }
.form-success p  { font-size: .9rem; color: var(--text-muted); line-height: 1.75; max-width: 400px; margin: 0 auto 8px; }
.form-success .success-contact {
    margin-top: 20px; font-size: .84rem;
    display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
}
.form-success .success-contact a { color: var(--orange); font-weight: 500; }

/* ------------------------------------------------------------------
   FAQ
------------------------------------------------------------------ */
.faq-list { max-width: 830px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--r-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--trans);
}
.faq-item[open] { border-color: rgba(244,121,32,.35); box-shadow: var(--shadow); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 19px 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600; font-size: .95rem; color: var(--navy);
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free'; font-weight: 900;
    font-size: .72rem; color: var(--orange);
    flex-shrink: 0;
    transition: var(--trans);
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item .faq-body {
    padding: 0 24px 21px;
    font-size: .875rem; color: var(--text-muted); line-height: 1.8;
}
.faq-item .faq-body p + p { margin-top: 12px; }

/* ------------------------------------------------------------------
   RESPONSIVE
------------------------------------------------------------------ */
@media (max-width: 900px) {
    .tl-grid   { grid-template-columns: 1fr; }
    .full-grid { grid-template-columns: 1fr; gap: 44px; }
    .res-hero  { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

@media (max-width: 620px) {
    .dpdp-hero        { padding: 130px 0 62px; }
    .dpdp-hero-actions .btn { width: 100%; justify-content: center; }
    .countdown-wrap   { display: block; padding: 18px; }
    .cd-unit          { min-width: 0; flex: 1; }
    .assess-head      { padding: 20px; }
    .assess-body      { padding: 26px 20px 24px; }
    .gate-form .form-row { grid-template-columns: 1fr; }
    .assess-nav       { flex-direction: column-reverse; align-items: stretch; }
    .assess-nav-btns  { width: 100%; }
    .assess-nav-btns .btn { flex: 1; justify-content: center; }
    .assess-hint      { text-align: center; }
    .full-form-box    { padding: 26px 20px; }
    .res-actions .btn { width: 100%; justify-content: center; }
}
