:root {
    --deep: #092B8C;
    --blue: #1757FF;
    --violet: #6426D9;
    --purple: #9525CF;
    --magenta: #B01BA9;
    --dark: #070B19;
    --light: #F6F8FC;
    --white: #FFFFFF;
    --text: #111827;
    --muted: #64748B;
    --line: rgba(100, 116, 139, .18);
    --grad: linear-gradient(135deg, var(--blue), var(--violet) 58%, var(--magenta));
    --shadow: 0 24px 80px rgba(7, 11, 25, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--white);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
h1, h2, h3 { font-family: "Space Grotesk", Inter, sans-serif; letter-spacing: 0; }
h1 { font-size: clamp(3rem, 7vw, 6.4rem); line-height: .93; font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1; font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { color: var(--muted); line-height: 1.75; }

.container { max-width: 1180px; }
.section { padding: 110px 0; position: relative; }
.muted-section, .tech-strip, .packages-section { background: var(--light); }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--blue);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .78rem;
}
.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--grad);
    border-radius: 999px;
}
.btn {
    border-radius: 999px;
    font-weight: 800;
    padding: .82rem 1.22rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    border: 0;
}
.btn-primary {
    background: var(--grad);
    box-shadow: 0 16px 38px rgba(23, 87, 255, .28);
}
.btn-primary:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-glass {
    color: var(--white);
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(16px);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
    padding: 14px 0;
}
.site-header.is-scrolled {
    background: rgba(7, 11, 25, .88);
    box-shadow: 0 18px 50px rgba(7, 11, 25, .22);
    backdrop-filter: blur(18px);
    padding: 6px 0;
}
.navbar-brand {
    background: rgba(255,255,255,.96);
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: 0 18px 40px rgba(7, 11, 25, .18);
}
.navbar-brand img { object-fit: contain; display: block; }
.nav-link {
    color: rgba(255,255,255,.86);
    font-weight: 700;
    font-size: .92rem;
    padding: .6rem .72rem !important;
}
.nav-link:hover { color: var(--white); }
.nav-dropdown {
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
    background: rgba(7, 11, 25, .96);
    padding: 10px;
    box-shadow: 0 22px 60px rgba(7,11,25,.28);
    backdrop-filter: blur(18px);
}
.nav-dropdown .dropdown-item {
    color: rgba(255,255,255,.82);
    border-radius: 6px;
    font-weight: 800;
    padding: 10px 12px;
}
.nav-dropdown .dropdown-item:hover,
.nav-dropdown .dropdown-item:focus {
    color: var(--white);
    background: rgba(255,255,255,.1);
}
.nav-section-label {
    margin: 18px 0 6px;
    color: rgba(255,255,255,.45);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.language-switch {
    color: rgba(255,255,255,.5);
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-weight: 800;
}
.language-switch a { color: rgba(255,255,255,.72); }
.language-switch a.active { color: var(--white); }
.navbar-toggler {
    color: var(--white);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 8px;
    font-size: 1.6rem;
}
.mobile-panel {
    background: #080d22;
    color: var(--white);
}
.mobile-panel .nav-link { color: var(--white); font-size: 1.1rem; }

.hero-section, .page-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 80px;
    color: var(--white);
    background:
        radial-gradient(circle at 18% 18%, rgba(23,87,255,.34), transparent 28%),
        radial-gradient(circle at 78% 22%, rgba(176,27,169,.32), transparent 30%),
        linear-gradient(135deg, #070B19 0%, #0B1432 48%, #091B66 100%);
    overflow: hidden;
    position: relative;
}
.hero-section::before, .page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, #000, transparent 86%);
}
.hero-grid, .split-hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 70px;
    align-items: center;
}
.hero-copy p, .page-hero p { color: rgba(255,255,255,.76); font-size: 1.12rem; max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0; }
.trust-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-pills span {
    border: 1px solid rgba(255,255,255,.16);
    color: rgba(255,255,255,.86);
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    font-size: .9rem;
}
.trust-pills i { color: #8BCBFF; margin-right: 6px; }

.hero-visual {
    min-height: 580px;
    position: relative;
}
.glass-card, .mock-dashboard {
    background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 30px 90px rgba(0,0,0,.36);
    backdrop-filter: blur(18px);
}
.mock-dashboard {
    position: absolute;
    top: 80px;
    left: 10px;
    right: 90px;
    border-radius: 8px;
    padding: 24px;
}
.mock-top { display: flex; gap: 8px; margin-bottom: 24px; }
.mock-top span { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.45); }
.metric-row { display: flex; justify-content: space-between; font-size: 2rem; }
.metric-row em { color: #8BCBFF; font-style: normal; }
.chart-bars { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; height: 130px; align-items: end; margin: 26px 0; }
.chart-bars span { border-radius: 8px 8px 0 0; background: var(--grad); min-height: 35%; }
.chart-bars span:nth-child(2) { min-height: 76%; }
.chart-bars span:nth-child(3) { min-height: 52%; }
.chart-bars span:nth-child(4) { min-height: 92%; }
.chart-bars span:nth-child(5) { min-height: 65%; }
.code-card {
    background: rgba(7,11,25,.76);
    border-radius: 8px;
    padding: 16px;
    display: grid;
    gap: 8px;
    color: #9DEBFF;
}
.phone-mock {
    position: absolute;
    width: 175px;
    height: 335px;
    right: 5px;
    top: 180px;
    border-radius: 32px;
    padding: 12px;
    background: #10172f;
    box-shadow: var(--shadow);
}
.phone-screen {
    height: 100%;
    border-radius: 24px;
    background: linear-gradient(160deg, #12245e, #651bc2);
    padding: 28px 18px;
    display: grid;
    align-content: start;
    gap: 14px;
}
.phone-screen div { height: 28px; border-radius: 8px; background: rgba(255,255,255,.18); }
.app-dot { width: 36px; height: 36px; border-radius: 50%; background: #fff; display: block; }
.node-orbit {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, #1757FF 0 10px, transparent 11px),
        radial-gradient(circle at 44% 7%, #6426D9 0 16px, transparent 17px),
        radial-gradient(circle at 78% 22%, #9525CF 0 12px, transparent 13px),
        radial-gradient(circle at 34% 86%, #6426D9 0 18px, transparent 19px);
    opacity: .9;
}
.node-orbit::before, .node-orbit::after {
    content: "";
    position: absolute;
    border: 6px solid rgba(123, 65, 255, .78);
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
}
.node-orbit::before { width: 260px; height: 260px; left: 0; top: 0; transform: rotate(-20deg); }
.node-orbit::after { width: 330px; height: 330px; right: 20px; bottom: 20px; transform: rotate(24deg); }
.floating-chip {
    position: absolute;
    background: rgba(255,255,255,.92);
    color: var(--text);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
    box-shadow: var(--shadow);
}
.chip-a { left: 0; bottom: 80px; }
.chip-b { right: 40px; top: 95px; }
.chip-c { right: 80px; bottom: 30px; }

.page-hero.compact { min-height: 520px; text-align: center; }
.page-hero.compact .container { position: relative; z-index: 1; max-width: 900px; }
.page-hero h1 { font-size: clamp(2.6rem, 5vw, 5rem); }

.section-intro {
    max-width: 760px;
    margin: 0 auto 54px;
    text-align: center;
}
.section-intro p { font-size: 1.06rem; }
.tech-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 14px;
}
.tech-grid span {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px 10px;
    text-align: center;
    font-weight: 900;
    color: var(--deep);
    box-shadow: 0 14px 40px rgba(7,11,25,.06);
}
.service-grid, .package-grid, .portfolio-grid, .capability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.service-card, .pricing-card, .portfolio-card, .contact-form, .contact-card, .checkout-form, .purchase-summary, .advanced-box, .disclaimer-box, .capability {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 16px 60px rgba(7,11,25,.08);
}
.service-card {
    padding: 30px;
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: "";
    position: absolute;
    inset: auto -30px -45px auto;
    width: 120px;
    height: 120px;
    border: 18px solid rgba(23,87,255,.08);
    border-radius: 50%;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.icon-badge {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--grad);
    color: var(--white);
    font-size: 1.45rem;
    margin-bottom: 22px;
}
.service-card a, .portfolio-card a { color: var(--blue); font-weight: 900; }

.feature-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 60px;
    align-items: center;
}
.feature-panel, .solution-visual, .web-showcase, .phone-showcase {
    min-height: 390px;
    border-radius: 8px;
    background: linear-gradient(135deg, #091431, #0e2789);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.feature-panel i, .solution-visual i {
    position: absolute;
    left: 42px;
    top: 42px;
    color: var(--white);
    font-size: 4rem;
    z-index: 1;
}
.panel-lines {
    position: absolute;
    left: 42px;
    right: 42px;
    bottom: 50px;
    display: grid;
    gap: 14px;
}
.panel-lines span {
    height: 22px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
}
.panel-lines span:nth-child(2) { width: 76%; }
.panel-lines span:nth-child(3) { width: 88%; }
.panel-lines span:nth-child(4) { width: 54%; }
.panel-nodes b, .solution-visual span {
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--grad);
    box-shadow: 0 0 35px rgba(149,37,207,.55);
}
.panel-nodes b:nth-child(1), .solution-visual span:nth-child(2) { right: 80px; top: 70px; }
.panel-nodes b:nth-child(2), .solution-visual span:nth-child(3) { right: 170px; top: 180px; width: 28px; height: 28px; }
.panel-nodes b:nth-child(3), .solution-visual span:nth-child(4) { right: 60px; bottom: 80px; width: 78px; height: 78px; }
.panel-nodes b:nth-child(4) { left: 48%; top: 70px; width: 22px; height: 22px; }

.timeline {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 14px;
}
.timeline-item {
    border-top: 3px solid var(--blue);
    padding-top: 18px;
}
.timeline-item span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--grad);
    color: var(--white);
    font-weight: 900;
    margin-bottom: 16px;
}
.timeline-item p { font-size: .92rem; }

.package-note { text-align: center; font-weight: 800; color: var(--deep); margin-top: -30px; margin-bottom: 32px; }
.package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 1040px; margin: 0 auto; align-items: start; }
.pricing-card { padding: 34px; position: relative; }
.pricing-card.is-featured {
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, var(--grad) border-box;
    transform: translateY(-18px);
}
.recommended {
    position: absolute;
    top: 18px;
    right: 18px;
    color: var(--white);
    background: var(--grad);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: .72rem;
    font-weight: 900;
}
.price span { font-size: 2.6rem; font-weight: 900; color: var(--deep); }
.price small { margin-left: 8px; color: var(--muted); font-weight: 800; }
.pricing-card ul { list-style: none; padding: 0; display: grid; gap: 10px; margin: 24px 0; }
.pricing-card li { display: flex; gap: 10px; color: #334155; }
.pricing-card li i { color: var(--blue); }
.totals {
    display: grid;
    gap: 8px;
    background: var(--light);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 18px;
}
.totals strong { color: var(--deep); }
.disclaimer-box, .advanced-box { max-width: 1040px; margin: 28px auto 0; padding: 28px; }
.disclaimer-box { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; }
.disclaimer-box p { margin: 0; }
.disclaimer-box i { color: var(--blue); margin-right: 8px; }

.filter-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter-btn {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--text);
    padding: 9px 14px;
    font-weight: 800;
}
.filter-btn.active, .filter-btn:hover { background: var(--dark); color: var(--white); }
.portfolio-card { overflow: hidden; }
.portfolio-visual {
    min-height: 190px;
    background:
        radial-gradient(circle at 20% 26%, rgba(255,255,255,.45) 0 14px, transparent 15px),
        radial-gradient(circle at 66% 44%, rgba(255,255,255,.3) 0 24px, transparent 25px),
        var(--grad);
    display: flex;
    align-items: end;
    padding: 18px;
}
.portfolio-visual span {
    background: rgba(255,255,255,.92);
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 900;
}
.portfolio-body { padding: 24px; }
.portfolio-body small { color: var(--blue); font-weight: 900; }
.portfolio-body b { display: block; color: var(--deep); margin-bottom: 12px; }
details { margin: 14px 0; }
summary { cursor: pointer; font-weight: 900; }

.faq-accordion { max-width: 900px; margin: 0 auto; }
.accordion-item {
    border: 1px solid var(--line) !important;
    border-radius: 8px !important;
    overflow: hidden;
    margin-bottom: 12px;
}
.accordion-button { font-weight: 900; }
.accordion-button:not(.collapsed) { background: #eef4ff; color: var(--deep); }

.form-layout, .checkout-grid {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 34px;
    align-items: start;
}
.form-copy, .contact-card, .purchase-summary { position: sticky; top: 120px; }
.contact-form, .checkout-form, .contact-card, .purchase-summary { padding: 30px; }
label { display: grid; gap: 8px; font-weight: 800; color: #263247; }
input, select, textarea {
    width: 100%;
    border: 1px solid #d9e1ee;
    border-radius: 8px;
    padding: 13px 14px;
    font: inherit;
    outline: 0;
    background: #fff;
}
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(23,87,255,.12); }
.check-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-weight: 700;
}
.check-line input { width: auto; margin-top: 5px; }
.hp-field { position: absolute; left: -9999px; }
.form-status { display: none; border-radius: 8px; padding: 12px; margin-bottom: 16px; font-weight: 800; }
.form-status.success { display: block; background: #e8fff1; color: #146c38; }
.form-status.error { display: block; background: #fff1f2; color: #b42318; }
.contact-card a { display: flex; gap: 10px; align-items: center; color: var(--blue); font-weight: 900; margin: 12px 0; }
.protected-contact {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 22px 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--light);
}
.protected-contact i {
    color: var(--blue);
    font-size: 1.35rem;
}
.protected-contact p { margin: 0; }
.purchase-summary div {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding: 13px 0;
}
.purchase-summary .total { font-size: 1.25rem; color: var(--deep); }

.wizard { max-width: 780px; margin: 0 auto; background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 28px; box-shadow: var(--shadow); }
.wizard-progress { height: 8px; background: #e8edf6; border-radius: 999px; overflow: hidden; margin-bottom: 24px; }
.wizard-progress span { display: block; height: 100%; width: 20%; background: var(--grad); transition: width .25s ease; }
.wizard-step { display: none; }
.wizard-step.active { display: grid; gap: 14px; }
.wizard-actions { display: flex; justify-content: space-between; margin-top: 18px; }

.post-steps { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; margin-bottom: 30px; }
.post-steps span {
    background: var(--light);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    font-weight: 800;
}
.post-steps span.active { background: var(--grad); color: var(--white); }

.cta-band {
    padding: 70px 0;
    color: var(--white);
    background: linear-gradient(135deg, #071026, #092B8C 48%, #7626D8);
}
.cta-band__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.cta-band p { color: rgba(255,255,255,.78); max-width: 650px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 70px 0 28px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr .9fr;
    gap: 40px;
}
.footer-grid img { background: #fff; border-radius: 8px; padding: 8px 12px; }
.footer-grid p { color: rgba(255,255,255,.68); margin-top: 18px; }
.footer-grid h3 { font-size: 1rem; margin-bottom: 18px; }
.footer-grid a { display: block; color: rgba(255,255,255,.7); margin: 10px 0; }
.footer-grid a:hover { color: var(--white); }
.footer-cta { color: var(--white) !important; font-weight: 900; }
.socials { display: flex; gap: 12px; margin-top: 14px; }
.socials a { display: grid; place-items: center; width: 38px; height: 38px; background: rgba(255,255,255,.1); border-radius: 50%; margin: 0; }
.footer-bottom {
    margin-top: 45px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255,255,255,.56);
    font-size: .92rem;
}
.floating-contact, .back-to-top {
    position: fixed;
    right: 22px;
    z-index: 900;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
}
.floating-contact {
    bottom: 86px;
    background: var(--grad);
    color: white;
    font-size: 1.35rem;
}
.back-to-top {
    bottom: 24px;
    border: 0;
    background: var(--dark);
    color: white;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }

.capability { padding: 18px; font-weight: 850; display: flex; gap: 10px; align-items: center; }
.capability i { color: var(--blue); }
.phone-showcase, .web-showcase { background: var(--grad); }
.phone-showcase div {
    position: absolute;
    width: 190px;
    height: 350px;
    border-radius: 34px;
    background: rgba(255,255,255,.16);
    border: 12px solid rgba(7,11,25,.9);
    top: 45px;
}
.phone-showcase div:first-child { left: 25%; transform: rotate(-8deg); }
.phone-showcase div:last-child { right: 20%; transform: rotate(8deg); }
.web-showcase span {
    position: absolute;
    background: rgba(255,255,255,.18);
    border-radius: 8px;
}
.web-showcase span:nth-child(1) { left: 40px; right: 40px; top: 42px; height: 70px; }
.web-showcase span:nth-child(2) { left: 40px; width: 42%; top: 138px; bottom: 42px; }
.web-showcase span:nth-child(3) { right: 40px; width: 42%; top: 138px; bottom: 42px; }

.legal-content { max-width: 900px; margin: 0 auto; }
.legal-content h2 { font-size: 1.6rem; margin-top: 34px; }
