﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

@font-face {
    font-family: "Nexa";
    src:
        local("Nexa Bold"),
        local("Nexa-Bold"),
        url("../fonts/Nexa-Bold.woff2") format("woff2"),
        url("../fonts/Nexa-Bold.woff") format("woff"),
        url("../fonts/Nexa-Bold.otf") format("opentype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --bg-light: #f7f8fa;
    --bg-surface: #ffffff;
    --bg-dark: #0f1115;
    --bg-dark-surface: #151922;
    --text-strong: #111827;
    --text-muted: #6b7280;
    --border: rgba(17, 24, 39, 0.08);
    --accent-a: #6e7bff;
    --accent-b: #8c52ff;
    --accent-c: #49c6ff;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --shadow-sm: 0 8px 24px rgba(9, 16, 31, 0.06);
    --shadow-md: 0 16px 40px rgba(9, 16, 31, 0.12);
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "SF Pro Display", "Segoe UI", "Helvetica Neue", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-strong);
    background: linear-gradient(180deg, #fbfcff 0%, var(--bg-light) 46%, #f3f5fa 100%);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin-inline: auto;
}

.slim {
    width: min(860px, calc(100% - 2rem));
}

.section {
    padding: 5.5rem 0;
}

.section-alt {
    background: linear-gradient(120deg, #f3f5fb 0%, #f9fafe 45%, #f4f7fd 100%);
}

.section-dark {
    background: radial-gradient(120% 130% at 0% 0%, #25317d 0%, #111727 40%, #0f1115 100%);
    color: #ecf1ff;
}

.page-hero {
    padding: 8rem 0 4rem;
    background: radial-gradient(120% 100% at 100% 0%, #e5ecff 0%, #f7f8fa 54%, #f7f8fa 100%);
}

.page-hero-inner {
    max-width: 820px;
}

.page-hero h1 {
    margin: 1rem 0 0.75rem;
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.page-hero p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1.12rem;
}

.hero {
    padding: 8.2rem 0 5.2rem;
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(70px);
    z-index: -1;
}

.hero::before {
    width: 320px;
    height: 320px;
    background: rgba(110, 123, 255, 0.28);
    top: -120px;
    right: -60px;
}

.hero::after {
    width: 280px;
    height: 280px;
    background: rgba(73, 198, 255, 0.2);
    bottom: 60px;
    left: -120px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 2rem;
    align-items: center;
}

.hero-content h1 {
    margin: 1rem 0;
    font-size: clamp(2.3rem, 6vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    max-width: 13ch;
}

.hero-content p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 54ch;
}

.hero-cta-row {
    margin-top: 1.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-stats {
    margin-top: 1.9rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
}

.hero-stats div {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
}

.hero-stats strong {
    display: block;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
}

.hero-stats span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.mockup-header,
.mockup-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #c8d1e8;
}

.hero-mockup {
    background: linear-gradient(160deg, #161d2e 0%, #0f1115 60%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-md);
}

.mockup-stage {
    margin: 0.9rem 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    background: rgba(15, 17, 21, 0.7);
    display: grid;
    grid-template-columns: 140px 1fr;
    min-height: 320px;
}

.mockup-sidebar {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.75rem;
    display: grid;
    gap: 0.5rem;
}

.mockup-sidebar button {
    width: 100%;
    text-align: left;
    font: inherit;
    color: #cfd9f1;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 0.6rem;
}

.mockup-sidebar button.is-active {
    border-color: rgba(110, 123, 255, 0.58);
    background: rgba(110, 123, 255, 0.16);
}

.mockup-viewer {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.mockup-viewer p {
    margin: 0;
    color: #d4dcf1;
}

.viewer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.viewer-cube {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(110, 123, 255, 0.8), rgba(73, 198, 255, 0.8));
    transform: rotateX(20deg) rotateY(18deg);
    box-shadow: 0 20px 40px rgba(73, 198, 255, 0.22);
    animation: float 5s ease-in-out infinite;
}

.status {
    color: #90e6ca;
}

.trust-bar {
    margin-top: 2rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.7rem 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
}

.trust-bar span {
    color: #1f2a40;
    font-size: 0.9rem;
    font-weight: 520;
}

.section-head {
    margin-bottom: 2.1rem;
}

.section-head h2 {
    margin: 1rem 0 0.5rem;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.13;
    letter-spacing: -0.03em;
    max-width: 24ch;
}

.section-head p {
    margin: 0;
    color: var(--text-muted);
    max-width: 68ch;
}

.chip {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.34rem 0.85rem;
    font-size: 0.76rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.72);
}

.chip-dark {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
    color: #d9e3ff;
}

.card-grid {
    display: grid;
    gap: 1rem;
}

.card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.feature-card,
.industry-card,
.benefit-card,
.testimonial-card,
.blog-card,
.surface {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    padding: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.info-card h3,
.feature-card h3,
.industry-card h3,
.benefit-card h3,
.testimonial-card h3,
.blog-card h3 {
    margin: 0 0 0.55rem;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.info-card p,
.feature-card p,
.industry-card p,
.benefit-card p,
.testimonial-card p,
.blog-card p,
.surface p {
    margin: 0;
    color: var(--text-muted);
}

.number-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.number-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    padding: 1.25rem;
}

.number-card span {
    color: var(--accent-a);
    font-weight: 700;
    font-size: 1.3rem;
}

.number-card h3 {
    margin: 0.5rem 0;
}

.process-list {
    display: grid;
    gap: 0.9rem;
}

.process-row {
    display: grid;
    grid-template-columns: 72px 1fr 200px;
    gap: 1rem;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    padding: 1.05rem;
}

.process-index {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
}

.process-row h3 {
    margin: 0 0 0.2rem;
}

.process-row p,
.process-ui {
    margin: 0;
    color: var(--text-muted);
}

.process-ui {
    border: 1px dashed var(--border);
    border-radius: 12px;
    padding: 0.8rem;
    font-size: 0.9rem;
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(140deg, rgba(110, 123, 255, 0.2), rgba(73, 198, 255, 0.2));
    color: #25327f;
    font-weight: 700;
}

.demo-stage {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1rem;
    align-items: stretch;
}

.demo-viewer,
.demo-aside {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
}

.demo-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
}

.demo-tabs button {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: transparent;
    color: #d7def7;
    padding: 0.45rem 0.85rem;
    font: inherit;
}

.demo-tabs button.is-active {
    background: linear-gradient(120deg, var(--accent-a), var(--accent-c));
    border-color: transparent;
    color: #f8f9ff;
}

.demo-panels {
    min-height: 260px;
}

.demo-panel {
    display: none;
}

.demo-panel.is-active {
    display: block;
}

.demo-object {
    width: 190px;
    height: 190px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(110, 123, 255, 0.75), rgba(140, 82, 255, 0.75));
    transform: rotateX(18deg) rotateY(20deg);
    margin: 0 auto 1rem;
    box-shadow: 0 24px 42px rgba(110, 123, 255, 0.35);
}

.demo-object.large {
    width: 240px;
    height: 240px;
}

.phone-frame {
    border: 8px solid #20232d;
    border-radius: 26px;
    min-height: 220px;
    display: grid;
    place-items: center;
    color: #eef3ff;
    font-weight: 600;
    background: linear-gradient(130deg, rgba(73, 198, 255, 0.32), rgba(110, 123, 255, 0.28));
    text-align: center;
    padding: 1rem;
}

.phone-frame small {
    display: block;
    margin-top: 0.6rem;
    opacity: 0.8;
    font-weight: 500;
}

.phone-frame.android {
    border-color: #283039;
}

.device-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.demo-aside h3,
.demo-aside ul {
    margin-top: 0;
}

.demo-aside ul {
    padding-left: 1rem;
    color: #dce5ff;
}

.industry-card p {
    margin-bottom: 0.5rem;
}

.industry-benefit {
    margin-top: 0.8rem;
    font-weight: 520;
    color: #2d3955;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.pricing-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    padding: 1.2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.pricing-card h3,
.pricing-card h2 {
    margin: 0 0 0.45rem;
}

.pricing-value {
    font-size: 1.9rem;
    line-height: 1;
    letter-spacing: -0.03em;
    margin: 1rem 0;
}

.pricing-value small {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-card ul {
    margin: 0 0 1rem;
    padding-left: 1.1rem;
    color: var(--text-muted);
}

.pricing-card.is-recommended {
    border-color: rgba(110, 123, 255, 0.36);
    box-shadow: 0 20px 44px rgba(110, 123, 255, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    border-radius: 999px;
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
    color: white;
    background: linear-gradient(120deg, var(--accent-a), var(--accent-b));
}

.logo-band {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.logo-band span {
    text-align: center;
    font-size: 0.82rem;
    color: #4b5a7a;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.66);
}

.testimonial-card strong {
    display: block;
    margin-top: 0.8rem;
}

.testimonial-card span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.faq-list {
    display: grid;
    gap: 0.8rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 1rem;
    font: inherit;
    font-weight: 580;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.26s ease;
}

.faq-item.is-open .faq-answer {
    max-height: 260px;
}

.faq-answer p {
    margin: 0;
    padding: 0 1rem 1rem;
    color: var(--text-muted);
}

.cta-final {
    background: radial-gradient(130% 180% at 0% 100%, #16203f 0%, #121723 45%, #0f1115 100%);
    color: #ebf0ff;
}

.cta-final-inner {
    text-align: center;
    max-width: 760px;
}

.cta-final h2 {
    margin: 0.9rem auto 0.7rem;
    font-size: clamp(1.9rem, 5vw, 3.2rem);
    letter-spacing: -0.03em;
}

.cta-final p {
    color: #cfd8ef;
    margin: 0 auto;
}

.not-found {
    min-height: 72vh;
    display: grid;
    place-items: center;
    padding: 7rem 0 4rem;
}

.not-found-inner {
    text-align: center;
    max-width: 680px;
}

.blog-thumb {
    height: 190px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 0.85rem;
    border: 1px solid var(--border);
    background: linear-gradient(145deg, #e9ecff, #f4f7ff);
    display: grid;
    place-items: center;
    color: #3e4b71;
    font-weight: 600;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.84rem;
    margin-bottom: 0.35rem;
}

.blog-cover {
    width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.blog-date {
    color: var(--text-muted);
    font-size: 0.94rem;
}

.legal-content {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
}

.legal-content h2,
.legal-content h3 {
    margin-top: 1.2rem;
}

.legal-content p,
.legal-content li {
    color: #3f4d67;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    align-items: start;
}

.timeline {
    display: grid;
    gap: 1rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 0.9rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    padding: 1rem;
}

.timeline-dot {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(130deg, var(--accent-b), var(--accent-a));
    font-weight: 700;
}

.timeline-content h2 {
    margin: 0 0 0.4rem;
    font-size: 1.25rem;
}

.timeline-content p,
.timeline-ui {
    margin: 0;
    color: var(--text-muted);
}

.timeline-ui {
    margin-top: 0.6rem;
    border: 1px dashed var(--border);
    border-radius: 10px;
    padding: 0.6rem;
    font-size: 0.9rem;
}

.industry-page-list {
    display: grid;
    gap: 1rem;
}

.industry-block {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    padding: 1rem;
}

.industry-block h2,
.industry-block h3 {
    margin: 0 0 0.4rem;
}

.industry-block p {
    margin: 0;
    color: var(--text-muted);
}

.text-link {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--accent-a);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

.compare-table th,
.compare-table td {
    border: 1px solid var(--border);
    padding: 0.8rem;
    text-align: left;
    background: #fff;
}

.table-wrap {
    overflow: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.contact-grid {
    align-items: start;
}

.contact-info {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
    padding: 1.2rem;
}

.contact-info p {
    margin: 0 0 0.6rem;
}

.mini-cta-list {
    display: flex;
    gap: 0.7rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.check-list {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    color: #394865;
}

.check-list li {
    margin-bottom: 0.35rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(120deg, var(--accent-a), var(--accent-b));
    color: #fff;
    box-shadow: 0 10px 24px rgba(110, 123, 255, 0.28);
}

.btn-secondary {
    background: #eef2ff;
    color: #283454;
    border-color: rgba(61, 84, 164, 0.2);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.75);
    border-color: var(--border);
    color: #1d2740;
}

.btn-danger {
    background: #fee2e2;
    color: #7f1d1d;
    border-color: rgba(127, 29, 29, 0.18);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(15, 17, 21, 0.08);
}

.header-inner {
    min-height: 82px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(130deg, var(--accent-a), var(--accent-c));
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.nav-link {
    padding: 0.44rem 0.68rem;
    border-radius: 9px;
    color: #27324b;
    font-weight: 520;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.is-active {
    background: rgba(110, 123, 255, 0.12);
    color: #25327f;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    margin: 5px 0;
    background: #111827;
}

.site-footer {
    padding: 4rem 0 1.5rem;
    background: #fff;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 1rem;
}

.footer-grid h4 {
    margin: 0 0 0.6rem;
}

.footer-grid ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.42rem;
}

.footer-grid li a {
    color: #3e4d67;
}

.footer-text,
.footer-contact {
    color: var(--text-muted);
}

.footer-bottom {
    margin-top: 1.4rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    flex-wrap: wrap;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
}

.lead-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.lead-form label {
    display: grid;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: #3c4a64;
}

.lead-form label span {
    font-weight: 540;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.7rem 0.75rem;
    background: #fff;
    font: inherit;
}

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus,
.btn:focus,
.nav-link:focus,
.menu-toggle:focus,
.faq-question:focus {
    outline: 2px solid rgba(110, 123, 255, 0.45);
    outline-offset: 2px;
}

.full-width {
    grid-column: 1 / -1;
}

.lead-form small {
    color: #b42318;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.flash {
    width: min(920px, calc(100% - 2rem));
    margin: 0.75rem auto 0;
    border-radius: 12px;
    padding: 0.7rem 0.9rem;
    font-weight: 550;
}

.flash-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.flash-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.pagination {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.pagination a {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.45rem 0.65rem;
    background: #fff;
}

.pagination a.is-active {
    background: linear-gradient(120deg, var(--accent-a), var(--accent-b));
    border-color: transparent;
    color: white;
}

.mobile-sticky-cta {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 990;
    display: none;
    text-align: center;
    background: linear-gradient(120deg, var(--accent-a), var(--accent-b));
    color: #fff;
    padding: 0.86rem;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 16px 30px rgba(110, 123, 255, 0.32);
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0%,
    100% { transform: rotateX(20deg) rotateY(18deg) translateY(0); }
    50% { transform: rotateX(24deg) rotateY(22deg) translateY(-8px); }
}

@media (max-width: 1100px) {
    .hero-grid,
    .demo-stage,
    .split {
        grid-template-columns: 1fr;
    }

    .card-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .number-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-row {
        grid-template-columns: 68px 1fr;
    }

    .process-ui {
        grid-column: 1 / -1;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .industry-block {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .main-nav {
        position: fixed;
        left: 1rem;
        right: 1rem;
        top: 84px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid var(--border);
        border-radius: 16px;
        box-shadow: var(--shadow-md);
        padding: 0.6rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        z-index: 998;
    }

    .main-nav.is-open {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: inline-block;
    }

    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .hero {
        padding-top: 7.2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .mockup-stage {
        grid-template-columns: 1fr;
    }

    .mockup-sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .card-grid-3,
    .pricing-grid,
    .benefit-grid,
    .device-row,
    .footer-grid,
    .lead-form .form-grid {
        grid-template-columns: 1fr;
    }

    .logo-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mobile-sticky-cta {
        display: block;
    }

    .site-footer {
        padding-bottom: 6.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* ===== Wany AR Dark UI Override ===== */
html,
body {
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    color: #f6f7fb;
    background: radial-gradient(120% 130% at 5% 0%, #2a2d39 0%, #191b23 38%, #111217 100%);
}

main {
    background: transparent;
}

.site-header.is-scrolled {
    background: rgba(15, 17, 21, 0.84);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.42);
}

.nav-link {
    color: #f2f4fb;
}

.nav-link:hover,
.nav-link.is-active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.menu-toggle span {
    background: #f5f6fb;
}

.chip {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    color: #d8def1;
}

.chip-dark {
    color: #f4f6ff;
}

.section-alt,
.page-hero,
.hero {
    background: transparent;
}

.section-head p,
.info-card p,
.feature-card p,
.industry-card p,
.benefit-card p,
.testimonial-card p,
.blog-card p,
.surface p,
.faq-answer p,
.process-row p,
.process-ui,
.footer-text,
.footer-contact,
.footer-bottom,
.legal-content p,
.legal-content li,
.blog-meta {
    color: #a6aec4;
}

.section-head h2,
.info-card h3,
.feature-card h3,
.industry-card h3,
.benefit-card h3,
.testimonial-card h3,
.blog-card h3,
.page-hero h1,
.hero-content h1,
.pricing-card h2,
.pricing-card h3 {
    color: #ffffff;
}

.info-card,
.feature-card,
.industry-card,
.benefit-card,
.testimonial-card,
.blog-card,
.surface,
.number-card,
.faq-item,
.process-row,
.pricing-card,
.timeline-item,
.industry-block,
.legal-content,
.compare-table th,
.compare-table td,
.contact-info {
    background: linear-gradient(170deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.pricing-card.is-recommended {
    box-shadow: 0 20px 44px rgba(110, 123, 255, 0.34);
}

.site-footer {
    background: #000;
    border-top-color: rgba(255, 255, 255, 0.12);
}

.footer-grid li a {
    color: #cfd6eb;
}

.page-home .hero-header {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
}

.page-home .header-inner-home {
    min-height: 92px;
    display: grid;
    place-items: center;
}

.page-home .hero-header-brand {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #f8f9ff;
}

.dm-hero {
    position: relative;
    min-height: 94vh;
    overflow: hidden;
    padding: 7.3rem 0 3.8rem;
    background: radial-gradient(120% 120% at 50% 0%, #050608 0%, #06070a 40%, #020305 100%);
}

.page-home .mobile-sticky-cta {
    display: none !important;
}

.dm-hero-center {
    position: relative;
    z-index: 3;
    max-width: 980px;
    margin-inline: auto;
    text-align: center;
}

.dm-google-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
}

.dm-google-logo {
    width: 70px;
    height: 70px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #0f1115;
    background: linear-gradient(130deg, #ffffff 0%, #f1f3ff 100%);
    border: 2px solid rgba(255, 255, 255, 0.48);
}

.dm-google-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 1rem;
    color: #f6f7fc;
}

.dm-google-stars .stars {
    letter-spacing: 0.04em;
    color: #ffd13f;
}

.dm-google-text {
    margin: 0.75rem 0 0;
    font-size: clamp(1.25rem, 2.4vw, 2rem);
    font-weight: 500;
    color: #f8f9ff;
}

.dm-hero-title {
    margin: 1.35rem 0 0;
    font-size: clamp(2.4rem, 7vw, 6rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
    font-weight: 600;
    color: #fdfdff;
}

.dm-hero-title em {
    font-style: italic;
    font-weight: 700;
    font-family: "Times New Roman", Georgia, serif;
}

.dm-icon-row {
    display: inline-flex;
    gap: 0.25rem;
    vertical-align: middle;
    margin-inline: 0.35rem;
}

.dm-icon-row span {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f1115;
    background: #fff;
    border: 2px solid rgba(255, 255, 255, 0.58);
}

.dm-country-pill {
    margin: 1.5rem auto 0;
    width: fit-content;
    border: 1px solid rgba(47, 255, 144, 0.46);
    color: #e8f0ff;
    background: rgba(8, 15, 11, 0.62);
    border-radius: 999px;
    padding: 0.58rem 1.15rem;
    font-size: 1.02rem;
}

.dm-cta-row {
    justify-content: center;
    margin-top: 1.75rem;
}

.dm-book-btn {
    min-width: 240px;
    min-height: 64px;
    font-size: 1.18rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #7d4dff 0%, #6a3cff 100%);
}

.dm-floating {
    position: absolute;
    top: 120px;
    bottom: 180px;
    width: clamp(220px, 26vw, 360px);
    z-index: 1;
    pointer-events: none;
}

.dm-floating-left { left: -40px; }
.dm-floating-right { right: -40px; }

.dm-device {
    position: absolute;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 22px 35px rgba(0, 0, 0, 0.5);
    background: rgba(20, 22, 30, 0.9);
}

.dm-device-l1 { left: 10px; top: 30px; width: 180px; transform: rotate(-11deg); }
.dm-device-l2 { left: -6px; top: 150px; width: 320px; transform: rotate(7deg); }
.dm-device-l3 { left: 20px; bottom: 0; width: 300px; transform: rotate(-12deg); }
.dm-device-r1 { right: 10px; top: 32px; width: 260px; transform: rotate(10deg); }
.dm-device-r2 { right: -2px; top: 170px; width: 320px; transform: rotate(-8deg); }
.dm-device-r3 { right: 24px; bottom: 0; width: 280px; transform: rotate(12deg); }

.dm-hero-clients {
    position: relative;
    margin-top: 5.1rem;
    z-index: 3;
}

.dm-client-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 1rem 0.8rem;
}

.dm-client-item {
    text-align: center;
    color: rgba(232, 244, 232, 0.85);
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 0 0 18px rgba(99, 255, 126, 0.12);
}

.dm-green-glow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -180px;
    width: min(1180px, 90vw);
    height: 470px;
    border-radius: 999px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(56, 255, 75, 0.5) 0%, rgba(33, 140, 46, 0.34) 38%, rgba(7, 10, 10, 0) 70%);
    filter: blur(26px);
    z-index: 1;
}

.reference-marquee-wrap {
    padding-bottom: 2.6rem;
    margin-top: -1rem;
}

.reference-marquee-label {
    color: #8f98b8;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.65rem;
}

.reference-marquee {
    overflow: hidden;
    border-block: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.82rem 0;
    background: rgba(0, 0, 0, 0.22);
}

.reference-track {
    display: flex;
    width: max-content;
    gap: 0.85rem;
    animation: ref-flow 30s linear infinite;
}

.reference-logo {
    margin: 0;
    width: clamp(140px, 16vw, 220px);
    height: 56px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.reference-logo img {
    max-height: 38px;
    width: auto;
    max-width: 82%;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2);
    opacity: 0.9;
}

.reference-logo-text span {
    color: #d7deef;
    font-size: 0.9rem;
}

@keyframes ref-flow {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 1180px) {
    .dm-floating {
        opacity: 0.72;
    }

    .dm-client-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .dm-hero {
        min-height: auto;
        padding-top: 6.5rem;
    }

    .dm-floating {
        display: none;
    }

    .dm-hero-title {
        font-size: clamp(2.2rem, 10vw, 4rem);
    }

    .dm-icon-row span {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .dm-country-pill {
        font-size: 0.9rem;
        padding: 0.48rem 0.9rem;
    }

    .dm-client-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dm-client-item {
        font-size: 1rem;
    }
}

/* Home Page: Pure Black Background */
body.page-home {
    background: #000 !important;
}

.page-home main,
.page-home .dm-hero,
.page-home .section,
.page-home .section-alt,
.page-home .section-dark,
.page-home .reference-marquee,
.page-home .site-footer {
    background: #000 !important;
}

.page-home .dm-green-glow {
    background: radial-gradient(50% 50% at 50% 50%, rgba(56, 255, 75, 0.36) 0%, rgba(33, 140, 46, 0.2) 38%, rgba(0, 0, 0, 0) 70%);
}

.page-home,
.page-home body,
body.page-home {
    background: #000 !important;
}

.page-home #main-content {
    min-height: 100vh;
    background: #000 !important;
}

.index-blank {
    width: 100%;
    min-height: 100vh;
    background: #000;
    position: relative;
    overflow: hidden;
}

body.page-home.is-preloading {
    overflow: hidden;
}

.index-preloader {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 42%),
        radial-gradient(circle at 72% 68%, rgba(110, 123, 255, 0.14), rgba(110, 123, 255, 0) 45%),
        #03050b;
    transition: opacity 0.36s ease, visibility 0.36s ease;
}

.index-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.index-preloader-inner {
    display: grid;
    place-items: center;
    gap: 0.9rem;
}

.index-preloader-spinner {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top-color: rgba(255, 255, 255, 0.96);
    box-shadow:
        0 0 22px rgba(255, 255, 255, 0.22),
        0 0 44px rgba(110, 123, 255, 0.22);
    animation: indexPreloaderSpin 0.82s linear infinite;
}

.index-preloader-text {
    margin: 0;
    color: rgba(246, 249, 255, 0.92);
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

@keyframes indexPreloaderSpin {
    to {
        transform: rotate(360deg);
    }
}

.index-liquid-header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 9;
    pointer-events: none;
    padding-inline: 1rem;
}

.index-liquid-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.66rem;
    width: fit-content;
    max-width: min(1020px, calc(100vw - 3rem));
    margin-inline: auto;
    min-height: 72px;
    padding: 0.6rem 0.72rem;
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 52%, rgba(255, 255, 255, 0.04) 100%),
        linear-gradient(180deg, rgba(9, 10, 16, 0.72), rgba(8, 9, 14, 0.52));
    border: 1px solid rgba(214, 226, 255, 0.28);
    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        inset 0 -1px 0 rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(18px) saturate(1.45);
    -webkit-backdrop-filter: blur(18px) saturate(1.45);
    overflow: hidden;
    pointer-events: auto;
}

.index-liquid-inner::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.06) 38%, rgba(255, 255, 255, 0) 65%);
    pointer-events: none;
    opacity: 0.7;
}

.index-liquid-header.is-scrolled .index-liquid-inner {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.09) 52%, rgba(255, 255, 255, 0.05) 100%),
        linear-gradient(180deg, rgba(6, 8, 12, 0.86), rgba(7, 9, 14, 0.68));
    border-color: rgba(221, 231, 255, 0.34);
    box-shadow:
        0 22px 42px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.index-liquid-brand {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    padding: 0.35rem 0.48rem;
    border-radius: 12px;
    color: #f8fbff;
    font-weight: 650;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.index-liquid-brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.34);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
    font-size: 0.9rem;
}

.index-liquid-brand-text {
    font-size: 1.2rem;
    font-weight: 700;
}

.index-liquid-nav {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.34rem;
    flex-wrap: nowrap;
}

.index-liquid-link {
    display: inline-flex;
    align-items: center;
    gap: 0.46rem;
    padding: 0.42rem 0.62rem;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 520;
    color: rgba(239, 244, 255, 0.9);
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.index-liquid-link:hover,
.index-liquid-link:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.index-liquid-link-icon {
    display: none;
    width: 1.05rem;
    height: 1.05rem;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: currentColor;
}

.index-liquid-link-icon svg {
    width: 100%;
    height: 100%;
}

.index-liquid-link-cta {
    display: none;
}

.index-liquid-contact {
    display: none;
}

.index-liquid-cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 0.62rem 0.94rem;
    min-height: 44px;
    font-size: 1.05rem;
    font-weight: 650;
    color: #0f1115;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 244, 255, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.18);
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.index-liquid-cta:hover,
.index-liquid-cta:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(255, 255, 255, 0.24);
    filter: brightness(1.02);
}

.index-liquid-toggle {
    position: relative;
    z-index: 1;
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.58rem;
}

.index-liquid-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: #edf1ff;
}

.index-liquid-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.24rem;
    line-height: 1;
    color: rgba(243, 247, 255, 0.98);
}

.index-bg-blurs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.index-bg-blur {
    position: absolute;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.24) 38%, rgba(255, 255, 255, 0) 74%);
    filter: blur(52px);
    mix-blend-mode: screen;
    opacity: 0.72;
    will-change: transform, opacity;
}

.index-bg-blur.blur-a {
    width: clamp(220px, 26vw, 520px);
    height: clamp(220px, 26vw, 520px);
    left: -8%;
    top: 8%;
    animation: indexBgDriftA 8s ease-in-out infinite;
}

.index-bg-blur.blur-b {
    width: clamp(180px, 21vw, 420px);
    height: clamp(180px, 21vw, 420px);
    right: 12%;
    top: -6%;
    animation: indexBgDriftB 9s ease-in-out infinite;
}

.index-bg-blur.blur-c {
    width: clamp(210px, 24vw, 460px);
    height: clamp(210px, 24vw, 460px);
    left: 28%;
    bottom: -14%;
    animation: indexBgDriftC 10s ease-in-out infinite;
}

.index-bg-blur.blur-d {
    width: clamp(170px, 20vw, 390px);
    height: clamp(170px, 20vw, 390px);
    right: -7%;
    bottom: 14%;
    animation: indexBgDriftD 8.5s ease-in-out infinite;
}

.index-copy {
    position: absolute;
    left: clamp(1.4rem, 7vw, 8rem);
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: min(62vw, 980px);
    display: flex;
    align-items: flex-start;
    gap: clamp(0.6rem, 1.5vw, 1.4rem);
    pointer-events: none;
}

.index-copy-side-model {
    --index-model-lift: -20%;
    position: relative;
    isolation: isolate;
    width: clamp(160px, 16.3vw, 300px);
    height: clamp(160px, 16.3vw, 300px);
    margin-top: clamp(0.4rem, 1.2vw, 1rem);
    border-radius: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    transform: translate3d(0, calc(16px + var(--index-model-lift)), 0) scale(0.82);
    animation:
        indexModelPopIn 0.88s cubic-bezier(0.2, 0.9, 0.25, 1) 0.36s forwards,
        indexModelFloat 4.6s ease-in-out 1.2s infinite;
}

.index-copy-side-model::before {
    content: "";
    position: absolute;
    inset: 18% 14% 14% 14%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.09) 34%, rgba(255, 255, 255, 0) 72%);
    filter: blur(18px);
    opacity: 0.92;
    pointer-events: none;
    z-index: 0;
}

.index-copy-model-viewer {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    --poster-color: transparent;
    background: transparent;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.42));
}

.index-copy-title {
    --hero-num-size: clamp(12rem, 30vw, 31rem);
    margin: 0;
    display: flex;
    align-items: center;
    gap: clamp(0.1rem, 0.55vw, 0.5rem);
    color: #ffffff;
}

.index-copy-number {
    display: block;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-size: var(--hero-num-size);
    font-weight: 900;
    position: relative;
    isolation: isolate;
    line-height: 0.92;
    letter-spacing: -0.05em;
    padding-top: 0;
    overflow: visible;
    opacity: 0;
    transform: translate3d(0, 20px, 0) scale(0.96);
    background: none;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    text-shadow:
        0 0 16px rgba(255, 255, 255, 0.22),
        0 0 46px rgba(110, 123, 255, 0.2),
        0 0 84px rgba(73, 198, 255, 0.14);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.22);
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.42));
    animation:
        indexCopyInNumber 0.92s cubic-bezier(0.22, 1, 0.36, 1) forwards,
        indexNumberGlow 4.2s ease-in-out 0.95s infinite;
}

