[id] {
    scroll-margin-top: 80px;
}

:root {
    --brand: var(--theme-primary);
    --ink: #111;
    --muted: #4b5563;
    --subtle: #374151;
    --border: #e5e7eb;
    --bg: #fff;
    --bg-light: #f8fafc;
    --green: #16a34a;
    --red: #dc2626;
    --green-soft: rgba(58, 143, 25, .06);
    --green-border: rgba(58, 143, 25, .15);
    --blue-soft: #eff6ff;
    --blue-border: #dbeafe;
    --mint-soft: #f0fdf4;
    --mint-border: #bbf7d0;
}

/* ─── Waterfall ─── */
.waterfall-container {
    overflow-x: hidden;
    background: #fff !important;
    padding: 0 !important;
}

.waterfall-container>section {
    border-bottom: none;
    overflow-x: hidden;
    padding: 55px 0;
}

.waterfall-container>section:nth-child(even) {
    background: #fafbfc;
}

@media (max-width: 767px) {
    .waterfall-container>section {
        padding: 48px 0;
    }
}

.bg-soft-primary,
.bg-soft-warning,
.bg-soft-info,
.bg-soft-purple,
.bg-soft-success,
.bg-soft-secondary {
    background: #f3f4f6;
}

/* ═══════════ HERO ═══════════ */
.hero-screen {
    width: 100%;
    color: var(--ink);
    position: relative;
    overflow: hidden;
}

.hero-screen::before {
    display: none;
}

.hero-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-col-l {
    flex: 1;
    min-width: 0;
}

.hero-col-r {
    width: 420px;
    flex-shrink: 0;
}

@keyframes heroUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-top-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    animation: heroUp .4s ease both;
}

.hero-kicker {
    position: relative;
    width: 420px;
    height: 36px;
    overflow: hidden;
    padding: 7px 18px;
    background: var(--theme-primary);
    border: none;
    border-radius: 4px;
    text-align: center;
}

.hero-rotate-item {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    line-height: 20px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .4s ease, transform .4s ease;
    position: absolute;
    left: 0;
    right: 0;
    top: 7px;
    text-align: center;
}

.hero-rotate-item.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-tagline {
    display: flex;
    flex-direction: column;
    padding: 8px 16px;
    border-left: 3px solid var(--theme-secondary);
    background: var(--bg-light);
    border-radius: 0 6px 6px 0;
}

.hero-tagline-brand {
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--theme-primary);
    line-height: 1.2;
    clip-path: inset(0 100% 0 0);
    transition: clip-path .6s cubic-bezier(.16, 1, .3, 1);
}

.hero-tagline-np {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--theme-secondary);
    line-height: 1.3;
    clip-path: inset(0 100% 0 0);
    transition: clip-path .6s cubic-bezier(.16, 1, .3, 1);
}

.hero-tagline-brand.ht-reveal,
.hero-tagline-np.ht-reveal {
    clip-path: inset(0 0 0 0);
}

.hero-h1 {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.2px;
    color: var(--ink);
    margin: 0 0 20px;
    animation: heroUp .4s ease .05s both;
}

.hero-tagcard {
    margin: 0 0 28px;
    animation: heroUp .4s ease .1s both;
}

.hero-tc-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.hero-tc-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 4px;
    border: 1.5px solid transparent;
    font-size: var(--fs-base);
    font-weight: 700;
    opacity: 0;
    transform: scale(.9);
    transition: opacity .4s ease, transform .4s ease, border-color .3s ease;
}

.hero-tc-pill.visible {
    opacity: 1;
    transform: scale(1);
}

.hero-tc-row .hero-tc-pill.visible:nth-last-child(-n+3) {
    border: 1.5px solid var(--bs-success);
}

.hero-tc-no {
    background: var(--red);
    color: #fff;
}

.hero-tc-no i,
.hero-tc-no svg {
    color: #fff !important;
    stroke: #fff !important;
}

