:root {
    --navy: #05101f;
    --navy-card: #091729;
    --navy-mid: #0d2040;
    --cyan: #00c8f0;
    --cyan-dim: rgba(0, 200, 240, .12);
    --border: rgba(0, 200, 240, .15);
    --text-muted: #6e8db0;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--navy);
    color: #e8f0fb;
    margin: 0;
}

a {
    text-decoration: none;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--navy);
}

::-webkit-scrollbar-thumb {
    background: var(--navy-mid);
    border-radius: 3px;
}

/* ── UTILITIES ── */
.text-cyan {
    color: var(--cyan) !important;
}

.btn-cyan {
    background: var(--cyan);
    color: var(--navy);
    font-weight: 800;
    border: none;
    transition: opacity .2s, box-shadow .2s;
}

.btn-cyan:hover {
    opacity: .88;
    box-shadow: 0 0 24px rgba(0, 200, 240, .45);
    color: var(--navy);
}

.btn-outline-cyan {
    border: 1.5px solid rgba(0, 200, 240, .45);
    color: var(--cyan);
    background: transparent;
    font-weight: 700;
    transition: all .2s;
}

.btn-outline-cyan:hover {
    background: var(--cyan-dim);
    border-color: var(--cyan);
    color: var(--cyan);
    box-shadow: 0 0 16px rgba(0, 200, 240, .25);
}

.section-label {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #fff;
}

/* ── NAVBAR ── */
#navbar {
    background: rgba(5, 16, 31, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 0;
    inset-inline: 0;
    z-index: 1000;
}

#navbar .navbar-brand {
    font-weight: 900;
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: .02em;
}

#navbar .navbar-brand span {
    color: var(--cyan);
}

#navbar .nav-link {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color .15s;
    padding: .4rem .75rem;
}

#navbar .nav-link:hover {
    color: var(--cyan);
}

#navbar .logo-icon,
footer .logo-icon {
    width: 32px;
    height: 32px;
    background: var(--cyan);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1rem;
}

/* ── HERO ── */
#hero {
    padding-top: 90px;
    background: linear-gradient(160deg, #071526 0%, var(--navy) 60%);
    overflow: hidden;
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(0, 200, 240, .08) 0%, transparent 70%);
    pointer-events: none;
}

#hero::after {
    content: '';
    position: absolute;
    right: -220px;
    bottom: 40px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(0, 200, 240, .10), transparent 65%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(0, 200, 240, .1);
    border: 1px solid rgba(0, 200, 240, .3);
    color: var(--cyan);
    border-radius: 100px;
    padding: .35rem 1rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: .4;
        transform: scale(1.3);
    }
}

#hero h1 {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.01em;
    text-transform: uppercase;
    color: #fff;
}

#hero h1 .grad {
    background: linear-gradient(90deg, var(--cyan) 0%, #7dd3fc 60%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-dashboard {
    width: min(100%, 520px);
    margin-inline: auto;
    background: linear-gradient(160deg, rgba(0, 200, 240, .14), rgba(9, 23, 41, .96) 38%, rgba(5, 16, 31, .95));
    border: 1px solid rgba(0, 200, 240, .28);
    border-radius: 26px;
    padding: 1.3rem;
    text-align: left;
    box-shadow: 0 0 80px rgba(0, 200, 240, .14);
    filter: drop-shadow(0 0 60px rgba(0, 200, 240, .18));
    animation: float 5s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.dashboard-top {
    display: flex;
    gap: .45rem;
    margin-bottom: 1.2rem;
}

.dashboard-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
}

.dashboard-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.dashboard-title small {
    display: block;
    color: var(--cyan);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-weight: 900;
}

.dashboard-title strong {
    display: block;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 900;
}

.dashboard-title i {
    width: 44px;
    height: 44px;
    background: rgba(0, 200, 240, .12);
    border: 1px solid rgba(0, 200, 240, .20);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--cyan);
    font-size: 1.2rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .8rem;
    margin-bottom: 1rem;
}

.dashboard-grid div {
    background: rgba(5, 16, 31, .72);
    border: 1px solid rgba(0, 200, 240, .12);
    border-radius: 14px;
    padding: 1rem;
}

.dashboard-grid small {
    display: block;
    color: var(--text-muted);
    font-size: .68rem;
    margin-bottom: .35rem;
}

.dashboard-grid strong {
    color: #fff;
    font-size: 1rem;
}

.dashboard-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 200, 240, .35), transparent);
    margin: 1rem 0;
}

.dashboard-bars {
    height: 120px;
    display: flex;
    align-items: end;
    gap: .75rem;
    padding: .5rem 0 0;
}