.index-copy-number::before {
    content: attr(data-digit);
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        108deg,
        rgba(255, 255, 255, 0) 22%,
        rgba(255, 255, 255, 0.3) 38%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0.36) 62%,
        rgba(255, 255, 255, 0) 78%
    );
    background-size: 220% 100%;
    background-position: 140% 0;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    mix-blend-mode: screen;
    opacity: 0.92;
    animation: indexNumberShine 2.9s linear 1s infinite;
}

.index-copy-words {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(var(--hero-num-size) * 0.92);
    gap: clamp(0.08rem, 0.45vw, 0.34rem);
    padding-top: 0;
}

.index-copy-word {
    display: block;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-size: clamp(2.8rem, 7.6vw, 6.6rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.025em;
    white-space: nowrap;
    color: #f6f8ff;
    text-shadow: 0 0 16px rgba(255, 255, 255, 0.08);
    min-height: 0.94em;
}

.index-copy-word.is-typing::after {
    content: "";
    display: inline-block;
    width: 0.08em;
    height: 0.86em;
    margin-left: 0.12em;
    vertical-align: -0.06em;
    background: rgba(234, 241, 255, 0.95);
    border-radius: 2px;
    animation: typeCaretBlink 0.72s steps(1, end) infinite;
}

.index-model-note {
    display: none;
}

.index-sequence {
    position: absolute;
    top: 50%;
    right: calc(clamp(4rem, 11vw, 11rem) + 150px);
    width: clamp(240px, 22vw, 380px);
    height: clamp(360px, 70vh, 680px);
    transform: translateY(-50%);
    animation: indexSequenceFloat 5.8s ease-in-out infinite;
    pointer-events: none;
    isolation: isolate;
    z-index: 3;
}

.index-sequence::before {
    content: "";
    position: absolute;
    inset: 14% 10% 16% 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.08) 45%, rgba(255, 255, 255, 0) 78%);
    filter: blur(30px);
    z-index: 0;
}

