:root {
    --bg: #f7fbff;
    --bg-soft: #eef6ff;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: #ffffff;
    --border: rgba(15, 23, 42, 0.11);
    --text: #24324a;
    --heading: #1e2f4a;
    --muted: #64748b;
    --muted-2: #8491a6;
    --primary: #2563eb;
    --primary-2: #06b6d4;
    --accent: #10b981;
    --accent-soft: #e9fff7;
    --warning: #f59e0b;
    --radius-lg: 30px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --shadow: 0 22px 70px rgba(37, 99, 235, 0.12);
    --shadow-soft: 0 14px 36px rgba(15, 23, 42, 0.08);
    --premium-line: linear-gradient(90deg, rgba(37, 99, 235, 0), rgba(37, 99, 235, 0.36), rgba(16, 185, 129, 0.32), rgba(37, 99, 235, 0));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 8% 0%, rgba(37, 99, 235, 0.12), transparent 34rem),
        radial-gradient(circle at 90% 4%, rgba(16, 185, 129, 0.12), transparent 30rem),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 48%, #f4f8ff 100%);
    color: var(--text);
    font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    opacity: 0.52;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.055) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--primary);
}

img, svg {
    max-width: 100%;
}

::selection {
    background: rgba(37, 99, 235, 0.18);
    color: var(--text);
}

.container-xl {
    max-width: 1220px;
}

.section-pad {
    padding: 104px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
}

.glass-nav {
    width: min(1220px, calc(100% - 24px));
    margin: 0 auto;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 52px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.brand-mark {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 16px;
    background:
        radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.28), transparent 32%),
        linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.26);
    overflow: hidden;
}

.brand-logo {
    width: 32px;
    height: 32px;
}

.brand-logo-frame,
.brand-logo-cut,
.brand-logo-spark {
    fill: none;
    stroke: #ffffff;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.brand-logo-frame {
    stroke-width: 4.2;
}

.brand-logo-cut {
    stroke-width: 3.1;
    opacity: 0.9;
}

.brand-logo-spark {
    stroke-width: 2.9;
    opacity: 0.78;
}

.brand-logo-dot {
    fill: #ffffff;
    opacity: 0.92;
}

.brand-text {
    color: var(--heading);
    font-size: 1.35rem;
}

.navbar .nav-link {
    color: rgba(15, 23, 42, 0.67);
    font-weight: 750;
    font-size: 0.93rem;
    padding: 0.55rem 0.67rem;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.navbar .nav-link:hover {
    color: var(--primary);
}

.nav-cta {
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 999px;
    background: #eef5ff;
    color: var(--primary) !important;
}

.language-menu {
    position: relative;
}

.language-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 106px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 999px;
    background: #ffffff;
    color: var(--text);
    font-weight: 850;
    font-size: 0.84rem;
    padding: 9px 13px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.language-arrow {
    margin-left: auto;
    color: var(--muted);
    font-size: 0.95rem;
}

.language-options {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 1100;
    display: none;
    min-width: 210px;
    padding: 8px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(16px);
}

.language-menu.is-open .language-options {
    display: grid;
    gap: 4px;
}

.language-options button {
    display: grid;
    grid-template-columns: 22px 1fr auto;
    align-items: center;
    gap: 10px;
    width: 100%;
    border: 0;
    border-radius: 13px;
    background: transparent;
    color: var(--text);
    padding: 9px 10px;
    font-weight: 750;
    text-align: left;
}

.language-options button:hover,
.language-options button.is-active {
    background: #eef5ff;
    color: var(--primary);
}

.language-options strong {
    color: var(--muted);
    font-size: 0.76rem;
}

.flag-icon {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
    width: 22px;
    height: 15px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.15);
}