.dashboard-bars span {
    flex: 1;
    min-width: 22px;
    background: linear-gradient(180deg, #7dd3fc, var(--cyan));
    border-radius: 8px 8px 2px 2px;
    box-shadow: 0 0 16px rgba(0, 200, 240, .20);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

/* Stats strip */
.stats-strip {
    background: rgba(9, 23, 41, .7);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 2;
}

.stat-item {
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--cyan);
    line-height: 1;
}

.stat-label {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--text-muted);
}

/* ── FEATURE CARDS ── */
#recursos {
    background: rgba(9, 23, 41, .5);
}

.feat-card {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.4rem;
    transition: border-color .25s, box-shadow .25s, transform .25s;
    height: 100%;
}

.feat-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 28px rgba(0, 200, 240, .12);
    transform: translateY(-3px);
}

.feat-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 200, 240, .1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 1.15rem;
    margin-bottom: .9rem;
    transition: background .2s;
}

.feat-card:hover .feat-icon {
    background: rgba(0, 200, 240, .2);
}

.feat-card h6 {
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #fff;
    margin-bottom: .4rem;
}

.feat-card p {
    font-size: .75rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ── PRICING ── */
#planos {
    background: var(--navy);
}

.plan-card {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2rem 1.6rem;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: border-color .25s, box-shadow .25s, transform .25s;
}

.plan-card:hover {
    border-color: rgba(0, 200, 240, .4);
    transform: translateY(-4px);
}

.plan-card.featured {
    border-color: var(--cyan);
    background: linear-gradient(160deg, rgba(0, 200, 240, .12) 0%, var(--navy-card) 60%);
    box-shadow: 0 0 60px rgba(0, 200, 240, .18);
    transform: scale(1.035);
    z-index: 2;
}

.plan-card.featured:hover {
    transform: scale(1.035) translateY(-4px);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cyan);
    color: var(--navy);
    font-size: .65rem;
    font-weight: 900;
    padding: .3rem 1rem;
    border-radius: 100px;
    letter-spacing: .12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.plan-name {
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--text-muted);
    margin-bottom: .6rem;
}

.plan-desc {
    font-size: .75rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1.2rem;
    flex-shrink: 0;
}

.plan-from {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
}

.plan-price {
    font-size: 2.6rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.plan-price sup {
    font-size: 1rem;
    font-weight: 700;
    vertical-align: super;
}

.plan-price sub {
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.plan-features li {
    font-size: .78rem;
    color: var(--text-muted);
    padding: .3rem 0;
    display: flex;
    align-items: center;
    gap: .5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.plan-features li:last-child {
    border: none;
}

.plan-features .bi-check-circle-fill {
    color: var(--cyan);
    font-size: .8rem;
}

/* ── ABOUT / TESTIMONIAL ── */
#depoimentos {
    background: rgba(9, 23, 41, .5);
}

.video-thumb {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
}

.video-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 16, 31, .85) 0%, transparent 60%);
}

.about-card {
    min-height: 360px;
    background:
        radial-gradient(circle at 30% 20%, rgba(0, 200, 240, .28), transparent 35%),
        linear-gradient(145deg, rgba(0, 200, 240, .10), rgba(9, 23, 41, .95));
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-icon {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    background: rgba(0, 200, 240, .12);
    border: 1px solid rgba(0, 200, 240, .24);
    border-radius: 28px;
    display: grid;
    place-items: center;
    color: var(--cyan);
    font-size: 3rem;
    box-shadow: 0 0 40px rgba(0, 200, 240, .14);
}

.video-label {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    z-index: 3;
}

.quote-card {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2.5rem;
    position: relative;
}

.quote-mark {
    font-size: 5rem;
    line-height: .8;
    color: var(--cyan);
    font-family: Georgia, serif;
    opacity: .7;
}

.value-card {
    height: 100%;
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.4rem;
    transition: border-color .2s, transform .2s;
}

.value-card:hover {
    border-color: var(--cyan);
    transform: translateY(-3px);
}

.value-card i {
    color: var(--cyan);
    font-size: 1.4rem;
    margin-bottom: .8rem;
    display: inline-block;
}

.value-card h6 {
    color: #fff;
    font-size: .75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.value-card p {
    color: var(--text-muted);
    font-size: .78rem;
    line-height: 1.6;
    margin: 0;
}

/* ── CLIENTES ── */
#clientes {
    background: var(--navy);
}

.client-chip {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: .55rem 1.1rem;
    font-size: .72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    transition: border-color .2s, color .2s;
}

.client-chip:hover {
    border-color: var(--cyan);
    color: #fff;
}

/* ── PARCEIROS ── */
#parceiros {
    background: rgba(9, 23, 41, .5);
}