.index-stack {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: transform 0.82s ease, filter 0.82s ease, opacity 0.82s ease;
}

.index-stack.is-swapping .index-layer {
    transition: none !important;
}

.index-stack.is-swapping .index-seq-label {
    transition: none !important;
}

.index-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    transition: transform 0.82s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.82s ease, filter 0.82s ease;
    will-change: transform, opacity, filter;
}

.index-seq-label {
    position: absolute;
    left: 0;
    right: 0;
    top: -9.6%;
    z-index: 4;
    display: block;
    width: 100%;
    text-align: center;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-size: clamp(1.02rem, 1.32vw, 1.44rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #f7f9ff;
    text-shadow:
        0 1px 1px rgba(0, 0, 0, 0.6),
        0 0 14px rgba(14, 20, 34, 0.72);
    pointer-events: none;
    white-space: nowrap;
    padding-inline: 0.35rem;
}

.index-seq-label.slot-right,
.index-seq-label.slot-left,
.index-stack.is-rotating .index-seq-label.slot-center,
.index-stack.is-rotating .index-seq-label.slot-left {
    filter: blur(3.2px);
    opacity: 0.52;
}

.index-seq-label.slot-center,
.index-stack.is-rotating .index-seq-label.slot-right {
    filter: none;
    opacity: 0.96;
}

.slot-center {
    z-index: 3;
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.66)) drop-shadow(0 0 42px rgba(255, 255, 255, 0.16));
}