.flag-en {
    background:
        linear-gradient(90deg, transparent 44%, #fff 44%, #fff 56%, transparent 56%),
        linear-gradient(transparent 38%, #fff 38%, #fff 62%, transparent 62%),
        linear-gradient(90deg, transparent 47%, #c8102e 47%, #c8102e 53%, transparent 53%),
        linear-gradient(transparent 44%, #c8102e 44%, #c8102e 56%, transparent 56%),
        #012169;
}

.flag-ru {
    background: linear-gradient(#ffffff 0 33.33%, #1c57a7 33.33% 66.66%, #d52b1e 66.66% 100%);
}

.flag-de {
    background: linear-gradient(#000000 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%);
}

.flag-fr {
    background: linear-gradient(90deg, #0055a4 0 33.33%, #ffffff 33.33% 66.66%, #ef4135 66.66% 100%);
}

.flag-es {
    background: linear-gradient(#aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75% 100%);
}

.flag-pt {
    background: linear-gradient(90deg, #006600 0 42%, #ff0000 42% 100%);
}

.flag-it {
    background: linear-gradient(90deg, #009246 0 33.33%, #ffffff 33.33% 66.66%, #ce2b37 66.66% 100%);
}

.hero {
    position: relative;
    min-height: calc(100vh - 96px);
    display: flex;
    align-items: center;
    padding-top: 82px;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(4px);
}

.hero-shape-one {
    width: 420px;
    height: 420px;
    left: -220px;
    top: 190px;
    background: rgba(37, 99, 235, 0.10);
}

.hero-shape-two {
    width: 360px;
    height: 360px;
    right: -120px;
    top: 120px;
    background: rgba(16, 185, 129, 0.13);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.12);
}

.hero-title,
.section-heading h2,
.contact-copy h2,
.sticky-copy h2,
.prototype-banner h2,
.simple-page h1 {
    margin: 0;
    color: var(--heading);
    line-height: 1.06;
    letter-spacing: -0.055em;
}

.hero-title {
    max-width: 680px;
    font-size: clamp(2.65rem, 4.35vw, 4.55rem);
    font-weight: 900;
}

.hero-lead {
    max-width: 650px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.hero-offer {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 650px;
    margin-top: 24px;
    padding: 16px 18px;
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.96), rgba(239, 246, 255, 0.92));
    box-shadow: var(--shadow-soft);
}

.offer-icon {
    display: inline-grid;
    width: 30px;
    height: 30px;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 999px;
    color: #fff;
    background: var(--accent);
    font-weight: 900;
}

.hero-offer strong {
    display: block;
    color: #065f46;
    font-weight: 900;
}

.hero-offer p {
    margin: 4px 0 0;
    color: #31515c;
    font-size: 0.95rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    border: 0;
    border-radius: 999px;
    padding: 14px 23px;
    font-weight: 850;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary-soft {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 18px 38px rgba(37, 99, 235, 0.22);
}

.btn-primary-soft:hover,
.btn-primary-soft:focus {
    color: #fff;
    box-shadow: 0 24px 48px rgba(6, 182, 212, 0.22);
}

.btn-outline-soft {
    color: var(--text);
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.btn-outline-soft:hover {
    background: #f8fbff;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 36px;
    max-width: 720px;
}

.hero-stats div,
.showcase-card,
.service-card,
.case-card,
.price-card,
.process-step,
.contact-form,
.policy-card,
.faq-list details,
.benefit-item,
.prototype-banner {
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.hero-stats div {
    padding: 16px;
    border-radius: var(--radius-sm);
}

.hero-stats strong {
    display: block;
    color: var(--text);
    font-size: 0.98rem;
}

.hero-stats span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.88rem;
}


.hero-showcase {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-showcase-v2 {
    isolation: isolate;
}

.hero-orbit {
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    filter: blur(1px);
    opacity: 0.95;
}

.hero-orbit-one {
    width: 390px;
    height: 390px;
    right: 8px;
    top: 22px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.20), rgba(6, 182, 212, 0.08) 52%, transparent 72%);
}

.hero-orbit-two {
    width: 300px;
    height: 300px;
    left: 10px;
    bottom: 20px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.18), rgba(59, 130, 246, 0.07) 56%, transparent 72%);
}

.prototype-hero-card {
    position: relative;
    width: min(100%, 610px);
    padding: 28px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 36px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.92)),
        radial-gradient(circle at 14% 12%, rgba(37, 99, 235, 0.12), transparent 34%),
        radial-gradient(circle at 100% 0%, rgba(16, 185, 129, 0.16), transparent 34%);
    box-shadow: 0 30px 90px rgba(30, 47, 74, 0.14);
    overflow: hidden;
}

.prototype-hero-card::after {
    content: "";
    position: absolute;
    inset: auto -80px -120px auto;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.12);
    pointer-events: none;
}

.prototype-card-top {
    position: relative;
    z-index: 1;
    max-width: 500px;
}

.prototype-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #0f766e;
    background: #e9fff7;
    border: 1px solid rgba(16, 185, 129, 0.22);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.prototype-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.13);
}

.prototype-card-top h2 {
    margin: 0;
    color: var(--heading);
    font-size: clamp(2rem, 3.1vw, 3rem);
    line-height: 1.04;
    letter-spacing: -0.052em;
    font-weight: 900;
}

.prototype-card-top p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 1rem;
}

.journey-track {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.journey-step {
    min-height: 116px;
    padding: 15px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.journey-step.is-active {
    border-color: rgba(37, 99, 235, 0.18);
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.96), rgba(236, 253, 245, 0.88));
}

.journey-step span,
.preview-title-line small,
.prototype-metrics span {
    color: var(--muted);
}

.journey-step span {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 900;
}

.journey-step b {
    display: block;
    color: var(--text);
    font-weight: 900;
}

.journey-step small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-weight: 650;
    line-height: 1.35;
}

.product-preview {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 138px;
    gap: 16px;
    align-items: stretch;
    margin-top: 18px;
}

.desktop-preview,
.phone-preview {
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 16px 38px rgba(30, 47, 74, 0.08);
}

.desktop-preview {
    padding: 16px;
    border-radius: 24px;
}

.window-dots {
    display: flex;
    gap: 7px;
    margin-bottom: 12px;
}

.window-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d7e2f2;
}

.preview-title-line {
    display: grid;
    gap: 2px;
    margin-bottom: 13px;
}

.preview-title-line b {
    color: var(--text);
    font-weight: 900;
}

.preview-title-line small {
    font-weight: 700;
}

.preview-dashboard {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 12px;
    min-height: 150px;
    padding: 12px;
    border-radius: 20px;
    background: linear-gradient(135deg, #eff6ff, #ecfeff 62%, #f7fee7);
}

.preview-nav {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 9px;
    border-radius: 16px;
    background: #ffffff;
}

.preview-nav span {
    height: 24px;
    border-radius: 10px;
    background: #e3ecfb;
}

.preview-nav span.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.preview-main {
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
}

.preview-bar {
    height: 13px;
    border-radius: 999px;
    background: #dce8f9;
}

.preview-bar.short {
    width: 58%;
    margin-top: 10px;
}

.preview-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    margin-top: 18px;
}

.preview-cards span {
    display: grid;
    min-height: 52px;
    place-items: center;
    padding: 8px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    background: #ffffff;
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 850;
    text-align: center;
}

.phone-preview {
    display: grid;
    align-content: start;
    gap: 10px;
    min-height: 230px;
    padding: 14px;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff, #eef6ff);
}

.phone-speaker {
    width: 42px;
    height: 5px;
    margin: 0 auto 4px;
    border-radius: 999px;
    background: #d1dceb;
}

.phone-preview b {
    color: var(--text);
    font-weight: 900;
    font-size: 0.9rem;
}

.phone-preview span {
    display: block;
    padding: 10px;
    border-radius: 14px;
    color: var(--muted);
    background: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.prototype-metrics {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.prototype-metrics div {
    padding: 15px;
    border: 1px solid rgba(37, 99, 235, 0.10);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
}

.prototype-metrics strong,
.prototype-metrics span {
    display: block;
}

.prototype-metrics strong {
    color: var(--heading);
    font-size: 1rem;
    font-weight: 900;
}

.prototype-metrics span {
    margin-top: 4px;
    font-size: 0.84rem;
    font-weight: 650;
    line-height: 1.35;
}

.floating-pill {
    position: absolute;
    z-index: 2;
    padding: 10px 14px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 999px;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.10);
    backdrop-filter: blur(16px);
    font-weight: 900;
    font-size: 0.86rem;
}

.pill-top {
    top: 78px;
    right: -8px;
}

.pill-bottom {
    left: 0;
    bottom: 78px;
}

.trust-strip {
    padding: 18px 0;
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-soft);
}

