/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --bg: #0B1120;
    --bg-alt: #0F172A;
    --card: #111827;
    --primary: #00C2FF;
    --accent: #7C3AED;
    --text: #FFFFFF;
    --text-muted: #94A3B8;
    --border: rgba(255, 255, 255, 0.1);
    --glass: rgba(17, 24, 39, 0.6);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
    --bg: #FFFFFF;
    --bg-alt: #F8FAFC;
    --card: #F8FAFC;
    --text: #111827;
    --text-muted: #64748B;
    --border: rgba(17, 24, 39, 0.1);
    --glass: rgba(255, 255, 255, 0.7);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.3s, color 0.3s;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
}

.w-100 {
    width: 100%;
}

.me-2 {
    margin-right: 8px;
}

.ms-2 {
    margin-left: 8px;
}

/* =========================================
   2. LOADER
   ========================================= */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.18s, visibility 0.18s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
}

.loader-logo span {
    color: var(--primary);
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: var(--border);
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    animation: load 1.5s ease forwards;
}

@keyframes load {
    to {
        width: 100%;
    }
}

/* =========================================
   3. BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 194, 255, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
}

.btn-ghost:hover {
    color: var(--primary);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* =========================================
   4. HEADER
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.logo span {
    color: var(--primary);
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-list a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    transition: var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--text);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.theme-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

/* =========================================
   5. HERO
   ========================================= */
.hero {
    min-height: 100vh;
    padding: 140px 0 80px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 30%, rgba(0, 194, 255, 0.15), transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(124, 58, 237, 0.15), transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    opacity: 0.4;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(0, 194, 255, 0.1);
    border: 1px solid rgba(0, 194, 255, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
}

.stat p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hero-visual {
    position: relative;
}

.hero-device {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px rgba(0, 194, 255, 0.2);
}

.hero-device img {
    width: 100%;
    height: auto;
}

.device-glow {
    position: absolute;
    inset: -50%;
    z-index: -1;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.3), transparent 60%);
    filter: blur(60px);
}

.floating-card {
    position: absolute;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    animation: float 4s ease-in-out infinite;
}

.fc-1 {
    top: 15%;
    left: -30px;
}

.fc-2 {
    bottom: 20%;
    right: -30px;
    animation-delay: 2s;
}

.floating-card i {
    color: var(--primary);
    font-size: 1.3rem;
}

@keyframes float {

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

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

/* =========================================
   6. SECTIONS
   ========================================= */
.section {
    padding: 100px 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(0, 194, 255, 0.1);
    border: 1px solid rgba(0, 194, 255, 0.2);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 36px 28px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 194, 255, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.15), rgba(124, 58, 237, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Devices */
.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.device-card {
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.device-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.device-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.device-card h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.device-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Pricing */
.pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
    font-weight: 500;
}

.toggle {
    position: relative;
    width: 56px;
    height: 30px;
}

.toggle input {
    display: none;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--border);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: var(--transition);
}

.toggle input:checked+.toggle-slider {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.toggle input:checked+.toggle-slider::before {
    transform: translateX(26px);
}

.save-badge {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

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

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.08), rgba(124, 58, 237, 0.08));
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    vertical-align: top;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
}

.period {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.features-list {
    text-align: left;
    margin-bottom: 30px;
}

.features-list li {
    padding: 10px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border);
}

.features-list li:last-child {
    border: none;
}

.features-list i {
    color: var(--primary);
}

/* Testimonials */
.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    padding: 32px;
    min-width: calc(33.333% - 16px);
    flex-shrink: 0;
}

.stars {
    color: #FFC107;
    margin-bottom: 16px;
}

.testimonial-card p {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* =========================================
   ULTRA-PREMIUM FAQ SECTION
   ========================================= */

/* === FAQ CONTROLS === */
.faq-controls {
    max-width: 900px;
    margin: 0 auto 50px;
}

.faq-search {
    position: relative;
    margin-bottom: 24px;
}

.faq-search i {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
}

.faq-search input {
    width: 100%;
    padding: 18px 24px 18px 56px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 16px;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.faq-search input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 194, 255, 0.1);
}

.faq-search input::placeholder {
    color: var(--text-muted);
}

/* === FAQ TABS === */
.faq-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-tab:hover {
    border-color: var(--primary);
    color: var(--text);
    transform: translateY(-2px);
}

.faq-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.3);
}

.faq-tab i {
    font-size: 0.9rem;
}

/* === FAQ CONTAINER === */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* === FAQ ITEM === */
.faq-item {
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(0, 194, 255, 0.3);
    transform: translateX(5px);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 194, 255, 0.1);
}

.faq-item.hide {
    display: none;
}

/* === FAQ QUESTION === */
.faq-question {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.faq-q-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.faq-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.15), rgba(124, 58, 237, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
    transition: all 0.3s;
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    transform: rotateY(360deg);
}

.faq-toggle {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.4s;
}

.faq-item.active .faq-toggle {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    transform: rotate(45deg);
}

/* === FAQ ANSWER === */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer-content {
    padding: 0 28px 28px 88px;
}

.faq-answer-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.faq-answer-content strong {
    color: var(--text);
    font-weight: 600;
}

/* === FAQ LIST === */
.faq-list {
    list-style: none;
    margin: 16px 0;
    padding: 0;
}

.faq-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-list li i {
    color: var(--primary);
    font-size: 0.85rem;
    min-width: 16px;
}

/* === FAQ ANSWER FOOTER (Button) === */
.faq-answer-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.faq-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.faq-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.3);
}

.faq-btn.btn-primary-glow {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.3);
}

.faq-btn.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 194, 255, 0.5);
}

.faq-btn i:first-child {
    font-size: 1rem;
}

.faq-btn i:last-child {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.faq-btn:hover i:last-child {
    transform: translateX(4px);
}

/* === NO RESULTS === */
.faq-no-results {
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-no-results i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    opacity: 0.5;
}

.faq-no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.faq-no-results p {
    color: var(--text-muted);
}

/* === FAQ CTA (Still Have Questions) === */
.faq-cta {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 40px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.faq-cta-content {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    min-width: 300px;
}

.faq-cta-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.3);
}

.faq-cta-content h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
    font-family: 'Space Grotesk', sans-serif;
}

.faq-cta-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.faq-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.faq-cta-btn.whatsapp {
    background: #25D366;
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.faq-cta-btn.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.faq-cta-btn.email {
    background: var(--bg-alt);
    color: var(--text);
}

.faq-cta-btn.email:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
        font-size: 0.95rem;
    }

    .faq-q-left {
        gap: 12px;
    }

    .faq-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 0 20px 20px 70px;
    }

    .faq-tabs {
        gap: 8px;
    }

    .faq-tab {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .faq-tab span {
        display: none;
    }

    .faq-tab i {
        font-size: 1rem;
    }

    .faq-cta {
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
    }

    .faq-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .faq-cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .faq-cta-btn {
        justify-content: center;
    }
}

/* === ANIMATION === */
@keyframes faqSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.faq-item {
    animation: faqSlideIn 0.5s ease forwards;
}

.faq-item:nth-child(1) {
    animation-delay: 0.05s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.15s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.25s;
}

.faq-item:nth-child(6) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(7) {
    animation-delay: 0.35s;
}

.faq-item:nth-child(8) {
    animation-delay: 0.4s;
}

.faq-item:nth-child(9) {
    animation-delay: 0.45s;
}

.faq-item:nth-child(10) {
    animation-delay: 0.5s;
}

/* =========================================
   7. FOOTER
   ========================================= */