.partner-card {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, transform .2s;
}

.partner-card:hover {
    border-color: rgba(0, 200, 240, .4);
    transform: translateY(-2px);
}

.partner-card span {
    font-weight: 900;
    font-size: .9rem;
    letter-spacing: .04em;
}

/* ── FAQ ── */
#faq {
    background: var(--navy);
}

.accordion-item {
    background: var(--navy-card) !important;
    border: 1px solid var(--border) !important;
    border-radius: 12px !important;
    margin-bottom: .6rem;
    overflow: hidden;
}

.accordion-button {
    background: transparent !important;
    color: #fff !important;
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    box-shadow: none !important;
    padding: 1.1rem 1.3rem;
}

.accordion-button:not(.collapsed) {
    color: var(--cyan) !important;
}

.accordion-button::after {
    filter: invert(1) sepia(1) saturate(2) hue-rotate(160deg);
}

.accordion-body {
    font-size: .83rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 0 1.3rem 1.2rem;
}

/* ── FOOTER ── */
footer {
    background: #030c18;
    border-top: 1px solid var(--border);
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    text-align: center;
}

.footer-contact-item .icon-wrap {
    width: 42px;
    height: 42px;
    background: rgba(0, 200, 240, .1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 1.1rem;
}

.footer-contact-item .contact-label {
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.footer-contact-item .contact-value {
    font-size: .82rem;
    color: #fff;
    transition: color .15s;
}

.footer-contact-item:hover .contact-value {
    color: var(--cyan);
}

.footer-col h6 {
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li + li {
    margin-top: .4rem;
}

.footer-col ul a {
    font-size: .78rem;
    color: var(--text-muted);
    transition: color .15s;
}

.footer-col ul a:hover {
    color: var(--cyan);
}

.social-btn {
    width: 34px;
    height: 34px;
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: .95rem;
    transition: border-color .2s, color .2s;
}

.social-btn:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.btn-zap {
    position: fixed;
    bottom: 12px;
    right: 12px;
    z-index: 999;
}

.btn-zap img {
    width: 50px;
}

/* ── ANIMATE ON SCROLL ── */
.anim {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s ease, transform .55s ease;
}

.anim.visible {
    opacity: 1;
    transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    #navbar .navbar-collapse {
        padding-top: 1rem;
    }

    .hero-dashboard {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.4rem;
    }

    .plan-card.featured {
        transform: none;
    }

    .plan-card.featured:hover {
        transform: translateY(-4px);
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-bars {
        height: 90px;
    }

    .quote-card {
        padding: 1.5rem;
    }
}


/* ── TI GERENCIADA ── */
.ti-managed {
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 200, 240, .10), transparent 30%),
        linear-gradient(160deg, #071526 0%, var(--navy) 70%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.managed-list {
    display: grid;
    gap: .75rem;
}

.managed-list div {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: #d7e7fb;
    font-size: .88rem;
    background: rgba(9, 23, 41, .72);
    border: 1px solid rgba(0, 200, 240, .12);
    border-radius: 12px;
    padding: .8rem 1rem;
}

.managed-list i {
    color: var(--cyan);
    font-size: 1rem;
}

.it-orbit-card {
    min-height: 430px;
    position: relative;
    background:
        radial-gradient(circle at center, rgba(0, 200, 240, .12), transparent 40%),
        rgba(9, 23, 41, .72);
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 200, 240, .10);
}

.it-orbit-card::before {
    content: '';
    position: absolute;
    inset: 60px;
    border: 1px dashed rgba(0, 200, 240, .20);
    border-radius: 50%;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
    background: rgba(0, 200, 240, .12);
    border: 1px solid rgba(0, 200, 240, .32);
    border-radius: 32px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 1rem;
}

.orbit-center i {
    color: var(--cyan);
    font-size: 2.2rem;
}

.orbit-center strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
}

.orbit-center span {
    display: block;
    color: var(--text-muted);
    font-size: .7rem;
}

.orbit-item {
    position: absolute;
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
    padding: .65rem .9rem;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    box-shadow: 0 0 24px rgba(0, 200, 240, .08);
}

.orbit-item i {
    color: var(--cyan);
}

.orbit-1 { top: 55px; left: 50%; transform: translateX(-50%); }
.orbit-2 { top: 145px; right: 45px; }
.orbit-3 { bottom: 85px; right: 70px; }
.orbit-4 { bottom: 85px; left: 70px; }
.orbit-5 { top: 145px; left: 45px; }