.trust-items span {
    color: var(--muted);
    font-weight: 850;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f2f7ff;
}

.prestige-strip {
    padding: 28px 0 10px;
}

.prestige-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
    overflow: hidden;
    padding: 30px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 32px;
    background:
        radial-gradient(circle at 16% 0%, rgba(37, 99, 235, 0.12), transparent 24rem),
        radial-gradient(circle at 100% 18%, rgba(16, 185, 129, 0.12), transparent 22rem),
        rgba(255, 255, 255, 0.88);
    box-shadow: 0 24px 70px rgba(30, 47, 74, 0.10);
}

.prestige-panel::before {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    top: 0;
    height: 2px;
    background: var(--premium-line);
}

.prestige-copy {
    position: relative;
    z-index: 1;
}

.prestige-copy h2 {
    margin: 10px 0 0;
    color: var(--heading);
    font-size: clamp(1.8rem, 3.3vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.046em;
    font-weight: 800;
}

.prestige-copy p {
    max-width: 620px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 1.03rem;
}

.prestige-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.prestige-grid div {
    min-height: 156px;
    padding: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.prestige-grid span {
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 900;
}

.prestige-grid b,
.prestige-grid small {
    display: block;
}

.prestige-grid b {
    margin-top: 22px;
    color: var(--heading);
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.prestige-grid small {
    margin-top: 6px;
    color: var(--muted);
    font-weight: 650;
    line-height: 1.4;
}

.section-heading {
    max-width: 790px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading h2,
.contact-copy h2,
.sticky-copy h2,
.prototype-banner h2 {
    font-size: clamp(2.2rem, 4.4vw, 4.05rem);
    font-weight: 900;
}

.section-heading h2.section-title-balanced {
    max-width: 980px;
    margin-inline: auto;
    font-size: clamp(1.75rem, 3.1vw, 2.65rem);
    line-height: 1.18;
    letter-spacing: -0.035em;
}

.section-heading p,
.contact-copy p,
.sticky-copy p,
.prototype-banner p {
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.cards-grid,
.services-grid,
.pricing-grid,
.process-grid,
.case-grid {
    display: grid;
    gap: 22px;
}

.services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.case-card,
.price-card,
.process-step,
.contact-form,
.policy-card,
.prototype-banner {
    border-radius: var(--radius-lg);
}

.service-card {
    padding: 26px;
}

.icon-pill {
    display: inline-grid;
    width: 56px;
    height: 56px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 18px;
    font-size: 1.55rem;
    background: #eff6ff;
}

.service-card h3,
.case-card h3,
.price-card h3,
.process-step h3,
.policy-card h2,
.benefit-item h3 {
    color: var(--heading);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.service-card p,
.case-card p,
.price-card p,
.process-step p,
.policy-card p,
.faq-list p,
.benefit-item p {
    color: var(--muted);
}

.service-card ul,
.price-card ul {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.service-card li,
.price-card li {
    position: relative;
    padding-left: 24px;
    color: #334155;
    font-weight: 650;
}

.service-card li::before,
.price-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 900;
}

.prototype-section {
    padding-top: 50px;
}

.prototype-banner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 34px;
    align-items: center;
    padding: 38px;
    background:
        radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.10), transparent 24rem),
        radial-gradient(circle at 100% 0%, rgba(16, 185, 129, 0.11), transparent 22rem),
        #ffffff;
}

.prototype-points {
    display: grid;
    gap: 12px;
}

.prototype-points div {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    background: #f4f9ff;
}

.prototype-points b {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px;
    color: var(--primary);
    background: #eaf2ff;
    font-weight: 900;
}

.prototype-points span {
    color: var(--text);
    font-weight: 800;
}

.surface-section {
    background: linear-gradient(180deg, rgba(239, 246, 255, 0.75), rgba(255, 255, 255, 0.78));
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.sticky-copy {
    position: sticky;
    top: 130px;
}

.benefit-list {
    display: grid;
    gap: 18px;
}

.benefit-item {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 20px;
    padding: 26px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
}

.benefit-item > span {
    display: inline-grid;
    width: 56px;
    height: 56px;
    place-items: center;
    color: #fff;
    font-weight: 900;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.benefit-item p {
    margin: 0;
}

.case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-card {
    position: relative;
    min-height: 255px;
    padding: 28px;
    overflow: hidden;
    background: #ffffff;
}

.case-card::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12), transparent 70%);
}

.case-tag {
    display: inline-flex;
    margin-bottom: 50px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #047857;
    background: #ecfdf5;
    font-size: 0.78rem;
    font-weight: 900;
}

.pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: #ffffff;
}

.price-card.featured {
    border-color: rgba(37, 99, 235, 0.34);
    background:
        radial-gradient(circle at 100% 0%, rgba(16, 185, 129, 0.12), transparent 18rem),
        linear-gradient(180deg, #ffffff, #f1f7ff);
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(37, 99, 235, 0.16);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 7px 11px;
    color: #064e3b;
    background: #d1fae5;
    border-radius: 999px;
    font-weight: 900;
    font-size: 0.75rem;
}

.price-top {
    min-height: 132px;
}

.price {
    margin: 18px 0 22px;
    color: var(--text);
    font-size: clamp(2.1rem, 3.6vw, 3.35rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.07em;
}

.price span {
    color: var(--muted);
    font-size: 1rem;
    letter-spacing: 0;
}

.price-table-wrap {
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th,
.price-table td {
    padding: 18px 22px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.price-table th {
    color: var(--muted);
    background: #f6f9ff;
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.price-table td {
    color: var(--text);
    font-weight: 700;
}

.price-table td:last-child,
.price-table th:last-child {
    text-align: right;
    color: var(--primary);
}

.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step {
    padding: 24px;
    background: #ffffff;
}

.process-step span {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 900;
}

.process-step h3 {
    margin-top: 24px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list details {
    padding: 22px 26px;
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    background: #ffffff;
}

.faq-list summary {
    cursor: pointer;
    color: var(--text);
    font-size: 1.08rem;
    font-weight: 850;
}

.faq-list p {
    margin: 16px 0 0;
}

.contact-section {
    position: relative;
}

.contact-highlight {
    display: grid;
    gap: 4px;
    margin-top: 24px;
    padding: 16px;
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: 20px;
    background: #ecfdf5;
}

.contact-highlight strong {
    color: #065f46;
}

.contact-highlight span {
    color: #31515c;
}

.contact-methods {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.contact-methods a {
    display: inline-flex;
    width: fit-content;
    padding: 10px 14px;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #ffffff;
    font-weight: 750;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.contact-methods a:hover {
    color: var(--primary);
}

.contact-form {
    padding: 28px;
    background: #ffffff;
}

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

.form-wide {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 800;
}

.form-control,
.form-select {
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 16px;
    background-color: #f8fbff;
    color: var(--text);
    padding: 14px 15px;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(37, 99, 235, 0.55);
    box-shadow: 0 0 0 .25rem rgba(37, 99, 235, 0.10);
    background-color: #ffffff;
    color: var(--text);
}

.form-control::placeholder {
    color: rgba(92, 106, 130, 0.62);
}

.character-counter {
    display: flex;
    justify-content: flex-end;
    gap: 2px;
    margin-top: 6px;
    color: var(--muted-2);
    font-size: 0.86rem;
    font-weight: 700;
}

.character-counter.is-near-limit {
    color: #b45309;
}

.character-counter.is-over-limit {
    color: #dc2626;
}

.hidden-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.text-danger {
    display: block;
    margin-top: 6px;
    color: #dc2626 !important;
    font-size: 0.9rem;
}

.custom-alert {
    border-radius: 16px;
}

.form-note {
    margin: 14px 0 0;
    color: var(--muted-2);
    font-size: 0.9rem;
    text-align: center;
}

.site-footer {
    padding: 64px 0 28px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 36px;
}

.footer-brand {
    margin-bottom: 14px;
}

.footer-text {
    max-width: 420px;
    color: var(--muted);
}

.site-footer h3 {
    color: var(--text);
    font-size: 1rem;
    font-weight: 900;
}

.site-footer a {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

.site-footer a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 42px;
    padding-top: 24px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--muted-2);
    font-size: 0.92rem;
}

.simple-page {
    min-height: 70vh;
}

.narrow {
    max-width: 880px;
}

.simple-page h1 {
    margin-bottom: 24px;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 900;
}

.simple-page p {
    color: var(--muted);
}

.policy-card {
    margin: 18px 0;
    padding: 24px;
    background: #ffffff;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199.98px) {
    .hero-title {
        font-size: clamp(2.65rem, 4.8vw, 4.35rem);
    }

    .navbar .nav-link {
        padding-inline: 0.5rem;
        font-size: 0.9rem;
    }
}



@media (max-width: 1199.98px) {
    .prototype-hero-card {
        padding: 24px;
    }

    .product-preview {
        grid-template-columns: 1fr;
    }

    .phone-preview {
        min-height: auto;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        border-radius: 22px;
    }

    .phone-speaker,
    .phone-preview b {
        grid-column: 1 / -1;
    }
}

@media (max-width: 991.98px) {
    .site-header {
        padding: 10px 0;
    }

    .glass-nav {
        border-radius: 20px;
    }

    .navbar-collapse {
        padding: 18px 0 8px;
    }

    .nav-cta {
        display: inline-flex;
        padding-inline: 14px !important;
    }

    .language-menu {
        width: 100%;
        max-width: 260px;
        margin-top: 12px;
    }

    .language-button {
        width: 100%;
    }

    .language-options {
        left: 0;
        right: auto;
        width: 100%;
    }

    .hero {
        min-height: auto;
        padding-top: 58px;
    }

    .hero-showcase {
        min-height: auto;
        margin-top: 16px;
    }

    .floating-pill {
        position: static;
        display: inline-flex;
        margin: 12px 8px 0 0;
    }

    .hero-stats,
    .services-grid,
    .case-grid,
    .pricing-grid,
    .process-grid,
    .footer-grid,
    .prototype-banner,
    .prestige-panel {
        grid-template-columns: 1fr 1fr;
    }

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

    .price-card.featured {
        transform: none;
    }

    .sticky-copy {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .section-pad {
        padding: 76px 0;
    }

    .hero-title {
        font-size: clamp(2.25rem, 9.5vw, 3.45rem);
        letter-spacing: -0.05em;
    }

    .journey-track,
    .prototype-metrics {
        grid-template-columns: 1fr;
    }

    .prototype-card-top h2 {
        font-size: clamp(1.9rem, 7vw, 2.45rem);
    }

    .hero-actions,
    .footer-bottom {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stats,
    .services-grid,
    .case-grid,
    .pricing-grid,
    .process-grid,
    .footer-grid,
    .form-grid,
    .prototype-banner,
    .prototype-panel,
    .prestige-panel,
    .prestige-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        grid-template-columns: 1fr;
    }

    .price-table-wrap {
        overflow-x: auto;
    }

    .price-table {
        min-width: 640px;
    }

    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 991.98px) {
    .prestige-panel {
        padding: 24px;
    }
}

@media (max-width: 575.98px) {
    .prestige-strip {
        padding-top: 18px;
    }

    .prestige-grid div {
        min-height: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 575.98px) {
    :root {
        --radius-lg: 22px;
        --radius-md: 18px;
    }

    .container-xl {
        padding-left: 18px;
        padding-right: 18px;
    }

    .glass-nav {
        width: calc(100% - 16px);
        border-radius: 18px;
    }

    .navbar-brand.brand {
        gap: 8px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .brand-text {
        font-size: 1.2rem;
    }

    .navbar-toggler {
        padding: 6px 8px;
    }

    .navbar-collapse {
        max-height: calc(100vh - 92px);
        overflow-y: auto;
    }

    .navbar .nav-link {
        padding: 0.72rem 0.25rem;
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }

    .language-menu {
        width: 100%;
        max-width: none;
    }

    .language-button {
        width: 100%;
    }

    .section-pad {
        padding: 64px 0;
    }

    .hero {
        padding-top: 40px;
    }

    .hero-title {
        font-size: clamp(2.05rem, 10vw, 2.9rem);
        letter-spacing: -0.047em;
    }

    .hero-lead,
    .section-heading p,
    .contact-copy p,
    .sticky-copy p,
    .prototype-banner p {
        font-size: 1rem;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-heading h2,
    .contact-copy h2,
    .sticky-copy h2,
    .prototype-banner h2 {
        font-size: clamp(1.95rem, 8vw, 2.55rem);
        letter-spacing: -0.05em;
    }

    .hero-offer {
        padding: 14px;
        border-radius: 18px;
    }

    .main-preview,
    .prototype-banner,
    .prestige-panel,
    .service-card,
    .case-card,
    .price-card,
    .process-step,
    .contact-form,
    .policy-card,
    .faq-list details,
    .benefit-item {
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    }

    .showcase-body,
    .hero-showcase .showcase-card,
    .prestige-panel,
    .service-card,
    .case-card,
    .price-card,
    .process-step,
    .benefit-item,
    .policy-card,
    .prototype-banner {
        padding: 20px;
    }

    .prototype-content,
    .prototype-panel,
    .prototype-hero-card,
    .desktop-preview,
    .preview-dashboard {
        padding: 14px;
    }

    .journey-track,
    .prototype-metrics,
    .preview-cards {
        grid-template-columns: 1fr;
    }

    .preview-dashboard {
        grid-template-columns: 1fr;
    }

    .preview-nav {
        grid-template-columns: repeat(3, 1fr);
    }

    .prototype-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .prototype-grid div {
        min-height: auto;
    }

    .hero-stats div {
        padding: 15px;
    }

    .trust-items {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
    }

    .trust-items span {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .case-card {
        min-height: auto;
    }

    .case-tag {
        margin-bottom: 32px;
    }

    .price-top {
        min-height: auto;
    }

    .popular-badge {
        position: static;
        width: fit-content;
        margin-bottom: 14px;
    }

    .price-table th,
    .price-table td {
        padding: 14px 16px;
    }

    .faq-list details {
        padding: 18px 20px;
    }

    .contact-methods a {
        width: 100%;
        justify-content: center;
        border-radius: 18px;
    }

    .contact-form {
        padding: 18px;
    }

    .form-control,
    .form-select {
        padding: 13px 14px;
        border-radius: 14px;
    }

    .site-footer {
        padding-top: 48px;
    }
}

@media (max-width: 380px) {
    .container-xl {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero-title {
        font-size: 1.95rem;
    }

    .showcase-body,
    .prestige-panel,
    .service-card,
    .case-card,
    .price-card,
    .process-step,
    .benefit-item,
    .policy-card,
    .contact-form,
    .prototype-banner {
        padding: 16px;
    }
}


/* Fix5: removed visible decorative badges requested by client. */
.floating-pill,
.popular-badge {
    display: none !important;
}

/* Fix8: softer premium cards and brighter elegant accents. */
:root {
    --heading: #243756;
    --primary: #2f6bff;
    --primary-2: #12b7d8;
    --accent: #18c58f;
    --violet: #7c5cff;
    --coral: #ff7a45;
    --gold: #f6b93b;
    --shadow: 0 26px 80px rgba(47, 107, 255, 0.14);
    --shadow-soft: 0 16px 42px rgba(36, 55, 86, 0.08);
}

body {
    background:
        radial-gradient(circle at 8% 2%, rgba(47, 107, 255, 0.13), transparent 33rem),
        radial-gradient(circle at 90% 4%, rgba(24, 197, 143, 0.13), transparent 30rem),
        radial-gradient(circle at 76% 42%, rgba(255, 122, 69, 0.075), transparent 26rem),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 46%, #f5f9ff 100%);
}

.btn-primary-soft {
    background: linear-gradient(135deg, var(--primary), var(--primary-2) 58%, var(--accent));
    box-shadow: 0 18px 42px rgba(47, 107, 255, 0.24);
}

.nav-cta,
.language-options button:hover,
.language-options button.is-active {
    background: linear-gradient(135deg, rgba(47, 107, 255, 0.10), rgba(24, 197, 143, 0.09));
}

.section-heading::after {
    content: "";
    display: block;
    width: 92px;
    height: 4px;
    margin: 24px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--coral));
    opacity: 0.92;
}

.hero-stats div,
.service-card,
.case-card,
.process-step,
.contact-form,
.policy-card,
.faq-list details,
.benefit-item,
.prototype-banner,
.prestige-panel,
.price-table-wrap {
    border-color: rgba(36, 55, 86, 0.09);
    box-shadow: 0 18px 46px rgba(36, 55, 86, 0.07);
}

.service-card,
.case-card,
.process-step,
.benefit-item,
.faq-list details {
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card:hover,
.case-card:hover,
.process-step:hover,
.benefit-item:hover,
.faq-list details:hover {
    transform: translateY(-4px);
    border-color: rgba(47, 107, 255, 0.18);
    box-shadow: 0 24px 62px rgba(47, 107, 255, 0.12);
}

.service-card:nth-child(1) .icon-pill { background: linear-gradient(135deg, rgba(47, 107, 255, 0.16), rgba(18, 183, 216, 0.18)); }
.service-card:nth-child(2) .icon-pill { background: linear-gradient(135deg, rgba(124, 92, 255, 0.15), rgba(47, 107, 255, 0.12)); }
.service-card:nth-child(3) .icon-pill { background: linear-gradient(135deg, rgba(24, 197, 143, 0.16), rgba(18, 183, 216, 0.12)); }
.service-card:nth-child(4) .icon-pill { background: linear-gradient(135deg, rgba(255, 122, 69, 0.16), rgba(246, 185, 59, 0.14)); }

.case-tag {
    color: #0f766e;
    background: linear-gradient(135deg, rgba(24, 197, 143, 0.15), rgba(18, 183, 216, 0.10));
}

.pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    max-width: 1060px;
    margin-inline: auto;
}

.price-card {
    --card-a: var(--primary);
    --card-b: var(--primary-2);
    isolation: isolate;
    overflow: hidden;
    min-height: 390px;
    padding: 32px;
    border-color: rgba(47, 107, 255, 0.13);
    background:
        radial-gradient(circle at 100% 0%, rgba(47, 107, 255, 0.10), transparent 15rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.92));
    box-shadow: 0 22px 62px rgba(36, 55, 86, 0.09);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.price-card:nth-child(2) {
    --card-a: var(--accent);
    --card-b: var(--primary-2);
    border-color: rgba(24, 197, 143, 0.26);
    background:
        radial-gradient(circle at 100% 0%, rgba(24, 197, 143, 0.16), transparent 15rem),
        linear-gradient(180deg, #ffffff, #f4fbff);
}

.price-card:nth-child(3) {
    --card-a: var(--violet);
    --card-b: var(--primary);
    border-color: rgba(124, 92, 255, 0.18);
    background:
        radial-gradient(circle at 100% 0%, rgba(124, 92, 255, 0.12), transparent 15rem),
        linear-gradient(180deg, #ffffff, #f8faff);
}

.price-card:nth-child(4) {
    --card-a: var(--coral);
    --card-b: var(--gold);
    border-color: rgba(255, 122, 69, 0.18);
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 122, 69, 0.12), transparent 15rem),
        linear-gradient(180deg, #ffffff, #fffaf5);
}

.price-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background: linear-gradient(90deg, var(--card-a), var(--card-b));
}

.price-card::after {
    content: "";
    position: absolute;
    right: -72px;
    bottom: -96px;
    z-index: -1;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(47, 107, 255, 0.12), transparent 68%);
}

.price-card:hover,
.price-card.featured:hover {
    transform: translateY(-6px);
    border-color: rgba(47, 107, 255, 0.24);
    box-shadow: 0 32px 84px rgba(47, 107, 255, 0.15);
}

.price-card.featured {
    transform: none;
    box-shadow: 0 24px 68px rgba(24, 197, 143, 0.13);
}

.price-top {
    position: relative;
    min-height: auto;
    padding-left: 72px;
    margin-bottom: 18px;
}

.price-top::before {
    content: "1";
    position: absolute;
    left: 0;
    top: 2px;
    display: inline-grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--card-a), var(--card-b));
    box-shadow: 0 14px 32px rgba(47, 107, 255, 0.18);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.price-card:nth-child(2) .price-top::before { content: "2"; }
.price-card:nth-child(3) .price-top::before { content: "3"; }
.price-card:nth-child(4) .price-top::before { content: "4"; }

.price-card h3 {
    font-size: clamp(1.45rem, 2.2vw, 1.95rem);
    line-height: 1.15;
    letter-spacing: -0.045em;
}

.price-card p {
    margin-top: 10px;
    max-width: 34rem;
    font-size: 0.98rem;
    line-height: 1.55;
}

.price {
    margin: auto 0 22px;
    color: var(--heading);
    font-size: clamp(2.35rem, 3.6vw, 3.45rem);
    letter-spacing: -0.065em;
}

.price::first-letter {
    letter-spacing: -0.08em;
}

.price span {
    margin-right: 7px;
    color: var(--muted);
    font-size: 0.96rem;
    font-weight: 850;
}

.price-card ul {
    gap: 10px;
    margin-top: 0;
}

.price-card li {
    min-height: 45px;
    padding: 10px 12px 10px 40px;
    border: 1px solid rgba(36, 55, 86, 0.07);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.64);
    color: #334155;
    line-height: 1.35;
}

.price-card li::before {
    left: 14px;
    top: 10px;
    color: var(--card-a);
}

.price-table-wrap {
    max-width: 1060px;
    margin-inline: auto;
}

.price-table th {
    background: linear-gradient(135deg, rgba(47, 107, 255, 0.07), rgba(24, 197, 143, 0.06));
}

.contact-highlight {
    border-color: rgba(24, 197, 143, 0.24);
    background: linear-gradient(135deg, rgba(24, 197, 143, 0.13), rgba(18, 183, 216, 0.09));
}

@media (max-width: 991.98px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
        max-width: none;
    }

    .price-card {
        min-height: 0;
    }
}

@media (max-width: 767.98px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
    }
}

@media (max-width: 575.98px) {
    .price-card {
        padding: 22px;
    }

    .price-top {
        padding-left: 60px;
    }

    .price-top::before {
        width: 46px;
        height: 46px;
        border-radius: 16px;
    }

    .price-card h3 {
        font-size: 1.36rem;
    }

    .price {
        font-size: clamp(2.05rem, 12vw, 2.8rem);
    }
}

/* Safe fallback for decorative pricing circles without color-mix. */
.price-card::after {
    background: radial-gradient(circle, rgba(47, 107, 255, 0.12), transparent 68%);
}
.price-card:nth-child(2)::after {
    background: radial-gradient(circle, rgba(24, 197, 143, 0.13), transparent 68%);
}
.price-card:nth-child(3)::after {
    background: radial-gradient(circle, rgba(124, 92, 255, 0.12), transparent 68%);
}
.price-card:nth-child(4)::after {
    background: radial-gradient(circle, rgba(255, 122, 69, 0.12), transparent 68%);
}

/* Fix10: clearer success state, icon-based steps and brighter elegant accents. */
.step-icon {
    display: inline-grid;
    place-items: center;
    line-height: 1;
    font-style: normal;
}

.step-icon[data-icon]::before {
    content: attr(data-icon);
}

.journey-step .step-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 10px;
    border-radius: 14px;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(47, 107, 255, 0.14), rgba(24, 197, 143, 0.12));
    box-shadow: 0 12px 26px rgba(47, 107, 255, 0.12);
    font-size: 1.1rem;
}

.prestige-grid .step-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(47, 107, 255, 0.13), rgba(255, 122, 69, 0.10));
    box-shadow: 0 12px 28px rgba(36, 55, 86, 0.08);
    font-size: 1.2rem;
}

.prestige-grid b {
    margin-top: 18px;
}

.prototype-points b.step-icon {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 12px 28px rgba(47, 107, 255, 0.16);
    font-size: 1.15rem;
}

.prototype-points div:nth-child(2) b.step-icon {
    background: linear-gradient(135deg, var(--violet), var(--primary));
}

.prototype-points div:nth-child(3) b.step-icon {
    background: linear-gradient(135deg, var(--accent), var(--primary-2));
}

.prototype-points div:nth-child(4) b.step-icon {
    background: linear-gradient(135deg, var(--coral), var(--gold));
}

.benefit-item > .step-icon,
.process-step > .step-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 16px 36px rgba(47, 107, 255, 0.18);
    font-size: 1.25rem;
    font-weight: 900;
}

.benefit-item:nth-child(2) > .step-icon,
.process-step:nth-child(2) > .step-icon {
    background: linear-gradient(135deg, var(--violet), var(--primary));
}

.benefit-item:nth-child(3) > .step-icon,
.process-step:nth-child(3) > .step-icon {
    background: linear-gradient(135deg, var(--accent), var(--primary-2));
}

.benefit-item:nth-child(4) > .step-icon,
.process-step:nth-child(4) > .step-icon {
    background: linear-gradient(135deg, var(--coral), var(--gold));
}

.process-step h3 {
    margin-top: 22px;
}

.price-top::before {
    content: "🌐";
    font-size: 1.08rem;
    letter-spacing: 0;
}

.price-card:nth-child(2) .price-top::before { content: "⚙️"; }
.price-card:nth-child(3) .price-top::before { content: "📱"; }
.price-card:nth-child(4) .price-top::before { content: "🏗️"; }

.service-card,
.case-card,
.price-card,
.process-step,
.benefit-item,
.faq-list details,
.contact-form,
.prototype-banner,
.prestige-panel {
    position: relative;
}

.service-card::before,
.case-card::before,
.process-step::before,
.benefit-item::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(47, 107, 255, 0.86), rgba(24, 197, 143, 0.68), rgba(255, 122, 69, 0.62));
    opacity: 0;
    transition: opacity .22s ease;
}

