.esm-page {
    background: var(--off-white);
    color: var(--gray-700);
}

.esm-page section {
    position: relative;
}

.esm-hero {
    padding: 118px 0 92px;
    overflow: hidden;
    background:
        radial-gradient(900px 460px at -8% -18%, rgba(245, 158, 11, 0.20) 0%, transparent 68%),
        radial-gradient(760px 420px at 108% 8%, rgba(232, 93, 4, 0.18) 0%, transparent 72%),
        linear-gradient(132deg, #0a1427 0%, #12213a 56%, #1b3155 100%);
}

.esm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11, 20, 38, 0.12) 0%, rgba(11, 20, 38, 0.72) 100%);
    pointer-events: none;
}

.esm-hero .container {
    position: relative;
    z-index: 1;
}

.esm-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

.esm-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.esm-breadcrumb a:hover {
    color: #fff;
}

.esm-breadcrumb span {
    color: rgba(255, 255, 255, 0.98);
}

.esm-breadcrumb svg {
    width: 10px;
    height: 10px;
    opacity: 0.7;
}

.esm-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.07fr) minmax(0, 0.93fr);
    gap: 24px;
    align-items: stretch;
}

.esm-copy-shell,
.esm-info-shell {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(7, 15, 31, 0.45);
    backdrop-filter: blur(8px);
    box-shadow: 0 22px 48px rgba(2, 6, 23, 0.28);
}

.esm-copy-shell {
    padding: 30px 30px 28px;
}

.esm-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(245, 158, 11, 0.42);
    background: rgba(245, 158, 11, 0.16);
    color: #fde68a;
    font-size: 0.72rem;
    line-height: 1;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 8px 14px;
}

.esm-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fbbf24;
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.58);
    animation: esm-pulse 2s ease-in-out infinite;
}

@keyframes esm-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.58);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(251, 191, 36, 0);
    }
}

.esm-title {
    margin: 18px 0 14px;
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.8vw, 3.55rem);
    line-height: 1.08;
    color: #fff;
    letter-spacing: -0.02em;
}

.esm-title strong {
    color: #fdba74;
    font-weight: 700;
}

.esm-subtitle {
    margin: 0;
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.78;
    font-size: 0.98rem;
    max-width: 700px;
}

.esm-actions {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.esm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1;
    padding: 13px 18px;
    transition: transform var(--duration-base) var(--ease), box-shadow var(--duration-base) var(--ease), background var(--duration-base) var(--ease), color var(--duration-base) var(--ease), border-color var(--duration-base) var(--ease);
}

.esm-btn svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.esm-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #e85d04, #f59e0b);
    box-shadow: 0 12px 32px rgba(232, 93, 4, 0.36);
}

.esm-btn-primary:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 16px 34px rgba(232, 93, 4, 0.44);
}

.esm-btn-ghost {
    color: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(15, 23, 42, 0.35);
}

.esm-btn-ghost:hover {
    color: #fff;
    border-color: rgba(203, 213, 225, 0.7);
    background: rgba(15, 23, 42, 0.5);
}

.esm-hero-foot {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: rgba(226, 232, 240, 0.74);
    font-size: 0.75rem;
}

.esm-hero-foot-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.esm-hero-foot-item svg {
    width: 15px;
    height: 15px;
    color: #fdba74;
    flex-shrink: 0;
}

.esm-copy-shell,
.esm-hero-stage {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(7, 15, 31, 0.45);
    backdrop-filter: blur(10px);
    box-shadow: 0 22px 48px rgba(2, 6, 23, 0.28);
}

.esm-copy-shell {
    padding: 34px 34px 30px;
}

.esm-copy-shell::before,
.esm-hero-stage::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.esm-copy-shell::before {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 42%),
        radial-gradient(320px 240px at 100% 100%, rgba(56, 189, 248, 0.14) 0%, transparent 70%);
}

.esm-copy-shell > *,
.esm-hero-stage > * {
    position: relative;
    z-index: 1;
}

.esm-hero-stage {
    padding: 20px;
}

.esm-hero-stage::before {
    background:
        radial-gradient(340px 220px at 82% 18%, rgba(14, 165, 233, 0.14) 0%, transparent 70%),
        radial-gradient(260px 180px at 12% 86%, rgba(245, 158, 11, 0.10) 0%, transparent 72%);
}

.esm-stage-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.esm-stage-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.69rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7dd3fc;
}

