:root {
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --bg-soft-2: #f1f5f9;
    --text: #0f172a;
    --text-soft: #475569;
    --line: #e2e8f0;
    --line-strong: #cbd5e1;
    --accent: #fbbf24;
    --accent-strong: #f59e0b;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --radius-xxl: 48px;
    --radius-xl: 36px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-soft: 0 20px 55px rgba(15, 23, 42, 0.08);
    --shadow-lift: 0 30px 80px rgba(15, 23, 42, 0.13);
    --container: 1220px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

main {
    min-height: 52vh;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

h1 {
    font-family: "Sora", "Manrope", sans-serif;
    font-size: clamp(30px, 4.1vw, 58px);
    font-weight: 800;
}

h2 {
    font-family: "Sora", "Manrope", sans-serif;
    font-size: clamp(25px, 3vw, 44px);
    font-weight: 800;
}

.message-wrap {
    padding-top: 14px;
}

.message {
    border-radius: 14px;
    border: 1px solid var(--line);
    padding: 12px 14px;
    margin-bottom: 10px;
    font-size: 14px;
}

.message-success {
    background: #ecfdf5;
    border-color: #bbf7d0;
}

.message-error {
    background: #fff1f2;
    border-color: #fecdd3;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    height: 38px;
    width: auto;
    border-radius: 11px;
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--accent), var(--accent-strong));
    color: #0b1220;
    font-size: 18px;
    box-shadow: 0 14px 30px rgba(245, 158, 11, 0.34);
}

.brand-name {
    font-family: "Sora", sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav a {
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    border-bottom: 2px solid transparent;
    padding: 8px 0;
    transition: color 0.16s ease, border-color 0.16s ease;
}

.nav a:hover,
.nav a.is-active {
    color: #b45309;
    border-color: #f5c376;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid #dbe2eb;
    background: #fff;
    border-radius: 999px;
    padding: 3px;
}

.lang-switch a {
    min-width: 38px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: #64748b;
    transition: all 0.15s ease;
}

.lang-switch a:hover {
    background: #f8fafc;
    color: #1f2937;
}

.lang-switch a.is-current {
    background: #0f172a;
    color: #fff;
}

.lang-switch a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.35);
}

.nav-demo-link {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    padding: 8px 4px;
}

.nav-demo-link:hover {
    color: #b45309;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid transparent;
    min-height: 42px;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 800;
    transition: all 0.2s ease;
    cursor: pointer;
}

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

.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #111827;
    box-shadow: 0 14px 34px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.36);
}

.btn-dark {
    background: #0f172a;
    color: #fff;
}

.btn-dark:hover {
    background: #111f38;
}

.btn-light {
    background: #fff;
    color: #0f172a;
    border-color: #e2e8f0;
}

.btn-light:hover {
    border-color: #f5c376;
    background: #fffbf4;
}

.btn-light.on-dark {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-light.on-dark:hover {
    background: rgba(255, 255, 255, 0.22);
}

.btn-block {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid #dbe2eb;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #1f2937;
}

.lang-switch-mobile,
.mobile-divider,
.mobile-action-row {
    display: none;
}

.section {
    padding: 88px 0;
}

.section-slate {
    background: var(--bg-soft);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: #fef3c7;
    color: #b45309;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 16px;
}

.section-header {
    margin-bottom: 40px;
    max-width: 820px;
}

.section-header.center {
    margin-inline: auto;
    text-align: center;
}

.section-header p {
    margin: 14px 0 0;
    font-size: 16px;
    color: var(--text-soft);
}

.home-hero {
    position: relative;
    overflow: hidden;
    padding: 66px 0 88px;
}

.hero-bg-blob {
    position: absolute;
    border-radius: 999px;
    filter: blur(76px);
    opacity: 0.45;
    pointer-events: none;
}

.hero-bg-blob-right {
    width: 580px;
    height: 580px;
    right: -130px;
    top: -160px;
    background: #fef3c7;
}

.hero-bg-blob-left {
    width: 420px;
    height: 420px;
    left: -130px;
    bottom: -140px;
    background: #e0f2fe;
}

.home-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 42px;
}

.hero-announcement {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid #fde68a;
    background: #fffbeb;
    color: #b45309;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
}

.hero-announcement .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #f59e0b;
}

.home-hero-subtitle {
    margin: 16px 0 24px;
    font-size: 17px;
    color: var(--text-soft);
    max-width: 60ch;
}