.slot-right {
    z-index: 2;
    opacity: 0.34;
    transform: translate3d(132px, 6px, -26px) scale(0.73);
    filter: blur(5px) drop-shadow(0 14px 20px rgba(0, 0, 0, 0.56));
}

.slot-left {
    z-index: 1;
    opacity: 0.42;
    transform: translate3d(-132px, 6px, -26px) scale(0.73);
    filter: blur(6px) drop-shadow(0 14px 20px rgba(0, 0, 0, 0.56));
}

.index-stack.is-rotating .slot-center {
    opacity: 0.42;
    transform: translate3d(-132px, 6px, -26px) scale(0.73);
    filter: blur(6px) drop-shadow(0 14px 20px rgba(0, 0, 0, 0.56));
}

.index-stack.is-rotating .slot-right {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.66)) drop-shadow(0 0 42px rgba(255, 255, 255, 0.16));
}

.index-stack.is-rotating .slot-left {
    opacity: 0.34;
    transform: translate3d(132px, 6px, -26px) scale(0.73);
    filter: blur(5px) drop-shadow(0 14px 20px rgba(0, 0, 0, 0.56));
}

.index-layer-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 5;
    opacity: 0;
    transform: translate3d(132px, 6px, -26px) scale(0.73);
    filter: blur(5px) drop-shadow(0 14px 20px rgba(0, 0, 0, 0.56));
    transition: opacity 0.82s ease, transform 0.82s cubic-bezier(0.22, 1, 0.36, 1), filter 0.82s ease;
}

.index-gif-label {
    position: absolute;
    left: 0;
    right: 0;
    top: -9.6%;
    z-index: 6;
    opacity: 0;
    transform: translate3d(132px, 6px, -26px) scale(0.73);
    transition: opacity 0.82s ease, transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

.index-partners-title {
    position: absolute;
    left: 50%;
    top: calc(100% + 42px);
    transform: translateX(-50%);
    margin: 0;
    z-index: 7;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-size: clamp(1rem, 1.24vw, 1.34rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #f7f9ff;
    white-space: nowrap;
    text-shadow:
        0 1px 1px rgba(0, 0, 0, 0.56),
        0 0 18px rgba(15, 19, 30, 0.6);
}

.index-partners-title-front {
    position: relative;
    z-index: 1;
    display: block;
    transform: translateY(18px);
}

.index-partners-title::before {
    content: attr(data-echo);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -54%);
    font-size: clamp(2.05rem, 4.5vw, 4.1rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.16em;
    color: rgba(247, 249, 255, 0.13);
    text-transform: uppercase;
    filter: blur(0.85px);
    white-space: nowrap;
    pointer-events: none;
    z-index: -1;
    text-shadow: 0 0 26px rgba(247, 249, 255, 0.1);
}

.index-partner-marquee {
    position: absolute;
    left: 50%;
    top: calc(100% + 116px);
    transform: translateX(-50%);
    width: min(86vw, 780px);
    display: grid;
    gap: 0.52rem;
    z-index: 7;
    pointer-events: none;
}

.index-partner-row {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.index-partner-track {
    display: flex;
    align-items: center;
    gap: 0.52rem;
    width: max-content;
    will-change: transform;
}

.index-partner-row.row-left .index-partner-track {
    animation: indexPartnerLeft 26s linear infinite;
}

.index-partner-row.row-right .index-partner-track {
    animation: indexPartnerRight 26s linear infinite;
}

.index-partner-item {
    flex: 0 0 auto;
    width: clamp(112px, 9.6vw, 176px);
    height: 44px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-partner-item img {
    position: static;
    inset: auto;
    max-width: 96%;
    max-height: 86%;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    filter: none;
}

@keyframes indexPartnerLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes indexPartnerRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.index-sequence.is-video-active .index-layer-video {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.66)) drop-shadow(0 0 42px rgba(255, 255, 255, 0.16));
}

.index-sequence.is-video-active .index-gif-label {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.index-sequence.is-video-active .index-stack {
    transform: translate3d(-132px, 6px, -26px) scale(0.73);
    filter: blur(7px);
    opacity: 0.3;
}

@keyframes indexSequenceFloat {
    0%,
    100% {
        transform: translateY(-50%) translateY(0);
    }
    50% {
        transform: translateY(-50%) translateY(-14px);
    }
}

@keyframes indexBgDriftA {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.64;
    }
    50% {
        transform: translate3d(82px, 36px, 0) scale(1.16);
        opacity: 0.9;
    }
}

@keyframes indexBgDriftB {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.58;
    }
    50% {
        transform: translate3d(-76px, 54px, 0) scale(1.2);
        opacity: 0.86;
    }
}

@keyframes indexBgDriftC {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.52;
    }
    50% {
        transform: translate3d(58px, -58px, 0) scale(1.14);
        opacity: 0.8;
    }
}

@keyframes indexBgDriftD {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.48;
    }
    50% {
        transform: translate3d(-62px, -42px, 0) scale(1.18);
        opacity: 0.78;
    }
}