.footer {
    background: var(--bg-alt);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 16px 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.footer-links li {
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-links i {
    color: var(--primary);
    margin-right: 8px;
    width: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================
   8. FLOATING ELEMENTS
   ========================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.4);
}

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

.back-to-top:hover {
    transform: translateY(-5px);
}

/* WhatsApp Floating Buttons (Country selector) */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 998;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.whatsapp-float .flag-emoji {
    font-size: 1.8rem;
}

/* Position Two Buttons Side-by-Side */
.whatsapp-float.wa-usa {
    left: 30px;
}

.whatsapp-float.wa-canada {
    left: 105px;
}

/* Hover Labels */
.whatsapp-float::after {
    content: attr(data-label);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--card);
    color: var(--text);
    padding: 5px 12px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    pointer-events: none;
}

.whatsapp-float:hover::after {
    opacity: 1;
    bottom: -35px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .whatsapp-float.btn-sales {
        left: 15px;
        bottom: 20px;
    }

    .whatsapp-float.btn-support {
        left: 80px;
        bottom: 20px;
    }

    .whatsapp-float::after {
        display: none;
    }
}

/* WhatsApp Sidebar */
.whatsapp-sidebar {
    position: fixed;
    right: 30px;
    bottom: 110px;
    z-index: 997;
}

.sidebar-toggle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.sidebar-toggle:hover {
    transform: scale(1.1);
}

.sidebar-content {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.whatsapp-sidebar.open .sidebar-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sidebar-header h4 {
    font-size: 1.1rem;
}

.sidebar-close {
    color: var(--text-muted);
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.agent-info img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.agent-info h5 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.online-status {
    color: #25D366;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.online-status i {
    font-size: 0.5rem;
}

.sidebar-message {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

/* AI Chatbot */
.ai-chatbot {
    position: fixed;
    right: 100px;
    bottom: 30px;
    z-index: 997;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.4);
    transition: var(--transition);
    position: relative;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
}

.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #EF4444;
    color: white;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
}

.chatbot-window {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 380px;
    max-height: 550px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: var(--transition);
    overflow: hidden;
}

.ai-chatbot.open .chatbot-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.1), rgba(124, 58, 237, 0.1));
}

.chatbot-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.chatbot-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.chatbot-close {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    max-height: 300px;
}

.message {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.message-content {
    background: var(--bg-alt);
    padding: 12px 16px;
    border-radius: 16px;
    max-width: 75%;
}

.message.user .message-content {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.message-content p {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.message-time {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.message.user .message-time {
    color: rgba(255, 255, 255, 0.7);
}

.chatbot-quick-replies {
    padding: 10px 20px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    border-top: 1px solid var(--border);
}

.quick-reply {
    padding: 6px 14px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.quick-reply:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.chatbot-input {
    padding: 14px 20px;
    display: flex;
    gap: 10px;
    border-top: 1px solid var(--border);
}

.chatbot-input input {
    flex: 1;
    padding: 10px 14px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: inherit;
}

.chatbot-input input:focus {
    outline: none;
    border-color: var(--primary);
}

.chatbot-input button {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Popup */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup {
    background: var(--card);
    padding: 40px 32px;
    text-align: center;
    max-width: 420px;
    width: 100%;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition);
}

.popup-overlay.show .popup {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.popup-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.popup h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.popup-discount {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.popup-discount span {
    font-size: 2rem;
    font-weight: 800;
}

.popup-timer {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 24px 0;
}

.timer-unit {
    background: var(--bg-alt);
    padding: 12px 16px;
    border-radius: 12px;
    min-width: 70px;
    border: 1px solid var(--border);
}

.timer-unit span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    font-family: 'Space Grotesk', sans-serif;
}

.timer-unit small {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Promo Sidebar */
.promo-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 996;
}

.promo-toggle {
    position: absolute;
    right: -22px;
    top: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.4);
}

.promo-content {
    width: 280px;
    padding: 20px;
    transform: translateX(-100%);
    transition: var(--transition);
}

.promo-sidebar.open .promo-content {
    transform: translateX(0);
}

.promo-content img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 16px;
}

.promo-content h4 {
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.promo-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.promo-links {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.promo-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.promo-links a:hover {
    color: var(--primary);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    width: calc(100% - 40px);
    z-index: 1500;
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.cookie-content i {
    font-size: 1.5rem;
    color: var(--primary);
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* =========================================
   9. PRODUCTS PAGE
   ========================================= */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 194, 255, 0.1), transparent 60%);
}

.page-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
}

.page-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.comparison-table {
    overflow-x: auto;
    margin-top: 60px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--glass);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.comparison-table th,
.comparison-table td {
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--bg-alt);
    font-weight: 600;
}

.comparison-table td:first-child,
.comparison-table th:first-child {
    text-align: left;
}

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

.check {
    color: var(--primary);
    font-size: 1.1rem;
}

.cross {
    color: var(--text-muted);
    opacity: 0.3;
}

/* =========================================
   10. CAMPAIGNS PAGE
   ========================================= */
.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.campaign-card {
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.campaign-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.campaign-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.campaign-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.campaign-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.campaign-discount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 16px;
}

/* =========================================
   11. ABOUT PAGE
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.about-image img {
    width: 100%;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.stat-card {
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 8px;
}

.stat-card p {
    color: var(--text-muted);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.team-card {
    text-align: center;
    padding: 30px;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 16px;
    border: 3px solid var(--primary);
}

.team-card h4 {
    margin-bottom: 4px;
}

.team-card span {
    color: var(--primary);
    font-size: 0.9rem;
}

/* =========================================
   12. SERVICES PAGE
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.service-card {
    padding: 36px 28px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.15), rgba(124, 58, 237, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.service-card p {
    color: var(--text-muted);
}

/* =========================================
   13. CONTACT PAGE
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
}

.contact-info-card {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateX(8px);
    border-color: var(--primary);
}

.contact-info-card .service-icon {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
    margin: 0;
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-info-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-form {
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.map-container {
    margin-top: 60px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    height: 400px;
}

/* ===== MAP BOXES ===== */
.map-box {
    padding: 20px;
    overflow: hidden;
}

.map-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.map-header i {
    font-size: 1.5rem;
    color: var(--primary);
}

.map-header h4 {
    font-size: 1.2rem;
    font-family: 'Space Grotesk', sans-serif;
}

.map-info {
    padding: 16px 0 0;
}

.map-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.map-info i {
    color: var(--primary);
    margin-right: 8px;
}

/* =========================================
   14. AOS ANIMATIONS
   ========================================= */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.35s ease-out, transform 0.35s ease-out;
    will-change: opacity, transform;
}

[data-aos="fade-up"] {
    transform: translateY(20px);
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

[data-aos="fade-left"] {
    transform: translateX(-20px);
}

[data-aos="fade-right"] {
    transform: translateX(20px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

/* =========================================
   15. RESPONSIVE
   ========================================= */
@media (max-width: 992px) {

    .hero-container,
    .about-grid,
    .contact-grid,
    .newsletter-box {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        margin-top: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-card {
        min-width: calc(50% - 12px);
    }

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

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg);
        padding: 90px 32px 40px;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: none;
        transform: translateX(100%);
        z-index: 998;
        overflow-y: auto;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .header-actions .btn-ghost,
    .header-actions .btn-primary {
        display: none;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat h3 {
        font-size: 1.5rem;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .chatbot-window,
    .sidebar-content {
        width: calc(100vw - 40px);
    }

    .ai-chatbot {
        right: 20px;
        bottom: 20px;
    }

    .whatsapp-sidebar {
        right: 20px;
        bottom: 100px;
    }

    .whatsapp-float {
        left: 20px;
        bottom: 20px;
    }

    .promo-sidebar {
        display: none;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== TWO WHATSAPP BUTTONS ===== */
.whatsapp-float.wa-sales {
    left: 30px;
    bottom: 30px;
}

.whatsapp-float.wa-support {
    left: 105px;
    bottom: 30px;
}

.whatsapp-float .wa-label {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--card);
    color: var(--text);
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    pointer-events: none;
}

.whatsapp-float:hover .wa-label {
    opacity: 1;
    bottom: -32px;
}

@media (max-width: 768px) {
    .whatsapp-float.wa-sales {
        left: 20px;
        bottom: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .whatsapp-float.wa-support {
        left: 85px;
        bottom: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* =========================================
   PREMIUM ANIMATED BACKGROUND
   ========================================= */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    overflow: hidden;
    pointer-events: none;
    background: var(--bg);
    transform: translate3d(0, 0, 0);
    will-change: transform, opacity;
    contain: paint;
}

/* === MESH GRADIENT LAYER === */
.mesh-layer {
    position: absolute;
    inset: 0;
    filter: blur(40px);
    opacity: 0.45;
    will-change: opacity, transform;
    transform: translate3d(0, 0, 0);
}

[data-theme="light"] .mesh-layer {
    opacity: 0.35;
    filter: blur(50px);
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
    animation: meshFloat 30s linear infinite;
    will-change: transform, opacity;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

[data-theme="light"] .mesh-blob {
    mix-blend-mode: screen;
    filter: saturate(1.2);
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.72), transparent 70%);
    top: -10%;
    left: -10%;
    animation-duration: 30s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.5), transparent 70%);
    top: 30%;
    right: -10%;
    animation-duration: 35s;
    animation-delay: -5s;
}

.blob-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.4), transparent 70%);
    bottom: -10%;
    left: 20%;
    animation-duration: 28s;
    animation-delay: -10s;
}

.blob-4 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.4), transparent 70%);
    bottom: 20%;
    right: 20%;
    animation-duration: 32s;
    animation-delay: -15s;
}

@keyframes meshFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    25% {
        transform: translate3d(80px, -60px, 0) scale(1.1);
    }

    50% {
        transform: translate3d(-60px, 80px, 0) scale(0.95);
    }

    75% {
        transform: translate3d(60px, 60px, 0) scale(1.05);
    }
}