.esm-stage-kicker::before {
    content: '';
    width: 26px;
    height: 1px;
    background: rgba(125, 211, 252, 0.55);
}

.esm-stage-head h2 {
    margin: 9px 0 7px;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.3vw, 1.92rem);
    line-height: 1.16;
    letter-spacing: -0.02em;
}

.esm-stage-head p {
    margin: 0;
    max-width: 45ch;
    color: rgba(226, 232, 240, 0.8);
    font-size: 0.88rem;
    line-height: 1.72;
}

.esm-stage-live {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(52, 211, 153, 0.24);
    background: rgba(16, 185, 129, 0.12);
    color: #d1fae5;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.esm-stage-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5);
    animation: esmStagePulse 2s ease-in-out infinite;
}

@keyframes esmStagePulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(52, 211, 153, 0);
    }
}

.esm-stage-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 0.82fr);
    gap: 16px;
    align-items: stretch;
}

.esm-phone-wrap {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 0 10px;
}

.esm-phone-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(14px);
    pointer-events: none;
    opacity: 0.85;
}

.esm-phone-orb-one {
    width: 180px;
    height: 180px;
    top: 20px;
    left: 24px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.28) 0%, transparent 68%);
}

.esm-phone-orb-two {
    width: 220px;
    height: 220px;
    right: 12px;
    bottom: 18px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.22) 0%, transparent 70%);
}

.esm-phone-float {
    position: absolute;
    z-index: 3;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(15, 23, 42, 0.72);
    color: #fff;
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.24);
}

.esm-phone-float strong,
.esm-phone-float span {
    display: block;
}

.esm-phone-float strong {
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
}

.esm-phone-float span {
    margin-top: 4px;
    font-size: 0.68rem;
    color: rgba(226, 232, 240, 0.74);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 700;
}

.esm-phone-float-top {
    top: 56px;
    left: 0;
}

.esm-phone-float-bottom {
    right: 0;
    bottom: 44px;
}

.esm-phone {
    position: relative;
    z-index: 2;
    width: min(100%, 290px);
    aspect-ratio: 0.57;
    padding: 12px;
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
    box-shadow:
        0 32px 80px rgba(2, 6, 23, 0.54),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.esm-phone::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 29px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.esm-phone-notch {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 95px;
    height: 24px;
    border-radius: 999px;
    background: #020617;
    z-index: 3;
}

.esm-phone-screen {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 18px 16px 16px;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(180deg, #091325 0%, #142039 48%, #0a1325 100%);
}

.esm-phone-screen::before,
.esm-phone-screen::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.esm-phone-screen::before {
    width: 180px;
    height: 180px;
    top: -78px;
    right: -58px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, transparent 70%);
}

.esm-phone-screen::after {
    width: 150px;
    height: 150px;
    left: -46px;
    bottom: -52px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.16) 0%, transparent 72%);
}

.esm-phone-statusbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: rgba(226, 232, 240, 0.74);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.esm-phone-scenes {
    position: relative;
    flex: 1;
    margin-top: 14px;
}

.esm-phone-scene {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    animation: esmSceneCycle 12s infinite;
}

.esm-phone-scene-2 {
    animation-delay: 4s;
}

.esm-phone-scene-3 {
    animation-delay: 8s;
}

@keyframes esmSceneCycle {
    0%,
    100% {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }

    8%,
    29% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    33%,
    100% {
        opacity: 0;
        transform: translateY(-8px) scale(0.985);
    }
}

.esm-scene-heading {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.esm-scene-tag {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(125, 211, 252, 0.28);
    background: rgba(14, 165, 233, 0.14);
    color: #bae6fd;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.esm-scene-copy strong {
    display: block;
    color: #fff;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.25;
}

.esm-scene-copy p {
    margin: 6px 0 0;
    color: rgba(226, 232, 240, 0.78);
    font-size: 0.79rem;
    line-height: 1.58;
}

.esm-scene-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.esm-mini-plan {
    padding: 14px 13px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(15, 23, 42, 0.54);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.esm-mini-plan.active {
    border-color: rgba(251, 191, 36, 0.42);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(14, 165, 233, 0.16));
    transform: translateY(-2px);
}

.esm-mini-plan small,
.esm-mini-plan strong,
.esm-mini-plan span {
    display: block;
}

.esm-mini-plan small {
    color: rgba(226, 232, 240, 0.58);
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.esm-mini-plan strong {
    margin-top: 7px;
    color: #fff;
    font-size: 0.89rem;
    line-height: 1.25;
}

.esm-mini-plan span {
    margin-top: 6px;
    color: rgba(226, 232, 240, 0.8);
    font-size: 0.72rem;
    line-height: 1.45;
}

.esm-scene-qr {
    align-items: center;
    justify-content: center;
}

.esm-qr-shell {
    position: relative;
    width: 168px;
    aspect-ratio: 1;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.24);
}

.esm-qr-shell::before,
.esm-qr-shell::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 4px solid #0f172a;
    border-radius: 10px;
}

