/* ═══════════════════════════════════════════════════════
   MOBILE PROXIES PAGE — Purple accent theme (#9333ea)
   Page-specific classes use mob-* prefix
   ═══════════════════════════════════════════════════════ */

/* ─── Page-Level Variables ─── */
.db-page--mob {
    --mob-purple: #9333ea;
    --mob-purple-light: #a855f7;
    --mob-purple-lighter: #c084fc;
    --mob-pink: #ec4899;
    --mob-purple-bg: rgba(147, 51, 234, 0.08);
    --mob-purple-bg-strong: rgba(147, 51, 234, 0.14);
    --mob-gradient: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
    --mob-gradient-subtle: linear-gradient(135deg, rgba(147, 51, 234, 0.12) 0%, rgba(236, 72, 153, 0.06) 100%);
}

/* ═══════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════ */
.mob-breadcrumb {
    background: #07051a;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 0.75rem 0;
}
.mob-breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.8125rem;
}
.mob-breadcrumb__list li { display: flex; align-items: center; }
.mob-breadcrumb__list a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.15s ease;
}
.mob-breadcrumb__list a:hover { color: var(--mob-purple-lighter); }
.mob-breadcrumb__list svg { color: rgba(255,255,255,0.18); }
.mob-breadcrumb__list [aria-current="page"] { color: rgba(255,255,255,0.7); font-weight: 500; }

/* ═══════════════════════════════════════════════════════
   HERO — Split layout with phone illustration
   ═══════════════════════════════════════════════════════ */
.mob-hero {
    position: relative;
    background: #07051a;
    padding: 6rem 0 3rem;
    overflow: hidden;
}

.mob-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.mob-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.mob-hero__orb--1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -100px;
    background: #9333ea;
}

.mob-hero__orb--2 {
    width: 500px;
    height: 500px;
    bottom: -200px;
    right: -100px;
    background: #ec4899;
    opacity: 0.2;
}

.mob-hero__grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(147, 51, 234, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(147, 51, 234, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 100%);
}

.mob-hero__split {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.mob-hero__content {
    max-width: 620px;
}

.mob-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(147, 51, 234, 0.12);
    border: 1px solid rgba(147, 51, 234, 0.25);
    border-radius: 100px;
    padding: 0.375rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #c084fc;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.mob-hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9333ea;
    box-shadow: 0 0 0 0 rgba(147, 51, 234, 0.6);
    animation: mob-pulse-dot 2s ease-in-out infinite;
}

@keyframes mob-pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(147, 51, 234, 0.6); }
    50% { box-shadow: 0 0 0 8px transparent; }
}

.mob-hero__trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 100px;
    padding: 0.25rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #4ade80;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.mob-hero__trust-pill svg {
    color: #4ade80;
}

.mob-hero h1 {
    font-family: var(--db-font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
}

.mob-hero__gradient-text {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mob-hero p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #94a3b8;
    margin: 0 0 2rem;
    max-width: 560px;
}

.mob-hero p a {
    color: #c084fc;
    text-decoration: none;
    border-bottom: 1px solid rgba(192, 132, 252, 0.3);
    transition: border-color 0.15s ease;
}

.mob-hero p a:hover {
    border-color: #c084fc;
}

.mob-hero__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ─── Hero Phone Visual ─── */
.mob-hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mob-hero__phone {
    position: relative;
    width: 260px;
}

.mob-hero__phone-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(147, 51, 234, 0.2));
}

.mob-hero__signal {
    position: absolute;
    top: 30%;
    right: -30px;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(147, 51, 234, 0.3);
    border-radius: 50%;
    animation: mob-signal-expand 3s ease-out infinite;
}

.mob-hero__signal--2 {
    animation-delay: 1s;
}

.mob-hero__signal--3 {
    animation-delay: 2s;
}