.hero-tc-yes {
    background: #fff;
    border: 1.5px solid var(--green);
    color: var(--green);
}

.hero-tc-yes i,
.hero-tc-yes svg {
    color: var(--green) !important;
    stroke: var(--green) !important;
}

.hero-np-strip {
    display: none;
}

.hero-btn-outline {
    flex: 1;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    white-space: nowrap;
    border: 1.5px solid rgba(255, 255, 255, .55);
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    backdrop-filter: blur(8px);
    transition: .25s ease;
}

.hero-btn-outline i {
    width: 16px;
    height: 16px;
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, .18);
    border-color: #fff;
    color: #fff;
}

.hero-btn-generate {
    position: relative;
    flex: 1;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    white-space: nowrap;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff8a00, #ff3d2e);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    box-shadow: 0 0 0 0 rgba(255, 61, 46, .6);
    transition: filter .2s ease, transform .2s ease;
    animation: heroBtnPulse 2s ease-in-out infinite;
}

.hero-btn-generate i,
.hero-btn-generate svg {
    width: 17px;
    height: 17px;
}

.hero-btn-generate .hero-btn-generate-arrow {
    transition: transform .2s ease;
}

.hero-btn-generate:hover {
    color: #fff;
    transform: translateY(-1px);
    filter: brightness(1.07);
    animation: none;
    box-shadow: 0 6px 18px rgba(255, 61, 46, .5);
}

.hero-btn-generate:hover .hero-btn-generate-arrow {
    transform: translateX(3px);
}

.hero-btn-generate:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

/* breathing glow so the button is easy to notice */
@keyframes heroBtnPulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 61, 46, .6); }
    70%  { box-shadow: 0 0 0 12px rgba(255, 61, 46, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 61, 46, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-btn-generate { animation: none; }
}

.hero-nums {
    display: flex;
    gap: 28px;
    animation: heroUp .4s ease .2s both;
    padding-top: 20px;
    margin-top: 6px;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.hero-num {
    text-align: center;
}

.hero-num-val {
    display: block;
    font-size: var(--fs-2xl);
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
}

.hero-num-lbl {
    display: block;
    font-size: var(--fs-xs);
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 4px;
}

.hero-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .04), 0 8px 20px rgba(0, 0, 0, .07), 0 20px 45px rgba(0, 0, 0, .06), 4px 0 8px -2px rgba(0, 0, 0, .03), -4px 0 8px -2px rgba(0, 0, 0, .03);
    border: 1px solid var(--border);
    animation: heroUp .45s ease .1s both;
    position: relative;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    z-index: 11;
}

.hero-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(315deg, #b8bfc7 0%, #d8dce1 40%, #eceef1 100%);
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    z-index: 10;
    filter: drop-shadow(-3px 3px 5px rgba(0, 0, 0, .18));
}

.hero-card-head {
    padding: 18px 20px;
    display: flex;
    align-items: stretch;
    gap: 12px;
    background: var(--theme-primary);
}

.hero-card-head span:first-child {
    font-weight: 700;
    font-size: var(--fs-lg);
    color: #fff;
}

.hero-card-subhead {
    padding: 14px 20px 4px;
    font-weight: 700;
    font-size: var(--fs-sm);
    letter-spacing: .4px;
    text-transform: uppercase;
    color: var(--text-muted, #6b7280);
}

.hero-card-count {
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--theme-primary);
    background: #fff;
    padding: 4px 12px;
    border-radius: 999px;
}

.hero-card-list {
    padding: 10px;
}

.hero-card-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: .2s ease;
    border-left: 3px solid transparent;
}

.hero-card-item:hover {
    background: var(--bg-light);
    border-left-color: var(--theme-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .03);
}

.hero-card-item.active {
    background: var(--mint-soft);
    border-left-color: var(--green);
}

.hero-card-item i,
.hero-card-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--green) !important;
    stroke: var(--green) !important;
}

.hci-name {
    display: block;
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
}

