.home-hero {
    position: relative;
    overflow: hidden;
    background: #f6f7fb;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.home-hero .hero-blob {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(66, 165, 245, 0.16), rgba(21, 101, 192, 0.10));
    pointer-events: none;
}

.home-hero .hero-blob-1 {
    width: 520px;
    height: 520px;
    top: -140px;
    right: -80px;
}

.home-hero .hero-blob-2 {
    width: 360px;
    height: 360px;
    bottom: -160px;
    left: -120px;
    opacity: 0.7;
}

.home-hero .hero-spark {
    position: absolute;
    z-index: 1;
    color: #1565C0;
    pointer-events: none;
}

.home-hero .hero-spark-1 {
    top: 16%;
    left: 43%;
    font-size: 3.2rem;
    opacity: 0.12;
}

.home-hero .hero-spark-2 {
    bottom: 12%;
    right: 6%;
    font-size: 1.9rem;
    opacity: 0.16;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 72px 5vw 80px;
    width: 100%;
    flex: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border: 1px solid rgba(21, 101, 192, 0.25);
    border-radius: 999px;
    background: rgba(21, 101, 192, 0.06);
    color: #1565C0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 34px;
}

.hero-badge i {
    font-size: 0.9rem;
}

.hero-content h1 {
    margin: 0 0 28px;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #1a1d29;
}

.hero-title-accent {
    display: block;
    color: #1565C0;
}

.hero-description {
    margin: 0 0 40px;
    font-size: 1.24rem;
    line-height: 1.75;
    color: #55607a;
}

.hero-description strong {
    color: #1565C0;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 46px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.hero-btn.primary {
    padding: 18px 36px;
    background: #1565C0;
    color: #fff;
}

.hero-btn.primary:hover {
    background: #114e97;
}

.hero-btn.secondary {
    padding: 15px 24px;
    background: transparent;
    color: #1a1d29;
}

.hero-btn.secondary i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(21, 101, 192, 0.10);
    color: #1565C0;
    font-size: 0.85rem;
}

.hero-btn.secondary:hover {
    color: #1565C0;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-trust-live {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.86rem;
    font-weight: 600;
    color: #55607a;
}

.hero-trust-dot {
    position: relative;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22a35a;
    flex-shrink: 0;
}

.hero-trust-dot::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(34, 163, 90, 0.35);
    animation: heroTrustPulse 2s ease-out infinite;
}

@keyframes heroTrustPulse {
    0% { transform: scale(0.6); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

.hero-trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
}

.hero-trust-logos .trust-logo {
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding-left: 12px;
    border-left: 2px solid #1565C0;
    line-height: 1.2;
}

.hero-trust-logos .trust-logo-name {
    font-size: 0.9rem;
    font-weight: 800;
    color: #2a3350;
    letter-spacing: 0.01em;
}

.hero-trust-logos .trust-logo-sub {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #9aa3b8;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.phone-mockup {
    position: relative;
    z-index: 2;
    width: 300px;
    height: 625px;
    flex-shrink: 0;
    background: linear-gradient(150deg, #e08a4b 0%, #c86a2c 45%, #a9541f 100%);
    border-radius: 56px;
    padding: 3px;
}

.phone-mockup-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: #060606;
    border-radius: 53px;
    padding: 6px;
}

.phone-side {
    position: absolute;
    background: linear-gradient(150deg, #e08a4b, #a9541f);
    border-radius: 2px;
    z-index: 0;
}

.phone-side-power {
    right: -2px;
    top: 196px;
    width: 2px;
    height: 76px;
}

.phone-side-volup {
    left: -2px;
    top: 156px;
    width: 2px;
    height: 48px;
}

.phone-side-voldown {
    left: -2px;
    top: 214px;
    width: 2px;
    height: 48px;
}

.phone-side-action {
    left: -2px;
    top: 108px;
    width: 2px;
    height: 32px;
}

.phone-mockup-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 47px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-mockup-screen::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
    border-radius: 47px;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 32%, transparent 52%);
}

.ios-statusbar {
    position: relative;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px 6px 30px;
    background: #f4f5f7;
    color: #05070d;
    font-size: 0.72rem;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
}

.phone-mockup.on-home .ios-statusbar {
    background: transparent;
    color: #ffffff;
}

.ios-homescreen {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    padding: 54px 16px 16px;
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.16), transparent 42%),
        radial-gradient(circle at 88% 28%, rgba(255, 140, 190, 0.35), transparent 55%),
        radial-gradient(circle at 25% 88%, rgba(90, 200, 250, 0.32), transparent 55%),
        linear-gradient(160deg, #2a52c9 0%, #6a48d7 48%, #b85dbb 100%);
    opacity: 0;
    visibility: hidden;
    transform-origin: 63% 92%;
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.45s ease-in;
}

.ios-homescreen.show {
    opacity: 1;
    visibility: visible;
}

.ios-homescreen.launching {
    transform: scale(1.8);
    opacity: 0;
}

.hs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 8px;
}