.home-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.home-hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.home-hero-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #475569;
    font-weight: 700;
    font-size: 13px;
}

.home-hero-benefits i {
    color: #10b981;
}

.home-hero-visual {
    position: relative;
}

.hero-image-wrap {
    border-radius: 40px;
    background: #fff;
    padding: 14px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lift);
}

.hero-dashboard-image {
    width: 100%;
    border-radius: 30px;
    max-height: 540px;
    object-fit: cover;
}

.floating-stat {
    position: absolute;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    padding: 16px;
    min-width: 166px;
}

.floating-stat strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 28px;
}

.floating-stat span {
    display: block;
    font-size: 13px;
    color: #64748b;
    font-weight: 700;
}

.floating-stat-right {
    right: -26px;
    top: -22px;
}

.floating-stat-left {
    left: -26px;
    bottom: -20px;
}

.partners-strip {
    padding: 26px 0 32px;
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.partners-head {
    text-align: center;
    margin-bottom: 14px;
}

.partners-head p {
    margin: 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: #8b98aa;
    font-weight: 800;
}

.partners-logo-stage {
    border: 1px solid #e8edf4;
    border-radius: 22px;
    background: rgba(247, 249, 252, 0.8);
    padding: 24px 0;
}

.partners-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.partners-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
}

.partners-marquee-right .partners-marquee-track {
    animation: partners-marquee-right 26s linear infinite;
}

.partners-marquee-group {
    display: flex;
    align-items: center;
    gap: clamp(26px, 3vw, 44px);
    padding-right: clamp(26px, 3vw, 44px);
    flex-shrink: 0;
}

.partner-logo-item {
    min-width: clamp(300px, 26vw, 420px);
    height: clamp(132px, 12vw, 168px);
    padding: 16px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    filter: grayscale(0.2);
    border-radius: 24px;
    transition: opacity 0.2s ease, filter 0.2s ease;
    flex: 0 0 auto;
}

.partner-logo-item:hover,
.partner-logo-item:focus-visible {
    opacity: 1;
    filter: grayscale(0);
    outline: none;
}

.partner-logo-item.is-clone {
    pointer-events: none;
}

.partner-logo-item img {
    width: auto;
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.partners-empty {
    margin: 0;
    text-align: center;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
}

@keyframes partners-marquee-right {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .partners-marquee {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .partners-marquee-track {
        animation: none !important;
    }
}

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

.feature-card {
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: #fff;
    padding: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.feature-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    color: #2563eb;
    font-size: 30px;
    margin-bottom: 20px;
}

.feature-card:nth-child(2n) .feature-icon-box {
    background: #f5f3ff;
    color: #7c3aed;
}

.feature-card:nth-child(3n) .feature-icon-box {
    background: #fef3c7;
    color: #b45309;
}

.feature-card:nth-child(4n) .feature-icon-box {
    background: #ecfeff;
    color: #0e7490;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.feature-card p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    font-weight: 600;
}

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

.screen-card {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.screen-card img {
    width: 100%;
    height: 245px;
    object-fit: cover;
}

.screen-card-meta {
    padding: 20px;
}

.screen-card-meta h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.screen-card-meta p {
    margin: 0;
    color: #64748b;
}

.integration-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.integration-copy > p {
    margin: 14px 0 20px;
    color: #64748b;
    font-size: 18px;
}

.integration-points {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.integration-points li {
    position: relative;
    padding-left: 24px;
    font-weight: 700;
    color: #334155;
}

.integration-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent-strong);
}

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

.integration-card {
    border-radius: 30px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 24px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.07);
}

.integration-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #0f172a;
    font-size: 27px;
    margin-bottom: 16px;
}

.integration-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.integration-card p {
    margin: 0;
    color: #64748b;
    font-weight: 600;
    font-size: 14px;
}

.pricing-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.pricing-page-grid {
    margin-top: 18px;
}

.pricing-preview-card {
    position: relative;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-xxl);
    background: #f8fafc;
    padding: 28px;
    transition: all 0.2s ease;
}

.pricing-preview-card:hover {
    border-color: #f5cf93;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.pricing-preview-card.is-recommended {
    border-color: #fbbf24;
    background: #fff;
    box-shadow: 0 28px 70px rgba(251, 191, 36, 0.22);
}

.recommended-pill {
    display: inline-flex;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 7px 14px;
    border-radius: 999px;
    background: #fbbf24;
    color: #111827;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.recommended-pill.muted {
    background: #111827;
    color: #fff;
}