/* === BROADCAST WAVES (IPTV Theme) === */
.broadcast-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 100%;
    height: 100%;
    contain: paint;
    will-change: transform, opacity;
}

.broadcast-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150vmax;
    height: 150vmax;
    transform: translate3d(-50%, -50%, 0) scale(0.02);
    transform-origin: center;
    border-radius: 50%;
    border: 2px solid rgba(0, 194, 255, 0.3);
    animation: broadcastPulse 8s linear infinite;
    will-change: transform, opacity;
    pointer-events: none;
}

[data-theme="light"] .broadcast-ring {
    border-color: rgba(0, 194, 255, 0.35);
    box-shadow: 0 0 40px rgba(0, 194, 255, 0.1);
}

.ring-1 {
    animation-delay: 0s;
}

.ring-2 {
    animation-delay: 2.5s;
}

.ring-3 {
    animation-delay: 5s;
}

@keyframes broadcastPulse {
    0% {
        transform: translate3d(-50%, -50%, 0) scale(0.02);
        opacity: 0.8;
    }

    50% {
        opacity: 0.15;
    }

    100% {
        transform: translate3d(-50%, -50%, 0) scale(1);
        opacity: 0;
    }
}

/* === FLOATING ORBS === */
.orbs-layer {
    position: absolute;
    inset: 0;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(0, 194, 255, 0.2) 50%,
            rgba(124, 58, 237, 0.2) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 8px 32px rgba(0, 194, 255, 0.15),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    animation: orbFloat 20s linear infinite;
    will-change: transform, opacity;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

[data-theme="light"] .floating-orb {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.45) 0%,
            rgba(0, 194, 255, 0.3) 45%,
            rgba(124, 58, 237, 0.3) 100%);
    border-color: rgba(0, 194, 255, 0.2);
    box-shadow:
        0 12px 40px rgba(0, 194, 255, 0.14),
        inset 0 0 18px rgba(255, 255, 255, 0.14);
}

.orb-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 10%;
    animation-duration: 22s;
}

.orb-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-duration: 28s;
    animation-delay: -5s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 25%;
    animation-duration: 25s;
    animation-delay: -10s;
}

.orb-4 {
    width: 60px;
    height: 60px;
    top: 40%;
    right: 30%;
    animation-duration: 30s;
    animation-delay: -15s;
}

.orb-5 {
    width: 90px;
    height: 90px;
    bottom: 35%;
    right: 10%;
    animation-duration: 26s;
    animation-delay: -8s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    33% {
        transform: translate3d(40px, -40px, 0) rotate(120deg);
    }

    66% {
        transform: translate3d(-30px, 30px, 0) rotate(240deg);
    }
}

/* === MOUSE GLOW (Interactive) === */
.mouse-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(0, 194, 255, 0.15),
            rgba(124, 58, 237, 0.08) 40%,
            transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
    z-index: -2;
    mix-blend-mode: screen;
}

[data-theme="light"] .mouse-glow {
    background: radial-gradient(circle,
            rgba(0, 194, 255, 0.1),
            rgba(124, 58, 237, 0.05) 40%,
            transparent 70%);
    mix-blend-mode: multiply;
}

.mouse-glow.active {
    opacity: 1;
}

/* === NOISE TEXTURE === */
.noise-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

[data-theme="light"] .noise-overlay {
    opacity: 0.02;
}

/* === PERFORMANCE: Reduce on Mobile === */
@media (max-width: 768px) {
    .mesh-blob {
        animation: none;
    }

    .broadcast-ring {
        animation-duration: 12s;
    }

    .floating-orb:nth-child(n+4) {
        display: none;
    }

    .mouse-glow {
        display: none;
    }
}

/* === Reduced Motion Preference === */
@media (prefers-reduced-motion: reduce) {

    .mesh-blob,
    .broadcast-ring,
    .floating-orb {
        animation: none;
    }

    .mouse-glow {
        display: none;
    }
}

/* =========================================
   COMPONENT-LOADED HEADER — FULL WIDTH
   ========================================= */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

#site-header .header {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
}

/* Full-width footer inner wrapper */
#site-footer .footer-inner {
    display: flex;
    flex-direction: column;
}

.footer .footer-inner {
    box-sizing: border-box;
}

/* Responsive footer */
@media (max-width: 992px) {
    .footer .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer .footer-grid {
        grid-template-columns: 1fr;
    }

    #site-header .header-container {
        padding: 0 16px !important;
    }
}

/* ====================================================
   NEW IMAGE STYLES — Added for rich visual experience
   ==================================================== */

/* ── Service Cards with Images ── */
.service-card { overflow: hidden; padding: 0 !important; }
.svc-img {
    position: relative;
    height: 190px;
    overflow: hidden;
    flex-shrink: 0;
}
.svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.82);
}
.service-card:hover .svc-img img {
    transform: scale(1.07);
    filter: brightness(0.65);
}
.svc-img-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,194,255,0.45), rgba(124,58,237,0.45));
    font-size: 2.6rem;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
}
.service-card:hover .svc-img-icon { opacity: 1; }
.svc-body { padding: 26px 28px 28px; }
.svc-body .service-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #fff;
    margin-bottom: 14px;
}

/* ── Campaign Cards with Images ── */
.campaign-card { overflow: hidden; padding: 0 !important; }
.camp-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}
.camp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.campaign-card:hover .camp-img img { transform: scale(1.07); }
.camp-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,194,255,0.55), rgba(124,58,237,0.55));
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
}
.camp-body { padding: 22px 24px 24px; }
.camp-body .campaign-badge { position: static; display: inline-block; margin-bottom: 10px; }
.camp-body .campaign-discount {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 6px 0 10px;
}