.hs-widget {
    grid-column: span 2;
    grid-row: span 2;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
    border-radius: 16px;
    background: linear-gradient(180deg, #4aa8f0, #1c6dd8);
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.hs-widget .hsw-city {
    font-size: 0.62rem;
    font-weight: 600;
}

.hs-widget .hsw-temp {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.15;
}

.hs-widget .hsw-icon {
    margin-top: auto;
    font-size: 0.72rem;
    color: #ffd60a;
}

.hs-widget .hsw-desc {
    font-size: 0.54rem;
    font-weight: 500;
    margin-top: 2px;
}

.hs-widget .hsw-hl {
    font-size: 0.52rem;
    color: rgba(255, 255, 255, 0.85);
}

.hs-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hs-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.05rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
    transition: transform 0.15s ease;
}

.hs-label {
    font-size: 0.5rem;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hs-facetime { background: linear-gradient(180deg, #67e069, #2fb54b); }
.hs-calendar { background: #ffffff; color: #e8253d; }
.hs-photos { background: linear-gradient(135deg, #ff9500, #ff2d55); }
.hs-camera { background: linear-gradient(180deg, #9a9aa0, #5b5b60); }
.hs-maps { background: linear-gradient(180deg, #5fd35f, #2f9e44); }
.hs-clock { background: #0b0b0d; }
.hs-notes { background: #ffffff; color: #f7b500; }
.hs-settings { background: linear-gradient(180deg, #b8bcc4, #7d828c); }
.hs-phone { background: linear-gradient(180deg, #67e069, #2fb54b); }
.hs-messages { background: linear-gradient(180deg, #6fe86f, #2fbf4f); }
.hs-safari { background: #ffffff; color: #1b7ff2; font-size: 1.5rem; }
.hs-mail { background: linear-gradient(180deg, #59b7f7, #1a6fe0); }

.hs-appstore { background: linear-gradient(180deg, #33bef0, #1a82e2); }
.hs-files { background: #ffffff; color: #1b7ff2; }
.hs-tv {
    background: linear-gradient(180deg, #3a3a3f, #1a1a1d);
    gap: 2px;
    font-size: 0.78rem;
}

.hs-tv .fa-apple {
    font-size: 0.74rem;
    margin-top: -2px;
}

.hs-tv .hs-tv-text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.hs-music { background: linear-gradient(180deg, #fa5c74, #f2385a); }

.hs-safari.tapped {
    transform: scale(0.82);
}

.hs-dots {
    margin: auto auto 8px;
    display: flex;
    gap: 6px;
}

.hs-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

.hs-dots span.active {
    background: rgba(255, 255, 255, 0.95);
}

.hs-search {
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    color: #ffffff;
    font-size: 0.58rem;
    font-weight: 500;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hs-search i {
    font-size: 0.52rem;
}

.hs-dock {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px 8px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hs-dock .hs-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
}

.ios-statusbar .ios-time {
    min-width: 40px;
    text-align: center;
}

.ios-statusbar .ios-island {
    position: absolute;
    left: 50%;
    top: 12px;
    transform: translateX(-50%);
    width: 72px;
    height: 21px;
    background: #060606;
    border-radius: 999px;
}

.ios-island .cam-dot {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #34c759;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.phone-mockup.camera-on .ios-island .cam-dot {
    opacity: 1;
}

.ios-statusbar .ios-indicators {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    min-width: 40px;
    font-size: 0.68rem;
}

.ios-statusbar .ios-5g {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.ios-statusbar .ios-batt {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 25px;
    height: 13px;
    padding: 0 3px;
    border-radius: 4px;
    background: rgba(5, 7, 13, 0.85);
    color: #ffffff;
    font-size: 0.56rem;
    font-weight: 700;
    margin-right: 3px;
    transition: background 0.3s ease, color 0.3s ease;
}

.ios-statusbar .ios-batt::after {
    content: "";
    position: absolute;
    right: -3px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 5px;
    border-radius: 0 2px 2px 0;
    background: rgba(5, 7, 13, 0.45);
    transition: background 0.3s ease;
}

.phone-mockup.on-home .ios-batt {
    background: rgba(255, 255, 255, 0.95);
    color: #05070d;
}

.phone-mockup.on-home .ios-batt::after {
    background: rgba(255, 255, 255, 0.6);
}

.safari-bar {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 10px;
    background: #f4f5f7;
    border-bottom: 1px solid #dfe1e6;
}

.safari-bar .safari-nav {
    color: #8b90a0;
    font-size: 0.8rem;
}

.safari-bar .safari-address {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 12px;
    background: #e4e6eb;
    border-radius: 10px;
    color: #40454f;
    font-size: 0.72rem;
    font-weight: 500;
}

.safari-bar .safari-address i {
    font-size: 0.62rem;
    color: #6b7080;
}

.safari-bar .safari-address.typing {
    background: #ffffff;
    box-shadow: 0 1px 5px rgba(15, 23, 42, 0.12);
}

.safari-bar .safari-address.typing i {
    display: none;
}

.safari-aa {
    font-size: 0.6rem;
    font-weight: 700;
    color: #6b7080;
}

.safari-bar .safari-address.typing .safari-aa {
    display: none;
}

.safari-placeholder {
    display: none;
    color: #8b90a0;
}

.safari-bar .safari-address.typing.empty .safari-placeholder {
    display: inline;
}

.safari-caret {
    display: none;
    width: 1.5px;
    height: 11px;
    border-radius: 1px;
    background: #1565C0;
    animation: safariCaretBlink 0.8s step-end infinite;
}

.safari-bar .safari-address.typing .safari-caret {
    display: inline-block;
}

.safari-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    z-index: 1;
    pointer-events: none;
}

.safari-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: #1565C0;
}

.safari-progress.on span {
    animation: safariLoad 0.95s ease-out forwards;
}

@keyframes safariCaretBlink {
    50% { opacity: 0; }
}

@keyframes safariLoad {
    0% { width: 0; }
    60% { width: 72%; }
    100% { width: 100%; }
}

.safari-content {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    background: #ffffff;
}

.ios-keyboard {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 8;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 7px 5px 18px;
    background: #d1d4da;
    transform: translateY(105%);
    transition: transform 0.3s ease;
}

.ios-keyboard.open {
    transform: translateY(0);
}

.ios-keyboard .kb-row {
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: 0 2px;
}

.ios-keyboard .kb-row-mid {
    padding: 0 10px;
}

.ios-keyboard .kb-key {
    flex: 1;
    height: 24px;
    border-radius: 4px;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.56rem;
    font-weight: 500;
    color: #111318;
    transition: transform 0.08s ease, background 0.08s ease;
}

.ios-keyboard .kb-key i {
    font-size: 0.5rem;
}

.ios-keyboard .kb-special {
    flex: 1.4;
    background: #abb0bc;
    font-size: 0.5rem;
}

.ios-keyboard .kb-space {
    flex: 5;
}

.ios-keyboard .kb-dot {
    flex: 1.2;
}

.ios-keyboard .kb-go {
    flex: 2;
    background: #1565C0;
    color: #ffffff;
    font-weight: 600;
}

.ios-keyboard .kb-key.pressed {
    transform: translateY(-2px) scale(1.18);
    background: #e8effc;
}

.ios-keyboard .kb-go.pressed {
    transform: scale(0.94);
    background: #0f4f99;
}

.safari-startpage {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 18px 16px;
    background: #f7f8fa;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.safari-content.page-loading .safari-startpage {
    opacity: 1;
    visibility: visible;
}

.sp-history {
    display: flex;
    flex-direction: column;
}

.sp-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 10px;
    border-radius: 10px;
    border-bottom: 1px solid #ececf0;
    font-size: 0.68rem;
    font-weight: 500;
    transition: opacity 0.25s ease, background 0.25s ease;
}

.sp-row:last-child {
    border-bottom: none;
}

.sp-row > i {
    font-size: 0.62rem;
    color: #8b90a0;
    transition: color 0.25s ease;
}

.sp-text {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sp-text b {
    font-weight: 600;
    color: #1a1d29;
}

.sp-text > span {
    color: #1a1d29;
    transition: color 0.2s ease;
}

.safari-startpage.filtering .sp-text > span {
    color: #9aa1af;
}

.sp-insert {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1.2px solid #b9bfca;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b90a0;
    font-size: 0.42rem;
}

.sp-insert i {
    transform: rotate(-45deg);
}

.sp-row.dimmed {
    opacity: 0.55;
}

.sp-row.selected {
    background: rgba(21, 101, 192, 0.1);
}

.sp-row.selected > i,
.sp-row.selected .sp-text b,
.sp-row.selected .sp-text > span {
    color: #1565C0;
}

.safari-content .phone-topbar,
.safari-content .phone-steps,
.safari-content .phone-body {
    transition: opacity 0.35s ease;
}

.safari-content.page-loading .phone-topbar,
.safari-content.page-loading .phone-steps,
.safari-content.page-loading .phone-body {
    opacity: 0;
}

.phone-topbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px 12px;
}

.phone-topbar .phone-back {
    color: #1565C0;
    font-size: 0.85rem;
}

.phone-topbar .phone-title {
    font-size: 0.86rem;
    font-weight: 700;
    color: #1a1d29;
}

.phone-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    padding: 8px 14px 12px;
    border-bottom: 2px solid #DADBE8;
}

.phone-steps .p-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1;
}

.phone-steps .p-step-head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.phone-steps .p-step-icon {
    position: relative;
    z-index: 1;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background-color: #ebebeb;
    color: #6c757d;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s;
}

.phone-steps .p-step-bar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background-color: #ebebeb;
    transition: all 0.5s;
    z-index: 0;
}

.phone-steps .p-step-label {
    font-size: 0.54rem;
    font-weight: 600;
    color: #8b95ad;
    text-align: center;
    transition: color 0.4s;
}

.phone-steps .p-step.active .p-step-icon,
.phone-steps .p-step.completed .p-step-icon {
    background-color: #1565C0;
    color: #fff;
}

.phone-steps .p-step.active .p-step-icon {
    animation: pStepIconPop 0.4s ease;
}

.phone-steps .p-step.active .p-step-label {
    color: #1565C0;
}

.phone-steps .p-step.completed .p-step-label {
    color: #1a1d29;
}

.phone-steps .p-step.active .p-step-bar {
    background-color: transparent;
    background-image: linear-gradient(to right, #1565C0 50%, #ebebeb 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    animation: pStepBarFill 2.4s ease forwards;
}

.phone-steps .p-step.completed .p-step-bar {
    background: #1565C0;
}

@keyframes pStepIconPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.18); }
    100% { transform: scale(1); }
}

@keyframes pStepBarFill {
    to { background-position: 0 0; }
}

.phone-body {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.phone-scene {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

.phone-scene.active {
    opacity: 1;
    visibility: visible;
}

.phone-scene-main {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.phone-action {
    margin: 10px 14px 14px;
    padding: 11px;
    border-radius: 12px;
    background: #1565C0;
    color: #fff;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    flex-shrink: 0;
    transition: transform 0.13s ease, filter 0.13s ease;
}

.phone-action.pressing {
    transform: scale(0.95);
    filter: brightness(0.82);
}

.scene-info .phone-scene-main {
    padding: 18px;
    justify-content: center;
    gap: 11px;
}

.scene-info .info-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(21, 101, 192, 0.08);
    color: #1565C0;
    font-size: 1.5rem;
    margin: 0 auto 4px;
}

.scene-info .info-title {
    text-align: center;
    font-size: 0.92rem;
    font-weight: 700;
    color: #1a1d29;
}

.scene-info .info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid #eef1f7;
    border-radius: 10px;
}

.scene-info .info-row i {
    color: #1565C0;
    font-size: 0.85rem;
}

.scene-info .info-row span {
    font-size: 0.72rem;
    color: #55607a;
    font-weight: 500;
}

.scene-cam .phone-scene-main {
    background: #0d0f18;
    justify-content: flex-end;
}

.scene-cam .cam-face-mask {
    position: absolute;
    inset: 0;
    background: #0d0f18;
    -webkit-mask-image: radial-gradient(circle 88px at center 42%, transparent 99%, #000 100%);
    mask-image: radial-gradient(circle 88px at center 42%, transparent 99%, #000 100%);
    z-index: 2;
}

.scene-cam .cam-face-ring {
    position: absolute;
    top: 42%;
    left: 50%;
    width: 176px;
    height: 176px;
    transform: translate(-50%, -50%);
    border: 3px solid rgba(78, 208, 202, 0.75);
    border-radius: 50%;
    z-index: 3;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.scene-cam.face-ok .cam-face-ring {
    border-color: rgba(64, 211, 122, 0.9);
    box-shadow: 0 0 18px rgba(64, 211, 122, 0.35);
}

.scene-cam .cam-scan-line {
    position: absolute;
    top: 42%;
    left: 50%;
    width: 150px;
    height: 2px;
    margin-left: -75px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, rgba(78, 208, 202, 0.9), transparent);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.phone-scene.scene-cam.active .cam-scan-line {
    opacity: 1;
    animation: camScan 1.5s ease-in-out infinite alternate;
}

.scene-cam.face-ok .cam-scan-line {
    opacity: 0;
}

.scene-cam.face-ok .scene-status {
    color: #7ce3a1;
}

@keyframes camScan {
    from { transform: translateY(-70px); }
    to { transform: translateY(70px); }
}

.scene-cam .cam-person {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: rgba(255, 255, 255, 0.16);
    font-size: 7rem;
}

.scene-status {
    position: relative;
    z-index: 4;
    background: #000;
    color: #fff;
    padding: 14px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
}

.scene-id .id-stage {
    position: relative;
    flex: 1;
    background: #1a1a2e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.scene-id .scene-status {
    width: 100%;
}

.scene-id .id-frame-mini {
    position: relative;
    width: 82%;
    aspect-ratio: 1.585 / 1;
    border: 2px solid #4ed0ca;
    border-radius: 10px;
    box-shadow: 0 0 0 2000px rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
}

.id-card-mini {
    position: relative;
    width: 92%;
    aspect-ratio: 85.6 / 54;
    transform-style: preserve-3d;
    transition: transform 0.55s ease;
}

.id-card-mini.flipped {
    transform: rotateY(180deg);
}

.id-card-mini .idm-face {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 8px;
    padding: 4% 6%;
    display: flex;
    flex-direction: column;
    gap: 5%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.id-card-mini .idm-back {
    transform: rotateY(180deg);
}

.id-card-mini .idm-back-band {
    height: 16%;
    margin: 1% -6.5% 2%;
    background: rgba(255, 255, 255, 0.22);
}

.id-card-mini .idm-mrz {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: 'Courier New', monospace;
    font-size: 0.34rem;
    letter-spacing: 0.06em;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    overflow: hidden;
}

.id-card-mini .idm-header {
    display: flex;
    align-items: center;
    gap: 6%;
    padding-bottom: 4%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.id-card-mini .idm-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    background: #1565C0;
    flex-shrink: 0;
}

.id-card-mini .idm-header-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.id-card-mini .idm-chip {
    width: 16px;
    height: 13px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.id-card-mini .idm-body {
    display: flex;
    gap: 6%;
    flex: 1;
}

.id-card-mini .idm-photo {
    width: 30%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.id-card-mini .idm-photo::before {
    content: '';
    width: 60%;
    height: 55%;
    border-radius: 50% 50% 45% 45%;
    background: rgba(255, 255, 255, 0.14);
}

.id-card-mini .idm-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.id-card-mini .idm-line {
    display: block;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.5);
}

.id-card-mini .idm-line.w90 { width: 90%; }
.id-card-mini .idm-line.w75 { width: 75%; }
.id-card-mini .idm-line.w60 { width: 60%; }
.id-card-mini .idm-line.w100 { width: 100%; }
.id-card-mini .idm-line.w45 { width: 45%; }

.scene-id .id-badge-mini {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 4px 9px;
}

.scene-id .id-badge-mini .idb-num {
    color: #4ed0ca;
    font-size: 0.62rem;
    font-weight: 700;
}

.scene-id .id-badge-mini .idb-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.6rem;
}

.scene-result .phone-scene-main {
    justify-content: center;
    align-items: center;
    padding: 24px 20px;
}

.scene-result .result-card {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.scene-result .result-card.active {
    display: flex;
}

.scene-result .result-icon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
}

.scene-result .result-inprogress .result-icon {
    background: rgba(21, 101, 192, 0.10);
    color: #1565C0;
}

.scene-result .result-inprogress.active .result-icon {
    animation: fpPulse 1.3s ease-in-out infinite;
}

@keyframes fpPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.75; }
}

.scene-result .result-inprogress .result-title {
    color: #1565C0;
}

.scene-result .result-verified .result-icon {
    background: #e2feee;
    color: #2d8954;
}

.scene-result .result-verified .result-title {
    color: #066e29;
}

.scene-result .result-title {
    font-size: 1rem;
    font-weight: 700;
}

.scene-result .result-message {
    font-size: 0.76rem;
    line-height: 1.5;
    color: #595b5f;
}

.hero-floating-stats {
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex-shrink: 0;
}

.hero-stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid #eef1f7;
    border-radius: 18px;
    min-width: 200px;
}

.hero-stat-card .hsc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(21, 101, 192, 0.10);
    color: #1565C0;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hero-stat-card .hsc-value {
    font-size: 1.55rem;
    font-weight: 800;
    color: #1a1d29;
    line-height: 1.1;
}

.hero-stat-card .hsc-label {
    font-size: 0.82rem;
    color: #6b7488;
}

@media (max-width: 1100px) {
    .hero-visual {
        gap: 16px;
    }

    .hero-stat-card {
        min-width: 178px;
        padding: 15px 18px;
    }
}

@media (max-width: 991px) {
    .home-hero {
        min-height: 0;
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 56px;
        padding: 56px 6vw 64px;
    }

    .hero-content {
        max-width: 640px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-description {
        font-size: 1.08rem;
    }

    .hero-badge {
        margin-bottom: 22px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        align-items: center;
    }

    .hero-trust-logos {
        justify-content: center;
    }

    .hero-visual {
        flex-direction: column;
        gap: 32px;
    }

    .hero-floating-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-btn.primary,
    .hero-btn.secondary {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 40px 5vw 48px;
    }

    .hero-content h1 {
        font-size: 2.1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btn.primary,
    .hero-btn.secondary {
        width: 100%;
    }

    .phone-mockup {
        width: 272px;
        height: 556px;
    }

    .hero-stat-card {
        min-width: 150px;
        padding: 14px 16px;
    }

    .hero-stat-card .hsc-value {
        font-size: 1.35rem;
    }
}

[data-theme="dark"] .home-hero {
    background: #181c27;
}

[data-theme="dark"] .home-hero .hero-blob {
    background: radial-gradient(circle at 30% 30%, rgba(66, 165, 245, 0.22), rgba(21, 101, 192, 0.12));
    opacity: 0.5;
}

[data-theme="dark"] .home-hero .hero-spark {
    color: #42A5F5;
}

[data-theme="dark"] .home-hero .hero-spark-1 {
    opacity: 0.16;
}

[data-theme="dark"] .home-hero .hero-spark-2 {
    opacity: 0.22;
}

[data-theme="dark"] .hero-badge {
    background: rgba(66, 165, 245, 0.12);
    border-color: rgba(66, 165, 245, 0.3);
    color: #6cb6f5;
}

[data-theme="dark"] .hero-content h1 {
    color: #f2f5fa;
}

[data-theme="dark"] .hero-title-accent {
    color: #6cb6f5;
}

[data-theme="dark"] .hero-description {
    color: #a2acc0;
}

[data-theme="dark"] .hero-description strong {
    color: #6cb6f5;
}

[data-theme="dark"] .hero-btn.secondary {
    color: #e6eaf2;
}

[data-theme="dark"] .hero-btn.secondary i {
    background: rgba(66, 165, 245, 0.16);
    color: #6cb6f5;
}

[data-theme="dark"] .hero-trust-live {
    color: #a2acc0;
}

[data-theme="dark"] .hero-trust-dot {
    background: #4ed0ca;
}

[data-theme="dark"] .hero-trust-dot::before {
    background: rgba(78, 208, 202, 0.35);
}

[data-theme="dark"] .hero-trust-logos .trust-logo {
    border-left-color: #42A5F5;
}

[data-theme="dark"] .hero-trust-logos .trust-logo-name {
    color: #e6eaf2;
}

[data-theme="dark"] .hero-trust-logos .trust-logo-sub {
    color: #6b7488;
}

[data-theme="dark"] .hero-stat-card {
    background: #1e222e;
    border-color: #333949;
}

[data-theme="dark"] .hero-stat-card .hsc-icon {
    background: rgba(66, 165, 245, 0.16);
    color: #6cb6f5;
}

[data-theme="dark"] .hero-stat-card .hsc-value {
    color: #f2f5fa;
}

[data-theme="dark"] .hero-stat-card .hsc-label {
    color: #8b93a5;
}

[data-theme="dark"] .phone-mockup-screen {
    background: #1e222e;
}

[data-theme="dark"] .ios-statusbar {
    background: #242936;
    color: #e6eaf2;
}

[data-theme="dark"] .ios-statusbar .ios-batt {
    background: rgba(255, 255, 255, 0.9);
    color: #05070d;
}

[data-theme="dark"] .ios-statusbar .ios-batt::after {
    background: rgba(255, 255, 255, 0.55);
}

[data-theme="dark"] .safari-bar {
    background: #242936;
    border-bottom-color: #373d4c;
}

[data-theme="dark"] .safari-bar .safari-address {
    background: #333949;
    color: #c4cbda;
}

[data-theme="dark"] .safari-bar .safari-address i {
    color: #8b93a5;
}

[data-theme="dark"] .safari-caret,
[data-theme="dark"] .safari-progress span {
    background: #6cb6f5;
}

[data-theme="dark"] .safari-bar .safari-address.typing {
    background: #262b38;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .safari-aa {
    color: #8b93a5;
}

[data-theme="dark"] .safari-placeholder {
    color: #707a8d;
}

[data-theme="dark"] .ios-keyboard {
    background: #20242e;
}

[data-theme="dark"] .ios-keyboard .kb-key {
    background: #3a4050;
    color: #e6eaf2;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .ios-keyboard .kb-special {
    background: #2b303c;
}

[data-theme="dark"] .ios-keyboard .kb-go {
    background: #1565C0;
    color: #ffffff;
}

[data-theme="dark"] .ios-keyboard .kb-key.pressed {
    background: #4a5164;
}

[data-theme="dark"] .ios-keyboard .kb-go.pressed {
    background: #0f4f99;
}

[data-theme="dark"] .safari-content {
    background: #1e222e;
}

[data-theme="dark"] .safari-startpage {
    background: #1c202b;
}

[data-theme="dark"] .sp-row {
    border-bottom-color: #2b3040;
}

[data-theme="dark"] .sp-row > i {
    color: #8b93a5;
}

[data-theme="dark"] .sp-text b,
[data-theme="dark"] .sp-text > span {
    color: #e6eaf2;
}

[data-theme="dark"] .safari-startpage.filtering .sp-text > span {
    color: #707a8d;
}

[data-theme="dark"] .sp-insert {
    border-color: #4a5164;
    color: #8b93a5;
}

[data-theme="dark"] .sp-row.selected {
    background: rgba(66, 165, 245, 0.15);
}

[data-theme="dark"] .sp-row.selected > i,
[data-theme="dark"] .sp-row.selected .sp-text b,
[data-theme="dark"] .sp-row.selected .sp-text > span {
    color: #6cb6f5;
}

[data-theme="dark"] .phone-topbar .phone-title {
    color: #f2f5fa;
}

[data-theme="dark"] .phone-steps {
    border-bottom-color: #373d4c;
}

[data-theme="dark"] .phone-steps .p-step-icon,
[data-theme="dark"] .phone-steps .p-step-bar {
    background-color: #373d4c;
}

[data-theme="dark"] .phone-steps .p-step.active .p-step-icon,
[data-theme="dark"] .phone-steps .p-step.completed .p-step-icon {
    background-color: #1565C0;
    color: #fff;
}

[data-theme="dark"] .phone-steps .p-step.active .p-step-bar {
    background-image: linear-gradient(to right, #1565C0 50%, #373d4c 50%);
}

[data-theme="dark"] .phone-steps .p-step-label {
    color: #8b93a5;
}

[data-theme="dark"] .phone-steps .p-step.active .p-step-label {
    color: #6cb6f5;
}

[data-theme="dark"] .phone-steps .p-step.completed .p-step-label {
    color: #e6eaf2;
}

[data-theme="dark"] .scene-info .info-title {
    color: #f2f5fa;
}

[data-theme="dark"] .scene-info .info-row {
    border-color: #333949;
}

[data-theme="dark"] .scene-info .info-row span {
    color: #a2acc0;
}

[data-theme="dark"] .scene-result .result-message {
    color: #9aa3b5;
}

[data-theme="dark"] .scene-result .result-verified .result-icon {
    background: rgba(78, 208, 202, 0.16);
    color: #6ee7de;
}

[data-theme="dark"] .scene-result .result-verified .result-title {
    color: #6ee7de;
}

.kyc-solutions {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
}

.kyc-solutions-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.kyc-solutions-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 56px;
}

.kyc-solutions-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(21, 101, 192, 0.08);
    color: #1565C0;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 18px;
}

.kyc-solutions-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a202c;
    margin: 0 0 14px;
}

.kyc-solutions-sub {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

.kyc-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}

.kyc-solution {
    display: flex;
    flex-direction: column;
    padding: 26px 26px;
    border-radius: 20px;
    background: #f6f8fc;
    border: 1px solid #eaeef5;
}

.kyc-solution-mockup {
    position: relative;
    height: 150px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #eaeef5;
    overflow: hidden;
    margin-bottom: 20px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mk-face-frame {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 14px;
    background: rgba(21, 101, 192, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mk-face-head {
    font-size: 46px;
    color: #90a4c4;
    transition: color 0.4s ease;
}

.mk-corner {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid #1565C0;
    opacity: 0.55;
}

.mk-corner.tl { top: 6px; left: 6px; border-right: 0; border-bottom: 0; border-top-left-radius: 4px; }
.mk-corner.tr { top: 6px; right: 6px; border-left: 0; border-bottom: 0; border-top-right-radius: 4px; }
.mk-corner.bl { bottom: 6px; left: 6px; border-right: 0; border-top: 0; border-bottom-left-radius: 4px; }
.mk-corner.br { bottom: 6px; right: 6px; border-left: 0; border-top: 0; border-bottom-right-radius: 4px; }

.mk-scanline {
    position: absolute;
    left: 6px;
    right: 6px;
    top: 8px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, #1565C0, transparent);
    opacity: 0;
}

.mk-face-check {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    background: #16a34a;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(6px);
}

.is-playing .mk-scanline {
    animation: mkScan 1.6s ease-in-out;
}

.is-playing .mk-face-head {
    animation: mkFaceGlow 1.8s ease forwards;
}

.is-playing .mk-face-check {
    animation: mkPop 0.5s ease 1.3s forwards;
}

@keyframes mkScan {
    0% { opacity: 0; top: 8px; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { opacity: 0; top: 78px; }
}

@keyframes mkFaceGlow {
    0%, 60% { color: #90a4c4; }
    100% { color: #1565C0; }
}

@keyframes mkPop {
    0% { opacity: 0; transform: translateY(6px); }
    100% { opacity: 1; transform: translateY(0); }
}

.mk-id-card {
    position: relative;
    width: 190px;
    max-width: 100%;
    height: 108px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 12px;
    overflow: hidden;
}

.mk-id-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.mk-id-flag {
    width: 26px;
    height: 8px;
    border-radius: 2px;
    background: #1565C0;
}

.mk-id-chip {
    width: 20px;
    height: 14px;
    border-radius: 3px;
    background: linear-gradient(135deg, #f4c430, #d4a017);
}

.mk-id-body {
    display: flex;
    gap: 12px;
}

.mk-id-photo {
    width: 44px;
    height: 52px;
    border-radius: 6px;
    background: #eef2f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    font-size: 22px;
    flex-shrink: 0;
}

.mk-id-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.mk-id-line {
    height: 7px;
    border-radius: 4px;
    background: #e2e8f0;
    width: 0;
}

.mk-id-line.l1 { max-width: 100%; }
.mk-id-line.l2 { max-width: 75%; }
.mk-id-line.l3 { max-width: 88%; }

.mk-id-scan {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    left: -40px;
    background: linear-gradient(90deg, transparent, rgba(21, 101, 192, 0.28), transparent);
}

.mk-id-verified {
    position: absolute;
    bottom: 12px;
    right: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #16a34a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    opacity: 0;
    transform: scale(0.4);
}

.is-playing .mk-id-scan {
    animation: mkIdScan 1.5s ease-in-out;
}

.is-playing .mk-id-line.l1 { animation: mkFill 0.5s ease 0.5s forwards; }
.is-playing .mk-id-line.l2 { animation: mkFill 0.5s ease 0.75s forwards; }
.is-playing .mk-id-line.l3 { animation: mkFill 0.5s ease 1s forwards; }

.is-playing .mk-id-verified {
    animation: mkStamp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.4s forwards;
}

@keyframes mkIdScan {
    0% { left: -40px; }
    100% { left: 180px; }
}

@keyframes mkFill {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes mkStamp {
    0% { opacity: 0; transform: scale(0.4); }
    100% { opacity: 1; transform: scale(1); }
}

.mk-api-terminal {
    width: 210px;
    max-width: 100%;
    border-radius: 10px;
    background: #0f172a;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.2);
}

.mk-api-bar {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 10px;
    background: #1e293b;
}

.mk-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mk-dot.r { background: #ff5f56; }
.mk-dot.y { background: #ffbd2e; }
.mk-dot.g { background: #27c93f; }

.mk-api-body {
    padding: 8px 12px 10px;
    font-family: 'SFMono-Regular', Consolas, monospace;
    font-size: 10px;
    line-height: 1.55;
}

.mk-api-req {
    color: #7dd3fc;
    margin-bottom: 3px;
}

.mk-api-line {
    color: #cbd5e1;
}

.mk-api-line.rc {
    opacity: 0;
    transform: translateY(3px);
}

.mk-api-key { color: #93c5fd; }
.mk-api-ok { color: #86efac; }
.mk-api-num { color: #fca5a5; }
.mk-api-brace { color: #cbd5e1; }

.mk-api-cursor {
    display: inline-block;
    width: 5px;
    height: 11px;
    margin-left: 2px;
    background: #7dd3fc;
    vertical-align: middle;
    opacity: 0;
}

.is-playing .mk-api-line.rc:nth-of-type(2) { animation: mkType 0.35s ease 0.4s forwards; }
.is-playing .mk-api-line.rc:nth-of-type(3) { animation: mkType 0.35s ease 0.65s forwards; }
.is-playing .mk-api-line.rc:nth-of-type(4) { animation: mkType 0.35s ease 0.9s forwards; }
.is-playing .mk-api-line.rc:nth-of-type(5) { animation: mkType 0.35s ease 1.15s forwards; }

.is-playing .mk-api-cursor { animation: mkBlink 0.8s step-end 1.4s 3; }

@keyframes mkType {
    0% { opacity: 0; transform: translateY(3px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes mkBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.kyc-solution-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 12px;
}

.kyc-solution-desc {
    font-size: 14.5px;
    line-height: 1.65;
    color: #64748b;
    margin: 0 0 22px;
}

.kyc-solution-metrics {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
}

.kyc-solution-metric {
    flex: 1;
    padding: 12px 14px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #eaeef5;
}

.kyc-solution-metric-value {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: #1565C0;
    line-height: 1.2;
}

.kyc-solution-metric-label {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 2px;
}

.kyc-solution-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.kyc-solution-tag {
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(21, 101, 192, 0.07);
    color: #1565C0;
    font-size: 12px;
    font-weight: 600;
}

[data-theme="dark"] .kyc-solutions {
    background: #1f2430;
}

[data-theme="dark"] .kyc-solutions-eyebrow {
    background: rgba(66, 165, 245, 0.12);
    color: #6cb6f5;
}

[data-theme="dark"] .kyc-solutions-title {
    color: #e6eaf2;
}

[data-theme="dark"] .kyc-solutions-sub {
    color: #a2acc0;
}

[data-theme="dark"] .kyc-solution {
    background: #1c2029;
    border-color: #333949;
}

[data-theme="dark"] .kyc-solution-title {
    color: #e6eaf2;
}

[data-theme="dark"] .kyc-solution-desc {
    color: #a2acc0;
}

[data-theme="dark"] .kyc-solution-metric {
    background: #242936;
    border-color: #333949;
}

[data-theme="dark"] .kyc-solution-metric-value {
    color: #6cb6f5;
}

[data-theme="dark"] .kyc-solution-metric-label {
    color: #8b93a5;
}

[data-theme="dark"] .kyc-solution-tag {
    background: rgba(66, 165, 245, 0.12);
    color: #6cb6f5;
}

[data-theme="dark"] .kyc-solution-mockup {
    background: #1a1e29;
    border-color: #333949;
}

[data-theme="dark"] .mk-face-frame {
    background: rgba(66, 165, 245, 0.1);
}

[data-theme="dark"] .mk-face-head {
    color: #5a6684;
}

[data-theme="dark"] .mk-corner {
    border-color: #42A5F5;
}

[data-theme="dark"] .mk-scanline {
    background: linear-gradient(90deg, transparent, #42A5F5, transparent);
}

[data-theme="dark"] .mk-id-card {
    background: #1f2430;
    border-color: #2c3242;
}

[data-theme="dark"] .mk-id-photo {
    background: #232838;
    color: #5a6684;
}

[data-theme="dark"] .mk-id-line {
    background: #2c3242;
}

[data-theme="dark"] .mk-id-flag {
    background: #42A5F5;
}

[data-theme="dark"] .is-playing .mk-face-glow,
[data-theme="dark"] .is-playing .mk-face-head {
    animation: mkFaceGlowDark 1.8s ease forwards;
}

@keyframes mkFaceGlowDark {
    0%, 60% { color: #5a6684; }
    100% { color: #6cb6f5; }
}

@media (max-width: 900px) {
    .kyc-solutions-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .kyc-solutions {
        padding: 60px 0;
    }

    .kyc-solutions-title {
        font-size: 26px;
    }

    .kyc-solution {
        padding: 26px 22px;
    }

    .kyc-solution-metrics {
        gap: 10px;
    }
}

.kyc-sectors {
    position: relative;
    padding: 130px 0 90px;
    background: #e9eef7;
    color: #e9eef7;
}

.kyc-sectors-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    pointer-events: none;
}

.kyc-sectors-wave svg {
    display: block;
    width: 100%;
    height: 90px;
    transform: translateY(-99%);
}

.kyc-sectors-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.kyc-sectors-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px;
}

.kyc-sectors-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(21, 101, 192, 0.08);
    color: #1565C0;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 18px;
}

.kyc-sectors-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a202c;
    margin: 0 0 14px;
}

.kyc-sectors-sub {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

.kyc-sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.kyc-sector {
    background: #ffffff;
    padding: 34px 28px;
    border: 1px solid #dbe3f0;
    border-radius: 16px;
    transition: background 0.25s ease;
}

.kyc-sector:hover {
    background: #f6f9ff;
}

.kyc-sector-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(21, 101, 192, 0.08);
    color: #1565C0;
    font-size: 22px;
    margin-bottom: 20px;
}

.kyc-sector-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 10px;
}

.kyc-sector-text {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

.kyc-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.kyc-stat {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px 28px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #dbe3f0;
}

.kyc-stat-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(21, 101, 192, 0.08);
    color: #1565C0;
    font-size: 24px;
}

.kyc-stat-body {
    flex: 1;
}

.kyc-stat-top {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.kyc-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1;
}

.kyc-stat-trend {
    font-size: 0.8rem;
    font-weight: 700;
    color: #16a34a;
}

.kyc-stat-label {
    margin-top: 6px;
    font-size: 0.98rem;
    font-weight: 700;
    color: #334155;
}

.kyc-stat-desc {
    margin-top: 2px;
    font-size: 0.8rem;
    color: #94a3b8;
}

[data-theme="dark"] .kyc-sectors {
    background: #181c27;
    color: #181c27;
}

[data-theme="dark"] .kyc-sectors-eyebrow {
    background: rgba(66, 165, 245, 0.12);
    color: #6cb6f5;
}

[data-theme="dark"] .kyc-sectors-title {
    color: #e6eaf2;
}

[data-theme="dark"] .kyc-sectors-sub {
    color: #a2acc0;
}

[data-theme="dark"] .kyc-sector {
    background: #1e222e;
    border-color: #333949;
}

[data-theme="dark"] .kyc-sector:hover {
    background: #252b3b;
}

[data-theme="dark"] .kyc-sector-icon {
    background: rgba(66, 165, 245, 0.12);
    color: #6cb6f5;
}

[data-theme="dark"] .kyc-sector-name {
    color: #e6eaf2;
}

[data-theme="dark"] .kyc-sector-text {
    color: #a2acc0;
}

[data-theme="dark"] .kyc-stat {
    background: #1e222e;
    border-color: #333949;
}

[data-theme="dark"] .kyc-stat-icon {
    background: rgba(66, 165, 245, 0.12);
    color: #6cb6f5;
}

[data-theme="dark"] .kyc-stat-number {
    color: #e6eaf2;
}

[data-theme="dark"] .kyc-stat-trend {
    color: #4ade80;
}

[data-theme="dark"] .kyc-stat-label {
    color: #cdd5e3;
}

[data-theme="dark"] .kyc-stat-desc {
    color: #8b93a5;
}

@media (max-width: 992px) {
    .kyc-sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 560px) {
    .kyc-sectors {
        padding: 60px 0;
    }

    .kyc-sectors-title {
        font-size: 26px;
    }

    .kyc-sectors-grid {
        grid-template-columns: 1fr;
    }

    .kyc-sector {
        padding: 28px 24px;
    }
}