.hci-desc {
    display: block;
    font-size: var(--fs-xs);
    color: var(--muted);
    line-height: 1.3;
    margin-top: 2px;
}

.hci-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.hci-tag-red {
    background: var(--red);
    color: #fff;
}

.hci-tag-green {
    background: var(--green);
    color: #fff;
}

.hci-tag-blue {
    background: var(--theme-primary);
    color: #fff;
}

/* Subtle inline count tiny gray text. Stays out of the way so
   "Start Generating Now" remains the only real CTA on the card. */
.hci-tag-count,
.hci-tag-count.hci-c-green,
.hci-tag-count.hci-c-blue,
.hci-tag-count.hci-c-amber,
.hci-tag-count.hci-c-purple {
    background: transparent;
    color: #9ca3af !important;
    border: 0;
    padding: 0;
    font-size: 11px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.hero-card-foot {
    padding: 14px 20px;
    border-top: 1px solid var(--border);
    text-align: center;
    background: var(--theme-secondary);
}

.hero-foot-link {
    font-size: var(--fs-base);
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .2s ease;
}

.hero-foot-link:hover {
    color: #fff;
    gap: 12px;
}

.hero-foot-link i,
.hero-foot-link svg {
    width: 14px;
    height: 14px;
    color: inherit;
    stroke: currentColor;
    transition: transform .2s ease;
}

.hero-foot-link:hover i,
.hero-foot-link:hover svg {
    transform: translateX(3px);
}

.hero-video {
    margin-top: 64px;
    position: relative;
    z-index: 1;
    animation: heroUp .5s ease .25s both;
}

.hero-vf {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1), 0 16px 40px rgba(0, 0, 0, .08);
}

.hero-vf-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--theme-primary);
}

.hero-vf-url {
    text-align: center;
    font-size: clamp(12px, 1.2vw, 15px);
    color: rgba(255, 255, 255, .9);
    font-weight: 500;
    letter-spacing: .3px;
}

.hero-vf-screen {
    background: #fff;
}

.hero-vf-screen canvas,
.hero-vf-screen video {
    width: 100%;
    max-height: 440px;
    display: block;
    object-fit: contain;
}

.hero-vf-screen video::-webkit-media-controls-panel,
.hero-vf-screen video::-webkit-media-controls-overlay-play-button,
.hero-vf-screen video::-webkit-media-controls-picture-in-picture-button,
.hero-vf-screen video::-webkit-media-controls-overflow-button,
.hero-vf-screen video::-webkit-media-controls-enclosure,
.hero-vf-screen video::-webkit-media-controls {
    display: none !important;
    -webkit-appearance: none;
    opacity: 0 !important;
    pointer-events: none !important;
}

.hero-vf-ind {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
}

.hero-vf-ind button {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: background .2s;
}

.hero-cta-box {
    max-width: 400px;
    margin: 0 auto;
}

.btn-hero-generate {
    background: var(--brand);
    color: #fff !important;
    transition: opacity .2s ease;
}

.btn-hero-generate:hover,
.btn-hero-generate:focus {
    opacity: .9;
    outline: none;
}