@keyframes mob-signal-expand {
    0% {
        transform: scale(0.5);
        opacity: 0.6;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* ─── Hero Stats ─── */
.mob-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: 12px;
    margin-top: 3.5rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.mob-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: rgba(7, 5, 26, 0.8);
    text-align: center;
}

.mob-hero__stat-value {
    font-family: var(--db-font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.02em;
}

.mob-hero__stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════
   FEATURES BAR
   ═══════════════════════════════════════════════════════ */
.mob-features-bar {
    background: var(--db-bg-alt, #f8fafc);
    border-top: 1px solid var(--db-border, #e2e8f0);
    border-bottom: 1px solid var(--db-border, #e2e8f0);
    padding: 1.75rem 0;
}

.mob-features-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.mob-features-bar__item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.mob-features-bar__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
    background: var(--mob-purple-bg);
    color: var(--mob-purple);
}

.mob-features-bar__text {
    display: flex;
    flex-direction: column;
}

.mob-features-bar__text strong {
    font-family: var(--db-font-display);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--db-text);
}

.mob-features-bar__text span {
    font-size: 0.8125rem;
    color: var(--db-text-muted);
    margin-top: 0.125rem;
}

/* ═══════════════════════════════════════════════════════
   SECTIONS — Shared layout
   ═══════════════════════════════════════════════════════ */
.mob-section {
    padding: 5rem 0;
}

.mob-section--alt {
    background: var(--db-bg-alt, #f8fafc);
}

.mob-section--dark {
    background: #07051a;
    padding: 5rem 0;
}

.mob-section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

.mob-section-head--light h2 {
    color: #ffffff;
}

.mob-section-head--light p {
    color: #94a3b8;
}

.mob-section-head h2 {
    font-family: var(--db-font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--db-text);
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.mob-section-head p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--db-text-secondary);
    margin: 0;
}

.mob-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--mob-purple);
    background: var(--mob-purple-bg);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.mob-label--dark {
    background: rgba(147, 51, 234, 0.15);
    color: #c084fc;
}

/* ═══════════════════════════════════════════════════════
   WHAT ARE MOBILE PROXIES — Explainer
   ═══════════════════════════════════════════════════════ */
.mob-explainer {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: center;
}

.mob-explainer__point {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--db-border, #e2e8f0);
}

.mob-explainer__point:last-child {
    border-bottom: none;
}

.mob-explainer__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--mob-purple-bg);
    color: var(--mob-purple);
}

.mob-explainer__point h3 {
    font-family: var(--db-font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--db-text);
    margin: 0 0 0.375rem;
}

.mob-explainer__point p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--db-text-secondary);
    margin: 0;
}

/* ─── Trust Gauge ─── */
.mob-trust-gauge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mob-trust-gauge__ring {
    position: relative;
    width: 180px;
    height: 180px;
    margin-bottom: 1rem;
}

.mob-trust-gauge__ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(0deg);
}

.mob-trust-gauge__value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--db-font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--mob-purple);
    letter-spacing: -0.02em;
}

.mob-trust-gauge__label {
    font-family: var(--db-font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--db-text);
}

