/* ── UTILITY ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 50px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sky);
    color: var(--blue);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid var(--sky-mid);
    margin-bottom: 18px;
}

.section-label::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--navy);
}

.section-sub {
    font-size: 17px;
    color: var(--muted);
    max-width: 600px;
    margin-top: 12px;
}

.stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all .22s;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 18px rgba(30, 94, 255, .3);
}

.btn-primary:hover {
    background: #1750e8;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(30, 94, 255, .38);
}

.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}

.btn-outline:hover {
    background: var(--sky);
}

.btn-white {
    background: #fff;
    color: var(--navy);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .12);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .18);
    background: #ffffff;
}

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #0f2d6b 50%, #1540a8 100%);
    position: relative;
    overflow: hidden;
    /* padding: 120px 0 50px; */
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(30, 94, 255, .25) 0%, transparent 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.hero h1 span {
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, .75);
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.trust-chip {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 100px;
}

.trust-chip .ic {
    color: var(--gold);
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Rating Dashboard */
.rating-dashboard {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 24px;
    padding: 36px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.rating-dashboard::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .6), rgba(255, 255, 255, .1));
    z-index: -1;
}

.rd-score {
    font-size: 72px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.rd-label {
    color: var(--muted);
    font-size: 14px;
    margin-top: 4px;
}

.rd-stars {
    font-size: 28px;
    letter-spacing: 4px;
    color: var(--gold);
    margin: 12px 0 8px;
}

.rd-based {
    color: var(--muted);
    font-size: 13px;
}

.rd-divider {
    height: 1px;
    background: var(--border);
    margin: 24px 0;
}

.rd-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rd-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rd-bar-label {
    font-size: 13px;
    color: var(--muted);
    width: 45px;
    text-align: right;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.rd-bar-track {
    flex: 1;
    height: 8px;
    background: var(--sky-mid);
    border-radius: 100px;
    overflow: hidden;
}

.rd-bar-fill {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--blue), #60a5fa);
    transition: width 1.2s cubic-bezier(.4, 0, .2, 1);
}

.rd-bar-pct {
    font-size: 12px;
    color: var(--muted);
    width: 36px;
}

.satisfaction-badge {
    position: absolute;
    top: -18px;
    right: 24px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    padding: 8px 18px;
    border-radius: 100px;
    box-shadow: 0 4px 18px rgba(16, 185, 129, .35);
}

/* ── STATS ── */
.stats-section {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-size: 36px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.stat-num span {
    color: var(--blue);
}

.stat-desc {
    font-size: 13px;
    color: var(--muted);
    margin-top: 6px;
    font-weight: 500;
}

/* ── RATING BREAKDOWN ── */
.breakdown-section {
    background: #fff;
}

.breakdown-card {
    background: linear-gradient(135deg, var(--sky) 0%, #fff 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 60px;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.bd-left {
    text-align: center;
}

.bd-score {
    font-size: 80px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.bd-stars-big {
    font-size: 28px;
    color: var(--gold);
    letter-spacing: 4px;
    margin: 10px 0 6px;
}

.bd-count {
    font-size: 14px;
    color: var(--muted);
}

.bd-bars {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bd-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bd-label {
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
    min-width: 50px;
    text-align: right;
}

.bd-track {
    flex: 1;
    height: 12px;
    background: var(--sky-mid);
    border-radius: 100px;
    overflow: hidden;
}

.bd-fill {
    height: 100%;
    border-radius: 100px;
    transition: width 1.4s cubic-bezier(.4, 0, .2, 1);
}

.bd-fill.s5 {
    background: linear-gradient(90deg, #1E5EFF, #60a5fa);
}

.bd-fill.s4 {
    background: linear-gradient(90deg, #10B981, #34d399);
}

.bd-fill.s3 {
    background: linear-gradient(90deg, #F59E0B, #fcd34d);
}

.bd-fill.s2 {
    background: linear-gradient(90deg, #EF4444, #f87171);
}

.bd-fill.s1 {
    background: #e2e8f0;
}

.bd-pct {
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    color: var(--text);
    min-width: 40px;
}

.bd-count-sm {
    font-size: 12px;
    color: var(--muted);
}

/* ── SUCCESS STORIES ── */
.stories-section {
    background: var(--sky);
}

.stories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 48px;
}

.story-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: transform .28s, box-shadow .28s;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), #60a5fa);
}

.story-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.story-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.story-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
}

.story-info p {
    font-size: 13px;
    color: var(--muted);
    /* margin-top: 2px; */
}

.story-stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
    margin-top: 4px;
}

.story-subject {
    display: inline-block;
    background: var(--sky);
    color: var(--blue);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1px solid var(--sky-mid);
}

.story-phases {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.phase {
    display: flex;
    gap: 14px;
}

.phase-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.phase-icon.challenge {
    background: #fff0f0;
}

.phase-icon.solution {
    background: #f0f7ff;
}

.phase-icon.outcome {
    background: #f0fff8;
}

.phase-content {}

.phase-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
}

.phase-text {
    font-size: 14px;
    color: var(--text);
    margin-top: 3px;
    line-height: 1.55;
}

.story-quote {
    margin-top: 20px;
    padding: 16px 20px;
    background: var(--sky);
    border-left: 3px solid var(--blue);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 14px;
    color: var(--text);
    font-style: italic;
    line-height: 1.6;
}

/* ── REVIEW WALL ── */
.wall-section {
    background: #fff;
}

.wall-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.masonry-grid {
    columns: 3;
    column-gap: 24px;
}

.review-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 22px;
    break-inside: avoid;
    margin-bottom: 22px;
    box-shadow: var(--shadow-sm);
    transition: transform .22s, box-shadow .22s;
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.review-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--blue), transparent);
    opacity: 0;
    transition: opacity .22s;
}

.review-card:hover::after {
    opacity: 1;
}

.rc-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.rc-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue), #a78bfa);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
}