.pricing-preview-card h3 {
    font-size: 30px;
    margin-bottom: 8px;
}

.plan-range {
    margin: 0 0 18px;
    color: #64748b;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.plan-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
}

.plan-price-row strong {
    font-family: "Sora", sans-serif;
    font-size: 38px;
    line-height: 1;
}

.plan-price-row span {
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-old-price {
    margin: 0;
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 14px;
    font-weight: 700;
}

.plan-discount {
    margin: 6px 0 0;
    color: #b45309;
    font-weight: 800;
    font-size: 13px;
}

.plan-features {
    margin: 18px 0 24px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.plan-features li {
    position: relative;
    padding-left: 27px;
    color: #334155;
    font-weight: 700;
    font-size: 14px;
}

.plan-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #dcfce7;
    color: #16a34a;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pricing-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.duration-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.duration-btn {
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #334155;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.duration-btn.active {
    background: #0f172a;
    color: #fff;
    border-color: #0f172a;
}

.center-action {
    text-align: center;
    margin-top: 24px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #111827;
    font-size: 16px;
    font-weight: 800;
}

.text-link i {
    transition: transform 0.2s ease;
}

.text-link:hover {
    color: #b45309;
}

.text-link:hover i {
    transform: translateX(2px);
}

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

.testimonial-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius-xxl);
    padding: 30px;
    background: #f8fafc;
    transition: all 0.2s ease;
}

.testimonial-card:hover {
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.testimonial-quote-badge {
    position: absolute;
    right: 18px;
    top: -14px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #fbbf24;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 12px 24px rgba(251, 191, 36, 0.38);
}

.stars {
    color: #f59e0b;
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-text {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    color: #334155;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-person img,
.avatar-fallback {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    object-fit: cover;
}

.avatar-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 21px;
    font-weight: 800;
    background: linear-gradient(130deg, #f59e0b, #ea580c);
}

.testimonial-person strong {
    display: block;
    font-size: 16px;
}

.testimonial-person small {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.faq-shell {
    max-width: 920px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    background: #fff;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item.open {
    border-color: #f5cf93;
    box-shadow: 0 16px 40px rgba(251, 191, 36, 0.16);
}

.faq-q {
    width: 100%;
    border: 0;
    background: none;
    text-align: left;
    cursor: pointer;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
}

.faq-q i {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    color: #64748b;
    font-size: 14px;
    transition: all 0.22s ease;
}

.faq-item.open .faq-q i {
    transform: rotate(45deg);
    background: #fbbf24;
    color: #111827;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-a {
    max-height: 430px;
}

.faq-a p {
    margin: 0;
    padding: 0 24px 22px;
    color: #475569;
    font-size: 16px;
    font-weight: 600;
}

.final-cta {
    padding-top: 40px;
}

.final-cta-box {
    border-radius: 54px;
    background: linear-gradient(140deg, #0f172a, #1e293b 58%, #3f2a06);
    color: #fff;
    text-align: center;
    padding: 64px 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.36);
}

.final-cta-icon {
    width: 64px;
    height: 64px;
    border-radius: 24px;
    background: #fbbf24;
    color: #0f172a;
    font-size: 30px;
    margin: 0 auto 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.final-cta-box h2 {
    max-width: 18ch;
    margin: 0 auto 14px;
}

.final-cta-box p {
    margin: 0 auto;
    max-width: 60ch;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.84);
}

.final-cta-actions {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.page-hero {
    padding: 74px 0 24px;
}

.page-hero-centered {
    text-align: center;
}

.page-hero-centered p {
    margin: 20px auto 0;
    max-width: 64ch;
    color: #64748b;
    font-size: 17px;
}

.page-hero-compact {
    padding-bottom: 20px;
}

.demo-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: start;
}

.demo-left p {
    margin: 16px 0 20px;
    color: #64748b;
    font-size: 16px;
}

.demo-benefit-cards {
    display: grid;
    gap: 12px;
}

.demo-benefit-card {
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 24px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.demo-benefit-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #fef3c7;
    color: #b45309;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    flex-shrink: 0;
}

.demo-benefit-card h3 {
    font-size: 18px;
    line-height: 1.45;
}

.demo-form-shell {
    border-radius: 42px;
    border: 1px solid var(--line);
    background: #f8fafc;
    box-shadow: var(--shadow-soft);
    padding: 28px;
}

.demo-form-shell h2 {
    font-size: 30px;
    margin-bottom: 16px;
}

.demo-form-shell form {
    display: grid;
    gap: 8px;
}

.demo-form-shell label {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.input,
.demo-form-shell select,
.demo-form-shell input[type="password"],
.demo-form-shell input[type="text"],
.demo-form-shell input[type="tel"] {
    width: 100%;
    min-height: 48px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    background: #fff;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.input::placeholder,
.demo-form-shell input::placeholder {
    color: #94a3b8;
    font-weight: 600;
}

.input:focus,
.demo-form-shell select:focus,
.demo-form-shell input:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.25);
}

.consent-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    color: #475569;
    margin-top: 8px;
}

.consent-row input {
    width: 18px;
    height: 18px;
}

.field-error {
    margin: 0;
    color: #be123c;
    font-size: 13px;
    font-weight: 700;
}

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

.support-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-xxl);
    background: var(--bg-soft);
    padding: 28px;
    transition: all 0.2s ease;
}

.support-card:hover {
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.support-card-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: #eff6ff;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 18px;
}

.support-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.support-card p {
    margin: 0 0 16px;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
}

.support-empty-state {
    grid-column: 1 / -1;
    border: 2px dashed #f5cf93;
    background: #fffbf4;
    border-radius: 32px;
    padding: 30px;
    text-align: center;
}

.support-empty-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #fef3c7;
    color: #b45309;
    margin: 0 auto 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 29px;
}

