:root {
    --clr-primary: #5b5fea;
    --clr-primary-dark: #4348d0;
    --clr-secondary: #7f56d9;
    --clr-accent: #ff9f43;
    --clr-surface: #ffffff;
    --clr-bg: #f5f7fb;
    --clr-dark: #0b1021;
    --clr-muted: #5f6c8f;
    --clr-border: rgba(92, 104, 224, 0.12);
    --radius-lg: 32px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --shadow-lg: 0 40px 80px -35px rgba(43, 53, 127, 0.45);
    --shadow-md: 0 30px 60px -30px rgba(67, 72, 208, 0.38);
    --shadow-soft: 0 20px 40px -30px rgba(11, 16, 33, 0.25);
    --container-width: min(1150px, 92vw);
    --font-family: 'Manrope', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    margin: 0;
    font-family: var(--font-family);
    background: var(--clr-bg);
    color: var(--clr-dark);
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    width: var(--container-width);
    margin: 0 auto;
}

.hero {
    background: radial-gradient(circle at top right, rgba(95, 101, 234, 0.18), transparent 55%), linear-gradient(135deg, #0c1026 0%, #181f3b 43%, #232b52 100%);
    color: #f5f7fd;
    padding: 48px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: -20% auto auto 40%;
    width: 580px;
    height: 580px;
    background: radial-gradient(circle, rgba(92, 156, 255, 0.23), transparent 70%);
    z-index: 0;
}

.hero__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.brand-inline {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    letter-spacing: 0.02em;
}

.brand-inline__logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.25));
}

.brand-inline__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-inline__text strong {
    font-size: 1.05rem;
    font-weight: 700;
}

.brand-inline__text small {
    font-size: 0.75rem;
    opacity: 0.75;
}

.brand-inline--header .brand-inline__text strong,
.brand-inline--header .brand-inline__text small {
    color: #fff;
}

.brand-inline--footer .brand-inline__text strong {
    color: rgba(235, 238, 255, 0.95);
}

.brand-inline--footer .brand-inline__text small {
    color: rgba(200, 205, 255, 0.7);
}

.brand-inline--header .brand-inline__logo,
.brand-inline--footer .brand-inline__logo {
    width: 52px;
    height: 52px;
}

.hero__logo--small {
    width: 52px;
    height: 52px;
}

.hero__actions {
    display: flex;
    gap: 12px;
}

.btn {
    border: none;
    border-radius: 999px;
    padding: 14px 26px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn--primary {
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
    color: #fff;
    box-shadow: 0 18px 40px -22px rgba(90, 94, 238, 0.6);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 45px -20px rgba(90, 94, 238, 0.7);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.btn--ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.32);
}

.hero__body {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    position: relative;
    z-index: 1;
}

.hero__content h1 {
    font-size: clamp(2.4rem, 4.6vw, 3.6rem);
    line-height: 1.15;
    margin: 18px 0 16px;
    letter-spacing: -0.02em;
}