/* ── Content Categories Grid (index.html) ── */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.cat-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 200px;
    cursor: pointer;
    transition: transform 0.35s, box-shadow 0.35s;
}
.cat-card.cat-large { grid-column: span 2; height: 260px; }
.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,194,255,0.2);
}
.cat-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s, filter 0.5s;
    filter: brightness(0.6);
}
.cat-card:hover img { transform: scale(1.07); filter: brightness(0.45); }
.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 22px;
    transition: background 0.3s;
}
.cat-card:hover .cat-overlay {
    background: linear-gradient(135deg, rgba(0,194,255,0.25), rgba(124,58,237,0.25));
    align-items: center;
    justify-content: center;
}
.cat-info { color: #fff; }
.cat-info .cat-icon { font-size: 1.5rem; margin-bottom: 4px; display: block; }
.cat-info span { font-size: 1.15rem; font-weight: 700; display: block; font-family: 'Space Grotesk', sans-serif; }
.cat-info small { font-size: 0.8rem; opacity: 0.75; }

/* ── About Story Banner ── */
.about-image { position: relative; border-radius: 20px; overflow: hidden; }
.about-image img { transition: transform 0.5s; }
.about-image:hover img { transform: scale(1.03); }

/* ── About Gallery Strip ── */
.about-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 50px;
}
.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    height: 160px;
    position: relative;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s, filter 0.4s;
    filter: brightness(0.75);
}
.gallery-item:hover img { transform: scale(1.07); filter: brightness(0.9); }
.gallery-item-label {
    position: absolute;
    bottom: 10px; left: 12px;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* ── Step Cards with Images (services how-it-works) ── */
.step-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
}
.step-img {
    height: 160px;
    overflow: hidden;
    margin: -1px;
}
.step-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    transition: transform 0.4s;
}
.step-card:hover .step-img img { transform: scale(1.05); filter: brightness(0.4); }
.step-body { padding: 20px 24px 26px; }

/* ── Contact Page Hero Image ── */
.contact-hero-img {
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    margin-bottom: 40px;
    position: relative;
}
.contact-hero-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
}
.contact-hero-img-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}
.contact-hero-img-text h3 {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .cat-grid { grid-template-columns: 1fr 1fr; }
    .cat-card.cat-large { grid-column: span 2; height: 200px; }
    .about-gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .cat-grid { grid-template-columns: 1fr; }
    .cat-card.cat-large { grid-column: span 1; }
    .about-gallery { grid-template-columns: 1fr; }
}

/* ── Why IPTV Visual Section ── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.why-img-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.why-img-main {
    grid-column: span 2;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 220px;
}
.why-img-secondary {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 140px;
}
.why-img-main img,
.why-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    filter: brightness(0.75);
}
.why-img-main:hover img,
.why-img-secondary:hover img { transform: scale(1.05); filter: brightness(0.9); }
.why-img-badge {
    position: absolute;
    bottom: 12px; left: 14px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
}
.why-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    border-radius: 14px;
    margin-bottom: 14px;
    transition: transform 0.3s;
}
.why-item:hover { transform: translateX(6px); }
.why-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}
.why-item h4 { margin: 0 0 4px; font-size: 1rem; font-weight: 700; }
.why-item p  { margin: 0; font-size: 0.88rem; color: var(--text-muted); }

@media (max-width: 900px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-img-block { grid-template-columns: 1fr 1fr; }
}


/* ======================================================
   RESPONSIVE FIXES + NOTIFICATIONS + REVIEWS
   ====================================================== */

/* ── Campaigns Grid ── */
.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 1100px) { .campaigns-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .campaigns-grid { grid-template-columns: 1fr; } }

/* ── Campaign card fix ── */
.campaign-card { display: flex; flex-direction: column; }
.camp-body { flex: 1; }
.campaign-card > .btn { margin: 0 24px 24px; }

/* ── Newsletter box responsive ── */
.newsletter-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 36px 40px;
    border-radius: 20px;
}
@media (max-width: 768px) {
    .newsletter-box { flex-direction: column; align-items: flex-start; padding: 28px 22px; }
    .newsletter-form { width: 100%; flex-direction: column; }
    .newsletter-form input { width: 100%; }
    .newsletter-form .btn { width: 100%; }
}

/* ── Contact responsive ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card { display: flex; align-items: center; gap: 18px; padding: 20px 24px; border-radius: 16px; }

/* ── About grid responsive ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-image { order: -1; }
}

/* ── Why-grid responsive ── */
@media (max-width: 900px) {
    .why-grid { grid-template-columns: 1fr; }
}

/* ── Page header responsive ── */
.page-header { padding: 120px 20px 60px; text-align: center; }
@media (max-width: 640px) { .page-header { padding: 100px 16px 50px; } }

/* ── Flash sale / countdown responsive ── */
.popup-timer { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 640px) {
    .newsletter-content h2 { font-size: 1.4rem; }
}

/* ════════════════════════════════════════
   LIVE NOTIFICATION TOAST
   ════════════════════════════════════════ */
.live-toast-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 320px;
}
.live-toast {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(10,15,30,0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0,194,255,0.25);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,194,255,0.1);
    animation: toastSlideIn 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.live-toast:hover { transform: translateX(4px); box-shadow: 0 12px 40px rgba(0,194,255,0.15); }