.esm-qr-shell::before {
    top: 10px;
    left: 10px;
    border-right: 0;
    border-bottom: 0;
}

.esm-qr-shell::after {
    right: 10px;
    bottom: 10px;
    border-left: 0;
    border-top: 0;
}

.esm-qr-pattern {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background:
        linear-gradient(90deg, #0f172a 12%, transparent 12%, transparent 18%, #0f172a 18%, #0f172a 30%, transparent 30%, transparent 38%, #0f172a 38%, #0f172a 52%, transparent 52%, transparent 60%, #0f172a 60%, #0f172a 74%, transparent 74%, transparent 82%, #0f172a 82%),
        linear-gradient(#0f172a 12%, transparent 12%, transparent 18%, #0f172a 18%, #0f172a 30%, transparent 30%, transparent 38%, #0f172a 38%, #0f172a 52%, transparent 52%, transparent 60%, #0f172a 60%, #0f172a 74%, transparent 74%, transparent 82%, #0f172a 82%);
    background-size: 34px 34px;
    background-color: #fff;
    overflow: hidden;
}

.esm-qr-scan {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 16px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(14, 165, 233, 0), rgba(14, 165, 233, 0.9), rgba(14, 165, 233, 0));
    box-shadow: 0 0 22px rgba(14, 165, 233, 0.36);
    animation: esmScanLine 2.6s ease-in-out infinite;
}

@keyframes esmScanLine {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(118px);
    }
}

.esm-scene-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.esm-scene-chip-row span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(15, 23, 42, 0.5);
    color: rgba(226, 232, 240, 0.84);
    font-size: 0.68rem;
    font-weight: 700;
}

.esm-connection-card {
    padding: 16px 15px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: linear-gradient(160deg, rgba(16, 185, 129, 0.12), rgba(15, 23, 42, 0.6));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.esm-connection-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d1fae5;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.esm-connection-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.48);
    animation: esmStagePulse 2s ease-in-out infinite;
}

.esm-signal-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 72px;
    margin: 18px 0 14px;
}