@media (max-width: 991px) {
    .hero-row {
        flex-direction: column;
        gap: 32px;
    }

    .hero-col-r {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-screen {
        padding: 32px 0 40px;
    }

    .hero-top-bar {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .hero-kicker {
        width: 100%;
        font-size: 10px;
        padding: 5px 12px;
        height: 28px;
    }

    .hero-rotate-item {
        font-size: 10px;
        line-height: 16px;
        top: 5px;
    }

    .hero-tagline {
        padding-left: 12px;
    }

    .hero-tagline-brand {
        font-size: var(--fs-base);
    }

    .hero-h1 {
        font-size: var(--fs-2xl);
        line-height: 1.15;
        letter-spacing: -.5px;
    }

    .hero-tc-row {
        gap: 6px;
    }

    .hero-tc-pill {
        padding: 6px 12px;
        font-size: var(--fs-sm);
    }

    .hero-tc-pill i,
    .hero-tc-pill svg {
        width: 14px !important;
        height: 14px !important;
    }

    .hero-tagcard {
        overflow: hidden;
    }

    .hero-btn-outline {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: var(--fs-sm);
    }

    .hero-nums {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-num-val {
        font-size: var(--fs-base);
    }

    .hero-num-lbl {
        font-size: 9px;
    }

    .hero-card {
        margin-top: 8px;
    }

    .hero-video {
        margin-top: 40px;
    }

    .hero-vf-bar {
        padding: 8px 14px;
    }

    .hero-vf-url {
        font-size: 11px;
    }

    .hero-vf-screen canvas,
    .hero-vf-screen video {
        max-height: 200px;
    }
}

/* ═══════════ SHARED SECTION PATTERNS ═══════════ */
.app-subtitle {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--theme-primary);
    margin-bottom: 16px;
}

.app-highlight {
    color: var(--theme-secondary);
}

.ps-heading,
.services-title,
.how-title,
.qg-title,
.pricing-title,
.ts-heading {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    letter-spacing: -.8px;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 16px;
}

.ps-desc,
.services-subtitle,
.how-subtitle,
.qg-subtitle,
.ts-subheading {
    font-size: var(--fs-md);
    line-height: 1.75;
    color: var(--muted);
    max-width: 540px;
}

.ts-subheading {
    margin-bottom: 24px;
    max-width: 520px;
}

.cs-header,
.hiw-header,
.qg-header,
.pr-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 20px;
}

.cs-header {
    margin-bottom: 32px;
}

.cs-header-left,
.hiw-header-left,
.qg-header-left,
.pr-header-left {
    flex: 1;
}

.ps-header-card,
.cs-header-card,
.hiw-header-card,
.qg-header-card {
    flex: 1;
    padding: 24px 22px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    display: flex;
    gap: 18px;
    margin-top: 28px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}

.ps-header-card,
.cs-header-card {
    flex-direction: column;
    align-items: flex-start;
}

.hiw-header-card,
.qg-header-card {
    align-items: center;
    gap: 24px;
}

.ps-header-card-text,
.cs-header-card-text {
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 700;
    color: var(--theme-primary);
    line-height: 1.3;
    letter-spacing: -.3px;
}

.qg-header-card-text {
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--theme-primary);
    line-height: 1.3;
}

@media (max-width: 767px) {

    .cs-header,
    .hiw-header,
    .qg-header,
    .pr-header {
        flex-direction: column;
        gap: 16px;
    }

    .ps-header-card,
    .cs-header-card,
    .hiw-header-card,
    .qg-header-card,
    .pr-header-card {
        width: 100%;
        margin-top: 0;
    }

    .hiw-header-card,
    .qg-header-card {
        flex-direction: column;
        gap: 12px;
    }
}

/* ═══════════ SHARED CARD PATTERNS ═══════════ */
.how-top,
.qg-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.how-step-pill,
.qg-step-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f3f4f6;
    border: 1px solid var(--border);
}

.step-no,
.qg-step-no {
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    background: var(--theme-secondary);
    color: #fff;
}

.step-no {
    width: 28px;
    height: 28px;
    font-size: var(--fs-base);
}

.qg-step-no {
    width: 34px;
    height: 34px;
    font-size: var(--fs-base);
}

.step-text,
.qg-step-text {
    font-size: var(--fs-13);
    font-weight: 700;
    color: var(--ink);
}

.how-icon,
.qg-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border: 1px solid var(--border);
}

.how-icon svg,
.qg-icon svg {
    width: 22px;
    height: 22px;
    color: var(--ink);
    stroke: var(--ink) !important;
}

.how-card-title,
.qg-card-title {
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

.how-card-desc,
.qg-card-desc {
    font-size: var(--fs-13);
    line-height: 1.5;
    color: var(--muted);
    margin-bottom: 14px;
}

.how-mini-note,
.qg-mini-note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    background: #f3f4f6;
    font-size: var(--fs-13);
    font-weight: 600;
    color: var(--subtle);
}

