@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --blue: #004A9C;
    --blue-dark: #002366;
    --blue-light: #EBF3FF;
    --green: #1DB36A;
    --green-dark: #158A50;
    --gold: #FF8C00;
    --text: #1A2338;
    --muted: #6B7896;
    --border: #E4EAF5;
    --bg: #F5F8FF;
    --white: #FFFFFF;
    --card-shadow: 0 8px 32px rgba(0, 74, 156, .08);
    --card-hover: 0 20px 50px rgba(0, 74, 156, .14);
    --radius: 16px;
    --nav-h: 68px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    line-height: 1.65;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ═══════════════════ NAVBAR ═══════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(20px);
    border-bottom: none;
    display: flex;
    align-items: center;
    transition: box-shadow .3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0, 36, 102, .1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
}

.nav-logo img {
    height: 65px;
    width: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 7px 13px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--muted);
    transition: all .2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue);
    background: var(--blue-light);
}

.nav-cta {
    margin-left: 12px;
    display: flex;
    gap: 8px;
}

/* ═══════════════════ BUTTONS ═══════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s;
    border: none;
    position: relative;
    z-index: 5;
}

.btn-outline {
    border: 2px solid var(--blue);
    color: var(--blue);
    background: transparent;
}

.btn-outline:hover {
    background: var(--blue);
    color: #fff;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 74, 156, .3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 74, 156, .4);
}

.btn-green {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    box-shadow: 0 4px 16px rgba(29, 179, 106, .3);
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(29, 179, 106, .4);
}

.btn-lg {
    padding: 13px 30px;
    font-size: 15px;
}

.btn-white {
    background: #fff;
    color: var(--blue);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: .3s;
    border-radius: 2px;
}

/* ═══════════════════ CONTAINER ════════════════════════════ */
.container {
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
}

/* ═══════════════════ HERO ══════════════════════════════════ */
.hero {
    padding: calc(var(--nav-h) + 18px) 0 44px;
    background: linear-gradient(135deg, #EBF3FF 0%, #F8FBFF 50%, #E8F8F0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 74, 156, .06) 0%, transparent 70%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29, 179, 106, .06) 0%, transparent 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-light);
    color: var(--blue);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.hero-badge span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: .7;
    }
}

.hero-title {
    font-size: clamp(30px, 4.5vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--blue), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-trust-avatars {
    display: flex;
}

.hero-trust-text strong {
    font-size: 13px;
    font-weight: 800;
    display: block;
}

.hero-trust-text span {
    font-size: 11px;
    color: var(--muted);
}

.hero-visual {
    position: relative;
}

.hero-mockup {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 36, 102, .2);
}

.hero-mockup-bar {
    background: #1A2338;
    height: 34px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 7px;
}

.hero-mockup-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hero-mockup-bar span:nth-child(1) {
    background: #FF5F57;
}

.hero-mockup-bar span:nth-child(2) {
    background: #FEBC2E;
}

.hero-mockup-bar span:nth-child(3) {
    background: #28C840;
}

.hero-mockup-screen {
    background: #0F1E3C;
    padding: 18px;
}

.mockup-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.mockup-stat {
    background: rgba(255, 255, 255, .06);
    border-radius: 10px;
    padding: 12px;
}

.mockup-stat .label {
    font-size: 9px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 4px;
}

