/* ===================================================================
   UAE Company Formation – Enterslice
   styles.css  |  Bootstrap 5.3 + AOS + Swiper companion stylesheet
   =================================================================== */

/* ===== CSS Variables – Same Color Theme ===== */
:root {
    --es-blue: #2962FF;
    --es-blue-50: #F0F4FF;
    --es-blue-100: #E3EAFF;
    --es-blue-200: #C5D5FF;
    --es-navy: #0d1b3e;
    --es-purple: #7C3AED;
    --es-emerald: #10B981;
    --gradient-hero: linear-gradient(135deg, #2962FF 0%, #7C3AED 100%);
    --gradient-cta: linear-gradient(135deg, #2962FF 0%, #0F4C75 100%);
    --text-1: #1F2937;
    --text-2: #4B5563;
    --text-3: #6B7280;
    --text-4: #9CA3AF;
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-subtle: #F3F4F6;
    --border: #E5E7EB;
    --border-light: #F3F4F6;
    --radius-xl: 20px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --radius-full: 9999px;
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --shadow-xl: 0 20px 50px -12px rgba(0, 0, 0, 0.15);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-1);
    background: var(--bg-white);
    line-height: 1.65;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

a {
    color: var(--es-blue);
    text-decoration: none;
    transition: all 0.3s var(--ease);
}

button,
.btn {
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--ease);
}

/* ===== Animations ===== */
@keyframes shimmer {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.shimmer {
    animation: shimmer 2s ease-in-out infinite;
}

.float {
    animation: float 3s ease-in-out infinite;
}

.fade-in-up {
    animation: fadeInUp 0.6s var(--ease);
}

.pulse-dot {
    animation: pulse 2s ease-in-out infinite;
}

/* ===== Section Helpers ===== */
.section {
    padding: 96px 0;
}

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

.section-dark {
    background: linear-gradient(135deg, var(--es-navy), #1e293b);
    color: white;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(41, 98, 255, 0.06);
    border: 1px solid rgba(41, 98, 255, 0.12);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    color: var(--es-blue);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-dark .section-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-3);
    max-width: 640px;
    line-height: 1.7;
}

.section-title-dark {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
    color: white;
}

.section-subtitle-dark {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 640px;
    line-height: 1.7;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
    padding-right: 40px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-header {
        padding-right: 0;
    }
}

.gradient-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn-primary-es {
    background: var(--gradient-hero);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    border: none;
    transition: all 0.3s var(--ease);
}

.btn-primary-es:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-outline-es {
    background: transparent;
    color: var(--es-blue);
    padding: 12px 24px;
    border: 2px solid var(--es-blue);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s var(--ease);
}

.btn-outline-es:hover {
    background: var(--es-blue-50);
    color: var(--es-blue);
}

.btn-white-es {
    background: white;
    color: var(--es-navy);
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s var(--ease);
}

.btn-white-es:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--es-navy);
}

.btn-white-outline-es {
    background: transparent;
    color: white;
    padding: 14px 32px;
    border: 2px solid white;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s var(--ease);
}

.btn-white-outline-es:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* ===== NAVBAR ===== */
.es-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    transition: all 0.3s var(--ease);
}

.navbar-accent-bar {
    height: 3px;
    background: var(--gradient-hero);
}

.navbar-inner {
    height: 72px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    transition: all 0.3s var(--ease);
}

.es-navbar.scrolled .navbar-inner {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.navbar-brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
}

.navbar-brand-logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.navbar-zone-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(15, 45, 122, 0.6);
    padding: 0.14rem 0.4rem;
    border: 1px solid rgba(15, 45, 122, 0.2);
    border-radius: 5px;
    margin-left: 8px;
    white-space: nowrap;
    transition: all 0.2s var(--ease);
}

.navbar-brand-logo:hover .navbar-zone-badge {
    color: var(--es-blue);
    border-color: rgba(41, 98, 255, 0.35);
}

/* Mobile/Tablet CTA button in navbar */
.navbar-mobile-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-hero);
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: var(--radius-md);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s var(--ease);
}

.navbar-mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

/* Desktop nav links */
.es-nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2) !important;
    padding: 7px 14px !important;
    border-radius: var(--radius-sm);
    transition: all 0.2s var(--ease);
    position: relative;
}