.how-wrap-card,
.services-wrap-card {
    padding: 0;
    background: transparent;
}

@media (max-width: 575px) {

    .how-card,
    .qg-card {
        padding: 18px;
    }
}

/* ═══════════ TRUST STRIP ═══════════ */
.trust-strip {}

.trust-section-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: var(--fs-sm);
    font-weight: 800;
    border-radius: 999px;
    background: var(--bg-light);
    color: var(--ink);
}

.ts-eyebrow {
    font-size: var(--fs-13);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--theme-secondary);
    margin-bottom: 12px;
}

.ts-checks {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.ts-checks li {
    position: relative;
    padding-left: 22px;
    font-size: var(--fs-md);
    font-weight: 500;
    color: var(--subtle);
    line-height: 1.55;
    margin-bottom: 10px;
}

.ts-checks li:last-child {
    margin-bottom: 0;
}

.ts-checks li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--theme-secondary);
    font-weight: 800;
    font-size: var(--fs-base);
}

.ts-orgs {
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.ts-orgs-label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 10px;
}

.ts-org-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ts-org-tag {
    font-size: var(--fs-13);
    font-weight: 600;
    color: var(--ink);
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    cursor: default;
    transition: border-color .2s ease;
}

.ts-org-tag:hover {
    border-color: var(--theme-primary);
}

.ts-stat-card:hover {
    border-color: var(--theme-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .07);
}

.ts-stat-num {
    font-size: var(--fs-3xl);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.5px;
    line-height: 1;
    margin-bottom: 2px;
}

.ts-stat-label {
    font-size: var(--fs-13);
    font-weight: 500;
    color: var(--muted);
    line-height: 1.4;
}

@media (max-width: 991px) {
    .ts-grid {
        flex-direction: column;
        gap: 32px;
    }

    .ts-right {
        width: 100%;
        flex-direction: row;
        gap: 10px;
    }

    .ts-stat-card {
        flex: 1;
        padding: 18px 16px;
    }
}

@media (max-width: 575px) {
    .ts-stat-num {
        font-size: var(--fs-4xl);
    }

    .ts-stat-card {
        padding: 14px 12px;
    }

    .ts-checks li {
        font-size: var(--fs-base);
    }
}

