/* =====================================================================
   Digital sharing — short, sharp, real. Beats plain "feature-list" pages
   by leading with a real DICOM viewer screenshot and cutting body copy.
===================================================================== */

.ds-page main {
    padding-top: 68px;
}

.ds-page section {
    padding: 0;
}

/* =====================================================================
   EYEBROWS
===================================================================== */

.ds-page .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 11.5px;
    font-weight: 800;
    color: var(--primary);
    background: rgba(20, 184, 166, 0.10);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
    border: 1px solid rgba(20, 184, 166, 0.18);
}

.ds-page .eyebrow-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.16);
    animation: ds-eyebrow-pulse 1.6s ease-in-out infinite;
}

@keyframes ds-eyebrow-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.14); }
    50% { box-shadow: 0 0 0 7px rgba(20, 184, 166, 0.02); }
}

.ds-page .eyebrow-warn {
    color: #b45309;
    background: rgba(245, 158, 11, 0.10);
    border-color: rgba(245, 158, 11, 0.22);
}

.ds-page .eyebrow-dark {
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.ds-page .eyebrow-light {
    color: #f0fdfa;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.28);
}

/* =====================================================================
   SECTION BASE
===================================================================== */

.ds-section {
    padding: 72px 0;
    position: relative;
}

.ds-section--soft {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.ds-page .section-head--center {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    text-align: center;
}

.ds-page .section-head--center h2 {
    text-align: center;
    font-size: clamp(28px, 3.4vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.ds-page .section-head--center h2 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ds-page .section-head--center p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
    margin: 0 auto;
    max-width: 34rem;
}

/* Big buttons for the landing */
.ds-page .btn-lg {
    padding: 14px 24px;
    font-size: 15px;
    border-radius: 12px;
}

.ds-page .btn-lg svg {
    width: 16px;
    height: 16px;
}

/* =====================================================================
   HERO
===================================================================== */

.ds-hero {
    padding: 64px 0 56px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% -10%, rgba(20, 184, 166, 0.16), transparent 55%),
        radial-gradient(circle at 5% 110%, rgba(15, 118, 110, 0.10), transparent 45%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.ds-hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.ds-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: ds-orb-float 14s ease-in-out infinite;
}

.ds-orb-1 {
    width: 340px;
    height: 340px;
    top: -80px;
    right: -60px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.35), transparent 70%);
}

.ds-orb-2 {
    width: 240px;
    height: 240px;
    bottom: -40px;
    left: -30px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.18), transparent 70%);
    animation-delay: -6s;
}

.ds-orb-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 45%;
    background: radial-gradient(circle, rgba(15, 118, 110, 0.14), transparent 70%);
    animation-delay: -3s;
}

@keyframes ds-orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.08); }
}

.ds-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.ds-hero-copy h1 {
    text-align: left;
    font-size: clamp(34px, 4.4vw, 52px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: var(--ink-1);
}

.ds-h1-accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.ds-h1-accent::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(20, 184, 166, 0.24), rgba(20, 184, 166, 0));
    border-radius: 8px;
    z-index: -1;
}

.ds-hero-copy .lead {
    color: var(--ink-3);
    font-size: 17px;
    line-height: 1.55;
    max-width: 30rem;
    margin-bottom: 24px;
}

.ds-hero-copy .lead strong {
    color: var(--ink-1);
    font-weight: 700;
}

.ds-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.ds-hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    gap: 8px;
}

.ds-hero-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
}

.ds-hero-bullets li svg {
    width: 16px;
    height: 16px;
    padding: 2px;
    color: var(--primary);
    background: rgba(20, 184, 166, 0.14);
    border-radius: 999px;
    flex-shrink: 0;
}

.ds-offer-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.10), rgba(20, 184, 166, 0.04));
    border: 1px solid rgba(20, 184, 166, 0.28);
    color: var(--ink-2);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.08);
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ds-offer-pill strong {
    color: var(--primary-dark);
    font-weight: 800;
}

/* Hero visual — real DICOM viewer inside a phone mock */
.ds-hero-visual {
    display: flex;
    justify-content: center;
}

.ds-hero-phone-wrap {
    position: relative;
    display: block;
    width: 320px;
    max-width: 100%;
    margin: 0 auto;
}

.ds-hero-phone-wrap .phone-mock,
.ds-hero-phone-wrap .phone-mock-lg {
    width: 100%;
    margin: 0;
    padding: 8px 8px 14px;
    background: #0f172a;
    border-radius: 44px;
    box-shadow:
        0 30px 60px rgba(15, 23, 42, 0.24),
        0 12px 24px rgba(15, 23, 42, 0.14),
        inset 0 0 0 2px rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 2;
    border: none;
}

.ds-hero-phone-wrap .phone-mock-notch {
    width: 96px;
    height: 22px;
    background: #0f172a;
    border-radius: 0 0 14px 14px;
    margin: 0 auto 6px;
    position: relative;
    z-index: 1;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

.ds-hero-phone-wrap .phone-mock-screen--img {
    aspect-ratio: 390 / 844;
    border-radius: 30px;
    overflow: hidden;
    background: #000;
    position: relative;
}

.ds-hero-phone-wrap .phone-mock-screen--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.ds-hero-badge {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 9px 13px;
    border-radius: 999px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-2);
    animation: ds-badge-float 5s ease-in-out infinite;
    white-space: nowrap;
}