.es-nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--es-blue);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.2s var(--ease);
}

.es-nav-link:hover {
    color: var(--es-blue) !important;
}

.es-nav-link:hover::after {
    transform: scaleX(1);
}

/* Phone chip */
.navbar-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 7px 14px;
    border-radius: var(--radius-full);
    transition: all 0.2s var(--ease);
}

.navbar-phone:hover {
    color: var(--es-blue);
    border-color: rgba(41, 98, 255, 0.3);
    background: var(--es-blue-50);
}

.navbar-phone i {
    color: var(--es-blue);
}

/* CTA button */
.navbar-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-hero);
    color: white;
    padding: 9px 22px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}

.navbar-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

/* Hamburger */
.nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px 9px;
    transition: all 0.2s var(--ease);
}

.nav-hamburger:hover {
    background: var(--es-blue-50);
    border-color: rgba(41, 98, 255, 0.3);
}

.nav-hamburger span {
    display: block;
    height: 2px;
    background: var(--text-1);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile menu */
.mobile-nav-menu {
    display: none !important;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    z-index: 1049;
    padding: 8px 0 20px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-2);
    border-bottom: 1px solid var(--bg-subtle);
    transition: all 0.2s var(--ease);
}

.mobile-nav-link:last-of-type {
    border-bottom: none;
}

.mobile-nav-link i {
    width: 18px;
    text-align: center;
    color: var(--es-blue);
    font-size: 14px;
}

.mobile-nav-link:hover {
    color: var(--es-blue);
    background: var(--es-blue-50);
    padding-left: 30px;
}

.mobile-nav-cta {
    padding: 16px 24px 4px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 20px;
    transition: all 0.2s var(--ease);
}

.mobile-nav-phone:hover {
    color: var(--es-blue);
    border-color: var(--es-blue);
}

/* ===== HERO ===== */
.hero {
    padding-top: 72px;
    background: linear-gradient(135deg, #0d1b3e 0%, #1a1a4e 40%, #2962FF 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(41, 98, 255, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero-content-wrap {
    padding-right: 8rem;
}

.hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 20px;
    color: white;
}

.hero h1 span {
    background: linear-gradient(90deg, #60a5fa, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero-cta-row {
    display: flex;
    gap: 14px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.hero-cta-primary {
    background: white;
    color: var(--es-navy);
    padding: 16px 36px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
    transition: all 0.3s var(--ease);
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
    color: var(--es-navy);
}

.hero-cta-whatsapp {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    padding: 16px 28px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    transition: all 0.3s var(--ease);
}

.hero-cta-whatsapp:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
}

.hero-trust-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.hero-trust-item i {
    color: #10B981;
    font-size: 14px;
}

/* Hero Stats Card */
.hero-stats-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 32px;
}

.hero-stats-title {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-stat-box {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ease);
}

.hero-stat-box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-hero);
    opacity: 0;
    transition: opacity 0.3s;
}

.hero-stat-box:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(41, 98, 255, 0.4);
    transform: translateY(-3px);
}

.hero-stat-box:hover::before {
    opacity: 1;
}

.hero-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: linear-gradient(135deg, #fff 50%, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-capabilities {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-capabilities li {
    padding: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-capabilities li:last-child {
    border-bottom: none;
}

.hero-capabilities li i {
    color: #60a5fa;
    font-size: 15px;
    width: 20px;
    text-align: center;
}

.hero-cap-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    margin-left: auto;
}