.hero__content p {
    color: rgba(245, 247, 253, 0.75);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero__cta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 36px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge--accent {
    background: rgba(255, 159, 67, 0.16);
    color: #ffd399;
    border: 1px solid rgba(255, 159, 67, 0.28);
}

.badge--ghost {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(245, 247, 253, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge--accent i,
.badge--ghost i {
    font-size: 1rem;
}

.hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 520px;
}

.metric-card {
    background: rgba(14, 19, 44, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 18px 20px;
    backdrop-filter: blur(12px);
}

.metric-card__value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.metric-card__label {
    display: block;
    font-size: 0.85rem;
    color: rgba(245, 247, 253, 0.65);
}

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

.hero__widget {
    border-radius: 22px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #fff;
}

.hero__widget span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
}

.hero__widget h3 {
    margin: 0;
    font-size: 1.95rem;
    line-height: 1.15;
}

.hero__delta {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.85;
}

.hero__delta--positive {
    color: #50f0a3;
}

.hero__widget--primary {
    background: linear-gradient(135deg, rgba(91, 95, 234, 0.85), rgba(79, 76, 218, 0.9));
    box-shadow: var(--shadow-md);
}

.hero__widget--secondary {
    background: linear-gradient(135deg, rgba(127, 86, 217, 0.85), rgba(91, 95, 234, 0.85));
    box-shadow: var(--shadow-soft);
}

.hero__widget--glass {
    background: rgba(23, 30, 57, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    grid-column: span 2;
    align-items: center;
    flex-direction: row;
    gap: 18px;
}

.hero__widget-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
    font-size: 1.6rem;
}

.section {
    padding: 110px 0;
    position: relative;
}

.section--light {
    background: var(--clr-bg);
}

.section--dark {
    background: #0e1331;
    color: #f3f5ff;
}

.section--dark .section__header p {
    color: rgba(243, 245, 255, 0.7);
}

.section--glass {
    background: linear-gradient(135deg, rgba(91, 95, 234, 0.08), rgba(13, 16, 32, 0.07));
}

.section__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.section__header--center {
    text-align: center;
    align-items: center;
}

.section__header h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin: 0;
    letter-spacing: -0.015em;
}

.section__header p {
    margin: 0;
    max-width: 580px;
    color: var(--clr-muted);
    line-height: 1.7;
}

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

.module-card {
    background: var(--clr-surface);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(91, 95, 234, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.module-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.module-card i {
    font-size: 2rem;
    color: var(--clr-primary);
    margin-bottom: 14px;
}

.module-card h3 {
    margin: 0 0 12px;
    font-size: 1.25rem;
}

.module-card p {
    color: var(--clr-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.module-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--clr-muted);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
}

.differentiator-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 22px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    min-height: 210px;
}

.differentiator-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: rgba(91, 95, 234, 0.22);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    color: #cdd2ff;
    font-size: 1.5rem;
}

.differentiator-card h3 {
    margin: 0 0 12px;
}

.differentiator-card p {
    margin: 0;
    color: rgba(243, 245, 255, 0.72);
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.pricing-card {
    background: var(--clr-surface);
    border-radius: 28px;
    padding: 32px 28px;
    border: 1px solid rgba(91, 95, 234, 0.14);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.pricing-card.highlight::before {
    content: attr(data-highlight);
    position: absolute;
    top: 22px;
    right: -56px;
    transform: rotate(40deg);
    background: linear-gradient(135deg, #ff9f43, #ff7943);
    color: #fff;
    width: 180px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 15px 35px -22px rgba(255, 123, 67, 0.58);
}

.pricing-card__quantity {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--clr-primary-dark);
    font-weight: 600;
}

.pricing-card__price {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0;
}

.pricing-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pricing-card__meta .badge--ghost {
    background: rgba(91, 95, 234, 0.1);
    border-color: rgba(91, 95, 234, 0.18);
    color: var(--clr-primary-dark);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.pricing-card__billing {
    color: var(--clr-muted);
    font-size: 0.9rem;
}

.pricing-card__description {
    color: var(--clr-muted);
    line-height: 1.6;
}

.pricing-card__features {
    margin: 0;
    padding-left: 18px;
    color: var(--clr-muted);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-card__support {
    background: rgba(91, 95, 234, 0.08);
    border-radius: 18px;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--clr-primary-dark);
}

.pricing-card button {
    margin-top: auto;
}

.pricing-note {
    margin-top: 32px;
    color: var(--clr-muted);
    display: inline-flex;
    gap: 8px;
    align-items: center;
    border-radius: 14px;
    padding: 12px 18px;
    background: rgba(95, 101, 234, 0.1);
    border: 1px solid rgba(95, 101, 234, 0.18);
}

.pricing-note i {
    color: var(--clr-primary);
    font-size: 1.2rem;
}

.request-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px;
    align-items: start;
}

.request-info h2 {
    margin: 12px 0 24px;
    font-size: clamp(2rem, 3vw, 2.5rem);
}

.request-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.request-steps li {
    display: flex;
    gap: 16px;
    align-items: center;
    font-weight: 500;
    color: var(--clr-dark);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 16px;
    background: rgba(91, 95, 234, 0.12);
    color: var(--clr-primary);
    font-weight: 700;
    font-size: 1rem;
}

.request-support {
    margin-top: 24px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(91, 95, 234, 0.1);
    color: var(--clr-primary-dark);
    display: flex;
    gap: 12px;
    align-items: center;
    border: 1px solid rgba(91, 95, 234, 0.12);
}

.request-form-card {
    background: var(--clr-surface);
    border-radius: 28px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(91, 95, 234, 0.12);
}

.request-form-card__header h3 {
    margin: 0 0 8px;
}

.request-form-card__header p {
    margin: 0 0 22px;
    color: var(--clr-muted);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--clr-dark);
}

.form-group span {
    color: var(--clr-primary);
}

.form-group input,
.form-group textarea {
    border-radius: 14px;
    border: 1px solid rgba(91, 95, 234, 0.18);
    padding: 14px 16px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 4px rgba(91, 95, 234, 0.12);
}

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

.qr-box {
    margin: 22px 0;
    padding: 20px;
    border-radius: 22px;
    border: 1px dashed rgba(91, 95, 234, 0.28);
    display: flex;
    gap: 18px;
    align-items: center;
    background: rgba(91, 95, 234, 0.08);
}

.qr-box__image {
    width: 140px;
    min-width: 140px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(91, 95, 234, 0.2);
    background: #fff;
}

.qr-box__content h4 {
    margin: 0 0 6px;
}

.qr-box__content code {
    background: rgba(15, 21, 46, 0.08);
    padding: 6px 12px;
    border-radius: 12px;
    display: inline-flex;
    font-size: 0.85rem;
}

.form-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 20px;
}

.form-disclaimer {
    margin-top: 18px;
    font-size: 0.85rem;
    color: var(--clr-muted);
    line-height: 1.5;
}

.form-status {
    margin-top: 16px;
    font-weight: 600;
}

.form-status--success {
    color: #199a67;
}

.form-status--error {
    color: #c63c3c;
}

.trust-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.trust-logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    color: rgba(243, 245, 255, 0.7);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.footer {
    background: #090d1c;
    color: rgba(235, 238, 255, 0.82);
    padding: 64px 0 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 32px;
}

.footer__brand {
    margin-bottom: 18px;
}

.footer__brand span {
    color: #fff;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-weight: 500;
}

.footer__links a {
    color: rgba(235, 238, 255, 0.7);
}

.footer__social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    display: grid;
    place-items: center;
    color: #fff;
}

.footer__bottom {
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: rgba(235, 238, 255, 0.55);
}

@media (max-width: 1080px) {
    .hero__body {
        grid-template-columns: 1fr;
    }

    .hero__metrics {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .hero__visual {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

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

    .trust-grid {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero__actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 300px;
    }
    
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .hero__nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero__cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-group--split {
        grid-template-columns: 1fr;
    }

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

    .trust-logos {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {
    .section {
        padding: 80px 0;
    }
}