.service-card:hover::before,
.case-card:hover::before,
.process-step:hover::before,
.benefit-item:hover::before {
    opacity: 1;
}

.prototype-banner {
    background:
        radial-gradient(circle at 0% 0%, rgba(47, 107, 255, 0.13), transparent 25rem),
        radial-gradient(circle at 100% 0%, rgba(24, 197, 143, 0.16), transparent 24rem),
        radial-gradient(circle at 70% 110%, rgba(255, 122, 69, 0.08), transparent 20rem),
        #ffffff;
}

.contact-form {
    overflow: hidden;
    border-color: rgba(47, 107, 255, 0.14);
    background:
        radial-gradient(circle at 100% 0%, rgba(47, 107, 255, 0.08), transparent 18rem),
        radial-gradient(circle at 0% 100%, rgba(24, 197, 143, 0.08), transparent 18rem),
        #ffffff;
}

.success-notice {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
    padding: 18px;
    border: 1px solid rgba(24, 197, 143, 0.28);
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0%, rgba(24, 197, 143, 0.18), transparent 16rem),
        linear-gradient(135deg, rgba(236, 253, 245, 0.98), rgba(239, 246, 255, 0.96));
    box-shadow: 0 20px 50px rgba(24, 197, 143, 0.15);
    transform: translateY(4px);
    opacity: 0;
    animation: successPop .42s ease forwards;
}