/* ===== HERO INQUIRY FORM CARD ===== */
.hb-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--radius-xl);
    overflow: visible;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.hb-card-hd {
    background: linear-gradient(135deg, #0d1b3e 0%, #1a1a4e 40%, #2962FF 100%);
    padding: 24px 28px 18px;
    border-bottom: none;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.hb-card-hd-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.hb-avs {
    display: flex;
}

.hb-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    margin-right: -8px;
    border: 2px solid #fff;
}

.hb-av-1 {
    background: var(--es-blue);
}

.hb-av-2 {
    background: var(--es-purple);
}

.hb-av-3 {
    background: var(--es-emerald);
}

.hb-online-dot {
    width: 8px;
    height: 8px;
    background: var(--es-emerald);
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    animation: hb-pulse 1.5s infinite;
}

@keyframes hb-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hb-adv-status {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
}

.hb-adv-stars {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.hb-adv-stars i {
    color: #f59e0b;
    font-size: 11px;
}

.hb-adv-stars strong {
    color: #fff;
}

.hb-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hb-card-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.hb-card-body {
    padding: 24px 28px 28px;
}

.hb-form-group {
    margin-bottom: 16px;
}

.hb-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 6px;
}

.hb-form-control {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    color: var(--text-1);
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all 0.2s var(--ease);
    outline: none;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}

.hb-form-control:focus {
    border-color: var(--es-blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(41, 98, 255, 0.1);
}

.hb-form-control::placeholder {
    color: var(--text-4);
}

select.hb-form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.hb-submit {
    width: 100%;
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: var(--gradient-hero);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s var(--ease);
    font-family: inherit;
}

.hb-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41, 98, 255, 0.35);
}

.hb-form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-4);
    margin-top: 12px;
}

.hb-form-note i {
    color: var(--es-emerald);
    margin-right: 4px;
}

/* ===== HERO PHONE INPUT — Country Code Dropdown ===== */
.hb-form-group .iti {
    width: 100%;
}

#hero-ph-input.iti__tel-input,
#hero-ph-input {
    padding-left: 90px !important;
}

.hb-card .iti__selected-flag {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    background: var(--bg-light);
    border-right: 1px solid var(--border);
    padding: 0 8px 0 10px;
}

.hb-card .iti__selected-flag:hover,
.hb-card .iti__selected-flag:focus {
    background: var(--es-blue-100);
}

.hb-card .iti--separate-dial-code .iti__selected-flag {
    background-color: rgba(0, 0, 0, 0.05);
}

.hb-card .iti--separate-dial-code .iti__selected-dial-code {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-1);
}

.hb-card .iti__country-list {
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(15, 45, 122, 0.14);
    border: 1.5px solid var(--border);
    font-family: inherit;
    font-size: 13px;
    max-height: 220px;
    z-index: 100;
    min-width: 300px;
    background: #fff;
}

.hb-card .iti__country.iti__highlight {
    background: rgba(41, 98, 255, 0.07);
}

.hb-card .iti__country-list .iti__country {
    color: var(--text-1);
}

.hb-card .iti__country-list .iti__country-name,
.hb-card .iti__country-list .iti__dial-code {
    color: var(--text-1);
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: linear-gradient(135deg, #f0f5ff 0%, #f8faff 50%, #eef2ff 100%);
    padding: 0;
    border-top: 1px solid rgba(41, 98, 255, 0.08);
    border-bottom: 1px solid rgba(41, 98, 255, 0.08);
    overflow: hidden;
}

.trust-bar .container {
    padding-top: 0;
    padding-bottom: 0;
}

.trust-bar .row {
    gap: 0 !important;
}

.trust-bar .col-auto {
    padding: 0;
}

.trust-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--es-blue);
    letter-spacing: 0.12em;
    padding: 20px 24px;
    border-right: 1px solid rgba(41, 98, 255, 0.1);
    background: rgba(41, 98, 255, 0.05);
    display: flex;
    align-items: center;
    height: 100%;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: var(--text-2);
    font-weight: 600;
    padding: 20px 22px;
    border-right: 1px solid rgba(41, 98, 255, 0.08);
    transition: background 0.25s, color 0.25s;
    cursor: default;
    height: 100%;
}

.trust-badge:hover {
    background: rgba(41, 98, 255, 0.06);
    color: var(--es-blue);
}

.trust-badge i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(41, 98, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--es-blue);
    font-size: 14px;
    flex-shrink: 0;
    transition: background 0.25s;
}

.trust-badge:hover i {
    background: rgba(41, 98, 255, 0.18);
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ease);
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-hero);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}

.service-card:hover {
    border-color: rgba(41, 98, 255, 0.2);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 24px;
    color: var(--es-blue);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: rgba(41, 98, 255, 0.08);
    transition: all 0.3s var(--ease);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: rgba(41, 98, 255, 0.14);
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-desc {
    font-size: 14px;
    color: var(--text-3);
    line-height: 1.6;
    margin: 0;
}

/* ===== ENTITY TYPE CARDS ===== */
.entity-type-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 22px;
    padding: 36px 32px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s var(--ease);
    height: 100%;
}