/* ── SEGMENTOS TI ── */
#segmentos-ti {
    background: var(--navy);
}

.segment-card {
    height: 100%;
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.6rem;
    transition: border-color .25s, transform .25s, box-shadow .25s;
}

.segment-card:hover {
    border-color: var(--cyan);
    transform: translateY(-4px);
    box-shadow: 0 0 32px rgba(0, 200, 240, .10);
}

.segment-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(0, 200, 240, .10);
    display: grid;
    place-items: center;
    color: var(--cyan);
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.segment-card h5 {
    color: #fff;
    font-size: .95rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.segment-card p {
    color: var(--text-muted);
    font-size: .8rem;
    line-height: 1.65;
}

.segment-card a {
    color: var(--cyan);
    font-size: .78rem;
    font-weight: 800;
}

/* ── RISCOS ── */
.risk-section {
    background:
        radial-gradient(circle at right, rgba(0, 200, 240, .10), transparent 34%),
        rgba(9, 23, 41, .5);
}

.risk-card {
    height: 100%;
    background: rgba(5, 16, 31, .70);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.4rem;
    transition: border-color .25s, transform .25s;
}

.risk-card:hover {
    border-color: var(--cyan);
    transform: translateY(-3px);
}

.risk-card span {
    display: inline-block;
    color: var(--cyan);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .16em;
    margin-bottom: .8rem;
}

.risk-card h5 {
    color: #fff;
    font-size: .9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.risk-card p {
    color: var(--text-muted);
    font-size: .78rem;
    line-height: 1.65;
    margin: 0;
}

.risk-numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(5, 16, 31, .7);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
}

.risk-numbers div {
    padding: 1.3rem;
    text-align: center;
    border-right: 1px solid var(--border);
}

.risk-numbers div:last-child {
    border-right: none;
}

.risk-numbers strong {
    display: block;
    color: var(--cyan);
    font-size: 1.15rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.risk-numbers span {
    display: block;
    color: var(--text-muted);
    font-size: .72rem;
    margin-top: .35rem;
}

/* ── PRODUTOS TI ── */
#produtos-ti {
    background: var(--navy);
}

.product-card {
    height: 100%;
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.6rem;
    transition: border-color .25s, transform .25s;
}

.product-card:hover {
    border-color: var(--cyan);
    transform: translateY(-4px);
}

.product-card i {
    color: var(--cyan);
    font-size: 1.8rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.product-card h5 {
    color: #fff;
    font-size: .92rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.product-card p {
    color: var(--text-muted);
    font-size: .8rem;
    line-height: 1.65;
    margin: 0;
}

/* ── FORM CONSULTOR ── */
.form-section {
    background:
        radial-gradient(circle at left, rgba(0, 200, 240, .10), transparent 35%),
        linear-gradient(160deg, #071526 0%, var(--navy) 70%);
    border-top: 1px solid var(--border);
}

.form-highlight {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(9, 23, 41, .74);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.2rem;
}

.form-highlight i {
    color: var(--cyan);
    font-size: 1.5rem;
}

.form-highlight strong {
    display: block;
    color: #fff;
    font-weight: 900;
    margin-bottom: .25rem;
}

.form-highlight span {
    display: block;
    color: var(--text-muted);
    font-size: .82rem;
    line-height: 1.6;
}

.consult-form {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.6rem;
    box-shadow: 0 0 50px rgba(0, 200, 240, .08);
}

.consult-form label {
    display: block;
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .45rem;
}

.consult-form input,
.consult-form select,
.consult-form textarea {
    width: 100%;
    background: rgba(5, 16, 31, .82);
    border: 1px solid rgba(0, 200, 240, .16);
    color: #fff;
    border-radius: 10px;
    padding: .8rem .9rem;
    outline: none;
    font-size: .86rem;
}

.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 200, 240, .08);
}

.consult-form input::placeholder,
.consult-form textarea::placeholder {
    color: rgba(110, 141, 176, .72);
}

.consult-form textarea {
    min-height: 130px;
    resize: vertical;
}

.consult-form select option {
    background: var(--navy);
    color: #fff;
}

@media (max-width: 768px) {
    .it-orbit-card {
        min-height: 520px;
    }

    .orbit-1 { top: 35px; }
    .orbit-2 { top: 125px; right: 20px; }
    .orbit-3 { bottom: 95px; right: 20px; }
    .orbit-4 { bottom: 95px; left: 20px; }
    .orbit-5 { top: 125px; left: 20px; }

    .risk-numbers {
        grid-template-columns: 1fr;
    }

    .risk-numbers div {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .risk-numbers div:last-child {
        border-bottom: none;
    }
}