.mob-trust-gauge__subtitle {
    font-size: 0.8125rem;
    color: var(--db-text-muted);
    margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════════════
   SOCIAL MEDIA FOCUS — Dark section cards
   ═══════════════════════════════════════════════════════ */
.mob-social {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.mob-social__card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mob-social__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--mob-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mob-social__card:hover {
    transform: translateY(-4px);
    border-color: rgba(147, 51, 234, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.mob-social__card:hover::before {
    opacity: 1;
}

.mob-social__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    border-radius: 14px;
    background: rgba(147, 51, 234, 0.1);
    color: #c084fc;
}

.mob-social__card h3 {
    font-family: var(--db-font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem;
}

.mob-social__card p {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0 0 1rem;
}

.mob-social__tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #4ade80;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.15);
    padding: 0.2rem 0.625rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════
   FEATURE GRID — 6 cards
   ═══════════════════════════════════════════════════════ */
.mob-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.mob-grid__card {
    position: relative;
    background: var(--db-bg, #ffffff);
    border: 1px solid var(--db-border, #e2e8f0);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.mob-grid__card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--mob-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mob-grid__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(147, 51, 234, 0.08);
}

.mob-grid__card:hover::after {
    opacity: 1;
}

.mob-grid__icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: var(--mob-purple-bg);
    color: var(--mob-purple);
}

.mob-grid__card h3 {
    font-family: var(--db-font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--db-text);
    margin: 0 0 0.5rem;
}

.mob-grid__card p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--db-text-secondary);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════
   PRICING CTA
   ═══════════════════════════════════════════════════════ */
.mob-pricing-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ═══════════════════════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════════════════════ */
.mob-compare {
    max-width: 860px;
    margin: 0 auto;
    overflow-x: auto;
}

.mob-compare__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.mob-compare__table thead {
    border-bottom: 2px solid var(--db-border, #e2e8f0);
}

.mob-compare__table th {
    padding: 1rem 1.25rem;
    font-family: var(--db-font-display);
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--db-text);
    text-align: left;
}

.mob-compare__table th.mob-compare__highlight {
    color: var(--mob-purple);
    background: var(--mob-purple-bg);
    border-radius: 8px 8px 0 0;
}

.mob-compare__table td {
    padding: 0.875rem 1.25rem;
    color: var(--db-text-secondary);
    border-bottom: 1px solid var(--db-border, #e2e8f0);
    vertical-align: middle;
}

.mob-compare__table td.mob-compare__highlight {
    background: rgba(147, 51, 234, 0.03);
    color: var(--db-text);
    font-weight: 500;
}

.mob-compare__table td.mob-compare__highlight strong {
    color: var(--mob-purple);
}

.mob-compare__table td svg {
    vertical-align: middle;
    margin-right: 0.25rem;
}

.mob-compare__table tbody tr:last-child td {
    border-bottom: none;
}

.mob-compare__table tbody tr:last-child td.mob-compare__highlight {
    border-radius: 0 0 8px 8px;
}

/* ═══════════════════════════════════════════════════════
   USE CASES
   ═══════════════════════════════════════════════════════ */
.mob-usecases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.mob-usecase {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    border: 1px solid var(--db-border, #e2e8f0);
    border-radius: 12px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.mob-usecase:hover {
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.06);
    transform: translateY(-2px);
}

.mob-usecase__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--mob-purple-bg);
    color: var(--mob-purple);
}

.mob-usecase__text h3 {
    font-family: var(--db-font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--db-text);
    margin: 0 0 0.375rem;
}

.mob-usecase__text p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--db-text-secondary);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════
   FAQ — Modern accordion
   ═══════════════════════════════════════════════════════ */
.mob-faq {
    max-width: 780px;
    margin: 0 auto;
}

.mob-faq__item {
    border-bottom: 1px solid var(--db-border, #e2e8f0);
}

.mob-faq__item:first-child {
    border-top: 1px solid var(--db-border, #e2e8f0);
}

.mob-faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--db-text);
    cursor: pointer;
    list-style: none;
    transition: color 0.2s ease;
}

.mob-faq__item summary::-webkit-details-marker {
    display: none;
}

.mob-faq__item summary::marker {
    display: none;
    content: '';
}

.mob-faq__item summary svg {
    flex-shrink: 0;
    color: var(--db-text-muted);
    transition: transform 0.3s ease, color 0.2s ease;
}

.mob-faq__item[open] summary {
    color: var(--mob-purple);
}

.mob-faq__item[open] summary svg {
    transform: rotate(180deg);
    color: var(--mob-purple);
}

.mob-faq__item summary:hover {
    color: var(--mob-purple);
}

.mob-faq__answer {
    padding: 0 0 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--db-text-secondary);
}

/* ═══════════════════════════════════════════════════════
   CTA — Bottom gradient banner
   ═══════════════════════════════════════════════════════ */
.mob-cta {
    position: relative;
    background: #07051a;
    padding: 5rem 0;
    overflow: hidden;
}

.mob-cta__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.mob-cta__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.mob-cta__glow--1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: 20%;
    background: rgba(147, 51, 234, 0.15);
}

.mob-cta__glow--2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    right: 20%;
    background: rgba(236, 72, 153, 0.1);
}