@keyframes indexCopyIn {
    0% {
        opacity: 0;
        transform: translate3d(0, 24px, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes typeCaretBlink {
    0%,
    48% {
        opacity: 1;
    }
    49%,
    100% {
        opacity: 0;
    }
}

@keyframes indexCopyInNumber {
    0% {
        opacity: 0;
        transform: translate3d(0, 20px, 0) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes indexNumberGlow {
    0%,
    100% {
        filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.42));
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        filter:
            drop-shadow(0 16px 30px rgba(0, 0, 0, 0.46))
            drop-shadow(0 0 26px rgba(255, 255, 255, 0.26))
            drop-shadow(0 0 44px rgba(110, 123, 255, 0.2));
        transform: translate3d(0, 0, 0) scale(1.018);
    }
}

@keyframes indexNumberShine {
    0% {
        background-position: 140% 0;
    }
    100% {
        background-position: -140% 0;
    }
}

@keyframes indexModelPopIn {
    0% {
        opacity: 0;
        transform: translate3d(0, calc(16px + var(--index-model-lift)), 0) scale(0.82);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, var(--index-model-lift), 0) scale(1);
    }
}

@keyframes indexModelFloat {
    0%,
    100% {
        transform: translate3d(0, var(--index-model-lift), 0);
    }
    50% {
        transform: translate3d(0, calc(var(--index-model-lift) - 5px), 0);
    }
}

.index-sequence video::-webkit-media-controls {
    display: none !important;
}

.index-sequence video {
    pointer-events: none;
}

.index-sequence .index-layer {
    position: absolute;
    inset: 0;
    user-select: none;
    -webkit-user-drag: none;
}

@media (min-width: 901px) {
    .page-home {
        --index-seq-right-offset: calc(clamp(4rem, 11vw, 11rem) - 18px);
    }

    .page-home .index-copy {
        top: 47%;
        width: min(62vw, 980px);
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: clamp(0.5rem, 1.4vw, 1.3rem);
    }

    .page-home .index-copy-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .page-home .index-copy-title {
        --hero-num-size: clamp(7.2rem, 18vw, 18.6rem);
    }

    .page-home .index-copy-word {
        font-size: clamp(1.68rem, 4.56vw, 3.96rem);
    }

    .page-home .index-copy-side-model {
        --index-model-lift: -10%;
        width: clamp(280px, 24vw, 460px);
        height: clamp(280px, 24vw, 460px);
        margin-top: 0;
        margin-left: clamp(1.8rem, 3.8vw, 3.4rem);
    }

    .page-home .index-copy-side-model::before {
        inset: 9% 8% 7% 8%;
        background: radial-gradient(
            circle,
            rgba(255, 255, 255, 0.36) 0%,
            rgba(255, 255, 255, 0.2) 36%,
            rgba(255, 255, 255, 0.06) 56%,
            rgba(255, 255, 255, 0) 78%
        );
        filter: blur(24px);
        opacity: 1;
    }

    .page-home .index-copy-model-viewer {
        filter:
            drop-shadow(0 16px 32px rgba(0, 0, 0, 0.44))
            drop-shadow(0 0 36px rgba(255, 255, 255, 0.18));
    }

    .page-home .index-model-note {
        display: block;
        margin: clamp(0.34rem, 0.9vw, 0.78rem) 0 0;
        color: rgba(245, 248, 255, 0.96);
        font-family: "Poppins", "Segoe UI", Arial, sans-serif;
        font-size: clamp(0.92rem, 0.96vw, 1.14rem);
        line-height: 1.24;
        font-weight: 600;
        letter-spacing: -0.01em;
        white-space: nowrap;
        text-shadow:
            0 2px 10px rgba(0, 0, 0, 0.45),
            0 0 20px rgba(255, 255, 255, 0.2);
        pointer-events: none;
    }

    .page-home .index-sequence {
        right: var(--index-seq-right-offset);
        width: clamp(220px, 20vw, 350px);
        height: clamp(332px, 64vh, 620px);
    }

    .page-home .index-partners-title {
        width: calc(100vw - 2.8rem);
        max-width: calc(100vw - 2.8rem);
        top: calc(100% - 10px);
        text-align: center;
        transform: translateX(
            calc(
                -50%
                + var(--index-seq-right-offset)
                + (clamp(220px, 20vw, 350px) / 2)
                - 50vw
            )
        );
    }

    .page-home .index-partner-marquee {
        width: calc(100vw - 2.8rem);
        max-width: calc(100vw - 2.8rem);
        top: calc(100% + 34px);
        transform: translateX(
            calc(
                -50%
                + var(--index-seq-right-offset)
                + (clamp(220px, 20vw, 350px) / 2)
                - 50vw
            )
        );
    }

    .page-home .index-partner-row {
        mask-image: none;
        -webkit-mask-image: none;
    }

    .page-home .index-partner-track {
        gap: 0;
    }

    .page-home .index-partner-item img {
        max-width: 100%;
    }

    .page-home .index-partner-row.row-left .index-partner-track,
    .page-home .index-partner-row.row-right .index-partner-track {
        animation-duration: 34s;
    }
}

@media (max-width: 900px) {
    .page-home,
    body.page-home {
        overflow-x: hidden;
    }

    .index-partner-marquee {
        top: calc(100% + 58px);
        gap: 0.34rem;
    }

    .index-partner-row {
        min-height: 36px;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .index-liquid-header {
        top: 14px;
        padding-inline: 0 !important;
        pointer-events: auto;
    }

    .index-liquid-header::after {
        content: "";
        position: fixed;
        inset: 0;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.24) 100%);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.24s ease;
        z-index: 18;
    }

    .index-liquid-header.is-menu-open::after {
        opacity: 1;
        pointer-events: none;
    }

    .index-liquid-inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        min-height: 56px;
        border-radius: 14px;
        padding: 0.38rem 0.48rem;
        gap: 0.42rem;
        width: min(86vw, 392px);
        max-width: min(86vw, 392px);
        margin-inline: auto;
        overflow: visible;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        transform: none !important;
    }

    .index-liquid-nav {
        position: fixed !important;
        inset: 0 0 0 auto !important;
        top: 0;
        right: 0 !important;
        bottom: 0;
        left: auto !important;
        margin: 0 !important;
        width: min(74vw, 304px) !important;
        max-width: min(74vw, 304px) !important;
        height: 100vh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 0.3rem;
        padding:
            calc(env(safe-area-inset-top, 0px) + 4.9rem)
            0.72rem
            calc(env(safe-area-inset-bottom, 0px) + 0.72rem);
        border-radius: 0;
        background: #000000 !important;
        background-image: none !important;
        border-left: 1px solid rgba(255, 255, 255, 0.13);
        border-right: 0 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow:
            -18px 0 38px rgba(0, 0, 0, 0.72),
            inset 1px 0 0 rgba(255, 255, 255, 0.03);
        z-index: 40;
        transform: translate3d(100%, 0, 0);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease, visibility 0.24s ease;
    }

    .index-liquid-nav.is-open {
        transform: translate3d(0, 0, 0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .index-liquid-link {
        border-radius: 10px;
        padding: 0.68rem 0.72rem;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.96);
        font-weight: 640;
        text-shadow: 0 0 1px rgba(255, 255, 255, 0.24);
        background: transparent;
    }

    .index-liquid-link-icon {
        display: inline-flex;
        width: 18px;
        height: 18px;
        align-items: center;
        justify-content: center;
        color: rgba(240, 246, 255, 0.9);
    }

    .index-liquid-link:hover,
    .index-liquid-link:focus-visible {
        background: rgba(255, 255, 255, 0.14);
        color: #ffffff;
    }

    .index-liquid-link-cta {
        display: inline-flex;
        margin-top: auto;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        min-height: 48px;
        border-radius: 12px;
        background: linear-gradient(150deg, rgba(255, 255, 255, 1) 0%, rgba(244, 247, 255, 0.98) 100%);
        color: #0b0e15;
        font-weight: 700;
        font-size: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.92);
        box-shadow: 0 10px 22px rgba(255, 255, 255, 0.2);
    }

    .index-liquid-link-cta .index-liquid-link-icon {
        color: #0b0e15;
    }

    .index-liquid-contact {
        display: grid;
        gap: 0.2rem;
        margin-top: 0.48rem;
        padding-top: 0.56rem;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .index-liquid-contact-item {
        display: inline-flex;
        align-items: center;
        gap: 0.52rem;
        padding: 0.34rem 0.72rem;
        color: rgba(238, 244, 255, 0.9);
        font-size: 0.88rem;
        font-weight: 520;
        border-radius: 8px;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .index-liquid-contact-item i {
        width: 14px;
        text-align: center;
        color: rgba(240, 246, 255, 0.88);
        font-size: 0.85rem;
        flex: 0 0 14px;
    }

    .index-liquid-contact-item:hover,
    .index-liquid-contact-item:focus-visible {
        background: rgba(255, 255, 255, 0.12);
        color: #fff;
    }

    .index-liquid-cta {
        display: none;
    }

    .index-liquid-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        justify-self: end;
        width: 36px;
        height: 30px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        z-index: 26;
    }

    .index-liquid-toggle span {
        height: 2px;
        margin: 4px 0;
        border-radius: 99px;
        background: rgba(243, 247, 255, 0.96);
    }

    .index-liquid-toggle-icon {
        width: 100%;
        height: 100%;
        font-size: 1.42rem;
        transform: translateY(3px);
        color: rgba(243, 247, 255, 0.98);
    }

    .index-bg-blur {
        filter: blur(42px);
        opacity: 0.62;
    }

    .index-copy {
        left: calc(0.95rem + 30px);
        right: auto;
        top: 6.28rem;
        width: auto;
        max-width: calc(100vw - 1.9rem);
        transform: none;
        gap: 0.2rem;
    }

    .index-copy-title {
        --hero-num-size: clamp(7rem, 28vw, 9.6rem);
        display: grid;
        grid-template-columns: auto auto;
        align-items: start;
        column-gap: clamp(0.2rem, 1vw, 0.4rem);
        margin-inline: auto;
    }

    .index-copy-number {
        font-size: var(--hero-num-size);
        line-height: 0.83;
        margin-top: -0.01em;
    }

    .index-copy-words {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: calc(var(--hero-num-size) * 0.74);
        min-height: calc(var(--hero-num-size) * 0.74);
        gap: 0;
        padding-top: clamp(0.01rem, 0.12vw, 0.04rem);
        padding-bottom: clamp(0.01rem, 0.1vw, 0.03rem);
    }

    .index-copy-word {
        font-size: clamp(1.66rem, 7.4vw, 2.6rem);
        line-height: 0.82;
        letter-spacing: -0.018em;
    }

    .index-copy-side-model {
        width: clamp(132px, 37.8vw, 226px);
        height: clamp(132px, 37.8vw, 226px);
        margin-top: clamp(0.12rem, 0.8vw, 0.38rem);
        border-radius: 0;
    }

    .index-sequence {
        right: 50%;
        top: calc(29.25% + 240px);
        width: min(84vw, 360px);
        height: min(58vh, 460px);
        transform: translate(50%, -50%);
    }

    .slot-right {
        transform: translate3d(52px, 4px, -24px) scale(0.72);
    }

    .slot-left {
        transform: translate3d(-52px, 4px, -24px) scale(0.72);
    }

    .index-stack.is-rotating .slot-center {
        transform: translate3d(-52px, 4px, -24px) scale(0.72);
    }

    .index-stack.is-rotating .slot-left {
        transform: translate3d(52px, 4px, -24px) scale(0.72);
    }

    .index-layer-video {
        transform: translate3d(52px, 4px, -24px) scale(0.72);
    }

    .index-seq-label {
        top: -8.4%;
        font-size: clamp(0.88rem, 3.45vw, 1.14rem);
        letter-spacing: 0;
    }

    .index-gif-label {
        transform: translate3d(52px, 4px, -24px) scale(0.72);
    }

    .index-partners-title {
        top: calc(100% + 26px);
        font-size: clamp(0.92rem, 3.35vw, 1.08rem);
    }

    .index-partners-title-front {
        transform: translateY(15px);
    }

    .index-partners-title::before {
        font-size: clamp(1.56rem, 7.8vw, 2.7rem);
        letter-spacing: 0.12em;
    }

    .index-partner-marquee {
        top: calc(100% + 86px);
        width: min(92vw, 600px);
        gap: 0.42rem;
    }

    .index-partner-item {
        width: clamp(92px, 20vw, 142px);
        height: 40px;
    }

    .index-sequence.is-video-active .index-stack {
        transform: translate3d(-52px, 4px, -24px) scale(0.72);
    }

    @keyframes indexSequenceFloat {
        0%,
        100% {
            transform: translate(50%, -50%) translateY(0);
        }
        50% {
            transform: translate(50%, -50%) translateY(-8px);
        }
    }
}

@media (max-width: 480px) {
    .index-liquid-header {
        top: 12px;
        padding-inline: 0 !important;
    }

    .index-liquid-inner {
        min-height: 52px;
        border-radius: 12px;
        padding: 0.34rem 0.42rem;
        width: min(88vw, 352px);
        max-width: min(88vw, 352px);
    }

    .index-liquid-brand-text {
        font-size: 1.05rem;
    }

    .index-copy {
        top: 5.96rem;
        left: calc(0.72rem + 30px);
        right: auto;
        max-width: calc(100vw - 1.4rem);
        transform: none;
        gap: 0.12rem;
    }

    .index-copy-title {
        --hero-num-size: clamp(6.4rem, 25vw, 8.3rem);
        column-gap: clamp(0.16rem, 0.9vw, 0.3rem);
    }

    .index-copy-word {
        font-size: clamp(1.5rem, 6.9vw, 2.18rem);
        line-height: 0.81;
    }

    .index-copy-side-model {
        width: clamp(114px, 39.6vw, 184px);
        height: clamp(114px, 39.6vw, 184px);
        border-radius: 0;
    }

    .index-sequence {
        top: calc(28.5% + 240px);
        width: min(88vw, 360px);
        height: min(54vh, 420px);
    }

    .index-seq-label {
        top: -7.9%;
        font-size: clamp(0.84rem, 3.95vw, 1.06rem);
    }

    .index-partners-title {
        top: calc(100% + 22px);
        font-size: clamp(0.86rem, 4vw, 1rem);
    }

    .index-partners-title-front {
        transform: translateY(14px);
    }

    .index-partners-title::before {
        font-size: clamp(1.38rem, 8.3vw, 2.3rem);
        letter-spacing: 0.1em;
    }

    .index-partner-marquee {
        top: calc(100% + 56px);
        width: min(94vw, 520px);
    }

    .index-partner-item {
        width: clamp(84px, 22vw, 126px);
        height: 36px;
    }
}

/* ===== How It Works: Animated Flow ===== */
.page-nasil-calisir {
    background: #000;
    overflow-x: hidden;
}

html:has(body.page-nasil-calisir) {
    background: #000 !important;
}

.page-nasil-calisir,
body.page-nasil-calisir,
body.page-nasil-calisir #main-content,
body.page-nasil-calisir main {
    background: #000 !important;
}

body.page-nasil-calisir {
    min-height: 100vh;
    min-height: 100dvh;
}

.page-nasil-calisir main {
    position: relative;
    background: #000;
    isolation: isolate;
    overflow: hidden;
}

.page-nasil-calisir main::before,
.page-nasil-calisir main::after {
    content: "";
    position: absolute;
    inset: -20% -10% auto -10%;
    height: 72%;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(82px);
    z-index: 0;
}

.page-nasil-calisir main::before {
    background: rgba(255, 255, 255, 0.2);
    animation: howWhiteBlurA 11s ease-in-out infinite alternate;
}

.page-nasil-calisir main::after {
    content: none !important;
    display: none !important;
}

.page-nasil-calisir #main-content {
    background: #000;
    min-height: 100vh;
    min-height: 100dvh;
    padding-bottom: 0 !important;
}

.page-nasil-calisir .how-page-hero,
.page-nasil-calisir .how-flow-section,
.page-nasil-calisir .how-mini-cta {
    position: relative;
    overflow: visible;
    background: transparent;
    z-index: 1;
}

.page-nasil-calisir .how-page-hero {
    padding-bottom: 2.4rem;
    margin-bottom: 0;
}

.page-nasil-calisir .how-page-hero::before,
.page-nasil-calisir .how-page-hero::after,
.page-nasil-calisir .how-flow-section::before,
.page-nasil-calisir .how-flow-section::after {
    content: none;
}

.page-nasil-calisir .how-page-hero h1 {
    color: #fff;
    max-width: 14ch;
}

.page-nasil-calisir .how-page-hero p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 58ch;
}

.how-flow-section {
    padding-top: 1.1rem;
    padding-bottom: 0;
}

.how-flow-stage {
    position: relative;
    width: min(860px, 100%);
    margin-inline: auto;
}