.success-notice-icon {
    display: inline-grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--primary-2));
    box-shadow: 0 16px 34px rgba(24, 197, 143, 0.22);
    font-size: 1.45rem;
    font-weight: 950;
}

.success-notice strong {
    display: block;
    color: #065f46;
    font-size: 1.08rem;
    font-weight: 900;
}

.success-notice p {
    margin: 4px 0 0;
    color: #355169;
    font-weight: 650;
    line-height: 1.45;
}

@keyframes successPop {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.trust-items span:nth-child(3n + 1) {
    background: linear-gradient(135deg, rgba(47, 107, 255, 0.10), rgba(18, 183, 216, 0.10));
}

.trust-items span:nth-child(3n + 2) {
    background: linear-gradient(135deg, rgba(24, 197, 143, 0.12), rgba(18, 183, 216, 0.08));
}

.trust-items span:nth-child(3n + 3) {
    background: linear-gradient(135deg, rgba(255, 122, 69, 0.11), rgba(246, 185, 59, 0.10));
}

@media (max-width: 575.98px) {
    .success-notice {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .success-notice-icon {
        margin-inline: auto;
    }
}

/* Fix11: refined typography, horizontal cases rail, colorful accents and submit loading state. */
:root {
    --rose: #f43f5e;
    --indigo: #6366f1;
    --sky: #0ea5e9;
}

body::after {
    content: "";
    position: fixed;
    right: -13rem;
    bottom: -15rem;
    z-index: -3;
    width: 42rem;
    height: 42rem;
    border-radius: 999px;
    background:
        radial-gradient(circle at 35% 35%, rgba(99, 102, 241, 0.17), transparent 34%),
        radial-gradient(circle at 60% 60%, rgba(244, 63, 94, 0.11), transparent 38%),
        radial-gradient(circle at 38% 72%, rgba(14, 165, 233, 0.12), transparent 42%);
    filter: blur(6px);
    pointer-events: none;
}

.hero-title,
.section-heading h2,
.contact-copy h2,
.sticky-copy h2,
.prototype-banner h2,
.service-card h3,
.case-card h3,
.price-card h3,
.process-step h3,
.policy-card h2,
.benefit-item h3,
.price,
.brand-text {
    font-family: Sora, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.eyebrow,
.nav-link,
.btn,
.case-tag,
.language-button,
.price span,
.form-note {
    letter-spacing: 0.01em;
}

.hero-title,
.section-heading h2,
.prototype-banner h2 {
    letter-spacing: -0.055em;
}

.case-scroll-wrap {
    position: relative;
    margin-inline: calc((100vw - min(1220px, calc(100vw - 24px))) / -2);
    padding-inline: calc((100vw - min(1220px, calc(100vw - 24px))) / 2);
    overflow: hidden;
}

.case-scroll-wrap::before,
.case-scroll-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 34px;
    z-index: 2;
    width: min(8vw, 100px);
    pointer-events: none;
}

.case-scroll-wrap::before {
    left: 0;
    background: linear-gradient(90deg, rgba(248, 251, 255, 0.96), rgba(248, 251, 255, 0));
}

.case-scroll-wrap::after {
    right: 0;
    background: linear-gradient(270deg, rgba(248, 251, 255, 0.96), rgba(248, 251, 255, 0));
}

.case-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(290px, 360px);
    gap: 22px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    padding: 10px 8px 22px;
    scrollbar-width: thin;
    scrollbar-color: rgba(47, 107, 255, 0.36) rgba(47, 107, 255, 0.08);
}

.case-scroll::-webkit-scrollbar {
    height: 10px;
}

.case-scroll::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(47, 107, 255, 0.08);
}