/* ── Trusted By Grid ── */
.ts-trusted-section {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.ts-trusted-title {
    font-size: var(--fs-md);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.ts-trusted-card {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    text-align: center;
    transition: all .25s cubic-bezier(.16, 1, .3, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}

.ts-trusted-card:hover {
    border-color: var(--theme-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .07);
}

.ts-trusted-num {
    display: block;
    font-size: var(--fs-3xl);
    font-weight: 800;
    color: var(--theme-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.ts-trusted-label {
    display: block;
    font-size: var(--fs-13);
    font-weight: 600;
    color: var(--muted);
}

/* ── Reviews in Trust Section ── */
.ts-reviews-section {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

/* ═══════════ PROBLEM/SOLUTION ═══════════ */
.ps-section {}

.ps-grid {
    display: flex;
    gap: 20px;
}

.ps-col {
    flex: 1;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}

.ps-col-problem {
    border-color: #fecaca;
    background: #fffbfb;
}

.ps-col-solution {
    border-color: rgba(58, 143, 25, .2);
    background: #fbfefb;
}

.ps-col-head {
    margin-bottom: 16px;
}

.ps-col-badge {
    display: inline-block;
    font-size: var(--fs-13);
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
}

.ps-badge-danger {
    background: #fef2f2;
    color: var(--red);
    border: 1px solid #fecaca;
}

.ps-badge-success {
    background: var(--green-soft);
    color: var(--theme-secondary);
    border: 1px solid var(--green-border);
}

.ps-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ps-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    transition: all .25s ease;
}

.ps-item:hover {
    border-color: var(--theme-secondary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
}

.ps-item-icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: var(--fs-13);
    flex-shrink: 0;
    margin-top: 1px;
}

.ps-item-danger .ps-item-icon {
    background: #fef2f2;
    color: var(--red);
}

.ps-item-success .ps-item-icon {
    background: var(--green-soft);
    color: var(--theme-secondary);
}

.ps-item div strong {
    display: block;
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
}

.ps-item div span {
    font-size: var(--fs-13);
    font-weight: 400;
    color: var(--muted);
    line-height: 1.5;
}

@media (max-width: 767px) {
    .ps-grid {
        flex-direction: column;
        gap: 12px;
    }

    .ps-col {
        padding: 16px;
    }

    .ps-item {
        padding: 10px 12px;
    }
}

/* ═══════════ CORE SERVICES ═══════════ */
.core-services {}

.doc-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    height: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

.doc-card:hover {
    border-color: var(--theme-secondary);
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .1);
}

.doc-card:hover .doc-icon {
    transform: scale(1.12);
    background: rgba(58, 143, 25, .1);
}

.doc-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-soft);
    border: 1px solid rgba(58, 143, 25, .12);
    transition: all .2s;
}

.doc-card:hover .doc-icon {
    background: rgba(58, 143, 25, .12);
    border-color: rgba(58, 143, 25, .25);
}

.doc-icon svg {
    width: 22px;
    height: 22px;
    color: var(--theme-secondary);
    stroke: var(--theme-secondary) !important;
}

.doc-card h3 {
    font-size: var(--fs-md);
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--ink);
}

.doc-card p {
    font-size: var(--fs-13);
    color: var(--muted);
    margin-bottom: 0;
}

.doc-card .hcg-badge {
    position: absolute;
    top: 10px;
    right: 10px;
}

/* ═══════════ HOW IT WORKS ═══════════ */
.how-it-works {}

.hiw-timeline {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
}

.hiw-tl-step {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.hiw-tl-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--theme-primary);
    color: #fff;
    font-size: var(--fs-xs);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hiw-tl-label {
    font-size: var(--fs-13);
    font-weight: 700;
    color: var(--ink);
}

.hiw-tl-connector {
    flex: 1;
    min-width: 40px;
    height: 1px;
    background: var(--border);
    flex-shrink: 0;
}

.how-card {
    border-radius: 14px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--border);
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}

.how-card:hover {
    border-color: var(--theme-secondary);
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .1);
}

@media (max-width: 767px) {
    .hiw-timeline {
        flex-wrap: wrap;
        gap: 6px;
    }

    .hiw-tl-step {
        white-space: normal;
    }

    .hiw-tl-connector {
        min-width: 16px;
    }
}

/* ═══════════ QUICK GENERATE ═══════════ */
.quick-generate-section {}

.qg-card {
    border-radius: 14px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--border);
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}

.qg-card:hover {
    border-color: var(--theme-primary);
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .1);
}

/* ═══════════ PRICING ═══════════ */
.pricing-section {}

.pricing-section .plan-card {
    background: #fff;
    border-color: var(--border);
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
    border-radius: 14px;
}

.pricing-section .plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .1);
    border-color: var(--theme-primary);
}

.plan-popular {
    border: 2px solid var(--theme-primary);
    box-shadow: 0 8px 30px rgba(var(--theme-primary-rgb), .1);
    transform: scale(1.03);
}

.pricing-section .plan-popular:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 20px 40px rgba(var(--theme-primary-rgb), .16);
}

.plan-features li.muted {
    color: #9ca3af;
}

.plan-features li.muted .pf-check {
    background: #f3f4f6;
    color: #9ca3af;
}

.pricing-footnote {
    display: inline-block;
    font-size: var(--fs-13);
    font-weight: 600;
    color: var(--muted);
}