.how-flow-list {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    min-height: 220px;
}

.how-flow-step {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 1rem;
    align-items: start;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    padding: 0;
    opacity: 0;
    transform: translateY(26px) scale(0.965);
    filter: blur(9px);
    pointer-events: none;
    transition:
        opacity 0.38s ease,
        transform 0.58s cubic-bezier(0.2, 0.75, 0.25, 1),
        filter 0.38s ease;
}

.how-flow-step.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: none;
}

.how-flow-step.is-leaving {
    opacity: 0;
    transform: translateY(-16px) scale(0.95);
    filter: blur(10px);
}

.how-flow-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 0;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: #fff;
}

.how-flow-icon-wrap svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.how-flow-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 0;
    padding: 0;
    margin-bottom: 0.46rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    background: transparent;
    border: 0;
}

.how-flow-body h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.12rem, 1.68vw, 1.5rem);
    line-height: 1.15;
    letter-spacing: -0.016em;
}

.how-flow-body p {
    margin: 0.54rem 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.55;
}

.how-media-section {
    padding-top: 0;
    padding-bottom: 0 !important;
    margin-top: -5.6rem;
    margin-bottom: 0;
}

.how-media-row {
    display: grid;
    grid-template-columns: auto minmax(260px, 1fr);
    align-items: start;
    justify-content: start;
    justify-items: start;
    gap: 1.35rem;
    transform: none !important;
}

.how-media-video {
    display: block;
    width: min(338px, 49.4vw);
    justify-self: start;
    margin-left: -1.4rem;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
}

.how-media-start-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    min-height: 46px;
    padding: 0.68rem 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    color: #0f1115;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.16);
}

.how-media-copy {
    display: grid;
    gap: 0.62rem;
    max-width: 460px;
}

.how-media-copy h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.02rem, 1.8vw, 1.45rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.how-media-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.98rem;
    line-height: 1.56;
}

.how-mini-cta {
    padding-top: 1.6rem;
}

.page-nasil-calisir .cta-final {
    background: #000;
    color: #fff;
}

.page-nasil-calisir .cta-final p {
    color: rgba(255, 255, 255, 0.78);
}

.page-nasil-calisir .chip {
    border: 0;
    background: transparent;
    padding-inline: 0;
}

@keyframes howWhiteBlurA {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(34px, -20px, 0) scale(1.2); }
}

@keyframes howWhiteBlurB {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(-26px, 24px, 0) scale(1.17); }
}

@keyframes howWhiteBlurC {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(24px, 18px, 0) scale(1.15); }
}

@keyframes howWhiteBlurD {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(-20px, -18px, 0) scale(1.12); }
}

@media (max-width: 640px) {
    .how-flow-list {
        min-height: 240px;
    }

    .how-flow-step {
        grid-template-columns: 50px 1fr;
        border-radius: 0;
        padding: 0;
    }

    .how-flow-icon-wrap {
        width: 44px;
        height: 44px;
        border-radius: 0;
    }

    .how-flow-icon-wrap svg {
        width: 20px;
        height: 20px;
    }

    .how-media-row {
        grid-template-columns: auto 1fr;
        align-items: start;
        gap: 0.62rem;
    }

    .how-media-video {
        width: min(53.3vw, 208px);
        margin-left: -1rem;
    }

    .how-media-start-btn {
        min-width: 120px;
    }

    .how-media-copy {
        max-width: 100%;
    }

    .how-media-copy h3 {
        font-size: clamp(0.94rem, 4.4vw, 1.08rem);
        line-height: 1.2;
    }

    .how-media-copy p {
        font-size: 0.88rem;
        line-height: 1.45;
    }

}

@media (max-width: 900px) {
    .page-nasil-calisir .index-liquid-header {
        top: 14px !important;
    }
}

@media (max-width: 480px) {
    .page-nasil-calisir .index-liquid-header {
        top: 12px !important;
    }
}

/* ===== Sectors Page: Same Visual Language as How It Works ===== */
.page-sektorler,
.page-iletisim {
    background: #000;
    overflow-x: hidden;
}

.page-sektorler main,
.page-iletisim main {
    position: relative;
    background: #000;
    isolation: isolate;
    overflow-x: hidden;
}

.page-sektorler main::before,
.page-sektorler main::after,
.page-iletisim main::before,
.page-iletisim main::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(82px);
    z-index: 0;
}

.page-sektorler main::before,
.page-iletisim main::before {
    width: min(52vw, 520px);
    height: min(52vw, 520px);
    left: -8%;
    top: 2%;
    background: rgba(255, 255, 255, 0.2);
    animation: howWhiteBlurA 11s ease-in-out infinite alternate;
}

.page-sektorler main::after,
.page-iletisim main::after {
    width: min(44vw, 440px);
    height: min(44vw, 440px);
    right: -6%;
    top: 24%;
    background: rgba(255, 255, 255, 0.12);
    animation: howWhiteBlurB 10s ease-in-out infinite alternate;
}

.page-sektorler .industries-page-hero,
.page-sektorler .industries-flow-section,
.page-iletisim .industries-page-hero,
.page-iletisim .industries-flow-section {
    position: relative;
    z-index: 1;
    background: transparent;
}

.page-sektorler .industries-page-hero,
.page-iletisim .industries-page-hero {
    padding-bottom: 2.2rem;
}

.page-sektorler .industries-page-hero {
    padding-top: 11.8rem;
}

.page-sektorler .industries-page-hero h1,
.page-iletisim .industries-page-hero h1 {
    color: #fff;
    max-width: 14ch;
}

.page-sektorler .industries-page-hero p,
.page-iletisim .industries-page-hero p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 62ch;
}

.page-sektorler .industries-flow-section,
.page-iletisim .industries-flow-section {
    padding-top: 0.4rem;
}

.industries-grid {
    gap: 0.9rem;
}

.industry-block-dark {
    border-color: rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(19, 22, 30, 0.88) 0%, rgba(10, 12, 18, 0.96) 100%);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.38);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.industry-block-dark:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.48);
}

.industry-head {
    display: flex;
    align-items: center;
    gap: 0.56rem;
    margin-bottom: 0.32rem;
}

.industry-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    flex: 0 0 auto;
}

.industry-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.industry-block-dark h2,
.industry-block-dark h3 {
    color: #fff;
}

.industry-block-dark p {
    color: rgba(255, 255, 255, 0.78);
}

.industry-link {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 0.08rem;
}

.industry-link:hover {
    border-bottom-color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 900px) {
    .page-sektorler .index-liquid-header,
    .page-iletisim .index-liquid-header {
        top: 14px !important;
    }
}

@media (max-width: 640px) {
    .industry-block-dark {
        border-radius: 16px;
    }

    .industry-head {
        gap: 0.46rem;
    }

    .industry-icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
    }

    .industry-icon svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .page-sektorler .index-liquid-header,
    .page-iletisim .index-liquid-header {
        top: 12px !important;
    }
}

/* Industries Sequence: cardless, one-by-one */
.industries-sequence-section {
    position: relative;
    z-index: 1;
    padding-top: 0.2rem;
    padding-bottom: 3.4rem;
}

.industries-top-layout {
    display: block;
}

.industries-main-col {
    min-width: 0;
}

.industries-sequence {
    position: relative;
    min-height: 320px;
    width: min(980px, 100%);
}

.industries-side-gif-wrap {
    display: none;
}

.industries-side-gif {
    display: block;
    width: min(100%, 460px);
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.34));
}

.industry-seq-item {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 0.9rem;
    align-items: start;
    opacity: 0;
    filter: blur(9px);
    transform: translateY(24px) scale(0.97);
    pointer-events: none;
    transition:
        opacity 0.4s ease,
        transform 0.55s cubic-bezier(0.2, 0.75, 0.25, 1),
        filter 0.4s ease;
}

.industry-seq-item.is-active {
    opacity: 1;
    filter: none;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.industry-seq-item.is-leaving {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(-18px) scale(0.96);
}

.industry-seq-icon {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: #fff;
    font-size: 1.32rem;
}

.industry-seq-copy {
    max-width: 760px;
}

.industry-seq-kicker {
    display: inline-block;
    margin-bottom: 0.26rem;
    color: rgba(188, 199, 230, 0.9);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.11em;
}

.industry-seq-copy h2 {
    margin: 0 0 0.5rem;
    color: #fff;
    font-size: clamp(1.22rem, 2.2vw, 2rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.industry-seq-copy p {
    margin: 0.36rem 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.58;
}

.industry-seq-copy strong {
    color: #fff;
    font-weight: 700;
}

.industry-seq-link {
    display: inline-block;
    margin-top: 0.8rem;
    color: #fff;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.42);
    padding-bottom: 0.1rem;
}

.industry-seq-link:hover {
    border-bottom-color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 760px) {
    .industries-sequence {
        min-height: 364px;
    }

    .industry-seq-item {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 0.56rem;
    }

    .industry-seq-icon {
        width: 36px;
        height: 36px;
        font-size: 1.05rem;
    }

    .industry-seq-copy p {
        font-size: 0.93rem;
        line-height: 1.48;
    }
}

.industries-bottom-gif-section {
    position: relative;
    z-index: 1;
    margin-top: 0;
    transform: none;
    padding-top: 0.6rem;
    padding-bottom: 4.2rem;
}

.industries-bottom-gif-wrap {
    display: flex;
    justify-content: stretch;
    width: 100%;
    margin: 0;
}

.industries-bottom-gif {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.34));
}

@media (min-width: 901px) {
    .page-sektorler .industries-page-hero .page-hero-inner {
        margin-inline: auto;
        text-align: center;
        transform: translateX(clamp(-18px, -1.2vw, -8px));
    }

    .page-sektorler .industries-page-hero h1,
    .page-sektorler .industries-page-hero p {
        margin-inline: auto;
    }

    .page-sektorler .industries-top-layout {
        display: grid;
        grid-template-columns: minmax(0, 1.5fr) minmax(360px, 33vw);
        grid-template-areas:
            "main side"
            "cta side";
        align-items: start;
        gap: clamp(0.7rem, 1.4vw, 1.2rem);
        padding-left: 0;
        transform: translateX(clamp(24px, 3.1vw, 84px));
    }

    .page-sektorler .industries-main-col {
        grid-area: main;
    }

    .page-sektorler .industries-sequence {
        width: 100%;
        min-height: 320px;
    }

    .page-sektorler .industry-seq-item {
        grid-template-columns: 68px minmax(0, 1fr);
        gap: 1.12rem;
    }

    .page-sektorler .industry-seq-icon {
        width: 64px;
        height: 64px;
        font-size: 1.78rem;
    }

    .page-sektorler .industry-seq-copy h2 {
        font-size: clamp(1.58rem, 2.7vw, 2.52rem);
    }

    .page-sektorler .industry-seq-copy {
        max-width: none;
    }

    .page-sektorler .industry-seq-copy p {
        font-size: 1.16rem;
        line-height: 1.66;
    }

    .page-sektorler .industries-side-gif-wrap {
        grid-area: side;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-left: -6px;
        margin-top: -28px;
    }

    .page-sektorler .industries-side-gif {
        width: min(100%, 620px);
        max-width: min(100%, 620px);
    }

    .page-sektorler .industries-bottom-gif-wrap {
        justify-content: center;
    }

    .page-sektorler .industries-bottom-gif {
        width: min(34vw, 520px);
        max-width: min(34vw, 520px);
    }

    .page-sektorler .industries-top-layout > .industries-bottom-cta {
        grid-area: cta;
        grid-column: auto;
        margin-top: 0.22rem;
        max-width: none;
    }
}

.industries-bottom-cta {
    margin-top: 1.2rem;
    max-width: 920px;
}

.industries-bottom-cta p {
    margin: 0.22rem 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1rem, 1.5vw, 1.28rem);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.industries-bottom-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.9rem;
    min-width: 220px;
    height: 52px;
    padding: 0 1.4rem;
    border-radius: 14px;
    background: #fff;
    color: #0f1115;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(255, 255, 255, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.industries-bottom-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(255, 255, 255, 0.26);
}