.mockup-stat .val {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

.mockup-stat .sub {
    font-size: 9px;
    color: var(--green);
}

.mockup-repair-list {
    background: rgba(255, 255, 255, .04);
    border-radius: 10px;
    padding: 12px;
}

.mockup-repair-list .list-title {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 10px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.mockup-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.mockup-item:last-child {
    border-bottom: none;
}

.mockup-avatar {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.mockup-info {
    flex: 1;
}

.mockup-info .name {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
}

.mockup-info .device {
    font-size: 9px;
    color: rgba(255, 255, 255, .4);
}

.mockup-badge {
    font-size: 8px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

.mockup-badge.green {
    background: rgba(29, 179, 106, .2);
    color: var(--green);
}

.mockup-badge.gold {
    background: rgba(255, 140, 0, .2);
    color: var(--gold);
}

.mockup-badge.blue {
    background: rgba(0, 74, 156, .3);
    color: #60a0ff;
}

.float-badge {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
}

.float-badge.top-left {
    top: 16px;
    left: -20px;
    animation: floaty 3s ease-in-out infinite;
}

.float-badge.bottom-right {
    bottom: 16px;
    right: -20px;
    animation: floaty 3s ease-in-out infinite .8s;
}

.float-badge .icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.float-badge.top-left .icon {
    background: #EBF3FF;
}

.float-badge.bottom-right .icon {
    background: #E8F8F0;
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

/* ═══════════════════ SECTIONS ══════════════════════════════ */
.section {
    padding: 48px 0;
}

.section-alt {
    background: var(--bg);
}

.section-dark {
    background: var(--blue-dark);
    color: #fff;
}

.section-header {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 48px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blue-light);
    color: var(--blue);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
}

.section-tag.green {
    background: #E8F8F0;
    color: var(--green);
}

.section-title {
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-sub {
    color: var(--muted);
    font-size: 15px;
}

/* ═══════════════════ FEATURE CARDS ════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feat-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    transition: all .35s;
    position: relative;
    overflow: hidden;
}

.feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}

.feat-card:hover::before {
    transform: scaleX(1);
}

.feat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-hover);
    border-color: transparent;
}

.feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.feat-icon.blue {
    background: var(--blue-light);
    color: var(--blue);
}

.feat-icon.green {
    background: #E8F8F0;
    color: var(--green);
}

.feat-icon.gold {
    background: #FFF6E8;
    color: var(--gold);
}

.feat-card h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.feat-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
}

/* ═══════════════════ STEPS ════════════════════════════════ */
.steps-row {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-num {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: #fff;
    font-weight: 900;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
}

.step-content p {
    color: var(--muted);
    font-size: 13.5px;
}

/* ═══════════════════ ROLES ════════════════════════════════ */
.roles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.role-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px 18px;
    text-align: center;
    border: 2px solid var(--border);
    transition: all .3s;
    cursor: pointer;
}

.role-card:hover {
    border-color: var(--blue);
    transform: translateY(-5px);
    box-shadow: var(--card-hover);
}

.role-card.active {
    border-color: var(--green);
    background: linear-gradient(135deg, #E8F8F0, #fff);
}

.role-emoji {
    font-size: 40px;
    margin-bottom: 12px;
}

.role-card h4 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 6px;
}

.role-card p {
    font-size: 12px;
    color: var(--muted);
}

.role-features {
    display: none;
}

.role-features.visible {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 32px;
}

.role-feat-item {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.role-feat-item i {
    color: var(--green);
    font-size: 18px;
    margin-bottom: 8px;
}

.role-feat-item h5 {
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 5px;
}

.role-feat-item p {
    font-size: 12px;
    color: var(--muted);
}

/* ═══════════════════ PRICING ══════════════════════════════ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 26px;
    border: 2px solid var(--border);
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    border-color: var(--blue);
    transform: scale(1.02);
    box-shadow: 0 24px 56px rgba(0, 74, 156, .15);
}

.pricing-card h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
}

.price-amount {
    font-size: 44px;
    font-weight: 900;
    color: var(--blue);
}

.price-amount sub {
    font-size: 16px;
    font-weight: 600;
    vertical-align: baseline;
    bottom: 0;
}

.price-dur {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 22px;
}

.price-features {
    list-style: none;
    margin-bottom: 24px;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13.5px;
}

.price-features li:last-child {
    border-bottom: none;
}

.check {
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
}

.cross {
    color: #ccc;
    flex-shrink: 0;
    margin-top: 2px;
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 20px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 18px;
    border-radius: 0 0 10px 10px;
}

/* ═══════════════════ TESTIMONIALS ═════════════════════════ */
.testimonials-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testi-card {
    background: #fff;
    border-radius: 18px;
    padding: 26px;
    min-width: 320px;
    scroll-snap-align: start;
    border: 1px solid var(--border);
    flex-shrink: 0;
    transition: box-shadow .3s;
}

.testi-card:hover {
    box-shadow: var(--card-hover);
}

.testi-stars {
    color: #f59e0b;
    font-size: 13px;
    margin-bottom: 14px;
}

.testi-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.testi-info strong {
    font-size: 13px;
    font-weight: 800;
    display: block;
}

.testi-info span {
    font-size: 11px;
    color: var(--muted);
}

/* ═══════════════════ STATS STRIP ══════════════════════════ */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .1);
}

.stat-item {
    padding: 28px 16px;
    text-align: center;
}

.stat-num {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #60a0ff, var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
}

/* ═══════════════════ CTA BOX ══════════════════════════════ */
.cta-box {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    border-radius: 24px;
    padding: 56px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
}

.cta-box h2 {
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 900;
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ═══════════════════ CONTACT ══════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.form-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
}

.form-card h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text);
    display: block;
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 11px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color .2s;
    outline: none;
}

.form-input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(0, 74, 156, .08);
}

.form-input::placeholder {
    color: #aab;
}

.contact-info .info-block {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-icon.green {
    background: #E8F8F0;
    color: var(--green);
}

.info-text strong {
    font-size: 15px;
    font-weight: 800;
    display: block;
    margin-bottom: 3px;
}

.info-text span {
    font-size: 13px;
    color: var(--muted);
}

/* ═══════════════════ FOOTER ════════════════════════════════ */
.footer {
    background: #050E1F;
    color: #fff;
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
    margin: 14px 0 20px;
    max-width: 280px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.social-btn:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

.footer-col h5 {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, .9);
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 10px;
    transition: color .2s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
}

/* ═══════════════════ PRICING ═════════════════════════════ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

/* ═══════════════════ PAGE HERO (inner pages) ══════════════ */
.page-hero {
    padding: calc(var(--nav-h) + 16px) 0 32px;
    background: linear-gradient(135deg, #EBF3FF 0%, #f8fbff 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(26px, 4.5vw, 48px);
    font-weight: 900;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 16px;
    color: var(--muted);
    max-width: 580px;
    margin: auto;
}

/* ═══════════════════ UTILITIES ═════════════════════════════ */
.text-gradient {
    background: linear-gradient(135deg, var(--blue), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-green {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #E8F8F0;
    color: var(--green);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 48px 0;
}

.w-full {
    width: 100%;
}

.d-flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.gap-16 {
    gap: 16px;
}

/* ═══════════════════ ANIMATIONS ════════════════════════════ */
[data-aos] {
    transition: all .7s cubic-bezier(.25, .8, .25, 1) !important;
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(36px);
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-36px);
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(36px);
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(.88);
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* ═══════════════════ SCROLL PROGRESS ══════════════════════ */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    z-index: 9999;
    transition: width .1s;
    width: 0;
    opacity: 0;
}

/* ═══════════════════ SPLIT GRID ════════════════════════════ */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.split-grid.alt {
    grid-template-columns: 1fr 1.2fr;
}

.stats-grid-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

    .hero {
        padding: calc(var(--nav-h) + 8px) 0 56px;
        min-height: auto;
    }

    .hero-grid,
    .split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-grid.alt {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: clamp(28px, 5vw, 44px);
    }

    .hero-sub {
        max-width: 100%;
    }

    .float-badge {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .roles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .role-features.visible {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: auto;
    }

    .pricing-card.popular {
        transform: none;
    }

    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        padding: 24px 12px;
    }

    .stat-num {
        font-size: 34px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 768px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    :root {
        --nav-h: 60px;
    }

    /* Nav */
    .nav-menu,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-logo img {
        height: 60x;
    }

    .nav-mobile {
        display: none;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: #fff;
        padding: 16px 20px 24px;
        border-top: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
        flex-direction: column;
        gap: 6px;
        z-index: 999;
    }

    .nav-mobile.open {
        display: flex;
    }

    .nav-mobile .nav-link {
        padding: 10px 14px;
        font-size: 15px;
        border-radius: 10px;
    }

    .nav-mobile .btn {
        justify-content: center;
        border-radius: 12px;
        margin-top: 4px;
    }

    .w-full {
        width: 100%;
    }

    /* Hero */
    .hero {
        padding: calc(var(--nav-h) + 28px) 0 44px;
    }

    .stats-grid-small {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 32px;
    }

    .hero-title {
        font-size: clamp(26px, 7vw, 38px);
    }

    .hero-sub {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-actions .btn-lg {
        padding: 11px 22px;
        font-size: 14px;
    }

    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    /* Mockup */
    .mockup-stat-row {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 6px;
    }

    .mockup-stat {
        padding: 8px;
    }

    .mockup-stat .val {
        font-size: 14px;
    }

    /* Sections */
    .section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-title {
        font-size: clamp(22px, 5vw, 32px);
    }

    .section-sub {
        font-size: 14px;
    }

    /* Page Hero */
    .page-hero {
        padding: calc(var(--nav-h) + 12px) 0 24px;
    }

    .page-hero h1 {
        font-size: clamp(22px, 6vw, 34px);
    }

    .page-hero p {
        font-size: 14px;
    }

    /* Cards grids → single column */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .feat-card {
        padding: 22px 20px;
    }

    .feat-icon {
        width: 46px;
        height: 46px;
        font-size: 19px;
        margin-bottom: 12px;
    }

    .feat-card h4 {
        font-size: 15px;
    }

    /* Roles */
    .roles-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .role-card {
        padding: 18px 12px;
    }

    .role-emoji {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .role-card h4 {
        font-size: 13px;
    }

    .role-features.visible {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 24px;
    }

    .role-feat-item {
        padding: 16px;
    }

    /* Steps */
    .steps-row {
        gap: 14px;
    }

    .step-num {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    /* Pricing */
    .pricing-grid {
        max-width: 100%;
    }

    .pricing-card {
        padding: 26px 20px;
    }

    .price-amount {
        font-size: 36px;
    }

    /* Testimonials */
    .testi-card {
        min-width: 280px;
        padding: 20px;
    }

    .testimonials-track {
        gap: 14px;
    }

    /* Stats */
    .stats-strip {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        padding: 20px 8px;
    }

    .stat-num {
        font-size: 30px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* CTA */
    .cta-box {
        padding: 40px 24px;
        border-radius: 18px;
    }

    .cta-box h2 {
        font-size: clamp(20px, 5vw, 30px);
    }

    .cta-box p {
        font-size: 14px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* Contact */
    .form-card {
        padding: 24px 20px;
    }

    .form-card h3 {
        font-size: 20px;
    }

    .contact-grid {
        gap: 24px;
    }

    /* Footer */
    .footer {
        padding: 44px 0 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

    .container {
        padding: 0 14px;
    }

    .hero-title {
        font-size: clamp(23px, 8vw, 32px);
    }

    .hero-sub {
        font-size: 14px;
    }

    .btn-lg {
        padding: 10px 18px;
        font-size: 13.5px;
    }

    .roles-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .role-card {
        padding: 14px 10px;
    }

    .role-emoji {
        font-size: 28px;
    }

    .role-card h4 {
        font-size: 12px;
    }

    .role-card p {
        display: none;
    }

    .stats-strip {
        grid-template-columns: 1fr 1fr;
    }

    .stat-num {
        font-size: 26px;
    }

    .stat-label {
        font-size: 11px;
    }

    .testi-card {
        min-width: calc(100vw - 28px);
    }

    .pricing-grid {
        max-width: 100%;
    }

    .pricing-card h4 {
        font-size: 16px;
    }

    .cta-box {
        padding: 32px 16px;
    }

    .cta-box .btn {
        font-size: 13px;
    }

    .footer-grid {
        gap: 22px;
    }

    .footer-col h5 {
        margin-bottom: 10px;
    }

    /* Solutions page alternating grid (inline styles override) */
    [style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
}

/* ═══════════════════ VIDEO DEMO ════════════════════════════ */
.video-demo-section {
    background: linear-gradient(135deg, #001a35 0%, #002d60 50%, #001a35 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.video-demo-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29, 179, 106, .06) 0%, transparent 70%);
    pointer-events: none;
}

.video-demo-section .section-header {
    color: #fff;
    margin-bottom: 40px;
}

.video-demo-section .section-title {
    color: #fff;
}

.video-demo-section .section-sub {
    color: rgba(255, 255, 255, .6);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.video-facade {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .5);
    border: 1px solid rgba(255, 255, 255, .08);
}

.video-facade .video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s, filter .4s;
    filter: brightness(.82);
}

.video-facade:hover .video-thumb {
    transform: scale(1.02);
    filter: brightness(.6);
}

.video-facade::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .6) 0%, transparent 60%);
    pointer-events: none;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s;
}

.video-facade:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, .3);
    position: absolute;
    animation: ringPulse 2s ease-in-out infinite;
}

.play-ring::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .1);
    animation: ringPulse 2s ease-in-out infinite .4s;
}

@keyframes ringPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: .5;
    }
}

.video-play-btn .bi-play-fill {
    font-size: 36px;
    color: #fff;
    position: relative;
    z-index: 1;
    margin-left: 5px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .4);
}

.video-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, .85);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, .12);
    white-space: nowrap;
    letter-spacing: .5px;
}