.case-scroll::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(47, 107, 255, 0.65), rgba(24, 197, 143, 0.58), rgba(255, 122, 69, 0.56));
}

.case-scroll .case-card {
    scroll-snap-align: start;
    min-height: 312px;
    padding: 26px;
    border: 1px solid rgba(36, 55, 86, 0.09);
    background:
        radial-gradient(circle at 100% 0%, rgba(47, 107, 255, 0.10), transparent 15rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 253, 255, 0.96));
}

.case-scroll .case-card:nth-child(2n) {
    background:
        radial-gradient(circle at 100% 0%, rgba(24, 197, 143, 0.11), transparent 15rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 255, 251, 0.96));
}

.case-scroll .case-card:nth-child(3n) {
    background:
        radial-gradient(circle at 100% 0%, rgba(124, 92, 255, 0.12), transparent 15rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 249, 255, 0.96));
}

.case-scroll .case-card:nth-child(4n) {
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 122, 69, 0.11), transparent 15rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 245, 0.96));
}

.case-icon {
    display: inline-grid;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 19px;
    background: linear-gradient(135deg, rgba(47, 107, 255, 0.14), rgba(24, 197, 143, 0.10));
    box-shadow: 0 15px 34px rgba(36, 55, 86, 0.08);
    font-size: 1.32rem;
}