@media (max-width: 760px) {
    .industries-bottom-gif-section {
        margin-top: -6rem;
        transform: none;
        padding-top: 0.2rem;
        padding-bottom: 2.6rem;
    }

    .industries-bottom-gif-wrap {
        width: 100%;
        margin: 0;
    }

    .industries-bottom-gif {
        width: 100%;
    }

    .industries-bottom-cta {
        margin-top: 0.92rem;
    }

    .industries-bottom-cta p {
        font-size: 0.98rem;
        line-height: 1.42;
    }

    .industries-bottom-cta-btn {
        width: 100%;
        min-width: 0;
    }
}

/* ===== Contact Page: Same Visual Language as Sectors ===== */
.page-iletisim .contact-page-hero h1 {
    max-width: 16ch;
}

.page-iletisim .contact-page-hero p {
    max-width: 64ch;
}

.page-iletisim .contact-sequence-section {
    padding-top: 0.2rem;
    padding-bottom: 2.8rem;
}

.page-iletisim .industries-sequence {
    min-height: 290px;
    width: min(980px, 100%);
}

.page-iletisim .industry-seq-copy h2 {
    max-width: 18ch;
}

.page-iletisim .industry-seq-copy p {
    max-width: 72ch;
}

.page-iletisim .contact-bottom-section {
    margin-top: -1.2rem;
    padding-top: 0;
    padding-bottom: 4rem;
}

.contact-bottom-actions {
    display: flex;
    align-items: center;
    gap: 0.72rem;
    flex-wrap: wrap;
    margin-top: 0.94rem;
}

.industries-bottom-cta-btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow: none;
}

.industries-bottom-cta-btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 24px rgba(255, 255, 255, 0.14);
}

@media (max-width: 760px) {
    .page-iletisim .industries-sequence {
        min-height: 332px;
    }

    .page-iletisim .contact-bottom-section {
        margin-top: -0.5rem;
        padding-bottom: 2.7rem;
    }

    .contact-bottom-actions {
        gap: 0.6rem;
    }

    .contact-bottom-actions .industries-bottom-cta-btn {
        width: calc(50% - 0.3rem);
        min-width: 0;
    }
}

@media (max-width: 540px) {
    .contact-bottom-actions .industries-bottom-cta-btn {
        width: 100%;
    }
}

.contact-static-section {
    position: relative;
    z-index: 1;
    padding-top: 0.6rem;
    padding-bottom: 3.8rem;
}

.contact-static-layout {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.contact-static-left h2 {
    margin: 0 0 1rem;
    color: #fff;
    font-size: clamp(1.36rem, 2vw, 2rem);
    line-height: 1.14;
    letter-spacing: -0.02em;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 0.9rem 1.1rem;
}

.contact-detail-item {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 0.62rem;
    align-items: start;
    padding-bottom: 0.74rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-detail-icon {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #fff;
    font-size: 1rem;
}

.contact-detail-body h3 {
    margin: 0;
    color: #fff;
    font-size: 1.03rem;
    line-height: 1.2;
    font-weight: 700;
}

.contact-detail-body p {
    margin: 0.26rem 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-detail-body a {
    display: inline-block;
    margin-top: 0.38rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.contact-detail-body a:hover {
    border-bottom-color: rgba(255, 255, 255, 0.9);
}

.contact-map-panel {
    position: relative;
    width: 100%;
    min-height: 470px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.contact-map-panel iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 470px;
    border: 0;
}

@media (max-width: 1080px) {
    .contact-map-panel,
    .contact-map-panel iframe {
        min-height: 380px;
    }
}

@media (max-width: 760px) {
    .contact-static-section {
        padding-bottom: 2.8rem;
    }

    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 0.78rem;
    }

    .contact-detail-item {
        grid-template-columns: 34px minmax(0, 1fr);
    }

    .contact-map-panel,
    .contact-map-panel iframe {
        min-height: 320px;
    }
}

/* ===== Download Page ===== */
.page-indir {
    background: #000;
    overflow-x: hidden;
}

.page-indir main {
    position: relative;
    background: #000;
    isolation: isolate;
    overflow: hidden;
}

.page-indir main::before,
.page-indir main::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(82px);
    z-index: 0;
}

.page-indir main::before {
    width: min(52vw, 520px);
    height: min(52vw, 520px);
    left: -8%;
    top: 2%;
    background: rgba(255, 255, 255, 0.2);
    animation: howWhiteBlurA 11s ease-in-out infinite alternate;
}

.page-indir main::after {
    width: min(44vw, 440px);
    height: min(44vw, 440px);
    right: -6%;
    top: 24%;
    background: rgba(255, 255, 255, 0.12);
    animation: howWhiteBlurB 10s ease-in-out infinite alternate;
}

.page-indir .download-page-hero,
.page-indir .download-options-section,
.page-indir .download-flow-section {
    position: relative;
    z-index: 1;
    background: transparent;
}

.page-indir .download-page-hero {
    padding-bottom: 1.1rem;
}

.page-indir .download-options-section {
    padding-top: 0.8rem;
}

.page-indir .download-page-hero h1 {
    color: #fff;
    max-width: 15ch;
}

.page-indir .download-page-hero p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 64ch;
}

.page-indir .download-page-hero .chip {
    border: 0;
    background: transparent;
    padding-inline: 0;
}

.download-hero-actions,
.store-download-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.72rem;
    margin-top: 1rem;
}

.download-hero-btn,
.store-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.72rem 1.25rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.9);
    color: #0f1115;
    font-size: 0.98rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(255, 255, 255, 0.18);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.download-hero-btn:hover,
.store-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(255, 255, 255, 0.25);
}

.store-badge-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(255, 255, 255, 0.18);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.store-badge-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(255, 255, 255, 0.25);
}

.store-badge-img {
    display: block;
    width: auto;
    height: 50px;
}

.download-hero-btn-ghost,
.store-download-btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow: none;
}

.download-option-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.download-option-card {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    padding: 1.1rem 1rem;
    background: linear-gradient(150deg, rgba(20, 23, 31, 0.86) 0%, rgba(10, 12, 18, 0.95) 100%);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.download-option-icon {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    font-size: 1.28rem;
}

.download-option-card h2 {
    margin: 0.4rem 0 0.38rem;
    color: #fff;
    font-size: 1.32rem;
    line-height: 1.2;
}

.download-option-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.5;
}

.download-option-card a {
    display: inline-flex;
    margin-top: 0.7rem;
    color: #fff;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    padding-bottom: 0.08rem;
}

.download-option-card .store-badge-link {
    margin-top: 0.7rem;
    border-bottom: 0;
    padding-bottom: 0;
}

.download-flow-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 1.1rem;
    align-items: start;
}

.page-indir .download-flow-layout {
    grid-template-columns: 1fr;
}

.download-flow-copy h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.16rem, 2vw, 1.8rem);
    line-height: 1.18;
}

.download-flow-copy ol {
    margin: 0.72rem 0 0;
    padding-left: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.download-flow-copy li {
    margin: 0.38rem 0;
}

.download-flow-copy p {
    margin: 0.9rem 0 0;
    color: rgba(255, 255, 255, 0.92);
}

.download-flow-copy a {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.38);
}

.download-flow-media img {
    width: min(100%, 440px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 900px) {
    .page-indir .index-liquid-header {
        top: 14px !important;
    }

    .download-flow-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .download-option-grid {
        grid-template-columns: 1fr;
    }

    .download-hero-actions,
    .store-download-actions {
        gap: 0.58rem;
    }

    .download-hero-btn,
    .store-download-btn {
        width: 100%;
    }

    .store-download-actions .store-badge-link {
        width: 100%;
    }

    .store-download-actions .store-badge-img {
        width: 100%;
        max-width: 340px;
        height: auto;
    }

    .download-flow-media img {
        width: 100%;
    }

    .page-indir .download-page-hero {
        padding-bottom: 0.75rem;
    }

    .page-indir .download-options-section {
        padding-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .page-indir .index-liquid-header {
        top: 12px !important;
    }
}

/* ===== iOS Install Page ===== */
.page-ios-kurulum,
.page-android-kurulum {
    background: #000;
    overflow-x: hidden;
}

.page-ios-kurulum main,
.page-android-kurulum main {
    position: relative;
    background: #000;
    isolation: isolate;
    overflow: hidden;
}

.page-ios-kurulum main::before,
.page-ios-kurulum main::after,
.page-android-kurulum main::before,
.page-android-kurulum main::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(82px);
    z-index: 0;
}

.page-ios-kurulum main::before,
.page-android-kurulum main::before {
    width: min(52vw, 520px);
    height: min(52vw, 520px);
    left: -8%;
    top: 2%;
    background: rgba(255, 255, 255, 0.2);
    animation: howWhiteBlurA 11s ease-in-out infinite alternate;
}

.page-ios-kurulum main::after,
.page-android-kurulum main::after {
    width: min(44vw, 440px);
    height: min(44vw, 440px);
    right: -6%;
    top: 24%;
    background: rgba(255, 255, 255, 0.12);
    animation: howWhiteBlurB 10s ease-in-out infinite alternate;
}

.page-ios-kurulum .ios-install-hero,
.page-ios-kurulum .ios-steps-section,
.page-android-kurulum .ios-install-hero,
.page-android-kurulum .ios-steps-section {
    position: relative;
    z-index: 1;
    background: transparent;
}

.page-ios-kurulum .ios-install-hero h1,
.page-android-kurulum .ios-install-hero h1 {
    color: #fff;
    max-width: 15ch;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.page-ios-kurulum .ios-hero-apple-icon,
.page-android-kurulum .ios-hero-apple-icon {
    font-size: 0.9em;
    line-height: 1;
    transform: translateY(-1px);
}

.page-ios-kurulum .ios-install-hero p,
.page-android-kurulum .ios-install-hero p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 64ch;
}

.page-ios-kurulum .ios-install-hero .chip,
.page-android-kurulum .ios-install-hero .chip {
    border: 0;
    background: transparent;
    padding-inline: 0;
}

.ios-steps-free {
    width: min(880px, calc(100% - 2.4rem));
    margin-inline: auto;
    display: grid;
    gap: 1.5rem;
}

.ios-step-item {
    display: grid;
    gap: 0.72rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.ios-step-image {
    display: block;
    width: min(100%, 560px);
    height: auto;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.ios-step-text {
    margin: 0.8rem 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.56;
}

.ios-step-text strong {
    color: #fff;
    font-weight: 700;
}

.ios-inline-icon {
    display: inline-block !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    vertical-align: middle;
    margin: 0 0.34rem;
    object-fit: contain;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.ios-inline-plus {
    border: 0;
    border-radius: 0;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    background: transparent;
    box-shadow: none;
}

.ios-inline-pair {
    display: inline-flex;
    align-items: center;
    gap: 0.08rem;
    vertical-align: middle;
    margin: 0 0.34rem;
}

.ios-inline-pair .ios-inline-icon {
    margin: 0;
}

.ios-install-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    border-radius: 14px;
    background: #fff;
    color: #0f1115;
    font-size: 1.02rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 28px rgba(255, 255, 255, 0.2);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.ios-install-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(255, 255, 255, 0.28);
}

@media (max-width: 900px) {
    .page-ios-kurulum .index-liquid-header,
    .page-android-kurulum .index-liquid-header {
        top: 14px !important;
    }
}

@media (max-width: 480px) {
    .page-ios-kurulum .index-liquid-header,
    .page-android-kurulum .index-liquid-header {
        top: 12px !important;
    }

    .ios-step-text {
        font-size: 0.94rem;
    }

    .ios-steps-free {
        width: min(100%, calc(100% - 1.6rem));
        gap: 1.15rem;
    }
}

/* ===== Credit Pricing Page ===== */
.page-fiyatlandirma,
body.page-fiyatlandirma,
.page-fiyatlandirma #main-content {
    background: #000;
    color: #f3f6ff;
}

.page-fiyatlandirma main {
    position: relative;
    background: #000;
    isolation: isolate;
    overflow-x: hidden;
}

.page-fiyatlandirma main::before,
.page-fiyatlandirma main::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(82px);
    z-index: 0;
}

.page-fiyatlandirma main::before {
    width: min(52vw, 520px);
    height: min(52vw, 520px);
    left: -8%;
    top: 2%;
    background: rgba(255, 255, 255, 0.2);
    animation: howWhiteBlurA 11s ease-in-out infinite alternate;
}

.page-fiyatlandirma main::after {
    width: min(44vw, 440px);
    height: min(44vw, 440px);
    right: -6%;
    top: 24%;
    background: rgba(255, 255, 255, 0.12);
    animation: howWhiteBlurB 10s ease-in-out infinite alternate;
}

.page-fiyatlandirma .pricing-page-hero,
.page-fiyatlandirma .pricing-flow-section {
    position: relative;
    z-index: 1;
    background: transparent;
}

.page-fiyatlandirma .pricing-page-hero {
    padding-top: 11.8rem;
    padding-bottom: 2.1rem;
}

.page-fiyatlandirma .pricing-page-hero h1 {
    color: #fff;
    max-width: 15ch;
}

.page-fiyatlandirma .pricing-page-hero p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 66ch;
}