.ds-hero-badge svg {
    width: 15px;
    height: 15px;
    color: #25D366;
}

.ds-hero-badge-1 {
    top: 16px;
    left: -32px;
}

.ds-hero-badge-2 {
    bottom: 80px;
    right: -32px;
    animation-delay: -2.5s;
}

.ds-hero-badge-2 svg { color: var(--primary); }

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.24);
    animation: ds-eyebrow-pulse 1.4s ease-in-out infinite;
}

@keyframes ds-badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.ds-hero-play {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.92);
    color: #fff;
    padding: 10px 18px 10px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.35), 0 0 0 3px rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    transition: transform var(--transition), background var(--transition);
}

.ds-hero-play:hover {
    background: var(--primary);
    transform: translateX(-50%) translateY(-2px);
}

.ds-hero-play svg {
    width: 14px;
    height: 14px;
    padding: 3px;
    background: var(--primary-light);
    color: #fff;
    border-radius: 999px;
    box-sizing: content-box;
}

/* =====================================================================
   TRUST BAND (modality strip)
===================================================================== */

.trust-band {
    padding: 24px 0;
    background: #ffffff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-band-title {
    text-align: center;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.trust-band-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 10px;
}

.trust-band-row span {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ink-2);
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 999px;
    letter-spacing: 0.02em;
    transition: all var(--transition);
}

.trust-band-row span:hover {
    color: var(--primary);
    border-color: rgba(20, 184, 166, 0.4);
    background: rgba(20, 184, 166, 0.06);
}

/* =====================================================================
   PROBLEM (3 short cards)
===================================================================== */

.ds-problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.ds-problem-grid--3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 960px;
    margin: 0 auto;
}

.ds-problem-card {
    position: relative;
    padding: 26px 22px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    overflow: hidden;
}

.ds-problem-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.ds-problem-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(245, 158, 11, 0.32);
}

.ds-problem-card:hover::before {
    opacity: 1;
}

.ds-problem-num {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #b45309;
    background: rgba(245, 158, 11, 0.10);
    padding: 4px 10px;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 14px;
}

.ds-problem-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink-1);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.ds-problem-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

/* =====================================================================
   HOW IT WORKS — 4 compact numbered cards in one row
===================================================================== */

.ds-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: none;
    position: relative;
}

.ds-steps::before {
    content: "";
    position: absolute;
    top: 26px;
    left: calc(100% / 8);
    right: calc(100% / 8);
    height: 2px;
    background: linear-gradient(90deg, rgba(20, 184, 166, 0.15), rgba(20, 184, 166, 0.4), rgba(20, 184, 166, 0.15));
    z-index: 0;
}

.ds-steps li {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 6px;
}

.ds-steps-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.28);
    margin-bottom: 16px;
    border: 4px solid var(--surface);
}

.ds-section--soft .ds-steps-num {
    border-color: #f4f7fa;
}

.ds-steps li h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--ink-1);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.ds-steps li p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
    max-width: 15rem;
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================================
   INCLUDED — 3 real image panels
===================================================================== */

.ds-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ds-panel {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.ds-panel:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(20, 184, 166, 0.25);
}

.ds-panel-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--surface-2);
}

.ds-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.ds-panel:hover .ds-panel-img img {
    transform: scale(1.03);
}

.ds-panel-img--viewer {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    aspect-ratio: 9 / 14;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.ds-panel-phone-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 18px 12px;
}

.ds-panel-phone-wrap .phone-mock-sm {
    width: min(148px, 72%);
    margin: 0;
    padding: 6px 6px 10px;
    background: #0f172a;
    border-radius: 28px;
    box-shadow:
        0 16px 32px rgba(0, 0, 0, 0.35),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    border: none;
}

.ds-panel-phone-wrap .phone-mock-sm .phone-mock-notch {
    width: 52px;
    height: 12px;
    margin-bottom: 6px;
}

.ds-panel-phone-wrap .phone-mock-screen--img {
    aspect-ratio: 390 / 844;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
}

.ds-panel-phone-wrap .phone-mock-screen--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.ds-panel-viewer-open {
    position: absolute;
    z-index: 3;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px 7px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.92);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background var(--transition), transform var(--transition);
    backdrop-filter: blur(4px);
    white-space: nowrap;
}

.ds-panel--viewer:hover .ds-panel-viewer-open {
    background: var(--primary);
    transform: translateX(-50%) translateY(-1px);
}

.ds-panel-viewer-open svg {
    width: 12px;
    height: 12px;
    color: #99f6e4;
}

.ds-panel--viewer:hover .ds-panel-img img {
    transform: none;
}

.ds-panel-body {
    padding: 20px 22px 22px;
    flex: 1;
}