.case-scroll .case-card:nth-child(3n) .case-icon {
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.15), rgba(47, 107, 255, 0.10));
}

.case-scroll .case-card:nth-child(4n) .case-icon {
    background: linear-gradient(135deg, rgba(255, 122, 69, 0.15), rgba(246, 185, 59, 0.12));
}

.case-scroll .case-tag {
    margin-bottom: 22px;
}

.case-scroll .case-card h3 {
    font-size: 1.35rem;
    line-height: 1.18;
}

.case-scroll .case-card p {
    margin-top: 12px;
    line-height: 1.58;
}

.case-scroll-hint {
    margin: 2px 8px 0;
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 750;
    text-align: center;
}

.btn-primary-soft[data-submit-button] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.45);
    border-top-color: #ffffff;
    border-radius: 999px;
    animation: darsafSpin .72s linear infinite;
}

.contact-form.is-submitting {
    pointer-events: none;
}

.contact-form.is-submitting::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(239, 246, 255, 0.26));
    pointer-events: none;
}

.contact-form.is-submitting .btn-loader {
    display: inline-block;
}

.contact-form.is-submitting .btn-label {
    opacity: 0.92;
}

.contact-form.is-submitting [data-submit-button] {
    cursor: wait;
    filter: saturate(1.08);
}