.pricing-hero-note {
    margin-top: 0.8rem;
}

.pricing-hero-note strong {
    color: #fff;
}

.credit-pricing-page {
    background: transparent;
    padding: 0;
}

.credit-pricing-wrap {
    width: min(1720px, calc(100% - 2rem));
}

.credit-pricing-form {
    margin-top: 0;
    display: grid;
    gap: 0.9rem;
}

.pricing-flow-section {
    padding-top: 0.4rem;
    padding-bottom: 3.8rem;
}

.pricing-flow-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    align-items: start;
}

.pricing-integration-strip {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 0.1rem;
}

.pricing-integration-title {
    margin: 0;
    color: #fff;
    font-size: clamp(1rem, 1.6vw, 1.26rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.pricing-integration-marquee {
    padding: 0.12rem 0;
    overflow: hidden;
}

.pricing-integration-row {
    overflow: hidden;
    mask-image: none;
    -webkit-mask-image: none;
}

.pricing-integration-row + .pricing-integration-row {
    margin-top: 0.28rem;
}

.pricing-integration-track {
    display: flex;
    align-items: center;
    gap: 0.42rem;
    width: max-content;
    will-change: transform;
}

.pricing-integration-row.row-left .pricing-integration-track {
    animation: indexPartnerLeft 28s linear infinite;
}

.pricing-integration-row.row-right .pricing-integration-track {
    animation: indexPartnerRight 28s linear infinite;
}

.pricing-integration-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(100px, 8.6vw, 154px);
    height: 42px;
    flex: 0 0 auto;
}

.pricing-integration-item img {
    width: auto;
    max-width: 92%;
    max-height: 84%;
    object-fit: contain;
}

.credit-package-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.9rem;
}

.credit-package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.46rem;
    padding: 0.92rem 0.95rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(12, 14, 18, 0.74);
    cursor: pointer;
    min-height: 100%;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.credit-package-card:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.34);
}

.credit-package-card input {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.credit-package-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.42rem;
    margin-bottom: 0.12rem;
}

.credit-package-label {
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(224, 232, 248, 0.78);
}

.credit-package-title {
    font-weight: 700;
    font-size: clamp(1.1rem, 1.25vw, 1.42rem);
    color: #ffffff;
}

.credit-package-price {
    font-weight: 700;
    font-size: clamp(1.02rem, 1.1vw, 1.26rem);
    color: rgba(240, 246, 255, 0.94);
}

.credit-package-sub {
    font-size: 0.97rem;
    color: rgba(227, 234, 249, 0.84);
}

.credit-package-feature-list {
    margin: 0.22rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.28rem;
}

.credit-package-feature-list li {
    position: relative;
    padding-left: 1.14rem;
    font-size: 0.9rem;
    line-height: 1.42;
    color: rgba(224, 233, 250, 0.82);
}

.credit-package-feature-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0.03rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: #61e8aa;
}

.credit-package-feature-list li.is-extra {
    color: #8bf0c2;
    font-weight: 600;
}

.credit-package-extra-note {
    margin-top: 0.24rem;
    font-size: 0.82rem;
    color: #8bf0c2;
    letter-spacing: 0.01em;
}

.credit-package-card.is-highlighted {
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34);
}

.credit-package-card:has(input:checked) {
    border-color: rgba(255, 255, 255, 0.66);
    box-shadow:
        0 12px 26px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    background: linear-gradient(180deg, rgba(24, 27, 34, 0.94) 0%, rgba(10, 12, 18, 0.96) 100%);
}

.credit-package-summary {
    margin-top: 1rem;
    padding: 0.78rem 0.92rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(7, 10, 18, 0.72);
    color: rgba(236, 241, 255, 0.9);
    font-size: 1.04rem;
}

.credit-pricing-field {
    margin-top: 1rem;
    display: grid;
    gap: 0.46rem;
}

.credit-pricing-field label {
    font-weight: 600;
    color: #f4f7ff;
}

.credit-pricing-field input {
    width: 100%;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    background: rgba(8, 10, 18, 0.82);
    color: #fff;
    padding: 0 0.9rem;
    font-size: 1rem;
}

.credit-pricing-field input:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.58);
    outline-offset: 1px;
}

.credit-pricing-pay-btn {
    margin-top: 1.05rem;
    border: 0;
    border-radius: 14px;
    height: 52px;
    width: 100%;
    padding: 0 1.35rem;
    background: #ffffff;
    color: #0f1115;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.credit-pricing-pay-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.36);
}

.credit-pricing-status {
    margin: 0.75rem 0 0;
    min-height: 1.35rem;
    color: rgba(184, 254, 194, 0.95);
    font-weight: 600;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.credit-pricing-status.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.credit-pricing-status.is-error {
    color: rgba(255, 186, 186, 0.96);
}

.pricing-side-copy {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0.2rem 0 0;
}

.pricing-side-copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.06rem, 1.8vw, 1.36rem);
    line-height: 1.2;
}

.pricing-side-copy ol {
    margin: 0.74rem 0 0;
    padding-left: 1.15rem;
    color: rgba(234, 241, 255, 0.86);
}

.pricing-side-copy li {
    margin: 0.34rem 0;
}

.pricing-side-copy p {
    margin: 0.84rem 0 0;
    color: rgba(220, 231, 255, 0.78);
    line-height: 1.56;
}

@media (max-width: 900px) {
    .page-fiyatlandirma .index-liquid-header {
        top: 14px !important;
    }

    .credit-pricing-wrap {
        width: min(1280px, calc(100% - 2rem));
    }
}

@media (max-width: 1200px) {
    .credit-package-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .credit-package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .credit-package-grid {
        grid-template-columns: 1fr;
    }

    .pricing-flow-section {
        padding-bottom: 2.9rem;
    }
}

@media (max-width: 480px) {
    .page-fiyatlandirma .index-liquid-header {
        top: 12px !important;
    }
}

/* ===== Legal + Footer ===== */
.legal-rich-page {
    padding-top: 1.6rem;
    padding-bottom: 3.6rem;
}

.legal-rich-content {
    background: linear-gradient(165deg, rgba(18, 22, 35, 0.9), rgba(9, 12, 20, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: clamp(1.2rem, 3vw, 2rem);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}

.legal-rich-content h2 {
    margin: 1.1rem 0 0.48rem;
    color: #fff;
    font-size: clamp(1.1rem, 2.1vw, 1.36rem);
    line-height: 1.2;
}

.legal-rich-content h2:first-child {
    margin-top: 0;
}

.legal-rich-content p,
.legal-rich-content li {
    color: rgba(234, 239, 255, 0.84);
    font-size: 0.98rem;
    line-height: 1.65;
}

.legal-rich-content ul {
    margin: 0.28rem 0 0.42rem;
    padding-left: 1.2rem;
}

.legal-rich-content a {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.site-footer-new {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: #000;
    padding: 1.5rem 0 1.1rem;
}

.footer-new-inner {
    display: grid;
    gap: 1rem;
}

.footer-new-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-new-brand strong {
    display: inline-block;
    color: #fff;
    font-size: 1.06rem;
    margin-bottom: 0.34rem;
}

.footer-new-brand p {
    margin: 0;
    color: rgba(228, 236, 255, 0.74);
    font-size: 0.92rem;
}

.footer-new-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 0.9rem;
}

.footer-new-links a {
    color: rgba(245, 248, 255, 0.9);
    font-size: 0.93rem;
    border-bottom: 1px solid transparent;
}

.footer-new-links a:hover {
    border-bottom-color: rgba(255, 255, 255, 0.65);
}

.footer-new-downloads {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.footer-new-downloads .store-badge-img {
    height: 44px;
}

.footer-new-payments {
    display: flex;
    align-items: center;
}

.footer-new-payments img {
    width: min(100%, 360px);
    height: auto;
    display: block;
    border-radius: 10px;
}

.footer-new-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.8rem;
}

.footer-new-bottom span {
    color: rgba(214, 223, 246, 0.72);
    font-size: 0.85rem;
}

@media (max-width: 640px) {
    .site-footer-new {
        padding: 1.2rem 0 0.95rem;
    }

    .footer-new-top {
        flex-direction: column;
        gap: 0.7rem;
    }

    .footer-new-downloads {
        width: 100%;
    }

    .footer-new-downloads .store-badge-link {
        width: 100%;
        justify-content: flex-start;
    }

    .footer-new-downloads .store-badge-img {
        width: 100%;
        max-width: 280px;
        height: auto;
    }

    .footer-new-payments img {
        width: 100%;
        max-width: 320px;
        height: auto;
    }
}