.support-empty-state h3 {
    font-size: 30px;
    margin-bottom: 8px;
}

.support-empty-state p {
    margin: 0 0 4px;
    color: #8a5c25;
    font-weight: 700;
}

.support-empty-state small {
    color: #a16207;
    font-weight: 800;
}

.support-quick-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.support-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: #fff;
    padding: 24px;
}

.support-panel h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.support-panel > p {
    margin: 0 0 12px;
    color: #64748b;
}

.support-step-list,
.support-faq-list {
    display: grid;
    gap: 10px;
}

.support-step-item,
.support-faq-item {
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    padding: 14px;
}

.support-step-item h3,
.support-faq-item h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.support-step-item p,
.support-faq-item p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.support-cta-block {
    border-radius: var(--radius-xxl);
    background: linear-gradient(145deg, #0f172a, #1e293b);
    color: #fff;
    text-align: center;
    padding: 50px 22px;
}

.support-cta-block h2 {
    font-size: clamp(32px, 3.8vw, 58px);
    margin-bottom: 10px;
}

.support-cta-block p {
    margin: 0 auto;
    max-width: 56ch;
    color: #cbd5e1;
    font-size: 18px;
}

.support-cta-actions {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

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

.vacancy-card {
    border-radius: var(--radius-xxl);
    border: 1px solid var(--line);
    background: var(--bg-soft);
    padding: 30px;
    transition: all 0.2s ease;
}

.vacancy-card:hover {
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.vacancy-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.vacancy-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #fef3c7;
    color: #b45309;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
}

.vacancy-dept {
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: #fff;
    padding: 7px 12px;
    font-size: 11px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.vacancy-card h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.vacancy-card > p {
    margin: 0 0 14px;
    color: #64748b;
    font-weight: 600;
}

.vacancy-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.vacancy-meta-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #475569;
    font-size: 13px;
    font-weight: 800;
}

.vacancy-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
}

.vacancy-columns h3 {
    font-size: 20px;
    margin-bottom: 7px;
}

.vacancy-columns p {
    margin: 0;
    color: #475569;
    font-size: 14px;
}

.vacancy-actions {
    padding-top: 12px;
    border-top: 1px solid #dbe2eb;
    display: flex;
    justify-content: flex-end;
}

.legal-shell {
    max-width: 900px;
    border: 1px solid var(--line);
    border-radius: 32px;
    padding: 30px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.legal-shell p,
.legal-shell li,
.legal-shell h2,
.legal-shell h3,
.legal-shell h4 {
    color: #334155;
}

.pricing-benefit-shell {
    border-radius: 58px;
    background: #0f172a;
    padding: 46px 24px;
    color: #fff;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.pricing-benefit-item {
    text-align: center;
}

.pricing-benefit-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    margin: 0 auto 14px;
    background: rgba(255, 255, 255, 0.11);
    color: #fbbf24;
    font-size: 29px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pricing-benefit-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.pricing-benefit-item p {
    margin: 0;
    color: #cbd5e1;
    font-size: 14px;
}

.site-footer {
    margin-top: 96px;
    padding: 70px 0 20px;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
}

.footer-inner {
    max-width: 1240px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 28px;
}

.footer-brand-block .brand {
    margin-bottom: 12px;
}

.footer-brand-block p {
    margin: 0 0 16px;
    color: #64748b;
    max-width: 36ch;
    font-weight: 600;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid #dbe2eb;
    background: #fff;
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: all 0.2s ease;
}

.footer-socials a:hover {
    border-color: #f5cf93;
    color: #b45309;
    background: #fffbf4;
}

.site-footer h4 {
    margin: 0 0 12px;
    font-size: 20px;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.site-footer li,
.site-footer a {
    color: #64748b;
    font-weight: 600;
    font-size: 14px;
}

.site-footer a:hover {
    color: #b45309;
}

.footer-cta-buttons {
    margin-top: 16px;
    display: grid;
    gap: 8px;
}

.footer-bottom {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid #dbe2eb;
}

.footer-bottom p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
}

.empty-note {
    border-radius: 16px;
    border: 1px dashed #f5cf93;
    background: #fffbf4;
    color: #a16207;
    padding: 16px;
    font-weight: 700;
}

.reveal-up {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

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

@media (max-width: 1180px) {
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .screen-grid,
    .pricing-preview-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

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

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

@media (max-width: 980px) {
    .home-hero-grid,
    .integration-layout,
    .demo-layout,
    .support-quick-grid {
        grid-template-columns: 1fr;
    }

    .floating-stat {
        position: static;
        margin-top: 12px;
    }

    .home-hero-visual {
        display: grid;
        gap: 10px;
    }

    .nav-login-btn,
    .nav-demo-link {
        display: none;
    }

    .section {
        padding: 72px 0;
    }

    .final-cta-box {
        border-radius: 38px;
    }

    .partners-marquee-right .partners-marquee-track {
        animation-duration: 23s;
    }

    .partner-logo-item {
        min-width: 260px;
        height: 116px;
        padding: 14px 20px;
    }

    .partner-logo-item img {
        max-height: 80px;
    }
}

@media (max-width: 860px) {
    .menu-toggle {
        display: inline-flex;
    }

    .nav {
        display: none;
        position: absolute;
        left: 16px;
        right: 16px;
        top: 86px;
        border: 1px solid #dbe2eb;
        border-radius: 16px;
        background: #fff;
        box-shadow: var(--shadow-soft);
        padding: 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        z-index: 45;
    }

    .nav.is-open {
        display: flex;
    }

    .mobile-divider {
        display: block;
        width: 100%;
        height: 1px;
        background: #e2e8f0;
        margin: 4px 0;
    }

    .lang-switch-mobile {
        display: inline-flex;
    }

    .mobile-action-row {
        display: grid;
        width: 100%;
        gap: 8px;
    }

    .nav-actions .lang-switch {
        display: none;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .section {
        padding: 60px 0;
    }

    .screen-grid,
    .feature-grid,
    .integration-grid,
    .pricing-preview-grid,
    .testimonial-grid,
    .support-grid,
    .pricing-benefit-shell,
    .footer-grid,
    .vacancy-columns,
    .pricing-actions {
        grid-template-columns: 1fr;
    }

    .pricing-preview-card,
    .feature-card,
    .testimonial-card,
    .support-card,
    .vacancy-card,
    .demo-form-shell,
    .legal-shell {
        border-radius: 26px;
        padding: 22px;
    }

    .hero-image-wrap {
        border-radius: 24px;
    }

    .hero-dashboard-image {
        border-radius: 18px;
    }

    .faq-q {
        font-size: 17px;
        padding: 18px;
    }

    .faq-a p {
        padding: 0 18px 16px;
    }

    .site-footer {
        margin-top: 70px;
        padding-top: 56px;
    }

    .partners-strip {
        padding: 20px 0 24px;
    }

    .partners-head {
        margin-bottom: 10px;
    }

    .partners-head p {
        letter-spacing: 1.4px;
    }

    .partners-logo-stage {
        border-radius: 16px;
        padding: 16px 0;
    }

    .partners-marquee {
        -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
        mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
    }

    .partners-marquee-right .partners-marquee-track {
        animation-duration: 18s;
    }

    .partners-marquee-group {
        gap: 16px;
        padding-right: 16px;
    }

    .partner-logo-item {
        min-width: 208px;
        height: 92px;
        border-radius: 18px;
        padding: 10px 16px;
    }

    .partner-logo-item img {
        max-height: 64px;
    }

    .partners-empty {
        font-size: 13px;
    }
}