@keyframes darsafSpin {
    to {
        transform: rotate(360deg);
    }
}

.service-card:nth-child(1),
.benefit-item:nth-child(1) {
    background:
        radial-gradient(circle at 100% 0%, rgba(47, 107, 255, 0.08), transparent 16rem),
        #ffffff;
}

.service-card:nth-child(2),
.benefit-item:nth-child(2) {
    background:
        radial-gradient(circle at 100% 0%, rgba(24, 197, 143, 0.08), transparent 16rem),
        #ffffff;
}

.service-card:nth-child(3),
.benefit-item:nth-child(3) {
    background:
        radial-gradient(circle at 100% 0%, rgba(124, 92, 255, 0.08), transparent 16rem),
        #ffffff;
}

.service-card:nth-child(4),
.benefit-item:nth-child(4) {
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 122, 69, 0.08), transparent 16rem),
        #ffffff;
}

@media (max-width: 767.98px) {
    .case-scroll-wrap::before,
    .case-scroll-wrap::after {
        width: 32px;
    }

    .case-scroll {
        grid-auto-columns: minmax(268px, 82vw);
        gap: 16px;
        padding-bottom: 18px;
    }

    .case-scroll .case-card {
        min-height: 286px;
    }
}

/* Fix12: centered prototype icons, softer typography and restrained italic accents. */
.hero-title,
.prototype-card-top h2,
.section-heading h2,
.prototype-banner h2,
.contact-copy h2,
.sticky-copy h2 {
    font-weight: 800;
}

.service-card h3,
.case-card h3,
.price-card h3,
.process-step h3,
.benefit-item h3,
.preview-title-line b,
.phone-preview b,
.prototype-metrics strong {
    font-weight: 750;
}

.hero-lead,
.section-heading p,
.prototype-card-top p,
.service-card p,
.case-card p,
.price-card p,
.process-step p,
.benefit-item p,
.faq-list p,
.contact-copy p {
    font-weight: 500;
}

.hero-offer p,
.prototype-card-top p,
.contact-highlight span,
.case-scroll-hint {
    font-style: italic;
}

.step-icon,
.step-icon[data-icon]::before,
.journey-step .step-icon,
.prototype-points b.step-icon,
.benefit-item > .step-icon,
.process-step > .step-icon,
.prestige-grid .step-icon {
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", Manrope, sans-serif;
}

.step-icon[data-icon]::before {
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: 1;
    transform: translateY(-0.01em);
}

.journey-step .step-icon {
    display: grid;
    place-items: center;
    padding: 0;
}

.prototype-points b.step-icon {
    display: grid;
    place-items: center;
    padding: 0;
}

.contact-form.is-submitting::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), rgba(239, 246, 255, 0.36), rgba(255, 255, 255, 0.12));
    background-size: 220% 100%;
    animation: darsafFormShine 1.1s linear infinite;
    pointer-events: none;
}

.contact-form.is-submitting [data-submit-button] {
    position: relative;
    z-index: 4;
}

@keyframes darsafFormShine {
    to {
        background-position: -220% 0;
    }
}
