/* =========================================================
   UShab Soft Solution — Premium Corporate Stylesheet
   Brand: Blue #0B5ED7 / Dark Blue #003B8E / Black / White
   ========================================================= */

:root {
    --blue: #0B5ED7;
    --blue-light: #4D9BFF;
    --dark-blue: #003B8E;
    --navy: #0A1F44;
    --black: #1E1E1E;
    --gray: #3B3B3B;
    --gray-soft: #6B7280;
    --light: #F5F7FA;
    --white: #FFFFFF;
    --green: #16A34A;
    --gold: #F59E0B;
    --gradient: linear-gradient(135deg, var(--blue) 0%, var(--dark-blue) 100%);
    --gradient-soft: linear-gradient(135deg, rgba(11, 94, 215, .08) 0%, rgba(0, 59, 142, .08) 100%);
    --shadow-sm: 0 2px 10px rgba(10, 31, 68, .06);
    --shadow-md: 0 10px 30px rgba(10, 31, 68, .10);
    --shadow-lg: 0 20px 50px rgba(10, 31, 68, .16);
    --shadow-blue: 0 12px 30px rgba(11, 94, 215, .35);
    --radius: 18px;
    --radius-sm: 12px;
    --font-head: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --header-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
    font-family: var(--font-body);
    color: var(--gray);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    color: var(--navy);
    line-height: 1.25;
    font-weight: 700;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--dark-blue); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
    width: min(1200px, 92%);
    margin-inline: auto;
}
.container-narrow { width: min(860px, 92%); }

.icon { width: 22px; height: 22px; flex-shrink: 0; }

.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--blue); color: #fff; padding: 10px 18px; z-index: 2000;
    border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; color: #fff; }

.text-gradient {
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

::selection { background: var(--blue); color: #fff; }

/* ---------- Page loader ---------- */
.loader {
    position: fixed; inset: 0; z-index: 3000;
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .5s ease, visibility .5s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-mark {
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--navy);
}
.loader-mark svg { animation: pulse 1.2s ease-in-out infinite; border-radius: 12px; }
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(.88); opacity: .75; }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--font-head); font-weight: 600; font-size: 15px;
    padding: 13px 30px; border-radius: 50px;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
    white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; transition: transform .25s ease; }
.btn:hover .icon { transform: translateX(4px); }

.btn-primary {
    background: var(--gradient); color: #fff;
    box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
    color: #fff; transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(11, 94, 215, .45);
}

.btn-outline {
    background: rgba(255, 255, 255, .7);
    color: var(--dark-blue);
    border: 2px solid var(--blue);
    backdrop-filter: blur(6px);
}
.btn-outline:hover {
    background: var(--blue); color: #fff; transform: translateY(-3px);
    box-shadow: var(--shadow-blue);
}

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 10px 22px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--header-h);
    display: flex; align-items: center;
    transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