.entity-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #64748b, #94a3b8);
    border-radius: 22px 22px 0 0;
}

.entity-type-card:hover {
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
    border-color: rgba(100, 116, 139, 0.4);
}

.entity-type-card.recommended {
    border-color: var(--es-blue);
    box-shadow: 0 12px 40px rgba(41, 98, 255, 0.14);
}

.entity-type-card.recommended::before {
    background: var(--gradient-hero);
}

.entity-type-card.recommended:hover {
    box-shadow: 0 24px 60px rgba(41, 98, 255, 0.22);
    border-color: var(--es-blue);
}

.entity-type-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(41, 98, 255, 0.08);
    border: 1px solid rgba(41, 98, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--es-blue);
    margin-bottom: 20px;
    transition: all 0.35s var(--ease);
}

.entity-type-card.recommended .entity-type-icon {
    background: rgba(41, 98, 255, 0.12);
    border-color: rgba(41, 98, 255, 0.25);
    box-shadow: 0 6px 20px rgba(41, 98, 255, 0.15);
}

.entity-type-card:hover .entity-type-icon {
    transform: scale(1.1);
}

.entity-type-name {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--es-navy);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.entity-type-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--gradient-hero);
    color: white;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
}

.entity-type-best {
    background: #f0f5ff;
    border: 1px solid rgba(41, 98, 255, 0.12);
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 13px;
    color: var(--text-2);
    margin-bottom: 22px;
    border-left: 3px solid var(--es-blue);
}

.entity-type-best strong {
    color: var(--es-blue);
}

.entity-type-features {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.entity-type-features li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-2);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.entity-type-features li:last-child {
    border-bottom: none;
}

.entity-type-features li i {
    color: var(--es-emerald);
    margin-top: 2px;
    font-size: 13px;
    flex-shrink: 0;
}

/* Compare Table */
.table-responsive-wrapper {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(41, 98, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.compare-table thead tr {
    background: var(--gradient-hero);
}

.compare-table th {
    color: white;
    padding: 18px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.compare-table th:first-child {
    width: 35%;
}

.compare-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(41, 98, 255, 0.06);
    font-size: 14px;
    color: var(--text-2);
    vertical-align: middle;
}

.compare-table td:first-child {
    font-weight: 600;
    color: var(--es-navy);
    background: #f8faff;
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.compare-table tbody tr {
    transition: background 0.2s;
}

.compare-table tbody tr:hover td {
    background: #f0f5ff;
}

.compare-table tbody tr:hover td:first-child {
    background: #e8eeff;
}

/* ===== PROCESS CARDS ===== */
#process.section {
    background: linear-gradient(180deg, #f8faff 0%, #eef2ff 100%);
}

.process-card {
    background: white;
    border: 1px solid rgba(41, 98, 255, 0.1);
    border-radius: 20px;
    padding: 36px 24px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.35s var(--ease);
    height: 100%;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-hero);
    transform: scaleX(0);
    transition: transform 0.35s var(--ease);
    transform-origin: left;
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-card:hover {
    box-shadow: 0 20px 50px rgba(41, 98, 255, 0.13);
    border-color: rgba(41, 98, 255, 0.25);
    transform: translateY(-6px);
}

/* Big faded step number watermark */
.process-card::after {
    content: attr(data-step);
    position: absolute;
    bottom: -10px;
    right: 12px;
    font-size: 88px;
    font-weight: 900;
    color: rgba(41, 98, 255, 0.05);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.process-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-hero);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    margin: 0 auto 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-shadow: 0 6px 18px rgba(41, 98, 255, 0.35);
    position: relative;
    z-index: 1;
}

.process-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(41, 98, 255, 0.1), rgba(124, 58, 237, 0.08));
    border: 1px solid rgba(41, 98, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--es-blue);
    margin: 0 auto 18px;
    transition: all 0.35s var(--ease);
}