.live-toast.toast-out { animation: toastSlideOut 0.35s ease forwards; }
@keyframes toastSlideIn {
    from { opacity:0; transform: translateX(-120px) scale(0.85); }
    to   { opacity:1; transform: translateX(0)      scale(1); }
}
@keyframes toastSlideOut {
    from { opacity:1; transform: translateX(0); }
    to   { opacity:0; transform: translateX(-120px); }
}
.toast-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 800; color: #fff;
    flex-shrink: 0;
    font-family: 'Space Grotesk', sans-serif;
}
.toast-body { flex: 1; min-width: 0; }
.toast-name { font-weight: 700; font-size: 0.88rem; color: #fff; margin-bottom: 2px; }
.toast-action { font-size: 0.78rem; color: var(--primary); margin-bottom: 3px; }
.toast-meta { font-size: 0.72rem; color: var(--text-muted); }
.toast-verified { font-size: 0.72rem; color: #22c55e; font-weight: 600; }
.toast-close {
    background: none; border: none; color: var(--text-muted);
    font-size: 0.75rem; cursor: pointer; padding: 2px 4px;
    line-height: 1; flex-shrink: 0;
}
@media (max-width: 480px) {
    .live-toast-container { left: 12px; right: 12px; max-width: calc(100% - 24px); }
}

/* ════════════════════════════════════════
   REVIEWS SECTION
   ════════════════════════════════════════ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 36px;
}
@media (max-width: 1000px) { .reviews-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
    padding: 24px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-5px); box-shadow: 0 16px 50px rgba(0,194,255,0.12); }

.review-header { display: flex; align-items: center; gap: 14px; }
.review-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; font-weight: 800; color: #fff; flex-shrink: 0;
    font-family: 'Space Grotesk', sans-serif;
}
.review-meta h5 { margin: 0 0 3px; font-size: 0.95rem; font-weight: 700; }
.review-location { font-size: 0.78rem; color: var(--text-muted); }
.review-location i { color: var(--primary); margin-right: 4px; }
.review-stars { margin-left: auto; font-size: 0.9rem; white-space: nowrap; }
.review-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; flex: 1; font-style: italic; }
.review-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.review-badge { font-size: 0.72rem; color: #22c55e; font-weight: 600; }
.review-badge i { margin-right: 4px; }
.review-date { font-size: 0.72rem; color: var(--text-muted); }

/* Review summary bar */
.review-summary {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 36px;
    align-items: center;
    padding: 32px 40px;
    border-radius: 20px;
}
@media (max-width: 800px) { .review-summary { grid-template-columns: 1fr; gap: 24px; } }
@media (max-width: 500px) { .review-summary { padding: 24px 20px; } }

.review-overall { text-align: center; }
.review-big-score { font-size: 4rem; font-weight: 800; color: #fff; line-height: 1; font-family: 'Space Grotesk', sans-serif; }
.review-big-stars { font-size: 1.4rem; margin: 6px 0; }
.review-count { font-size: 0.8rem; color: var(--text-muted); }

.review-bars { display: flex; flex-direction: column; gap: 10px; }
.review-bar-row { display: flex; align-items: center; gap: 12px; font-size: 0.8rem; color: var(--text-muted); }
.review-bar-track { flex: 1; height: 8px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.review-bar-fill { height: 100%; background: linear-gradient(90deg, #00C2FF, #7C3AED); border-radius: 4px; transition: width 1s; }

.review-badges { display: flex; flex-direction: column; gap: 12px; }
.rbadge {
    display: flex; align-items: center; gap: 10px;
    background: rgba(0,194,255,0.08);
    border: 1px solid rgba(0,194,255,0.2);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 0.82rem; font-weight: 600; color: var(--primary);
    white-space: nowrap;
}
.rbadge i { font-size: 1rem; }

/* ── Buttons removed by user request ── */
.whatsapp-float,
.whatsapp-sidebar,
.sidebar-toggle,
.wa-sales, .wa-support { display: none !important; }


/* ════════════════════════════════════════════════════════════
   RESPONSIVE FIXES v5 — Mobile overlap, footer, toast, contact
   ════════════════════════════════════════════════════════════ */

/* ── Footer fully responsive ── */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 40px;
    margin-bottom: 50px;
}
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-brand, .footer-links { text-align: center; }
    .social-links { justify-content: center; }
    .footer-links li { justify-content: center; }
    .footer-bottom { font-size: 0.8rem; text-align: center; }
}

/* ── Fix back-to-top + chatbot overlap on mobile ── */
@media (max-width: 768px) {
    /* Stack them vertically — chatbot at bottom, scroll-up above it */
    .ai-chatbot  { right: 16px !important; bottom: 16px !important; }
    .back-to-top { right: 16px !important; bottom: 92px !important; width: 44px !important; height: 44px !important; }
    .chatbot-window {
        width: calc(100vw - 32px) !important;
        max-width: 360px !important;
        right: 0 !important;
        left: auto !important;
    }
}
@media (max-width: 400px) {
    .chatbot-toggle { width: 52px !important; height: 52px !important; font-size: 1.2rem !important; }
    .back-to-top    { width: 40px !important; height: 40px !important; bottom: 82px !important; }
}

/* ── Live toast notifications — mobile ── */
.live-toast-container {
    bottom: 16px;
    left: 16px;
    max-width: 300px;
}
@media (max-width: 480px) {
    .live-toast-container {
        left: 8px;
        right: 80px;   /* avoid overlapping chatbot/back-to-top on right */
        max-width: calc(100vw - 100px);
        bottom: 16px;
    }
    .live-toast { padding: 10px 12px; gap: 10px; }
    .toast-avatar { width: 36px; height: 36px; font-size: 0.9rem; flex-shrink: 0; }
    .toast-name  { font-size: 0.8rem; }
    .toast-action{ font-size: 0.72rem; }
    .toast-meta, .toast-verified { font-size: 0.66rem; }
}

/* ── Contact page — hero banner ── */
.contact-hero-img { border-radius: 16px; overflow: hidden; height: 260px; position: relative; margin-bottom: 0; }
.contact-hero-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5); }
.contact-hero-img-text {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 20px;
    color: #fff;
}
.contact-hero-img-text h3 { font-size: clamp(1.3rem, 4vw, 2rem); font-weight: 800; margin-bottom: 8px; font-family: 'Space Grotesk', sans-serif; }
.contact-hero-img-text p  { font-size: clamp(0.82rem, 2.5vw, 1rem); color: rgba(255,255,255,0.85); }

/* ── Contact layout redesign ── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 36px;
    align-items: start;
}
@media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; gap: 28px; }
}

.contact-info-block { display: flex; flex-direction: column; gap: 14px; }
.contact-info-block h2 { font-family: 'Space Grotesk', sans-serif; margin-bottom: 6px; }
.contact-info-block p.subtitle { color: var(--text-muted); margin-bottom: 8px; font-size: 0.93rem; }

.cinfo-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: border-color 0.3s, transform 0.2s;
}
.cinfo-card:hover { border-color: rgba(0,194,255,0.3); transform: translateX(4px); }
.cinfo-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #fff;
}
.cinfo-text h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 3px; }
.cinfo-text p  { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.cinfo-text a  { color: var(--primary); text-decoration: none; font-weight: 600; }
.cinfo-text small { font-size: 0.75rem; color: var(--text-muted); }

.contact-social-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.contact-social-row a {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 0.95rem;
    transition: background 0.3s, color 0.3s;
}
.contact-social-row a:hover { background: var(--primary); color: #fff; border-color: transparent; }

/* ── Contact form ── */
.contact-form-card { padding: 32px; border-radius: 20px; }
.contact-form-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

/* ── Map boxes ── */
.map-box { border-radius: 16px; overflow: hidden; }
.map-header { display: flex; align-items: center; gap: 10px; padding: 16px 18px; font-size: 1rem; font-weight: 700; }
.map-header i { color: var(--primary); }
.map-info { padding: 14px 18px; font-size: 0.85rem; color: var(--text-muted); }
.map-info i { color: var(--primary); margin-right: 6px; }

/* ── Promo sidebar responsive ── */
@media (max-width: 480px) {
    .promo-sidebar { display: none; } /* hide promo sidebar on very small screens */
}



/* ════════════════════════════════════════════════════════════
   FLOATING SIDEBAR — 3 BUTTONS: USA | Canada | WhatsApp
   ════════════════════════════════════════════════════════════ */

.social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9990;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.social-sidebar-item {
    position: relative;
    display: flex;
    align-items: center;
}

/* Base button */
.social-sidebar-btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: 0 14px 14px 0;
    transform: translateX(-4px);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
}
.social-sidebar-item:first-child .social-sidebar-btn { border-radius: 0 14px 0 0; }
.social-sidebar-item:last-child  .social-sidebar-btn { border-radius: 0 0 14px 0; }

.social-sidebar-item:hover .social-sidebar-btn {
    transform: translateX(6px);
    box-shadow: 4px 4px 24px rgba(0,0,0,0.4);
}
.social-sidebar-btn:active { transform: translateX(3px) scale(0.93) !important; }

/* Flag buttons */
.sb-flag-btn {
    background: rgba(10, 14, 32, 0.96);
    backdrop-filter: blur(10px);
    border-right: 2px solid rgba(255,255,255,0.12);
    padding: 6px 5px;
    height: 52px;
    width: 56px;
}
.sb-flag-btn:hover {
    border-right-color: rgba(255,255,255,0.3);
    background: rgba(20, 28, 55, 0.98);
}

/* real flag images */
.flag-img {
    width: 38px;
    height: auto;
    border-radius: 4px;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    pointer-events: none;
}
/* popup bubble flag */
.wa-bubble-flag-img {
    width: 64px;
    height: auto;
    border-radius: 6px;
    display: block;
    margin-bottom: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.4);
}