.esm-signal-bars span {
    flex: 1;
    border-radius: 999px 999px 4px 4px;
    background: linear-gradient(180deg, #fde68a 0%, #34d399 100%);
    animation: esmBars 1.6s ease-in-out infinite;
    transform-origin: bottom;
}

.esm-signal-bars span:nth-child(1) {
    height: 26px;
    animation-delay: 0s;
}

.esm-signal-bars span:nth-child(2) {
    height: 42px;
    animation-delay: 0.16s;
}

.esm-signal-bars span:nth-child(3) {
    height: 56px;
    animation-delay: 0.32s;
}

.esm-signal-bars span:nth-child(4) {
    height: 70px;
    animation-delay: 0.48s;
}

@keyframes esmBars {
    0%,
    100% {
        transform: scaleY(0.88);
        opacity: 0.82;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.esm-connection-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.esm-connection-meta strong {
    color: #fff;
    font-size: 0.96rem;
    font-weight: 800;
}

.esm-connection-meta span {
    color: rgba(226, 232, 240, 0.74);
    font-size: 0.72rem;
    font-weight: 600;
}

.esm-phone-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 10px;
}

.esm-progress-dot {
    position: relative;
    width: 30px;
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.esm-progress-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #fbbf24, #38bdf8);
    opacity: 0.18;
    transform: scaleX(0.25);
    transform-origin: left center;
    animation: esmProgressCycle 12s infinite;
}

.esm-progress-dot-2::after {
    animation-delay: 4s;
}

.esm-progress-dot-3::after {
    animation-delay: 8s;
}

@keyframes esmProgressCycle {
    0%,
    100% {
        opacity: 0.18;
        transform: scaleX(0.25);
    }

    8%,
    29% {
        opacity: 1;
        transform: scaleX(1);
    }

    33%,
    100% {
        opacity: 0.18;
        transform: scaleX(0.25);
    }
}

.esm-stage-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.esm-stage-card {
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(9, 18, 34, 0.72);
}

.esm-stage-card-muted {
    background: rgba(9, 18, 34, 0.56);
}

.esm-stage-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.esm-stage-card-head span,
.esm-stage-card-head strong {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.esm-stage-card-head span {
    color: rgba(125, 211, 252, 0.88);
}

.esm-stage-card-head strong {
    color: rgba(226, 232, 240, 0.6);
}

.esm-stage-timeline {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.esm-stage-step {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(255, 255, 255, 0.04);
    animation: esmTimelinePulse 12s infinite;
}

.esm-stage-step-2 {
    animation-delay: 4s;
}

.esm-stage-step-3 {
    animation-delay: 8s;
}

@keyframes esmTimelinePulse {
    0%,
    100% {
        border-color: rgba(148, 163, 184, 0.16);
        background: rgba(255, 255, 255, 0.04);
        box-shadow: none;
    }

    8%,
    29% {
        border-color: rgba(251, 191, 36, 0.34);
        background: rgba(245, 158, 11, 0.08);
        box-shadow: 0 12px 28px rgba(2, 6, 23, 0.16);
    }

    33%,
    100% {
        border-color: rgba(148, 163, 184, 0.16);
        background: rgba(255, 255, 255, 0.04);
        box-shadow: none;
    }
}

.esm-stage-step-no {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(125, 211, 252, 0.24);
    background: rgba(14, 165, 233, 0.12);
    color: #e0f2fe;
    font-size: 0.78rem;
    font-weight: 800;
}

.esm-stage-step h3 {
    margin: 1px 0 5px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.35;
}

.esm-stage-step p {
    margin: 0;
    color: rgba(226, 232, 240, 0.72);
    font-size: 0.75rem;
    line-height: 1.58;
}

.esm-stage-checks {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.esm-stage-checks li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 10px 11px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(226, 232, 240, 0.84);
    font-size: 0.78rem;
    line-height: 1.58;
}

.esm-stage-checks svg {
    width: 14px;
    height: 14px;
    color: #fbbf24;
    flex-shrink: 0;
    margin-top: 2px;
}

.esm-stage-stats {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.esm-stage-stat {
    min-height: 84px;
    padding: 14px 12px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(255, 255, 255, 0.06);
}

.esm-stage-stat strong,
.esm-stage-stat span {
    display: block;
}

.esm-stage-stat strong {
    color: #fff;
    font-size: 1.28rem;
    line-height: 1.05;
    font-weight: 800;
}

.esm-stage-stat span {
    margin-top: 7px;
    color: rgba(226, 232, 240, 0.68);
    font-size: 0.67rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.esm-hero-stage {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.esm-hero-stage::before {
    display: none;
}

.esm-phone-wrap {
    position: relative;
    z-index: 0;
    width: min(100%, 360px);
    min-height: 600px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px 18px;
    isolation: isolate;
}

.esm-phone-wrap::before,
.esm-phone-wrap::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    filter: blur(18px);
    pointer-events: none;
    z-index: -1;
}

.esm-phone-wrap::before {
    width: 190px;
    height: 190px;
    top: 12px;
    left: 4px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.24) 0%, rgba(191, 219, 254, 0.14) 38%, transparent 72%);
}

.esm-phone-wrap::after {
    width: 220px;
    height: 220px;
    right: -10px;
    bottom: 0;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.18) 0%, rgba(254, 240, 138, 0.12) 34%, transparent 72%);
}

.esm-phone {
    width: min(100%, 278px);
    aspect-ratio: 0.485;
    padding: 9px;
    border-radius: 42px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12) 0%, transparent 42%),
        linear-gradient(180deg, #0f172a 0%, #030712 100%);
    box-shadow:
        0 42px 90px rgba(2, 6, 23, 0.42),
        0 18px 36px rgba(15, 23, 42, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -12px 18px rgba(0, 0, 0, 0.35);
}

.esm-phone::before {
    inset: 5px;
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.esm-phone::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.08) 0%, transparent 28%, transparent 72%, rgba(255, 255, 255, 0.04) 100%);
    pointer-events: none;
}