.video-facade iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-stat-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.video-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 12px 18px;
    color: #fff;
}

.video-stat i {
    color: var(--green);
    font-size: 18px;
}

.video-stat span {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .7);
}

.video-stat strong {
    font-size: 14px;
    font-weight: 800;
    display: block;
}

@media (max-width: 768px) {
    .video-facade {
        border-radius: 14px;
    }

    .play-ring {
        width: 60px;
        height: 60px;
    }

    .video-play-btn .bi-play-fill {
        font-size: 26px;
    }

    .video-demo-section {
        padding: 44px 0;
    }

    .video-stat {
        flex: 1 1 140px;
    }
}

/* ═══════════════════ WHATSAPP FLOATING ═════════════════════ */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, .4);
    z-index: 999;
    transition: .3s;
    text-decoration: none;
}

.wa-float:hover {
    transform: scale(1.1) rotate(15deg);
    color: #fff;
}

.wa-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
}

/* Custom Hero Image Styling */
.hero-custom-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 74, 156, .2);
    border: 2px solid #fff;
}

/* Social & Contact Buttons */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    background: #f1f5f9;
    color: #475569;
}

.social-btn:hover {
    background: var(--social-hover-color, var(--blue)) !important;
    color: #fff !important;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Base states for common icons if no color is set */
.social-btn.ph {
    background: var(--blue);
    color: #fff;
}

.contact-action-btn {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 20px !important;
    border-radius: 15px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    border: none !important;
    background: #f1f5f9;
    color: #475569;
    width: auto !important;
    height: auto !important;
}

.contact-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    filter: brightness(1.1);
    color: #fff !important;
}