/* WhatsApp button */
.sb-whatsapp-btn {
    background: #25D366;
    color: #fff;
    font-size: 1.4rem;
}
.sb-whatsapp-btn:hover { background: #1ebe5d; color: #fff; }

/* Pulse animation for WhatsApp */
@keyframes waPulse {
    0%   { box-shadow: 0 0 0 0   rgba(37,211,102,0.7); }
    50%  { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0   rgba(37,211,102,0); }
}
.wa-pulse-anim { animation: waPulse 1s ease; }

/* Hover label */
.social-sidebar-label {
    position: absolute;
    left: 60px;
    background: rgba(8,12,28,0.97);
    backdrop-filter: blur(14px);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    z-index: 1;
}
.social-sidebar-label::before {
    content: '';
    position: absolute; left: -6px; top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: rgba(8,12,28,0.97);
    border-left: 0;
}
.social-sidebar-item:hover .social-sidebar-label { opacity: 1; transform: translateX(0); }

/* ── Ripple ── */
.wa-ripple {
    position: absolute; inset: 0;
    border-radius: inherit;
    background: rgba(255,255,255,0.35);
    animation: rippleOut 0.55s ease forwards;
    pointer-events: none;
}
@keyframes rippleOut {
    0%   { transform: scale(1);   opacity:0.7; }
    100% { transform: scale(2.2); opacity:0; }
}

/* ── WhatsApp Popup Bubble ── */
.wa-popup-bubble {
    position: fixed;
    left: 66px;
    background: rgba(8,12,28,0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0,194,255,0.22);
    border-radius: 18px;
    padding: 20px 24px;
    min-width: 240px;
    max-width: 280px;
    box-shadow: 0 12px 50px rgba(0,0,0,0.5);
    z-index: 9995;
    display: none;
}
.wa-popup-bubble.show {
    display: block;
    animation: bubbleIn 0.38s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes bubbleIn {
    from { opacity:0; transform: scale(0.78) translateX(-18px); }
    to   { opacity:1; transform: scale(1)    translateX(0); }
}
.wa-bubble-arrow {
    position: absolute; left: -7px; top: 26px;
    border: 7px solid transparent;
    border-right-color: rgba(8,12,28,0.98);
    border-left: 0;
}
.wa-bubble-close {
    position: absolute; top: 10px; right: 12px;
    background: none; border: none;
    color: rgba(255,255,255,0.4); font-size: 0.8rem;
    cursor: pointer; padding: 3px 6px; border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.wa-bubble-close:hover { color: #fff; background: rgba(255,255,255,0.08); }
.wa-bubble-flag  { font-size: 2rem; display: block; margin-bottom: 8px; }
.wa-bubble-title { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.6); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.wa-bubble-number{ font-size: 1.15rem; font-weight: 800; color: #fff; font-family: 'Space Grotesk', sans-serif; margin-bottom: 2px; }
.wa-bubble-label { font-size: 0.73rem; color: var(--text-muted); display: block; margin-bottom: 14px; }
.wa-bubble-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: #25D366; color: #fff; border: none;
    border-radius: 12px; padding: 11px 16px;
    font-size: 0.84rem; font-weight: 700;
    text-decoration: none; cursor: pointer; width: 100%;
    transition: background 0.2s, transform 0.15s;
}
.wa-bubble-btn:hover { background: #1ebe5d; color:#fff; transform: scale(1.02); }

/* Mobile */
@media (max-width: 768px) {
    .social-sidebar {
        top: auto;
        bottom: 165px;
        transform: none;
    }
    .social-sidebar-btn { width: 48px; height: 44px; }
    .sb-flag-btn { width: 50px; height: 44px; padding: 5px 4px; }
    .flag-img { width: 34px; }
    .sb-whatsapp-btn { font-size: 1.2rem; }
    .social-sidebar-label { display: none; }
    .wa-popup-bubble { left: 56px; min-width: 210px; }
}
@media (max-width: 400px) {
    .social-sidebar-btn { width: 40px; height: 38px; }
    .sb-flag-btn { width: 42px; height: 38px; padding: 4px 3px; }
    .flag-img { width: 28px; }
}


/* ════════════════════════════════════════════════════════════
   ABOUT PAGE — OFFICES SECTION (fully responsive)
   ════════════════════════════════════════════════════════════ */

/* ── Grid wrapper ── */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 12px;
}
@media (max-width: 768px) {
    .offices-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ── Card ── */
.office-card {
    padding: 28px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.office-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.office-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 194, 255, 0.12);
}

/* ── Badge ── */
.office-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 194, 255, 0.1);
    border: 1px solid rgba(0, 194, 255, 0.25);
    color: var(--primary);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 5px 13px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 18px;
    width: fit-content;
}

/* ── Icon circle ── */
.office-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 16px;
    flex-shrink: 0;
}

/* ── City name ── */
.office-card h3 {
    font-size: 1.55rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}

/* ── Address block ── */
.office-address {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 18px;
    padding-left: 2px;
}
.office-address i {
    color: var(--primary);
    margin-right: 7px;
    flex-shrink: 0;
}

/* ── Details (hours + phone) ── */
.office-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.07);
}
.office-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.86rem;
    color: var(--text-muted);
}
.office-detail i {
    color: var(--primary);
    width: 15px;
    flex-shrink: 0;
    font-size: 0.85rem;
}
.office-detail span { line-height: 1.4; }

/* ── Get Directions button ─ inherits .btn .btn-outline .w-100 ── */
.office-card .btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s, border-color 0.25s;
}

/* ── Mobile tweaks ── */
@media (max-width: 480px) {
    .office-card { padding: 20px 18px; }
    .office-card h3 { font-size: 1.3rem; }
    .office-badge { font-size: 0.68rem; padding: 4px 10px; }
    .office-icon { width: 48px; height: 48px; font-size: 1.25rem; border-radius: 12px; }
    .office-details { padding: 11px 13px; }
    .office-detail { font-size: 0.82rem; }
    .office-address { font-size: 0.86rem; }
}


/* ════════════════════════════════════════════════════════════
   PAGE HERO BANNERS — products.html & packages.html
   ════════════════════════════════════════════════════════════ */

.page-banner {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 130px 0 70px;     /* 130px clears the fixed navbar */
    text-align: center;
}

/* Products: deep purple gradient */
.products-banner {
    background:
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(124,58,237,0.22) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 80% 20%, rgba(0,194,255,0.12) 0%, transparent 60%),
        var(--bg);
}

/* Packages: deep cyan/blue gradient */
.packages-banner {
    background:
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,130,200,0.22) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 20% 80%, rgba(124,58,237,0.12) 0%, transparent 60%),
        var(--bg);
}

/* Animated dot-grid overlay */
.banner-bg-overlay {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image: radial-gradient(rgba(0,194,255,0.06) 1px, transparent 1px);
    background-size: 32px 32px;
}

.banner-inner  { position: relative; z-index: 1; }
.banner-content { max-width: 820px; margin: 0 auto; }

/* Tag pill */
.banner-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,194,255,0.1);
    border: 1px solid rgba(0,194,255,0.3);
    color: #00C2FF;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 18px; border-radius: 50px;
    margin-bottom: 22px;
}

/* Title */
.banner-title {
    font-size: clamp(2rem, 5.5vw, 3.8rem);
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 16px;
}

/* Description */
.banner-desc {
    font-size: clamp(0.92rem, 2vw, 1.1rem);
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin-bottom: 36px;
}
.banner-desc strong { color: #00C2FF; font-weight: 600; }

/* ── Stats row ── */
.banner-stats {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 18px;
    padding: 18px 10px;
    margin-bottom: 36px;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
}
.bstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 28px;
    gap: 3px;
}
.bstat span {
    display: block;
    font-size: 1.55rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #00C2FF, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.bstat small {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
    line-height: 1;
    letter-spacing: 0.03em;
}
.bstat-divider {
    width: 1px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* ── CTA buttons ── */
.banner-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .page-banner { min-height: auto; padding: 110px 16px 60px; }
    .banner-stats { padding: 14px 6px; width: 100%; }
    .bstat { padding: 4px 14px; }
    .bstat span { font-size: 1.2rem; }
    .bstat small { font-size: 0.65rem; }
    .bstat-divider { height: 30px; }
}
@media (max-width: 480px) {
    .page-banner { padding: 100px 12px 50px; }
    .banner-title { font-size: 1.75rem; }
    .banner-desc { font-size: 0.88rem; }
    .banner-actions { flex-direction: column; width: 100%; }
    .banner-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
    .bstat { padding: 4px 10px; }
    .bstat span { font-size: 1.05rem; }
}