.esm-phone-notch {
    top: 18px;
    width: 95px;
    height: 26px;
    background: linear-gradient(180deg, #020617 0%, #111827 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.esm-phone-screen {
    padding: 17px 14px 14px;
    border-radius: 34px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 52%, #eff5ff 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        inset 0 -22px 34px rgba(191, 219, 254, 0.22);
    min-height: 0;
}

.esm-phone-screen::before {
    width: 176px;
    height: 176px;
    top: -74px;
    right: -54px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.2) 0%, transparent 72%);
}

.esm-phone-screen::after {
    width: 152px;
    height: 152px;
    left: -44px;
    bottom: -50px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.16) 0%, transparent 74%);
}

.esm-phone-statusbar {
    color: #0f172a;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: none;
    padding: 2px 14px 0;
    position: relative;
    z-index: 2;
}

.esm-phone-time {
    color: #0f172a;
    font-size: 0.79rem;
    line-height: 1;
}

.esm-phone-icons {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transform: translateY(1px);
}

.esm-phone-signal {
    display: inline-flex;
    align-items: flex-end;
    gap: 2px;
    height: 13px;
}

.esm-phone-signal i {
    display: block;
    width: 2.5px;
    border-radius: 999px;
    background: #0f172a;
    opacity: 0.92;
}

.esm-phone-signal i:nth-child(1) {
    height: 5px;
}

.esm-phone-signal i:nth-child(2) {
    height: 8px;
}

.esm-phone-signal i:nth-child(3) {
    height: 11px;
}

.esm-phone-signal i:nth-child(4) {
    height: 14px;
}

.esm-phone-battery {
    position: relative;
    width: 21px;
    height: 11px;
    padding: 2px;
    border: 1.8px solid #0f172a;
    border-radius: 4px;
    box-sizing: border-box;
}

.esm-phone-battery::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 3px;
    width: 2px;
    height: 4px;
    border-radius: 0 2px 2px 0;
    background: #0f172a;
}

.esm-phone-battery span {
    display: block;
    width: 72%;
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, #22c55e 0%, #34d399 100%);
}

.esm-phone-appbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    padding: 14px 14px;
    border-radius: 20px;
    border: 1px solid rgba(203, 213, 225, 0.78);
    background: rgba(255, 255, 255, 0.82);
    box-shadow:
        0 16px 30px rgba(148, 163, 184, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.esm-phone-brand strong,
.esm-phone-brand span {
    display: block;
}

.esm-phone-brand strong {
    color: #0f172a;
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.2;
}

.esm-phone-brand span {
    margin-top: 4px;
    color: #475569;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.45;
}

.esm-phone-app-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #1d4ed8;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(147, 197, 253, 0.72);
    flex-shrink: 0;
}

.esm-phone-scenes {
    position: relative;
    flex: 1;
    margin-top: 18px;
    overflow: hidden;
    min-height: 0;
    max-height: 100%;
    padding: 0 0 4px;
}

.esm-phone-scenes-track {
    display: contents;
}

.esm-phone-scene {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 2px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(12px);
    animation: esmSceneCycle 13.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-fill-mode: both;
    will-change: opacity, transform;
    pointer-events: none;
}

.esm-phone-scene-2 {
    animation-delay: 4.5s;
}

.esm-phone-scene-3 {
    animation-delay: 9s;
}

@keyframes esmSceneCycle {
    0%,
    31% {
        opacity: 1;
        transform: translateX(0);
    }

    38%,
    100% {
        opacity: 0;
        transform: translateX(-10px);
    }
}

.esm-scene-tag {
    border-color: rgba(147, 197, 253, 0.72);
    background: rgba(239, 246, 255, 0.92);
    color: #2563eb;
}

.esm-scene-heading {
    gap: 8px;
}

.esm-scene-copy strong {
    color: #0f172a;
    font-size: 1rem;
}

.esm-scene-copy p {
    margin-top: 4px;
    color: #475569;
    font-size: 0.78rem;
    line-height: 1.5;
}

.esm-scene-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    max-width: 100%;
    min-height: 0;
}

.esm-scene-qr,
.esm-scene-success {
    width: 100%;
    align-items: center;
    justify-content: center;
}

.esm-mini-plan {
    position: relative;
    overflow: hidden;
    padding: 15px 14px;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.98);
    background: rgba(255, 255, 255, 0.82);
    box-shadow:
        0 18px 30px rgba(148, 163, 184, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.esm-mini-plan::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 54%);
    pointer-events: none;
}