.process-card:hover .process-icon {
    background: linear-gradient(135deg, rgba(41, 98, 255, 0.18), rgba(124, 58, 237, 0.14));
    box-shadow: 0 8px 22px rgba(41, 98, 255, 0.18);
    transform: scale(1.08);
}

.process-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--es-navy);
}

.process-points {
    list-style: none;
    text-align: left;
    font-size: 13px;
    color: var(--text-3);
    padding: 0;
    border-top: 1px solid var(--border);
    padding-top: 14px;
    margin: 0;
}

.process-points li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    color: #475569;
}

.process-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--es-emerald);
    font-weight: 700;
    font-size: 12px;
}

/* ===== INLINE CTA ===== */
.inline-cta {
    background: var(--gradient-cta);
    padding: 64px 0;
    color: white;
    text-align: center;
}

.inline-cta-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.inline-cta-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.inline-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== DOCS SECTION ===== */
.docs-section {
    padding: 96px 0;
    background: linear-gradient(135deg, #0a1628 0%, #0d1b3e 60%, #111827 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.docs-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(41, 98, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.doc-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    padding: 36px 24px 28px;
    text-align: center;
    transition: all 0.35s var(--ease);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.doc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--es-blue), var(--es-purple));
    opacity: 0;
    transition: opacity 0.35s;
}

.doc-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(41, 98, 255, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.doc-card:hover::after {
    opacity: 1;
}

.doc-step {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(41, 98, 255, 0.5);
    letter-spacing: 0.05em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.doc-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(41, 98, 255, 0.2), rgba(124, 58, 237, 0.15));
    border: 1px solid rgba(41, 98, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #60a5fa;
    margin: 0 auto 20px;
    transition: all 0.35s var(--ease);
    box-shadow: 0 8px 24px rgba(41, 98, 255, 0.12);
}

.doc-card:hover .doc-icon {
    background: linear-gradient(135deg, rgba(41, 98, 255, 0.35), rgba(124, 58, 237, 0.25));
    box-shadow: 0 10px 30px rgba(41, 98, 255, 0.25);
    transform: scale(1.08);
}

.doc-check {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #34d399;
    margin-bottom: 12px;
}

.doc-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.doc-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    margin: 0;
}

/* ===== PRICE ANCHOR ===== */
.price-anchor {
    background: var(--bg-light);
    padding: 20px 0;
    text-align: center;
    font-size: 16px;
    color: var(--text-2);
    border-bottom: 1px solid var(--border);
}

.price-anchor strong {
    color: var(--es-blue);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 96px 0;
    background: white;
}

.pricing-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: all 0.3s var(--ease);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.pricing-card.featured {
    border: 2px solid var(--es-blue);
    box-shadow: 0 20px 50px rgba(41, 98, 255, 0.18);
    transform: scale(1.04);
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.featured-badge {
    display: inline-block;
    background: var(--gradient-hero);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.pricing-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 38px;
    font-weight: 800;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.pricing-card-dark .pricing-price {
    background: none;
    -webkit-text-fill-color: white;
    color: white;
}

.pricing-popular {
    font-size: 12px;
    color: var(--text-3);
    margin-bottom: 24px;
}

.pricing-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 20px 0;
}

.pricing-info {
    text-align: center;
    font-size: 13px;
    color: var(--text-3);
    margin-bottom: 16px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}

.pricing-features li {
    padding: 9px 0;
    font-size: 14px;
    color: var(--text-3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--es-emerald);
    font-size: 13px;
    flex-shrink: 0;
}

.pricing-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-2);
    font-weight: 600;
}

.trust-item i {
    color: var(--es-emerald);
    font-size: 16px;
}