.rc-info h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0px !important;
}

.rc-info p {
    font-size: 11px;
    color: var(--muted);
}

.rc-stars {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1px;
    margin-top: 3px;
}

.rc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.rc-tag {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 3px 9px;
    border-radius: 100px;
}

.rc-tag.subject {
    background: var(--sky);
    color: var(--blue);
    border: 1px solid var(--sky-mid);
}

.rc-tag.platform {
    background: #f0fff8;
    color: #10B981;
    border: 1px solid #a7f3d0;
}

.rc-text {
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.6;
}

.rc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.rc-date {
    font-size: 11px;
    color: var(--muted);
}

.rc-verified {
    font-size: 11px;
    color: var(--green);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ── SUBJECT FILTER ── */
.filter-section {
    background: var(--sky);
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.filter-tab {
    padding: 9px 18px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid var(--border);
    background: #fff;
    color: var(--muted);
    transition: all .2s;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
    box-shadow: 0 4px 14px rgba(30, 94, 255, .3);
}

.filtered-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* ── VIDEO TESTIMONIALS ── */
.video-section {
    background: #fff;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 44px;
}

.video-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: transform .28s, box-shadow .28s;
    cursor: pointer;
    background: var(--navy);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-thumb {
    height: 180px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f2d6b, #1E5EFF);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    transition: all .2s;
}

.video-card:hover .video-play {
    background: var(--blue);
    border-color: var(--blue);
    transform: scale(1.1);
}

.video-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, rgba(10, 31, 68, .6));
}

.video-info {
    padding: 20px;
    background: #fff;
}

.video-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}

.video-info p {
    font-size: 12px;
    color: var(--muted);
    margin-top: 3px;
}

.video-stars {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1px;
    margin-top: 8px;
}

.video-duration {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, .6);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
}

/* ── PLATFORM SECTION ── */
.platform-section {
    background: var(--sky);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 44px;
}

.platform-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all .28s;
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue);
}

.platform-logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    display: inline-block;
}

.platform-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
}

.platform-stats {
    display: flex;
    gap: 24px;
    margin: 16px 0;
    justify-content: center;
}

.ps-item {
    text-align: center;
}

.ps-num {
    font-size: 22px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    color: var(--blue);
}

.ps-label {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
}

.platform-quote {
    font-size: 13px;
    color: var(--text);
    font-style: italic;
    line-height: 1.5;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

/* ── EXPERT SECTION ── */
.expert-section {
    background: #fff;
}

.expert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 44px;
}

.expert-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all .28s;
}

.expert-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.expert-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--blue), #a78bfa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
}

.expert-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
}

.expert-card p {
    font-size: 13px;
    color: var(--muted);
    margin-top: 3px;
}

.expert-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--sky);
    border-radius: 100px;
    padding: 6px 14px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    margin: 12px 0;
}

.expert-rating .star {
    color: var(--gold);
}