.site-header.scrolled {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark svg { display: block; border-radius: 10px; box-shadow: var(--shadow-blue); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
    font-family: var(--font-head); font-size: 21px; font-weight: 800; color: var(--navy);
    letter-spacing: -.3px;
}
.brand-text small {
    font-size: 11.5px; font-weight: 600; letter-spacing: 2.4px;
    text-transform: uppercase; color: var(--blue);
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
    font-weight: 500; font-size: 15px; color: var(--gray);
    padding: 9px 14px; border-radius: 10px; position: relative;
    transition: color .25s ease, background .25s ease;
}
.nav-link:hover, .nav-link.active { color: var(--blue); background: rgba(11, 94, 215, .07); }
.nav-cta { margin-left: 10px; color: #fff !important; }
.nav-cta:hover { background: var(--gradient) !important; }

.nav-toggle { display: none; position: relative; width: 44px; height: 44px; color: var(--navy); z-index: 1100; }
.nav-toggle .icon { width: 26px; height: 26px; position: absolute; inset: 0; margin: auto; transition: opacity .2s ease, transform .2s ease; }
.nav-toggle .icon-close { opacity: 0; transform: rotate(-90deg); }
.nav-toggle.open .icon-menu { opacity: 0; transform: rotate(90deg); }
.nav-toggle.open .icon-close { opacity: 1; transform: rotate(0); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: calc(var(--header-h) + 70px) 0 130px;
    background: linear-gradient(180deg, #EEF4FF 0%, #F8FAFF 55%, #ffffff 100%);
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.blob-1 { width: 480px; height: 480px; background: #BBD6FF; top: -140px; right: -80px; }
.blob-2 { width: 380px; height: 380px; background: #D9E8FF; bottom: 0; left: -120px; }
.blob-3 { width: 260px; height: 260px; background: #CFE0FF; top: 35%; left: 38%; opacity: .35; }
.grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(11, 94, 215, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 94, 215, .05) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, #000 30%, transparent 75%);
}

.hero-inner {
    position: relative;
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 9px;
    background: rgba(255, 255, 255, .75); backdrop-filter: blur(8px);
    border: 1px solid rgba(11, 94, 215, .25);
    color: var(--dark-blue); font-size: 13.5px; font-weight: 600;
    padding: 9px 18px; border-radius: 50px; margin-bottom: 26px;
    box-shadow: var(--shadow-sm);
}
.hero-badge .icon { width: 16px; height: 16px; color: var(--blue); }

.hero h1 {
    font-size: clamp(34px, 4.6vw, 56px);
    font-weight: 800; letter-spacing: -1px; margin-bottom: 22px;
}
.hero-sub { font-size: 18px; color: var(--gray-soft); max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 34px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; }
.trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 14.5px; font-weight: 600; color: var(--gray);
}
.trust-item .icon { width: 19px; height: 19px; color: var(--green); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-img-wrap { position: relative; }
.hero-img-wrap > img {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 6px solid rgba(255, 255, 255, .8);
    animation: heroFloat 7s ease-in-out infinite;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.glass {
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .9);
    box-shadow: var(--shadow-md);
}

.float-card {
    position: absolute; display: flex; align-items: center; gap: 12px;
    padding: 13px 18px; border-radius: 16px;
    animation: floatY 5.5s ease-in-out infinite;
}
.float-card strong { display: block; font-family: var(--font-head); font-size: 14.5px; color: var(--navy); line-height: 1.3; }
.float-card small { font-size: 12px; color: var(--gray-soft); }
.fc-icon {
    width: 40px; height: 40px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; color: #fff;
}
.fc-icon .icon { width: 20px; height: 20px; }
.fc-blue { background: var(--gradient); }
.fc-green { background: linear-gradient(135deg, #22C55E, #15803D); }
.fc-gold { background: linear-gradient(135deg, #F59E0B, #D97706); }

.float-card-1 { top: 6%; left: -8%; animation-delay: 0s; }
.float-card-2 { bottom: 12%; left: -12%; animation-delay: 1.4s; }
.float-card-3 { top: 42%; right: -7%; animation-delay: 2.6s; }
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 70px; display: block; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; position: relative; }
.section-alt { background: var(--light); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-tag {
    display: inline-block; font-family: var(--font-head); font-size: 13px; font-weight: 600;
    letter-spacing: 1.6px; text-transform: uppercase;
    color: var(--blue); background: rgba(11, 94, 215, .09);
    padding: 8px 20px; border-radius: 50px; margin-bottom: 18px;
}
.section-head h2 { font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; letter-spacing: -.6px; margin-bottom: 16px; }
.section-head p { color: var(--gray-soft); font-size: 17px; }

/* ---------- ERP Modules ---------- */
.modules-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.module-card {
    background: var(--white); border-radius: var(--radius);
    padding: 34px 30px; border: 1px solid #E8EEF7;
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    position: relative; overflow: hidden;
}
.module-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--gradient); transform: scaleX(0); transform-origin: left;
    transition: transform .35s ease;
}
.module-card:hover {
    transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: rgba(11, 94, 215, .3);
}
.module-card:hover::before { transform: scaleX(1); }

.module-icon {
    width: 62px; height: 62px; border-radius: 16px;
    background: var(--gradient-soft); color: var(--blue);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px; transition: background .35s ease, color .35s ease, transform .35s ease;
}
.module-icon .icon { width: 28px; height: 28px; }
.module-card:hover .module-icon {
    background: var(--gradient); color: #fff; transform: scale(1.05) rotate(-4deg);
    box-shadow: var(--shadow-blue);
}

.module-card h3 { font-size: 19.5px; font-weight: 700; margin-bottom: 10px; }
.module-card > p { font-size: 14.5px; color: var(--gray-soft); margin-bottom: 18px; }

.module-features { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-bottom: 24px; }
.module-features li {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 500; color: var(--gray);
    background: var(--light); border-radius: 8px; padding: 5px 10px;
}
.module-features .icon { width: 14px; height: 14px; color: var(--blue); }

.module-link {
    margin-top: auto;
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--blue);
}
.module-link .icon { width: 17px; height: 17px; transition: transform .25s ease; }
.module-link:hover .icon { transform: translateX(5px); }

/* ---------- Industries ---------- */
.industries-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.industry-card {
    background: var(--white); border-radius: var(--radius-sm);
    border: 1px solid #E8EEF7; box-shadow: var(--shadow-sm);
    padding: 26px 14px; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 13px;
    font-weight: 600; font-size: 14.5px; color: var(--gray);
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
    cursor: default;
}
.industry-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--gradient-soft); color: var(--blue);
    display: flex; align-items: center; justify-content: center;
    transition: background .3s ease, color .3s ease;
}
.industry-icon .icon { width: 25px; height: 25px; }
.industry-card:hover {
    transform: translateY(-7px); box-shadow: var(--shadow-md);
    background: var(--gradient); color: #fff;
}
.industry-card:hover .industry-icon { background: rgba(255, 255, 255, .18); color: #fff; }

/* ---------- Why Choose Us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
    background: rgba(255, 255, 255, .75); backdrop-filter: blur(10px);
    border: 1px solid #E8EEF7; border-radius: var(--radius);
    padding: 30px 24px; box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.why-card:hover {
    transform: translateY(-8px); box-shadow: var(--shadow-lg);
    border-color: rgba(11, 94, 215, .35);
}
.why-icon {
    width: 54px; height: 54px; border-radius: 14px;
    background: var(--gradient); color: #fff;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; box-shadow: var(--shadow-blue);
}
.why-icon .icon { width: 25px; height: 25px; }
.why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--gray-soft); }

/* ---------- Statistics ---------- */
.stats-section {
    background: var(--gradient);
    padding: 70px 0; position: relative; overflow: hidden;
}
.stats-section::before, .stats-section::after {
    content: ''; position: absolute; border-radius: 50%;
    background: rgba(255, 255, 255, .07);
}
.stats-section::before { width: 340px; height: 340px; top: -160px; right: -80px; }
.stats-section::after { width: 240px; height: 240px; bottom: -120px; left: -60px; }

.stats-grid {
    position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
}
.stat-item { text-align: center; color: #fff; }
.stat-value {
    font-family: var(--font-head); font-size: clamp(34px, 4vw, 50px); font-weight: 800;
    letter-spacing: -1px; line-height: 1.1;
}
.stat-suffix { color: #BFD8FF; }
.stat-label {
    margin-top: 8px; font-size: 14.5px; font-weight: 500; color: rgba(255, 255, 255, .85);
    text-transform: uppercase; letter-spacing: 1.2px;
}

/* ---------- Features ---------- */
.features-inner {
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center;
}
.features-copy .section-tag { margin-bottom: 16px; }
.features-copy h2 { font-size: clamp(28px, 3.2vw, 40px); font-weight: 800; letter-spacing: -.6px; margin-bottom: 16px; }
.features-copy p { color: var(--gray-soft); margin-bottom: 28px; font-size: 16.5px; }

.features-list {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.features-list li {
    display: flex; align-items: center; gap: 13px;
    background: var(--white); border: 1px solid #E8EEF7; border-radius: var(--radius-sm);
    padding: 15px 18px; font-weight: 600; font-size: 15px; color: var(--gray);
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}
.features-list li:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.feature-check {
    width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0;
    background: var(--gradient); color: #fff;
    display: flex; align-items: center; justify-content: center;
}
.feature-check .icon { width: 16px; height: 16px; }

/* ---------- Testimonials ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
    position: relative;
    background: var(--white); border: 1px solid #E8EEF7; border-radius: var(--radius);
    padding: 38px 32px 30px; box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column;
    transition: transform .35s ease, box-shadow .35s ease;
}
.testimonial-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.quote-icon {
    position: absolute; top: 24px; right: 28px; color: rgba(11, 94, 215, .12);
}
.quote-icon .icon { width: 52px; height: 52px; }
.stars { display: flex; gap: 4px; margin-bottom: 18px; }
.icon-star { width: 18px; height: 18px; fill: var(--gold); stroke: var(--gold); }
.testimonial-text { font-size: 15.5px; color: var(--gray); margin-bottom: 26px; flex-grow: 1; }
.testimonial-author { display: flex; align-items: center; gap: 15px; border-top: 1px solid #EEF2F8; padding-top: 20px; }
.avatar {
    width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
    background: var(--gradient); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-weight: 700; font-size: 17px;
    box-shadow: var(--shadow-blue);
}
.testimonial-author strong { display: block; font-family: var(--font-head); font-size: 15.5px; color: var(--navy); }
.testimonial-author small { font-size: 13px; color: var(--gray-soft); }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
    background: var(--white); border: 1px solid #E8EEF7; border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm); overflow: hidden;
    transition: border-color .3s ease, box-shadow .3s ease;
}
.faq-item.active { border-color: rgba(11, 94, 215, .4); box-shadow: var(--shadow-md); }
.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 20px 24px; text-align: left;
    font-family: var(--font-head); font-size: 16px; font-weight: 600; color: var(--navy);
    transition: color .25s ease;
}
.faq-question:hover { color: var(--blue); }
.faq-chevron { transition: transform .3s ease; color: var(--blue); }
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height .4s ease;
}
.faq-answer-inner { padding: 0 24px 22px; }
.faq-answer-inner p { color: var(--gray-soft); font-size: 15px; }

/* ---------- Contact ---------- */
.contact-section { background: linear-gradient(180deg, #ffffff 0%, #EEF4FF 100%); }
.contact-grid {
    display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; margin-bottom: 50px;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
    display: flex; gap: 18px; align-items: flex-start;
    background: rgba(255, 255, 255, .8); backdrop-filter: blur(10px);
    border: 1px solid #E8EEF7; border-radius: var(--radius);
    padding: 22px 24px; box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.contact-icon {
    width: 50px; height: 50px; border-radius: 13px; flex-shrink: 0;
    background: var(--gradient); color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-blue);
}
.contact-icon .icon { width: 23px; height: 23px; }
.contact-card h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 4px; }
.contact-card p { font-size: 14.5px; color: var(--gray-soft); }

.whatsapp-cta {
    display: flex; align-items: center; gap: 16px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff; border-radius: var(--radius); padding: 20px 24px;
    box-shadow: 0 12px 30px rgba(18, 140, 126, .35);
    transition: transform .3s ease, box-shadow .3s ease;
}
.whatsapp-cta:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(18, 140, 126, .45); color: #fff; }
.whatsapp-cta .icon { width: 38px; height: 38px; }
.whatsapp-cta strong { display: block; font-family: var(--font-head); font-size: 16.5px; }
.whatsapp-cta small { font-size: 13px; opacity: .9; }

.contact-form-wrap {
    background: rgba(255, 255, 255, .85); backdrop-filter: blur(12px);
    border: 1px solid #E8EEF7; border-radius: 22px;
    padding: 38px; box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block; font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 8px;
}
.form-group label span { color: #DC2626; }
.form-group input, .form-group textarea {
    width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--gray);
    background: var(--white); border: 1.5px solid #DCE5F2; border-radius: var(--radius-sm);
    padding: 13px 16px; outline: none; resize: vertical;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--blue); box-shadow: 0 0 0 4px rgba(11, 94, 215, .12);
}
.form-note { margin-top: 14px; font-size: 13px; color: var(--gray-soft); text-align: center; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-alert {
    border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 20px;
    font-size: 14.5px; font-weight: 500;
}
.form-success { background: #ECFDF5; color: #047857; border: 1px solid #A7F3D0; }
.form-error { background: #FEF2F2; color: #B91C1C; border: 1px solid #FECACA; }

.map-placeholder {
    position: relative; overflow: hidden;
    border-radius: 22px; box-shadow: var(--shadow-md);
    border: 6px solid #fff;
    background: linear-gradient(135deg, #0A1F44 0%, #003B8E 60%, #0B5ED7 100%);
    color: #fff; text-align: center;
    padding: 64px 24px;
}
.map-grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse 75% 90% at 50% 50%, #000 20%, transparent 78%);
}
.map-pin-pulse {
    position: relative; margin: 0 auto 18px;
    width: 74px; height: 74px; border-radius: 50%;
    background: rgba(255, 255, 255, .12); backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .35);
    display: flex; align-items: center; justify-content: center;
    animation: pinPulse 2.2s ease-in-out infinite;
}
.map-pin-pulse .icon { width: 34px; height: 34px; color: #fff; }
@keyframes pinPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, .35); }
    50% { box-shadow: 0 0 0 22px rgba(255, 255, 255, 0); }
}
.map-placeholder h3 { position: relative; color: #fff; font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.map-placeholder p { position: relative; color: rgba(255, 255, 255, .85); max-width: 520px; margin: 0 auto 26px; font-size: 15.5px; }
.map-placeholder .btn { position: relative; background: #fff; color: var(--dark-blue); box-shadow: 0 12px 30px rgba(0, 0, 0, .3); }
.map-placeholder .btn:hover { color: var(--blue); }

/* ---------- Footer ---------- */
.site-footer {
    background: #0B1220;
    background: linear-gradient(180deg, #101B33 0%, #0A1322 100%);
    color: rgba(255, 255, 255, .75);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr; gap: 44px;
    padding-bottom: 54px;
}
.brand-footer .brand-text strong { color: #fff; }
.brand-footer .brand-text small { color: var(--blue-light); }
.footer-about p { margin: 18px 0 22px; font-size: 14.5px; max-width: 300px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 42px; height: 42px; border-radius: 12px;
    background: rgba(255, 255, 255, .08); color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: background .3s ease, transform .3s ease;
}
.social-links a:hover { background: var(--gradient); transform: translateY(-4px); }
.social-links .icon { width: 19px; height: 19px; }

.footer-col h3 {
    color: #fff; font-size: 17px; font-weight: 700; margin-bottom: 20px;
    position: relative; padding-bottom: 12px;
}
.footer-col h3::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 36px; height: 3px; border-radius: 3px; background: var(--gradient);
}
.footer-links li { margin-bottom: 11px; }
.footer-links a {
    color: rgba(255, 255, 255, .7); font-size: 14.5px;
    display: inline-flex; align-items: center; gap: 8px;
    transition: color .25s ease, transform .25s ease;
}
.footer-links a::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--blue-light); opacity: .6; transition: opacity .25s ease;
}
.footer-links a:hover { color: #fff; transform: translateX(4px); }
.footer-links a:hover::before { opacity: 1; }

.footer-contact li {
    display: flex; gap: 12px; align-items: flex-start; margin-bottom: 15px;
    font-size: 14.5px;
}
.footer-contact .icon { width: 19px; height: 19px; color: var(--blue-light); margin-top: 2px; }
.footer-contact a { color: rgba(255, 255, 255, .75); }
.footer-contact a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 24px 0; display: flex; flex-wrap: wrap; gap: 10px;
    align-items: center; justify-content: space-between;
    font-size: 13.5px; color: rgba(255, 255, 255, .55);
}
.footer-tag { font-family: var(--font-head); color: var(--blue-light); font-weight: 600; }

/* ---------- Floating buttons ---------- */
.whatsapp-float {
    position: fixed; right: 24px; bottom: 24px; z-index: 900;
    width: 58px; height: 58px; border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 28px rgba(18, 140, 126, .5);
    animation: waPulse 2.4s ease-in-out infinite;
    transition: transform .25s ease;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
.whatsapp-float .icon { width: 30px; height: 30px; }
@keyframes waPulse {
    0%, 100% { box-shadow: 0 10px 28px rgba(18, 140, 126, .5), 0 0 0 0 rgba(37, 211, 102, .45); }
    50% { box-shadow: 0 10px 28px rgba(18, 140, 126, .5), 0 0 0 16px rgba(37, 211, 102, 0); }
}

.back-to-top {
    position: fixed; right: 24px; bottom: 96px; z-index: 900;
    width: 48px; height: 48px; border-radius: 14px;
    background: var(--gradient); color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-blue);
    opacity: 0; visibility: hidden; transform: translateY(14px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }
.back-to-top .icon { width: 22px; height: 22px; }

/* ---------- Scroll reveal animations ---------- */
.reveal {
    opacity: 0; transform: translateY(34px);
    transition: opacity .8s cubic-bezier(.22, .68, .35, 1), transform .8s cubic-bezier(.22, .68, .35, 1);
    transition-delay: var(--d, 0s);
    will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }
.delay-4 { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-img-wrap > img, .float-card, .whatsapp-float, .loader-mark svg { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
    .modules-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(4, 1fr); }
    .why-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 36px 20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .float-card-1 { left: 0; }
    .float-card-2 { left: -4%; }
    .float-card-3 { right: 0; }
}

@media (max-width: 920px) {
    .nav-toggle { display: block; }
    .main-nav {
        position: fixed; inset: 0; z-index: 1050;
        background: rgba(255, 255, 255, .97); backdrop-filter: blur(16px);
        flex-direction: column; justify-content: center; gap: 10px;
        opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
    }
    .main-nav.open { opacity: 1; visibility: visible; }
    .main-nav .nav-link { font-size: 20px; padding: 12px 26px; }
    .nav-cta { margin: 14px 0 0; }

    .hero { padding-top: calc(var(--header-h) + 46px); }
    .hero-inner { grid-template-columns: 1fr; gap: 54px; text-align: center; }
    .hero-sub { margin-inline: auto; }
    .hero-actions, .hero-trust { justify-content: center; }
    .hero-visual { max-width: 620px; margin-inline: auto; }

    .features-inner { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
}

@media (max-width: 640px) {
    .section { padding: 70px 0; }
    .modules-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .industry-card { padding: 18px 8px; font-size: 13px; gap: 9px; }
    .industry-icon { width: 44px; height: 44px; border-radius: 12px; }
    .industry-icon .icon { width: 21px; height: 21px; }
    .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .why-card { padding: 22px 18px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .features-list { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 26px 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { justify-content: center; text-align: center; }
    .hero-actions .btn { width: 100%; }
    .float-card { padding: 10px 14px; }
    .float-card-1 { top: -4%; }
    .whatsapp-float { right: 16px; bottom: 16px; }
    .back-to-top { right: 21px; bottom: 86px; }
}

@media (max-width: 420px) {
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
}