.ds-panel-body h3 {
    font-size: 17px;
    margin-bottom: 4px;
    color: var(--ink-1);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.ds-panel-body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

/* =====================================================================
   COMPARE (table)
===================================================================== */

.compare-wrap {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    max-width: 960px;
    margin: 0 auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
}

.compare-table thead {
    background: linear-gradient(180deg, #f8fafc, #f1f5f9);
}

.compare-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.02em;
    border-bottom: 1px solid var(--border);
}

.compare-table th.highlight {
    color: var(--primary);
    background: rgba(20, 184, 166, 0.06);
}

.compare-table td {
    padding: 14px 20px;
    font-size: 14.5px;
    color: var(--ink-3);
    border-bottom: 1px solid var(--border);
    line-height: 1.4;
}

.compare-table td:first-child {
    font-weight: 700;
    color: var(--ink-1);
    width: 30%;
}

.compare-table td.highlight {
    color: var(--ink-1);
    font-weight: 600;
    background: rgba(20, 184, 166, 0.05);
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table tbody tr:hover td:not(:first-child) {
    background: rgba(20, 184, 166, 0.08);
}

/* =====================================================================
   NUMBERS
===================================================================== */

.ds-numbers {
    background: linear-gradient(160deg, #0c5b54 0%, #0f766e 50%, #14b8a6 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.ds-numbers::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06), transparent 50%);
    pointer-events: none;
}

.ds-numbers .section-head--center {
    position: relative;
}

.ds-numbers .section-head--center h2 {
    color: #ffffff;
}

.ds-numbers .section-head--center p {
    color: rgba(240, 253, 250, 0.86);
}

.ds-stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    max-width: 960px;
    margin: 0 auto;
}

.ds-stats--4 {
    grid-template-columns: repeat(4, 1fr);
    max-width: 780px;
}

.ds-stat {
    text-align: center;
    padding: 24px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(6px);
    transition: all var(--transition);
}

.ds-stat:hover {
    background: rgba(255, 255, 255, 0.10);
    transform: translateY(-3px);
}

.ds-stat b {
    display: block;
    font-size: clamp(30px, 3.4vw, 42px);
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1;
    letter-spacing: -0.02em;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.ds-stat span {
    font-size: 13px;
    color: rgba(240, 253, 250, 0.86);
    line-height: 1.4;
    display: block;
}

/* =====================================================================
   FAQ — inherits from style.css .faq / .faq-item. Just section spacing.
===================================================================== */

.ds-page #faq {
    padding: 72px 0;
    background: #ffffff;
}

/* =====================================================================
   CTA BAND
===================================================================== */

.ds-cta-band {
    position: relative;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0c5b54 0%, #0f766e 45%, #14b8a6 100%);
}

.ds-cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.12), transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.08), transparent 40%);
    pointer-events: none;
}

.ds-cta-band > .container {
    position: relative;
}

.ds-cta-band .eyebrow-light {
    margin-bottom: 18px;
}

.ds-cta-band h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 12px;
    font-size: clamp(28px, 3.4vw, 38px);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.ds-cta-band > .container > p {
    max-width: 34rem;
    margin: 0 auto 22px;
    opacity: 0.92;
    font-size: 16px;
    line-height: 1.55;
}

.ds-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.ds-cta-note {
    margin-top: 18px;
    font-size: 14px;
    opacity: 0.82;
}

.ds-cta-note a {
    color: #99f6e4;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ds-cta-note a:hover {
    color: #ffffff;
}

/* =====================================================================
   RESPONSIVE
===================================================================== */

@media (max-width: 1080px) {
    .ds-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .ds-stats--4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .ds-hero {
        padding: 48px 0 40px;
    }

    .ds-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ds-hero-copy {
        order: 1;
        text-align: center;
    }

    .ds-hero-copy h1 {
        text-align: center;
    }

    .ds-hero-copy h1,
    .ds-hero-copy .lead {
        margin-left: auto;
        margin-right: auto;
    }

    .ds-hero-actions,
    .ds-hero-bullets {
        justify-content: center;
    }

    .ds-hero-bullets {
        display: inline-grid;
        text-align: left;
    }

    .ds-hero-visual {
        order: 2;
    }

    .ds-hero-badge-1 { left: -8px; top: 12px; }
    .ds-hero-badge-2 { right: -8px; bottom: 60px; }

    .ds-problem-grid,
    .ds-problem-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .ds-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 20px;
    }

    .ds-steps::before {
        display: none;
    }

    .ds-panels {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .ds-section {
        padding: 56px 0;
    }

    .ds-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .ds-stats--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .ds-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ds-hero-actions .btn {
        width: 100%;
    }

    .ds-section {
        padding: 48px 0;
    }

    .ds-problem-grid,
    .ds-problem-grid--3,
    .ds-steps {
        grid-template-columns: 1fr;
    }

    .ds-stats,
    .ds-stats--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .ds-cta-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin: 0 auto;
    }

    .ds-cta-actions .btn {
        width: 100%;
    }

    .compare-table th,
    .compare-table td {
        padding: 12px 14px;
        font-size: 13.5px;
    }

    .compare-table td:first-child {
        width: 40%;
    }

    .ds-hero-badge {
        display: none;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .ds-orb,
    .ds-hero-badge,
    .pulse-dot,
    .eyebrow-dot {
        animation: none;
    }
}