/* ── Typing indicator dots ── */
.typing-indicator .message-content {
    padding: 14px 18px;
    min-width: 60px;
}
.typing-dots {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.typing-dots span {
    width: 7px; height: 7px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    display: inline-block;
    animation: typingBounce 1.2s infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
    30%            { transform: translateY(-6px); opacity: 1; }
}

/* ── Rich bot message HTML ── */
.message.bot .message-content p a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.message.bot .message-content p a:hover { text-decoration: underline; }
.chatbot-messages { scroll-behavior: smooth; }


/* ════════════════════════════════════════════════════════════
   THEME-AWARE HEADER + BANNER + MOBILE NAV FIXES
   ════════════════════════════════════════════════════════════ */

/* Header always visible in light mode even at top */
[data-theme="light"] .header {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
[data-theme="light"] .header.scrolled {
    background: rgba(255,255,255,0.97);
}
/* Logo text in light mode */
[data-theme="light"] .logo { color: var(--text); }
[data-theme="light"] .nav-link { color: var(--text-muted); }
[data-theme="light"] .nav-link:hover,
[data-theme="light"] .nav-link.active { color: var(--text); }
[data-theme="light"] .hamburger span { background: var(--text); }
[data-theme="light"] .theme-toggle { color: var(--text); border-color: var(--border); }

/* ── Mobile nav overlay backdrop ── */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 997;
    /* NO backdrop-filter — blur would show through the semi-transparent nav background */
}
.nav-overlay.active { display: block; }

/* Mobile nav close button styling */
@media (max-width: 768px) {
    .nav-list {
        gap: 0 !important;
    }
    .nav-link {
        font-size: 1.3rem !important;
        font-weight: 700 !important;
        padding: 18px 0 !important;
        border-bottom: 1px solid var(--border);
        display: block;
    }
    .nav-link:last-child { border-bottom: none; }

    /* Header logo: give space from sidebar buttons */
    .header-container { padding-left: 60px; }
    .logo { font-size: 1.1rem; }
}
@media (max-width: 480px) {
    .header-container { padding-left: 55px; }
}

/* ── Banner text adapts to light theme ── */
[data-theme="light"] .banner-title { color: var(--text); }
[data-theme="light"] .banner-desc  { color: var(--text-muted); }
[data-theme="light"] .banner-tag   {
    background: rgba(0,194,255,0.12);
    color: #0070A0;
    border-color: rgba(0,194,255,0.35);
}
[data-theme="light"] .banner-stats {
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .bstat small   { color: rgba(0,0,0,0.5); }
[data-theme="light"] .banner-bg-overlay {
    background-image: radial-gradient(rgba(0,100,160,0.07) 1px, transparent 1px);
}

/* ── Page header section (other pages) — respect theme ── */
[data-theme="light"] .page-header { background: var(--bg-alt); }
[data-theme="light"] .page-header h1,
[data-theme="light"] .page-header p { color: var(--text); }

/* ── Footer fully responsive ── */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    .footer-brand p { max-width: 100%; margin: 12px auto; }
    .social-links   { justify-content: center; }
    .footer-links li { justify-content: center; }
    .footer-bottom  { flex-direction: column; gap: 8px; font-size: 0.8rem; text-align: center; }
}

/* ── Light mode footer ── */
[data-theme="light"] .footer { background: var(--bg-alt); border-top: 1px solid var(--border); }
[data-theme="light"] .footer-brand h3 { color: var(--text); }
[data-theme="light"] .footer-links h4 { color: var(--text); }
[data-theme="light"] .footer-links a  { color: var(--text-muted); }
[data-theme="light"] .footer-links a:hover { color: var(--primary); }
[data-theme="light"] .footer-bottom   { border-color: var(--border); color: var(--text-muted); }
[data-theme="light"] .social-links a  {
    background: rgba(0,0,0,0.06);
    border-color: rgba(0,0,0,0.1);
    color: var(--text-muted);
}
[data-theme="light"] .social-links a:hover { background: var(--primary); color: #fff; }


/* ================================================================
   RESPONSIVE OVERHAUL — All devices / All pages
   Added: comprehensive mobile-first improvements
   ================================================================ */

/* ── HAMBURGER — larger tap target ── */
.hamburger {
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
    flex-shrink: 0;
}

/* ── HEADER CONTAINER — fix mobile padding & layout ── */
@media (max-width: 768px) {
    /* Override the erroneous padding-left: 60px from earlier rules */
    .header-container,
    #site-header .header-container {
        padding: 0 20px !important;
        gap: 0 !important;
    }
    .logo {
        flex: 1;
        font-size: 1.15rem !important;
        min-width: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .header-actions {
        gap: 8px !important;
        flex-shrink: 0;
    }
    /* Hide desktop CTA; show mobile CTA inside the nav panel */
    .nav-desktop-cta { display: none; }
    .nav-mobile-cta {
        display: inline-flex;
        margin-top: 32px;
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header-container,
    #site-header .header-container {
        padding: 0 14px !important;
    }
    .logo { font-size: 1rem !important; }
}

/* Desktop: hide mobile CTA */
@media (min-width: 769px) {
    .nav-mobile-cta { display: none !important; }
    .nav-desktop-cta { display: inline-flex; }
}

/* ── MOBILE NAV LINKS — styled via .nav-link class ── */
@media (max-width: 768px) {
    .nav-list { gap: 0 !important; width: 100%; }
    .nav-link {
        display: block !important;
        font-size: 1.15rem !important;
        font-weight: 600 !important;
        padding: 18px 4px !important;
        border-bottom: 1px solid var(--border) !important;
        color: var(--text) !important;
        letter-spacing: 0.01em;
        transition: color 0.2s, padding-left 0.2s !important;
    }
    .nav-link:hover,
    .nav-link.active {
        color: var(--primary) !important;
        padding-left: 10px !important;
    }
    .nav-link:hover::after,
    .nav-link.active::after { width: 0; } /* disable underline on mobile */
    .nav-list li:last-child .nav-link { border-bottom: none !important; }
}

/* ── NAV PANEL — slide-in refinements ── */
@media (max-width: 768px) {
    .nav {
        padding: 100px 28px 40px !important;
        display: flex;
        flex-direction: column;
    }
    .nav.active { box-shadow: -4px 0 40px rgba(0,0,0,0.4); }
}
@media (max-width: 480px) {
    .nav { padding: 90px 20px 32px !important; }
}

/* ── OVERLAY Z-INDEX FIX ── */
.nav-overlay { z-index: 997; cursor: pointer; }

/* ── HERO SECTION ── */
@media (max-width: 768px) {
    .hero { padding: 110px 0 64px; }
    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 36px;
        text-align: center;
    }
    .hero-content { order: 1; }
    .hero-visual {
        order: 2;
        max-width: 90%;
        margin: 0 auto;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; gap: 20px; }
    /* Floating cards overflow off-screen on mobile — hide them */
    .floating-card { display: none; }
    .hero-badge { display: inline-flex; }
}

@media (max-width: 480px) {
    .hero { padding: 100px 0 50px; }
    .stat h3 { font-size: 1.5rem; }
    .hero-stats { gap: 12px; }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    .hero-visual { max-width: 100%; }
    .hero-device { border-radius: 16px; }
}

/* ── SECTIONS — reduce vertical padding on mobile ── */
@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .section-header { margin-bottom: 40px; }
    .section-desc { font-size: 0.95rem; }
}
@media (max-width: 480px) {
    .section { padding: 50px 0; }
    .section-header { margin-bottom: 30px; }
    .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* ── CONTAINER — tighter on very small screens ── */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
}

/* ── FEATURES GRID ── */
@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .feature-card { padding: 28px 22px; }
}

/* ── DEVICES GRID — 2 columns on small phones ── */
@media (max-width: 480px) {
    .devices-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .device-card { padding: 20px 14px; }
    .device-card i { font-size: 2rem; margin-bottom: 10px; }
    .device-card h4 { font-size: 0.9rem; }
    .device-card p { font-size: 0.78rem; }
}

/* ── PRICING GRID ── */
@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card { padding: 32px 24px; }
}

/* ── SERVICES GRID ── */
@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* ── STATS GRID (about page) — 2 columns on phones ── */
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .stat-card { padding: 24px 16px; }
    .stat-card h3 { font-size: 1.8rem; }
}

/* ── TEAM GRID ── */
@media (max-width: 600px) {
    .team-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 380px) {
    .team-grid { grid-template-columns: 1fr !important; }
}

