:root {
    --primary: #2864ff;
    --primary-dark: #0e40d6;
    --secondary: #6b4bff;
    --accent: #27c2ff;
    --bg: #f5f7ff;
    --bg-soft: #f9faff;
    --nav-text: #1f2937;
    --text: #101828;
    --muted: #505a6f;
    --white: #ffffff;
    --border: rgba(255, 255, 255, 0.22);
    --shadow-soft: 0 24px 60px rgba(36, 79, 184, 0.16);
    --shadow-card: 0 16px 42px rgba(15, 23, 42, 0.11);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Montserrat", "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
    background: rgba(245, 247, 255, 0.85);
    border-bottom: 1px solid rgba(40, 100, 255, 0.1);
    box-shadow: 0 8px 30px rgba(40, 100, 255, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

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

.brand-logo {
    height: 95px;
    width: auto;
    display: block;
}

.footer-logo {
    height: 80px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.main-nav {
    display: flex;
    gap: 1.5rem;
    font-weight: 600;
    color: var(--nav-text);
    letter-spacing: 0.02em;
    flex: 1 1 auto;
    justify-content: center;
    flex-wrap: nowrap;
}

.main-nav a {
    position: relative;
    padding: 0.35rem 0;
    transition: color 0.25s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--primary);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.lang-toggle {
    border: 1px solid rgba(40, 100, 255, 0.35);
    background: rgba(255, 255, 255, 0.65);
    color: var(--primary);
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-toggle:hover {
    border-color: var(--primary);
    background: var(--white);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.98rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: 0 12px 30px rgba(74, 60, 255, 0.35);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(74, 60, 255, 0.45);
}

.btn.outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(74, 60, 255, 0.4);
}

.btn.outline:hover {
    border-color: var(--primary);
    background: rgba(74, 60, 255, 0.08);
}

.btn.ghost {
    background: rgba(74, 60, 255, 0.08);
    color: var(--primary);
}

.btn.ghost:hover {
    background: rgba(74, 60, 255, 0.18);
}

.btn.disabled {
    background: #c7c9d8;
    color: #f4f4f8;
    pointer-events: none;
    box-shadow: none;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 7rem 0 6rem;
    background: linear-gradient(130deg, rgba(40, 100, 255, 0.12), rgba(39, 194, 255, 0.18));
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.55;
    pointer-events: none;
}

.hero::before {
    top: -220px;
    left: -120px;
    background: rgba(40, 100, 255, 0.45);
}

.hero::after {
    right: -160px;
    bottom: -200px;
    background: rgba(39, 194, 255, 0.45);
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.hero-copy {
    position: relative;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.15em;
    background: rgba(74, 60, 255, 0.1);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 3vw + 1rem, 3.4rem);
    margin: 0 0 1.25rem;
    line-height: 1.25;
    color: #070b33;
}

.hero p {
    max-width: 520px;
    color: var(--muted);
    margin: 0 0 2.25rem;
    font-size: 1.075rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-stats li {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    padding: 1.25rem 1rem;
    box-shadow: 0 16px 40px rgba(40, 100, 255, 0.14);
    display: grid;
    gap: 0.4rem;
    text-align: left;
}

.hero-stats .stat {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-stats .label {
    color: var(--muted);
    font-size: 0.9rem;
}

.hero-art {
    position: relative;
    display: grid;
    gap: 1.5rem;
    justify-items: end;
}

.glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 22px;
    padding: 1.8rem;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    color: var(--text);
}

.glass-card.large {
    width: min(340px, 100%);
}

.glass-card.large h3 {
    margin: 0 0 1rem;
    font-size: 1.15rem;
    color: var(--primary);
}

.glass-card.large ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.glass-card.small {
    width: 230px;
    padding: 1.4rem;
    margin-right: 2.5rem;
}

.glass-card .badge {
    display: inline-flex;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: rgba(74, 60, 255, 0.12);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.78rem;
    margin-bottom: 0.75rem;
}

.glass-card.small p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.hero-blur {
    position: absolute;
    inset: auto auto -120px 50%;
    width: 520px;
    height: 520px;
    transform: translateX(-50%);
    background: radial-gradient(circle at center, rgba(0, 194, 255, 0.4), transparent 70%);
    filter: blur(90px);
    pointer-events: none;
}

.section {
    padding: 5rem 0;
}

.section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #070b33;
}

.section-lead {
    text-align: center;
    margin: 0 auto 3rem;
    max-width: 640px;
    color: var(--muted);
    font-size: 1.05rem;
}

.services {
    background: var(--white);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
}

.service-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(246, 248, 255, 0.95));
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(74, 60, 255, 0.12), rgba(0, 194, 255, 0.25));
    color: var(--primary);
    font-weight: 700;
}

.service-card h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #161b4d;
}

.service-card p {
    margin: 0;
    color: var(--muted);
}

.card-link {
    font-weight: 600;
    color: var(--primary);
}

.feature-block {
    background: var(--bg-soft);
}

.feature-block.alternate {
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    align-items: center;
}

.feature-media {
    position: relative;
}

.mockup-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.4rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(74, 60, 255, 0.08);
    display: grid;
    gap: 1.2rem;
    max-width: 360px;
}

.mockup-card span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.mockup-card strong {
    font-size: 1.25rem;
    color: #161b4d;
}

.mockup-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
    color: var(--muted);
}

.feature-copy h2 {
    text-align: left;
    margin-bottom: 1.2rem;
}

.feature-copy p {
    color: var(--muted);
    margin-bottom: 1.8rem;
}

.bullet-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
    margin-bottom: 2rem;
}

.bullet-list h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    color: #161b4d;
}