.esm-mini-plan.active {
    border-color: rgba(96, 165, 250, 0.42);
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
    box-shadow:
        0 24px 34px rgba(59, 130, 246, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    animation: esmPanelFloat 4.5s ease-in-out infinite;
}

@keyframes esmPanelFloat {
    0%,
    100% {
        transform: translateY(-3px);
    }

    50% {
        transform: translateY(-7px);
    }
}

.esm-mini-plan small {
    color: #64748b;
}

.esm-mini-plan strong {
    color: #0f172a;
}

.esm-mini-plan span {
    color: #475569;
}

.esm-qr-shell {
    width: 148px;
    max-width: 100%;
    padding: 13px;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.92);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 22px 36px rgba(148, 163, 184, 0.18);
    animation: esmPanelFloat 4.5s ease-in-out infinite;
}

.esm-qr-shell::before,
.esm-qr-shell::after {
    border-color: #1e293b;
}

.esm-qr-scan {
    animation: esmScanLine 2.4s ease-in-out infinite alternate;
}

@keyframes esmScanLine {
    0% {
        opacity: 0.22;
        transform: translateY(0);
    }

    18% {
        opacity: 1;
    }

    100% {
        opacity: 0.82;
        transform: translateY(116px);
    }
}

.esm-qr-pattern {
    background-color: #ffffff;
}

.esm-scene-chip-row span {
    border: 1px solid rgba(203, 213, 225, 0.92);
    background: rgba(255, 255, 255, 0.82);
    color: #334155;
    padding: 7px 9px;
    font-size: 0.64rem;
}

.esm-scene-chip-row {
    justify-content: center;
    gap: 6px;
}

.esm-connection-card {
    width: 100%;
    max-width: 100%;
    padding: 14px 13px;
    border-radius: 22px;
    border: 1px solid rgba(209, 250, 229, 0.92);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(236, 253, 245, 0.94) 100%);
    box-shadow: 0 18px 32px rgba(16, 185, 129, 0.12);
    animation: esmPanelFloat 4.5s ease-in-out infinite;
}

.esm-connection-header {
    color: #047857;
}

.esm-signal-bars {
    height: 54px;
    margin: 14px 0 10px;
    gap: 7px;
}

.esm-signal-bars span {
    background: linear-gradient(180deg, #60a5fa 0%, #34d399 100%);
}

.esm-connection-meta strong {
    color: #0f172a;
    font-size: 0.88rem;
}

.esm-connection-meta span {
    color: #475569;
    font-size: 0.68rem;
}

.esm-phone-progress {
    gap: 7px;
    margin-top: 8px;
    padding-top: 10px;
    flex-shrink: 0;
}

.esm-progress-dot {
    width: 28px;
    background: rgba(148, 163, 184, 0.2);
}

.esm-progress-dot::after {
    background: linear-gradient(90deg, #60a5fa 0%, #14b8a6 100%);
    animation: esmProgressCycle 13.5s infinite;
}

.esm-progress-dot-2::after {
    animation-delay: 4.5s;
}

.esm-progress-dot-3::after {
    animation-delay: 9s;
}

@keyframes esmProgressCycle {
    0%,
    100% {
        opacity: 0.22;
        transform: scaleX(0.24);
    }

    0%,
    31% {
        opacity: 1;
        transform: scaleX(1);
    }

    38%,
    100% {
        opacity: 0.22;
        transform: scaleX(0.24);
    }
}

.esm-phone-home-indicator {
    width: 96px;
    height: 4px;
    margin: 20px auto 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.22);
    flex-shrink: 0;
}

.esm-info-shell {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.esm-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.esm-stat {
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(15, 23, 42, 0.4);
    padding: 14px 13px;
}

.esm-stat-value {
    color: #fff;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.1;
}

.esm-stat-label {
    margin-top: 5px;
    color: rgba(226, 232, 240, 0.78);
    font-size: 0.73rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.esm-trust {
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(15, 23, 42, 0.33);
    padding: 13px;
}

.esm-trust h3 {
    margin: 0 0 8px;
    font-size: 0.89rem;
    color: #fff;
    font-weight: 700;
}

.esm-trust ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.esm-trust li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: rgba(226, 232, 240, 0.88);
    font-size: 0.81rem;
    line-height: 1.45;
}

.esm-trust li svg {
    width: 14px;
    height: 14px;
    color: #fbbf24;
    margin-top: 2px;
    flex-shrink: 0;
}

.esm-block {
    padding: 84px 0;
}

.esm-block-alt {
    background: #fff;
}

.esm-head {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
}

.esm-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.esm-kicker::before,
.esm-kicker::after {
    content: '';
    width: 22px;
    height: 1px;
    background: rgba(232, 93, 4, 0.52);
}

.esm-head h2 {
    margin: 14px 0 10px;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.8vw, 2.65rem);
    color: var(--gray-900);
    line-height: 1.17;
}

.esm-head p {
    margin: 0;
    color: var(--gray-500);
    line-height: 1.72;
    font-size: 0.95rem;
}

.esm-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.esm-benefit {
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    background: #fff;
    padding: 18px 16px 16px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--duration-base) var(--ease), box-shadow var(--duration-base) var(--ease), border-color var(--duration-base) var(--ease);
}