.contact-action-btn i {
    font-size: 18px !important;
    display: inline-block !important;
}

/* Apply brand colors to contact buttons too */
.contact-action-btn.wa {
    background: #25D366 !important;
    color: #fff !important;
}

.contact-action-btn.ph {
    background: var(--blue) !important;
    color: #fff !important;
}

/* ═══════════════════ ENTERPRISE FORM ══════════════════════ */
.enterprise-form-box {
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

.enterprise-form-box::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--blue-light);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.5;
}

.form-group-premium {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.form-group-premium label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--muted);
    margin-bottom: 10px;
    padding-left: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control-premium {
    width: 100%;
    background: #f8fbff;
    border: 2px solid #f0f4f8;
    border-radius: 14px;
    padding: 16px 20px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-control-premium:focus {
    outline: none;
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 74, 156, 0.08);
    transform: translateY(-2px);
}

.form-control-premium::placeholder {
    color: #a0a0a0;
    opacity: 0.6;
}

.form-select-premium {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B7896' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 48px;
    cursor: pointer;
}

.enterprise-btn {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff;
    padding: 20px;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 800;
    width: 100%;
    border: none;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0, 74, 156, 0.25);
    transition: all 0.3s;
    margin-top: 10px;
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.enterprise-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 74, 156, 0.35);
}

@media (max-width: 768px) {
    .enterprise-form-box {
        padding: 30px 20px;
    }
}