/* ── PAGE HEADER (inner pages) ── */
@media (max-width: 480px) {
    .page-header { padding: 100px 16px 48px; text-align: center; }
    .page-header h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
    .page-header p { font-size: 0.95rem; }
}

/* ── ABOUT PAGE — inline mission/vision grid override ── */
@media (max-width: 580px) {
    .about-content [style*="grid-template-columns"],
    .about-content > div[style] {
        grid-template-columns: 1fr !important;
    }
}

/* ── CONTACT PAGE — inline button/map grid override ── */
@media (max-width: 520px) {
    div[style*="grid-template-columns:1fr 1fr"],
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

/* ── BANNER (products / packages pages) ── */
@media (max-width: 480px) {
    .banner-stats { flex-wrap: wrap; gap: 8px 0; padding: 12px 8px; }
    .bstat-divider { display: none; }
    .bstat { padding: 6px 14px; }
    .banner-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .banner-actions .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* ── TESTIMONIALS ── */
@media (max-width: 480px) {
    .testimonial-card { padding: 24px 18px !important; }
}

/* ── BACK-TO-TOP — repositioned for mobile floating elements ── */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 90px;
        right: 16px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

/* ── BUTTONS — minimum sizes on tiny screens ── */
@media (max-width: 360px) {
    .btn { padding: 10px 16px; font-size: 0.85rem; }
    .btn-lg { padding: 13px 22px; font-size: 0.9rem; }
}

/* ── OFFICES GRID (about page) ── */
@media (max-width: 480px) {
    .offices-grid { grid-template-columns: 1fr !important; }
}

/* ── GALLERY (about page) ── */
@media (max-width: 380px) {
    .about-gallery { grid-template-columns: 1fr !important; }
}

/* ── GLASS CARDS — tighter radius on mobile ── */
@media (max-width: 480px) {
    .glass { border-radius: 16px; }
}

/* ── OVERFLOW SAFETY — prevent horizontal scroll ── */
body { overflow-x: hidden; }
.hero, .section, section { max-width: 100vw; overflow-x: hidden; }

/* ── LIGHT THEME — nav overlay ── */
[data-theme="light"] .nav-overlay {
    background: rgba(0,0,0,0.35);
}
[data-theme="light"] .nav-link { color: var(--text) !important; }
[data-theme="light"] .nav-link:hover,
[data-theme="light"] .nav-link.active { color: var(--primary) !important; }


/* ================================================================
   MOBILE NAV REDESIGN — matches screenshot design
   White full-screen panel with icons, close button, WA CTAs
   Z-index fix: elevates #site-header above ALL floating elements
   ================================================================ */

/* ── Desktop: hide mobile-only elements ── */
@media (min-width: 769px) {
    .mnav-header,
    .mnav-footer  { display: none !important; }
    .mnav-icon    { display: none !important; }
    .mnav-close   { display: none !important; }
    .nav-desktop-cta { display: inline-flex !important; }
}

/* ── Desktop nav-link: keep original horizontal style ── */
@media (min-width: 769px) {
    .nav-link {
        display: inline;
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        padding: 0 !important;
        border-bottom: none !important;
        color: var(--text-muted) !important;
    }
    .nav-link:hover,
    .nav-link.active { color: var(--text) !important; }
    .nav-link::after { /* keep underline animation on desktop */ }
}

/* ═══════════════════════════════════════════════
   MOBILE NAV PANEL  (≤768px)
   White panel that slides in from the right
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Override the dark-themed panel with always-white */
    .nav {
        background: #ffffff !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
        box-shadow: -6px 0 40px rgba(0,0,0,0.25) !important;
    }

    /* ── Mobile nav top bar (logo + X) ── */
    .mnav-header {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 20px 22px 18px;
        border-bottom: 1px solid #f0f0f0;
        flex-shrink: 0;
    }

    .mnav-logo {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.15rem;
        font-weight: 700;
        color: #111827;
        letter-spacing: -0.01em;
        text-decoration: none;
    }

    .mnav-logo span { color: #00C2FF; }

    /* Close ✕ button */
    .mnav-close {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        border: 1.5px solid #e5e7eb;
        background: #ffffff;
        color: #111827;
        font-size: 1rem;
        display: flex !important;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.2s, border-color 0.2s;
        flex-shrink: 0;
    }

    .mnav-close:hover {
        background: #f9fafb;
        border-color: #9ca3af;
    }

    /* ── Nav list area ── */
    .nav-list {
        flex: 1 !important;
        overflow-y: auto !important;
        padding: 6px 16px 6px !important;
        gap: 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    /* ── Individual nav link ── */
    .nav-link {
        display: flex !important;
        align-items: center !important;
        gap: 14px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: #111827 !important;
        padding: 14px 8px !important;
        border-bottom: 1px solid #f3f4f6 !important;
        border-radius: 0 !important;
        text-decoration: none;
        transition: color 0.2s, padding-left 0.2s !important;
        letter-spacing: 0;
    }

    .nav-list li:last-child .nav-link {
        border-bottom: none !important;
    }

    .nav-link:hover { color: #00C2FF !important; padding-left: 14px !important; }
    .nav-link.active { color: #00C2FF !important; }
    .nav-link::after { display: none !important; } /* no underline bar on mobile */

    /* ── Nav icon box (colored square with icon) ── */
    .mnav-icon {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: rgba(0, 194, 255, 0.1);
        color: #00C2FF;
        font-size: 0.95rem;
        flex-shrink: 0;
        transition: background 0.2s, color 0.2s;
    }

    .nav-link:hover .mnav-icon,
    .nav-link.active .mnav-icon {
        background: #00C2FF;
        color: #ffffff;
    }

    /* ── Mobile bottom footer (CTAs) ── */
    .mnav-footer {
        display: flex !important;
        flex-direction: column;
        gap: 10px;
        padding: 16px 16px 28px;
        border-top: 1px solid #f3f4f6;
        flex-shrink: 0;
    }

    /* "Get Started" gradient button */
    .mnav-cta {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 15px 20px;
        border-radius: 12px;
        background: linear-gradient(135deg, #00C2FF 0%, #7C3AED 100%);
        color: #ffffff !important;
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none;
        transition: opacity 0.2s, transform 0.2s;
        letter-spacing: 0.01em;
    }

    .mnav-cta:hover { opacity: 0.92; transform: translateY(-1px); }
    .mnav-cta i { font-size: 1.1rem; }

    /* WhatsApp number buttons (green) */
    .mnav-wa-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 13px 16px;
        border-radius: 12px;
        background: rgba(37, 211, 102, 0.08);
        border: 1.5px solid rgba(37, 211, 102, 0.35);
        color: #22c55e !important;
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
        transition: background 0.2s, border-color 0.2s;
    }

    .mnav-wa-btn:hover {
        background: rgba(37, 211, 102, 0.14);
        border-color: #22c55e;
    }

    .mnav-wa-btn i { font-size: 1.1rem; color: #22c55e; }

} /* end @media ≤768px */

/* ═══════════════════════════════════════════════
   Z-INDEX FIX
   When mobile nav opens, push all floating widgets
   behind the elevated #site-header (set to 99999 in JS)
   ═══════════════════════════════════════════════ */
body.mobile-nav-open .social-sidebar,
body.mobile-nav-open .live-toast-container,
body.mobile-nav-open .popup-overlay,
body.mobile-nav-open .cookie-banner,
body.mobile-nav-open .promo-sidebar,
body.mobile-nav-open .whatsapp-float,
body.mobile-nav-open .whatsapp-sidebar,
body.mobile-nav-open .ai-chatbot,
body.mobile-nav-open .back-to-top,
body.mobile-nav-open .wa-popup-bubble {
    z-index: 1 !important;
    pointer-events: none !important;
}

/* nav-overlay stays at z-index 997 (behind the nav at 998) — DO NOT raise it above the nav */