.mob-cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.mob-cta__inner h2 {
    font-family: var(--db-font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.mob-cta__inner p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #94a3b8;
    margin: 0 0 2rem;
}

.mob-cta__inner p a {
    color: #c084fc;
    text-decoration: none;
    border-bottom: 1px solid rgba(192, 132, 252, 0.3);
    transition: border-color 0.15s ease;
}

.mob-cta__inner p a:hover {
    border-color: #c084fc;
}

.mob-cta__actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════
   BUTTONS — Purple themed
   ═══════════════════════════════════════════════════════ */
.mob-btn--primary {
    background: var(--mob-purple) !important;
    color: #fff;
    border: none;
}

.mob-btn--primary:hover {
    background: #7c22d6 !important;
}

.mob-btn--outline {
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

.mob-btn--outline:hover {
    border-color: rgba(147, 51, 234, 0.5) !important;
    background: rgba(147, 51, 234, 0.08) !important;
}

.mob-btn--outline-dark {
    border: 1px solid var(--db-border, #e2e8f0);
    color: var(--db-text);
    background: transparent;
    border-radius: 4px;
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.mob-btn--outline-dark:hover {
    border-color: var(--mob-purple);
    color: var(--mob-purple);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

/* ─── Large desktop (<=1200px) ─── */
@media (max-width: 1200px) {
    .mob-hero__split {
        grid-template-columns: 1fr 320px;
        gap: 3rem;
    }

    .mob-social {
        grid-template-columns: repeat(2, 1fr);
    }

    .mob-features-bar__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* ─── Tablet (<=992px) ─── */
@media (max-width: 992px) {
    .mob-hero__split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .mob-hero__visual {
        order: -1;
    }

    .mob-hero__phone {
        width: 200px;
    }

    .mob-hero__content {
        text-align: center;
        max-width: 100%;
    }

    .mob-hero p {
        max-width: 100%;
    }

    .mob-hero__actions {
        justify-content: center;
    }

    .mob-explainer {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .mob-explainer__visual {
        order: -1;
    }

    .mob-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mob-usecases {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .mob-hero__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .mob-features-bar__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

/* ─── Mobile (<=768px) ─── */
@media (max-width: 768px) {
    .mob-hero {
        padding: 4rem 0 2rem;
    }

    .mob-section {
        padding: 3.5rem 0;
    }

    .mob-social {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .mob-grid {
        grid-template-columns: 1fr;
    }

    .mob-hero__phone {
        width: 160px;
    }

    .mob-hero__signal {
        display: none;
    }

    .mob-hero__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .mob-hero__stat {
        padding: 1rem 0.75rem;
    }

    .mob-hero__stat-value {
        font-size: 1.25rem;
    }

    .mob-features-bar__grid {
        grid-template-columns: 1fr;
    }

    .mob-compare {
        margin: 0 -1rem;
    }

    .mob-compare__table {
        font-size: 0.8125rem;
    }

    .mob-compare__table th,
    .mob-compare__table td {
        padding: 0.75rem 0.75rem;
    }

    .mob-trust-gauge__ring {
        width: 140px;
        height: 140px;
    }

    .mob-trust-gauge__value {
        font-size: 2rem;
    }
}

/* ─── Small mobile (<=480px) ─── */
@media (max-width: 480px) {
    .mob-hero__stats {
        grid-template-columns: 1fr 1fr;
        gap: 1px;
    }

    .mob-hero__stat-value {
        font-size: 1.125rem;
    }

    .mob-hero__stat-label {
        font-size: 0.75rem;
    }

    .mob-hero__actions {
        flex-direction: column;
    }

    .mob-hero__actions .db-btn {
        width: 100%;
        justify-content: center;
    }

    .mob-compare__table th:first-child,
    .mob-compare__table td:first-child {
        position: sticky;
        left: 0;
        background: var(--db-bg, #ffffff);
        z-index: 1;
    }
}