.expert-comments {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.expert-comment {
    background: var(--sky);
    border-radius: var(--radius-sm);
    padding: 12px;
    font-size: 12px;
    color: var(--text);
    line-height: 1.5;
    text-align: left;
}

.expert-count {
    font-size: 12px;
    color: var(--muted);
    margin-top: 8px;
}

/* ── SUBMIT REVIEW ── */
.submit-section {
    background: linear-gradient(135deg, var(--sky) 0%, #fff 100%);
}

.submit-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.review-form {
    background: #fff;
    border-radius: var(--radius);
    padding: 44px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(30, 94, 255, .1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.star-rating-input {
    display: flex;
    gap: 6px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    font-size: 28px;
    color: #d1d5db;
    cursor: pointer;
    transition: color .15s;
}

.star-rating-input input:checked~label,
.star-rating-input label:hover,
.star-rating-input label:hover~label {
    color: var(--gold);
}

.upload-area {
    border: 2px dashed var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
}

.upload-area:hover {
    border-color: var(--blue);
    background: var(--sky);
}

.submit-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 10px;
    text-align: center;
}

/* ── WHY TRUST ── */
.trust-section {
    background: var(--sky);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 44px;
}

.trust-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all .28s;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.trust-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* ── FAQ ── */
.faq-section {
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 44px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    gap: 16px;
    transition: background .2s;
}

.faq-q:hover {
    background: var(--sky);
}

.faq-icon {
    font-size: 20px;
    color: var(--blue);
    flex-shrink: 0;
    transition: transform .25s;
}

.faq-a {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 24px 20px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-item.open .faq-q {
    background: var(--sky);
}

/* ── FINAL CTA ── */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, #0f2d6b 50%, #1540a8 100%);
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(30, 94, 255, .2), transparent);
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.cta-section h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: #fff;
    max-width: 700px;
    margin: 0 auto 20px;
}

.cta-section p {
    font-size: 17px;
    color: rgba(255, 255, 255, .75);
    max-width: 560px;
    margin: 0 auto 40px !important;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.cta-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
}

.cta-dot.active {
    background: #fff;
    width: 24px;
    border-radius: 3px;
}

/* ── STICKY SIDEBAR ── */
.page-wrapper {
    display: flex;
    align-items: flex-start;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 30px;
}

.sidebar {
    width: 260px;
    flex-shrink: 0;
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.main-content {
    flex: 1;
    min-width: 0;
}

.sidebar-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 22px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.sb-score {
    font-size: 48px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.sb-stars {
    font-size: 18px;
    color: var(--gold);
    letter-spacing: 3px;
    margin: 6px 0 4px;
}

.sb-label {
    font-size: 12px;
    color: var(--muted);
}

.sb-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sb-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background .18s, color .18s;
}

.sb-link:hover {
    background: var(--sky);
    color: var(--blue);
}

.sb-trust-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sb-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text);
}

.sb-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    flex-shrink: 0;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-up {
    opacity: 0;
    animation: fadeUp .6s ease forwards;
}

.fade-up.d1 {
    animation-delay: .1s;
}

.fade-up.d2 {
    animation-delay: .2s;
}

.fade-up.d3 {
    animation-delay: .3s;
}

.fade-up.d4 {
    animation-delay: .4s;
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .rating-dashboard {
        max-width: 460px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat-item:nth-child(3) {
        border-right: none;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .masonry-grid {
        columns: 2;
    }

    .video-grid {
        grid-template-columns: 1fr 1fr;
    }

    .platform-grid {
        grid-template-columns: 1fr 1fr;
    }

    .expert-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .submit-inner {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
    }

    .breakdown-card {
        grid-template-columns: 1fr;
    }

    .bd-left {
        padding-bottom: 30px;
        border-bottom: 1px solid var(--border);
    }
}

@media(max-width:640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2n) {
        border-right: none;
    }

    .masonry-grid {
        columns: 1;
    }

    .video-grid,
    .platform-grid,
    .expert-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }

    .filtered-reviews {
        grid-template-columns: 1fr;
    }

    .hero-ctas,
    .cta-btns {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section {
        padding: 40px 0;
    }
}

/* Service filter */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 44px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all .22s;
}

.service-card:hover,
.service-card.active {
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.service-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: inline-block;
}

.service-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.service-card p {
    font-size: 12px;
    color: var(--muted);
}

.service-count {
    display: inline-block;
    background: var(--sky);
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    margin-top: 8px;
}

@media(max-width:768px) {
    .service-grid {
        grid-template-columns: 1fr 1fr;
    }
}

p{
    margin: 0px !important;
}