.bullet-list p {
    margin: 0;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem;
    display: grid;
    gap: 0.9rem;
    color: var(--muted);
}

.check-list li::before {
    content: "✔";
    margin-right: 0.6rem;
    color: var(--primary);
    font-weight: 700;
}

.feature-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-media.cards {
    display: grid;
    gap: 1.5rem;
    justify-items: start;
}

.link-card {
    background: linear-gradient(135deg, rgba(74, 60, 255, 0.12), rgba(0, 194, 255, 0.12));
    border-radius: 18px;
    padding: 1.6rem;
    min-width: 240px;
    box-shadow: var(--shadow-soft);
}

.link-card.secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(108, 80, 255, 0.08));
}

.link-card strong {
    display: block;
    margin: 0.75rem 0 0.35rem;
    font-size: 1.3rem;
}

.link-card .status {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.85rem;
    background: rgba(74, 60, 255, 0.16);
    color: var(--primary);
}

.link-card .status.success {
    background: rgba(16, 185, 129, 0.18);
    color: #047857;
}

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

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.6rem;
}

.industry-card {
    background: var(--white);
    border-radius: 18px;
    padding: 1.9rem 1.6rem;
    box-shadow: var(--shadow-card);
    color: var(--muted);
}

.industry-card h3 {
    margin: 0 0 0.8rem;
    color: #161b4d;
}

.advantages {
    background: var(--white);
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    align-items: center;
}

.adv-copy h2 {
    text-align: left;
    margin-bottom: 1.2rem;
}

.adv-copy p {
    margin-bottom: 2rem;
    color: var(--muted);
}

.icon-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--muted);
}

.icon-list .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(74, 60, 255, 0.12);
    color: var(--primary);
    font-weight: 700;
}

.adv-metrics {
    display: grid;
    gap: 1.5rem;
}

.metric-card {
    background: linear-gradient(135deg, rgba(74, 60, 255, 0.12), rgba(0, 194, 255, 0.18));
    border-radius: 18px;
    padding: 1.5rem 1.75rem;
    color: #161b4d;
    box-shadow: var(--shadow-soft);
}

.metric-card strong {
    font-size: 2rem;
    display: block;
    margin-top: 0.5rem;
    color: var(--primary);
}

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

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.compliance-copy h2 {
    text-align: left;
    margin-bottom: 1.2rem;
}

.compliance-copy p {
    margin-bottom: 1.5rem;
    color: var(--muted);
}

.compliance-card {
    background: linear-gradient(160deg, rgba(74, 60, 255, 0.16), rgba(0, 194, 255, 0.08));
    border-radius: 20px;
    padding: 2.2rem;
    box-shadow: var(--shadow-soft);
    color: #161b4d;
}

.compliance-card p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.process {
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
}

.step {
    background: var(--bg-soft);
    border-radius: 18px;
    padding: 1.8rem 1.5rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    font-weight: 700;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
}

.step h3 {
    margin: 0 0 0.6rem;
    color: #161b4d;
}

.step p {
    margin: 0;
    color: var(--muted);
}

.contact {
    background: linear-gradient(135deg, rgba(74, 60, 255, 0.08), rgba(0, 194, 255, 0.08));
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    align-items: start;
}

.contact-intro h2 {
    text-align: left;
    margin-bottom: 1.25rem;
}

.contact-intro p {
    color: var(--muted);
    margin-bottom: 2rem;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.contact-info a {
    text-decoration: underline;
}

.contact-info h4 {
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-form {
    background: var(--white);
    border-radius: 24px;
    padding: 2.4rem 2rem;
    box-shadow: var(--shadow-card);
    display: grid;
    gap: 1.2rem;
}

.contact-form label {
    display: grid;
    gap: 0.5rem;
    color: var(--muted);
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 0.95rem;
    border-radius: 12px;
    border: 1px solid rgba(74, 60, 255, 0.18);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 60, 255, 0.15);
}

.login {
    background: var(--white);
    text-align: center;
}

.login-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 560px;
    margin: 0 auto;
}

.login-box p {
    color: var(--muted);
    margin: 0;
}

.site-footer {
    background: #0c1031;
    color: rgba(226, 232, 255, 0.86);
    padding: 3rem 0 2.2rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.footer-brand .brand {
    display: block;
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.footer-brand p {
    color: rgba(226, 232, 255, 0.75);
    margin: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links a {
    color: rgba(226, 232, 255, 0.9);
}

.footer-meta {
    display: flex;
        flex-direction: column;
    gap: 0.45rem;
    font-size: 0.92rem;
    color: rgba(226, 232, 255, 0.7);
    }
.footer-disclaimer {
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(226, 232, 255, 0.6);
}

/* Responsive rules */
@media (max-width: 1024px) {
    .main-nav {
        gap: 0.9rem;
        font-size: 0.95rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-copy {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .hero p {
        max-width: none;
    }

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

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

    .hero-art {
        justify-items: center;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
    }

    .brand-logo {
        height: 76px;
    }

    .footer-logo {
        height: 65px;
    }

    .hero {
        padding: 5rem 0 4rem;
    }

    .cards-grid,
    .industry-grid,
    .process-steps,
    .advantage-grid,
    .compliance-grid,
    .contact-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .glass-card.small {
        margin-right: 0;
    }

    .hero-stats li {
        align-items: center;
    }

    .section {
        padding: 4rem 0;
    }
}

@media (max-width: 520px) {
    .hero-stats {
        gap: 1rem;
    }

    .header-inner {
        gap: 1rem;
    }

    .hero-actions {
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
    }

    .step {
        padding: 1.5rem 1.2rem;
    }
}