.esm-benefit:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(232, 93, 4, 0.3);
}

.esm-benefit-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(232, 93, 4, 0.14), rgba(245, 158, 11, 0.2));
    color: var(--primary-dark);
    margin-bottom: 11px;
}

.esm-benefit-icon svg {
    width: 18px;
    height: 18px;
}

.esm-benefit p {
    margin: 0;
    color: var(--gray-700);
    font-size: 0.87rem;
    line-height: 1.62;
    font-weight: 600;
}

.esm-plan-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.esm-plan {
    border-radius: 18px;
    border: 1px solid var(--gray-200);
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.esm-plan-top {
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 16px 14px;
}

.esm-plan-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.esm-plan-name {
    margin: 0;
    color: var(--gray-900);
    font-size: 1.03rem;
    font-weight: 700;
}

.esm-plan-badge {
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.64rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.esm-tone-teal .esm-plan-badge {
    background: #ccfbf1;
    color: #0f766e;
}

.esm-tone-navy .esm-plan-badge {
    background: #dbeafe;
    color: #1d4ed8;
}

.esm-tone-orange .esm-plan-badge {
    background: #ffedd5;
    color: #c2410c;
}

.esm-tone-slate .esm-plan-badge {
    background: #f1f5f9;
    color: #334155;
}

.esm-plan-meta {
    margin-top: 11px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.esm-plan-meta-item {
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
    padding: 8px;
}

.esm-plan-meta-item span {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.esm-plan-meta-item strong {
    display: block;
    margin-top: 4px;
    color: var(--gray-800);
    font-size: 0.79rem;
    font-weight: 700;
}

.esm-plan-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.esm-plan-features {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.esm-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--gray-700);
    font-size: 0.82rem;
    line-height: 1.55;
}

.esm-plan-features li svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.esm-plan-bottom {
    margin-top: auto;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.esm-plan-price {
    color: var(--gray-900);
    font-size: 1.15rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.esm-plan-price small {
    font-size: 0.74rem;
    color: var(--gray-500);
    font-weight: 600;
}

.esm-plan-link {
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.77rem;
    font-weight: 700;
    line-height: 1;
    padding: 10px 12px;
    color: #fff;
    background: linear-gradient(135deg, #e85d04, #f59e0b);
    transition: filter var(--duration-base) var(--ease), transform var(--duration-base) var(--ease);
}

.esm-plan-link:hover {
    color: #fff;
    transform: translateY(-1px);
    filter: brightness(1.04);
}

.esm-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.esm-step {
    border-radius: 15px;
    border: 1px solid var(--gray-200);
    background: #fff;
    padding: 17px 15px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.esm-step-index {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(232, 93, 4, 0.25);
    background: rgba(232, 93, 4, 0.08);
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.esm-step h3 {
    margin: 11px 0 7px;
    color: var(--gray-900);
    font-size: 0.96rem;
    font-weight: 700;
}

.esm-step p {
    margin: 0;
    color: var(--gray-500);
    font-size: 0.84rem;
    line-height: 1.66;
}

.esm-faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.esm-faq-item {
    border-radius: 13px;
    border: 1px solid var(--gray-200);
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.esm-faq-btn {
    width: 100%;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 16px;
    color: var(--gray-900);
    font-size: 0.88rem;
    font-weight: 700;
}

.esm-faq-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--gray-500);
    transition: transform var(--duration-base) var(--ease);
}

.esm-faq-item.open .esm-faq-btn svg {
    transform: rotate(180deg);
}

.esm-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-slow) var(--ease);
}

.esm-faq-content p {
    margin: 0;
    padding: 0 16px 15px;
    color: var(--gray-600);
    font-size: 0.85rem;
    line-height: 1.72;
}

.esm-contact {
    padding: 82px 0 88px;
    background:
        radial-gradient(760px 360px at 100% 4%, rgba(245, 158, 11, 0.16) 0%, transparent 72%),
        linear-gradient(132deg, #101a2f 0%, #182742 100%);
}

.esm-contact-shell {
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(12, 24, 44, 0.58);
    padding: 28px 26px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
}

.esm-contact h2 {
    margin: 0 0 9px;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    color: #fff;
    line-height: 1.18;
}

.esm-contact p {
    margin: 0;
    color: rgba(226, 232, 240, 0.88);
    font-size: 0.93rem;
    line-height: 1.74;
}

.esm-contact-links {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.esm-contact-links a {
    color: #fdba74;
    text-decoration: none;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(253, 186, 116, 0.4);
}

.esm-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.esm-contact-actions .esm-btn-ghost {
    border-color: rgba(148, 163, 184, 0.55);
}

@media (prefers-reduced-motion: reduce) {
    .esm-badge-dot,
    .esm-stage-live-dot,
    .esm-phone-scene,
    .esm-mini-plan.active,
    .esm-qr-shell,
    .esm-connection-card,
    .esm-qr-scan,
    .esm-connection-dot,
    .esm-signal-bars span,
    .esm-progress-dot::after,
    .esm-stage-step {
        animation: none !important;
    }

    .esm-phone-scene {
        opacity: 0;
        transform: none;
    }

    .esm-phone-scene-1 {
        opacity: 1;
    }
}

@media (max-width: 1160px) {
    .esm-hero-grid {
        grid-template-columns: 1fr;
    }

    .esm-copy-shell,
    .esm-info-shell {
        padding: 24px 22px;
    }

    .esm-hero-stage {
        padding: 0;
    }

    .esm-stage-grid {
        grid-template-columns: 1fr;
    }

    .esm-stage-sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .esm-stage-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .esm-benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .esm-steps-grid {
        grid-template-columns: 1fr;
    }

    .esm-contact-shell {
        grid-template-columns: 1fr;
    }

    .esm-contact-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 860px) {
    .esm-hero {
        padding-top: 100px;
        padding-bottom: 76px;
    }

    .esm-stage-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .esm-hero-stage {
        padding: 0;
    }

    .esm-phone-wrap {
        min-height: 560px;
        padding: 6px 12px 14px;
    }

    .esm-phone {
        width: min(100%, 268px);
    }

    .esm-phone-float {
        display: none;
    }

    .esm-plan-grid {
        grid-template-columns: 1fr;
    }

    .esm-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .esm-block {
        padding: 72px 0;
    }
}

@media (max-width: 620px) {
    .esm-copy-shell,
    .esm-info-shell,
    .esm-contact-shell {
        border-radius: 16px;
    }

    .esm-copy-shell,
    .esm-info-shell {
        padding: 19px 16px;
    }

    .esm-hero-stage {
        padding: 0;
        border-radius: 0;
    }

    .esm-contact-shell {
        padding: 20px 16px;
    }

    .esm-actions,
    .esm-contact-actions {
        gap: 8px;
    }

    .esm-btn {
        width: 100%;
    }

    .esm-stats-grid,
    .esm-benefit-grid {
        grid-template-columns: 1fr;
    }

    .esm-stage-sidebar,
    .esm-stage-stats {
        grid-template-columns: 1fr;
    }

    .esm-stage-card,
    .esm-stage-stat {
        border-radius: 16px;
    }

    .esm-phone-wrap {
        width: min(100%, 300px);
        min-height: 520px;
        padding: 4px 6px 12px;
    }

    .esm-phone {
        width: min(100%, 248px);
    }

    .esm-phone-screen {
        padding: 16px 12px 12px;
    }

    .esm-phone-appbar {
        padding: 12px;
        border-radius: 18px;
    }

    .esm-scene-copy strong {
        font-size: 0.93rem;
    }

    .esm-scene-copy p {
        font-size: 0.74rem;
    }

    .esm-qr-shell {
        width: 150px;
    }

    .esm-phone-home-indicator {
        width: 84px;
    }

    .esm-plan-meta {
        grid-template-columns: 1fr;
    }

    .esm-head {
        margin-bottom: 24px;
    }

    .esm-head p {
        font-size: 0.9rem;
    }
}