/* ===== TESTIMONIALS (Swiper) ===== */
.testimonial-section {
    padding: 96px 0;
    background: linear-gradient(135deg, #0a1628 0%, #0d1b3e 50%, #1a1040 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41, 98, 255, 0.13) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial-swiper {
    padding-bottom: 60px !important;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.35s var(--ease);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: rgba(41, 98, 255, 0.18);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(41, 98, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
    color: #FBBF24;
    margin-bottom: 14px;
    font-size: 15px;
    letter-spacing: 3px;
}

.testimonial-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    font-style: italic;
    margin: 0 0 20px;
}

.testimonial-author {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    border: 2px solid rgba(41, 98, 255, 0.4);
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 3px;
}

.author-location {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* ── Counter Stats ── */
.testimonial-stats .stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.testimonial-stats .stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(41, 98, 255, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.testimonial-stats .stat-item:hover::before {
    opacity: 1;
}

.testimonial-stats .stat-item:hover {
    border-color: rgba(41, 98, 255, 0.35);
    transform: translateY(-3px);
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(41, 98, 255, 0.15);
    border: 1px solid rgba(41, 98, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 16px;
    color: #60a5fa;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: linear-gradient(135deg, #fff 60%, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

/* Swiper custom overrides */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4) !important;
}

.swiper-pagination-bullet-active {
    background: white !important;
}

.swiper-button-prev,
.swiper-button-next {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px !important;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 96px 0;
    background: white;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s var(--ease);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-1);
    transition: all 0.3s var(--ease);
    user-select: none;
    margin: 0;
}

.faq-item.active .faq-question {
    background: var(--es-blue-50);
    color: var(--es-blue);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.faq-toggle {
    transition: transform 0.3s var(--ease);
    color: var(--text-3);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    color: var(--es-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-3);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: var(--gradient-cta);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 12px;
    color: white;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--es-navy);
    color: white;
}

/* Footer Main */
.footer-main {
    padding: 64px 0 48px;
}

.footer-brand-col {
    padding-right: 16px;
}

.footer-logo-link {
    display: inline-flex;
    margin-bottom: 20px;
}

.footer-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-about {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 340px;
}

/* Contact list */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

a.footer-contact-item:hover {
    color: white;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: #fff;
}

.footer-contact-icon {
    width: 30px;
    height: 30px;
    border-radius: var(--radius-sm);
    background: rgba(41, 98, 255, 0.25);
    border: 1px solid rgba(41, 98, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #60a5fa;
    flex-shrink: 0;
}

/* Social */
.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    transition: all 0.3s var(--ease);
}

.social-btn:hover {
    background: var(--es-blue);
    border-color: var(--es-blue);
    color: white;
    transform: translateY(-2px);
}

/* Footer col headings */
.footer-col-inner {
    padding-top: 4px;
}

.footer-heading {
    color: white;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-heading span {
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--es-blue);
    border-radius: 2px;
}

/* Footer links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s var(--ease);
    padding: 2px 0;
}

.footer-links a i {
    font-size: 11px;
    color: var(--es-blue);
    transition: transform 0.2s;
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-links a:hover i {
    transform: translateX(2px);
}

/* Office list */
.footer-office {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-office:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer-office-flag {
    font-size: 22px;
    line-height: 1;
    margin-top: 1px;
}

.footer-office-city {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2px;
}

.footer-office-addr {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 0 20px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-copyright p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 4px;
}

.footer-copyright p strong {
    color: rgba(255, 255, 255, 0.75);
}

.footer-reg {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35) !important;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-disclaimer {
    background: rgba(0, 0, 0, 0.2);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float {
    position: fixed;
    bottom: 88px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: bounce 2.5s ease-in-out infinite;
    z-index: 999;
    transition: all 0.3s var(--ease);
}

.whatsapp-float:hover {
    transform: scale(1.12);
    color: white;
}

.back-to-top {
    position: fixed;
    bottom: 156px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--es-navy);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    text-decoration: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 12px;
    background: #fff;
    border-top: 1px solid var(--border);
    z-index: 998;
    gap: 8px;
    justify-content: center;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

.mobile-sticky a {
    margin: 0;
    flex: 1;
    justify-content: center;
    border-radius: var(--radius-sm);
    padding: 12px 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mobile-sticky .sticky-call {
    background: #fff;
    color: var(--es-blue);
    border: 1.5px solid var(--es-blue);
}

.mobile-sticky .sticky-wa {
    background: #25d366;
    color: #fff;
    border: 1.5px solid #25d366;
}

/* ===== RESPONSIVE ===== */

/* ── 1024px fix ── */
@media (max-width: 1024px) {

    /* Banner */
    .hero h1 {
        font-size: 30px;
    }

    .hero-content-wrap {
        padding-right: 0;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-stats-card {
        padding: 24px 16px;
    }

    .hero-stat-number {
        font-size: 24px;
    }

    .hero-capabilities li {
        font-size: 13px;
    }

    .navbar-cta-btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    /* Footer */
    .footer-brand-col {
        padding-right: 0;
    }

    .footer-about {
        font-size: 13px;
        max-width: 100%;
    }

    .footer-col-inner {
        padding: 0;
    }

    .footer-heading {
        font-size: 13px;
    }

    .footer-links li a {
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .hero h1 {
        font-size: 34px;
    }

    /* Hero tablet — two equal columns */
    .hero-content-wrap {
        padding-right: 0;
    }

    .hero-stats-card {
        margin-top: 0;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }

    .footer-brand-col {
        padding-right: 0;
    }

    .footer-about {
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    /* Sections */
    .section,
    .docs-section,
    .testimonial-section,
    .pricing-section,
    .faq-section {
        padding: 64px 0;
    }

    /* Hero */
    .hero {
        min-height: auto;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-cta-row {
        flex-direction: column;
    }

    .hero-cta-primary,
    .hero-cta-whatsapp {
        width: 100%;
        justify-content: center;
    }

    /* Typography */
    .section-title,
    .section-title-dark {
        font-size: 26px;
    }

    .inline-cta-title {
        font-size: 26px;
    }

    .final-cta h2 {
        font-size: 30px;
    }

    /* CTA buttons */
    .inline-cta-buttons {
        flex-direction: row;
        align-items: center;
    }

    .final-cta-buttons {
        flex-direction: row;
        align-items: center;
    }

    /* Footer */
    .footer-bottom-inner {
        flex-direction: row;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    /* Hide zone badge on mobile */
    .navbar-zone-badge {
        display: none;
    }

    /* Hero inquiry form */
    .hb-card-hd,
    .hb-card-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hb-card-title {
        font-size: 18px;
    }

    /* Sticky / float */
    .mobile-sticky {
        display: flex;
    }

    .whatsapp-float {
        bottom: 88px;
        width: 46px;
        height: 46px;
        font-size: 22px;
        right: 16px;
    }

    .back-to-top {
        bottom: 148px;
        right: 18px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .footer-main {
        padding: 48px 0 36px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero-stat-number {
        font-size: 24px;
    }

    .hero-trust-row {
        flex-direction: column;
        gap: 8px;
    }

    .hero-content-wrap {
        padding-right: 0;
    }

    .section-title,
    .section-title-dark {
        font-size: 22px;
    }

    .pricing-trust {
        gap: 16px;
    }

    .navbar-brand-logo img {
        height: 24px;
    }

    /* CTA buttons */
    .inline-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Footer */
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

}

/* ── Footer WhatsApp CTA Button ── */
.es-footer-wa-btn {
    display: flex;
    align-items: center;
    gap: 13px;
    background: linear-gradient(135deg, rgba(37, 211, 102, .11) 0%, rgba(37, 211, 102, .06) 100%);
    border: 1px solid rgba(37, 211, 102, .25);
    border-radius: 14px;
    padding: 13px 15px;
    margin-top: 20px;
    text-decoration: none;
    transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.es-footer-wa-btn:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, .2) 0%, rgba(37, 211, 102, .12) 100%);
    border-color: rgba(37, 211, 102, .45);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, .15);
    text-decoration: none;
}

.es-footer-wa-icon {
    width: 44px;
    height: 44px;
    background: #25d366;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 211, 102, .35);
}

.es-footer-wa-info {
    flex: 1;
    min-width: 0;
}

.es-footer-wa-label {
    font-size: .83rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 2px;
}

.es-footer-wa-sub {
    font-size: .69rem;
    color: rgba(255, 255, 255, .42);
    line-height: 1.4;
    display: block;
}

.es-footer-wa-arrow {
    color: rgba(37, 211, 102, .65);
    font-size: .78rem;
    flex-shrink: 0;
}

.hb-form-group .hb-input-wrap {
  position: relative;
}

.hb-form-group .hb-input-wrap .hb-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 15px;
  pointer-events: none;
  z-index: 2;
}

.hb-form-group .hb-input-wrap .hb-form-control {
  padding-left: 42px;
}