.pr-refer-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--green-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pr-refer-icon svg {
    width: 20px;
    height: 20px;
    color: var(--theme-secondary);
    stroke: var(--theme-secondary) !important;
}

.pr-refer-desc {
    font-size: var(--fs-13);
    color: var(--muted);
    line-height: 1.4;
}

.pr-refer-points {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pr-point-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    background: var(--green-soft);
    border: 1px solid var(--green-border);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--theme-secondary);
}

.pr-point-tag .pr-pt-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--theme-secondary);
}

.pr-billing-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.pr-billing-btn {
    padding: 8px 18px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: #fff;
    font-size: var(--fs-13);
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    transition: all .2s cubic-bezier(.16, 1, .3, 1);
}

.pr-billing-btn:hover {
    border-color: var(--theme-secondary);
    color: var(--theme-secondary);
}

.pr-billing-btn.active {
    background: var(--theme-secondary);
    color: #fff;
    border-color: var(--theme-secondary);
}

.pr-billing-save {
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--theme-secondary);
    margin-left: 4px;
}

.pr-billing-btn.active .pr-billing-save {
    color: #fff;
}

/* ═══════════ FIND PROFESSIONAL ═══════════ */
#find-professional {}

.fp-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 24px 20px;
    text-align: center;
    height: 100%;
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}

.fp-card:hover {
    border-color: var(--theme-primary);
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .1);
}

.fp-img-box {
    width: 100%;
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
}

.fp-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.fp-card:hover .fp-img-box img {
    transform: scale(1.05);
}

.fp-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    background: var(--theme-primary);
    color: #fff;
    font-size: var(--fs-md);
    font-weight: 700;
    text-decoration: none;
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

.fp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(var(--theme-primary-rgb), .25);
    color: #fff;
}

/* ═══════════ REVIEWS ═══════════ */
.rv-section {
    position: relative;
    overflow: hidden;
}

.rv-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-soft);
    border: 1px solid var(--green-border);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: var(--fs-13);
    font-weight: 700;
    color: var(--theme-secondary);
    margin-bottom: 16px;
}

.rv-badge svg {
    width: 14px;
    height: 14px;
}

.rv-heading {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: #111827;
    letter-spacing: -.5px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.rv-heading span {
    color: var(--theme-secondary);
}

.rv-sub {
    font-size: var(--fs-md);
    color: var(--muted);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 24px;
}

.rv-score {
    font-size: var(--fs-6xl);
    font-weight: 900;
    color: #111827;
    line-height: 1;
}

.rv-stars {
    color: #facc15;
    font-size: var(--fs-2xl);
    letter-spacing: 2px;
    line-height: 1;
}

.rv-count {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: #9ca3af;
}

.rv-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}

.rv-card:hover {
    border-color: var(--theme-secondary);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .1);
    transform: translateY(-5px);
}

.rv-card-stars {
    color: #facc15;
    font-size: var(--fs-md);
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.rv-card-text {
    font-size: var(--fs-base);
    line-height: 1.7;
    color: var(--subtle);
    flex: 1;
    margin-bottom: 18px;
    font-style: italic;
}

.rv-card-user {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f3f4f6;
    padding-top: 16px;
}

.rv-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--theme-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-base);
    font-weight: 800;
    flex-shrink: 0;
}

.rv-card-user strong {
    display: block;
    font-size: var(--fs-base);
    font-weight: 700;
    color: #111827;
}

.rv-card-user small {
    font-size: var(--fs-sm);
    color: #9ca3af;
    font-weight: 500;
}

.rv-foot {
    font-size: var(--fs-13);
    font-weight: 500;
    color: #9ca3af;
}

@media (max-width: 767px) {
    .rv-score {
        font-size: var(--fs-4xl);
    }
}

/* ═══════════ FOCUS STYLES ═══════════ */
.btn-hero-primary:focus-visible,
.btn-hero-secondary:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
}

.how-card:focus-visible,
.qg-card:focus-visible,
.plan-card:focus-visible,
.review-card:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
}
