/* ==========================================================================
   DESIGN SYSTEM & CONSTANTS
   ========================================================================== */
:root {
    --primary: #0066ff;
    --primary-hover: #0055d4;
    --primary-glow: rgba(0, 102, 255, 0.15);
    --secondary: #001f3f;
    --whatsapp: #25D366;
    --whatsapp-hover: #1ebd50;
    --text-dark: #121824;
    --text-muted: #5e6b85;
    --text-blue: #0066ff;
    --bg-light: #f8faff;
    --bg-card: #ffffff;
    --border-color: #e5eaf4;
    --gradient-hero: linear-gradient(135deg, #ffffff 0%, #edf4fc 100%);
    --gradient-wa: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    --gradient-instagram: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --font-primary: 'Outfit', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 102, 255, 0.08), 0 10px 10px -5px rgba(0, 102, 255, 0.03);
    --shadow-glowing: 0 0 30px rgba(0, 102, 255, 0.25);
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: #ffffff;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: url('assets/hero-bg.jpg') no-repeat top right / 100% auto, var(--gradient-hero);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

ul {
    list-style: none;
}

/* Container Utility */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.header {
    width: 100%;
    height: 85px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
}

.header-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.03);
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--text-dark);
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    width: 20px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Meta Badge */
.meta-badge-header {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    user-select: none;
}

.meta-badge-logo svg {
    width: 24px;
    height: 14px;
    display: block;
}

.meta-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.meta-title {
    font-weight: 700;
    font-size: 0.8rem;
    color: #121824;
}

.meta-sub {
    font-size: 0.55rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Header WhatsApp Button */
.btn-whatsapp-header {
    background: var(--primary);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.3);
}

.btn-whatsapp-header svg {
    width: 18px;
    height: 18px;
}

.btn-whatsapp-header:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 110;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 95;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: var(--transition-smooth);
    opacity: 0;
}

.mobile-nav-overlay.open {
    transform: translateX(0);
    opacity: 1;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--primary);
}

.btn-whatsapp-mobile {
    background: var(--whatsapp);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-mobile svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   HERO SECTION LAYOUT
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    padding: 30px 0 80px 0;
    min-height: calc(100vh - 85px);
    display: flex;
    align-items: center;
    background: transparent;
}

.hero-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

/* ==========================================================================
   LEFT COLUMN - CONTENT
   ========================================================================== */
.hero-content {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Top Pill Badge */
.badge-pill-wrapper {
    margin-bottom: 24px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.12);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 102, 255, 0.02);
}

.badge-pill .dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
    animation: pulseGlow 1.8s infinite;
}

/* Title & Subtitle */
.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.title-line {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: 0 15px;
}

.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(80px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.title-word.color-black {
    color: #1a1e26;
}

.title-word.color-blue {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #4a5468;
    margin-bottom: 36px;
    line-height: 1.3;
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.05rem;
    font-weight: 500;
    color: #4a5468;
    opacity: 0;
    transform: translateY(20px);
}

/* Icons styling */
.icon-group {
    display: flex;
    align-items: center;
}

.icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
}

.icon:hover {
    transform: scale(1.15) rotate(-5deg);
}

.icon svg {
    width: 18px;
    height: 18px;
}

.icon-wa {
    background-color: var(--whatsapp);
}

.icon-ig {
    background: var(--gradient-instagram);
}

.icon-fb-messenger {
    background: linear-gradient(135deg, #0066ff 0%, #a100ff 100%);
}

.icon-fb {
    background-color: #1877F2;
}

.icon-crm {
    background-color: #ffffff;
    color: var(--primary);
    border: 1px solid var(--border-color);
}

.icon-mobile {
    background-color: #ffffff;
    color: var(--primary);
    border: 1px solid var(--border-color);
    margin-left: -8px; /* overlapping effect */
}

.icon-robot {
    background-color: #ffffff;
    color: var(--primary);
    border: 1px solid var(--border-color);
}

.feature-text {
    line-height: 1.2;
}

.feature-text .highlight {
    color: var(--primary);
    font-weight: 600;
}

/* Hero CTA Buttons */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

/* Premium Green WhatsApp Button */
.btn-whatsapp-hero {
    background: var(--gradient-wa);
    border-radius: 50px;
    padding: 18px 24px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-wa-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-whatsapp-hero .btn-icon {
    display: flex;
    align-items: center;
}

.btn-whatsapp-hero .btn-icon svg {
    width: 22px;
    height: 22px;
}

.arrow-circle {
    width: 26px;
    height: 26px;
    background-color: #ffffff;
    border-radius: 50%;
    color: #128C7E;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
}

.arrow-circle svg {
    width: 14px;
    height: 14px;
}

.btn-whatsapp-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp-hero:hover .arrow-circle {
    transform: translateX(4px);
}

/* View Demo Button */
.btn-demo-hero {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: 16px 28px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.05);
    transition: var(--transition-smooth);
}

.play-circle {
    width: 26px;
    height: 26px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.play-circle svg {
    width: 12px;
    height: 12px;
    margin-left: 2px;
}

.btn-demo-hero:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.25);
}

.btn-demo-hero:hover .play-circle {
    border-color: white;
    color: white;
}

/* Meta Footer Badge */
.meta-badge-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #556070;
    font-size: 1.3rem;
    margin-top: 15px;
    font-weight: 500;
}

.meta-footer-logo svg {
    width: 36px;
    height: 21px;
    display: block;
}

.meta-footer-text {
    letter-spacing: -0.2px;
}

.meta-footer-text .bold {
    font-weight: 700;
    color: #0d121c;
    margin-right: 4px;
}

/* ==========================================================================
   RIGHT COLUMN - VISUAL SHOWCASE
   ========================================================================== */
.hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 540px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 901px) {
    .hero-visual {
        margin-right: calc(-50vw + 50% - 24px);
        width: calc(100% + (50vw - 50%));
    }
    .visual-wrapper {
        max-width: none;
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .hero-right-img {
        max-width: 534px !important;
    }
}

/* Interactive Background Glow */
.interactive-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.18) 0%, rgba(0, 102, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(10px);
    pointer-events: none;
    animation: pulseGlowCircle 8s infinite alternate ease-in-out;
}

/* Floating Robot Image */
.hero-right-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 5;
    pointer-events: none;
    user-select: none;
    filter: drop-shadow(0 15px 30px rgba(0, 31, 63, 0.08));
    animation: floatRobot 6s infinite ease-in-out;
    transform-style: preserve-3d;
}

/* Parallax Overlay Trigger Grid */
.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}

/* ==========================================================================
   ANIMATIONS & TRANSITIONS
   ========================================================================== */
/* Floating Motion */
@keyframes floatRobot {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-16px) rotate(0.8deg);
        filter: drop-shadow(0 25px 40px rgba(0, 102, 255, 0.12));
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Pulse Glow dot */
@keyframes pulseGlow {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.7);
    }
    70% {
        transform: scale(1.1);
        opacity: 1;
        box-shadow: 0 0 0 8px rgba(0, 102, 255, 0);
    }
    100% {
        transform: scale(0.9);
        opacity: 0.6;
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0);
    }
}

/* Background Pulse */
@keyframes pulseGlowCircle {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

/* General Fade-up Reveal on Load */
.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}

.anim-fade-up.reveal {
    opacity: 1;
    transform: translateY(0);
}

.anim-fade-in {
    opacity: 0;
    transition: opacity 1.5s ease;
}

.anim-fade-in.reveal {
    opacity: 1;
}

/* Feature Item Delay Loop */
.feature-item.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--delay) * 0.15s + 0.5s),
                opacity 0.8s ease calc(var(--delay) * 0.15s + 0.5s);
}

/* ==========================================================================
   INTERACTIVE CHAT SIMULATOR MODAL
   ========================================================================== */
.demo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.demo-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 24, 36, 0.6);
    backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: scale(0.9);
    transition: var(--transition-bounce);
    z-index: 1010;
    border: 1px solid var(--border-color);
}

.demo-modal.active .modal-container {
    transform: scale(1);
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #ffffff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1020;
    transition: color 0.3s;
}

.close-modal-btn:hover {
    color: #f1f5fa;
}

/* Chat structure */
.chat-simulator {
    display: flex;
    flex-direction: column;
    height: 580px;
}

.chat-header {
    background: var(--primary);
    padding: 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

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

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.chat-avatar svg {
    width: 22px;
    height: 22px;
}

.chat-header-info h4 {
    font-size: 1.05rem;
    font-weight: 600;
}

.online-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--whatsapp);
    border-radius: 50%;
    animation: pulseGlow 1.2s infinite;
}

.chat-meta-badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.chat-meta-badge svg {
    width: 14px;
    height: 8px;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background-color: #f4f6fa;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scroll-behavior: smooth;
}

.message {
    display: flex;
    flex-direction: column;
    max-width: 85%;
}

.message.incoming {
    align-self: flex-start;
}

.message.outgoing {
    align-self: flex-end;
}

.message-content {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.4;
    box-shadow: var(--shadow-sm);
}

.incoming .message-content {
    background: #ffffff;
    color: var(--text-dark);
    border-top-left-radius: 4px;
}

.outgoing .message-content {
    background: var(--primary);
    color: white;
    border-top-right-radius: 4px;
}

.message-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 4px;
    padding: 0 4px;
}

.incoming .message-time {
    align-self: flex-start;
}

.outgoing .message-time {
    align-self: flex-end;
}

/* Suggesstions */
.chat-suggestions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.suggestion-btn {
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.12);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 14px;
    border-radius: 12px;
    text-align: left;
    transition: var(--transition-smooth);
}

.suggestion-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-1px);
}

/* Chat Input */
.chat-input-area {
    padding: 15px 20px;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 12px;
    align-items: center;
}

.chat-input-area input {
    flex: 1;
    height: 44px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 0 20px;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.chat-input-area input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.send-btn {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
}

.send-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

.send-btn svg {
    width: 18px;
    height: 18px;
    margin-left: 2px;
}

/* Typing indicator */
.typing-bubble {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 10px 18px !important;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typingPulse 1s infinite alternate;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingPulse {
    0% {
        transform: translateY(0);
        opacity: 0.4;
    }
    100% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

/* ==========================================================================
   VIDEO PLAYER SECTION
   ========================================================================== */
.video-section {
    position: relative;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px 100px 24px;
}

.video-section-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.video-card {
    position: relative;
    width: 100%;
    max-width: 960px;
    height: 480px;
    background: linear-gradient(135deg, #000B21 0%, #001A5E 50%, #0A1138 100%);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.video-card:hover {
    box-shadow: 0 25px 50px rgba(0, 102, 255, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.video-card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px 80px 100px 80px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    z-index: 10;
    transition: opacity 0.5s ease;
    opacity: 1;
}

.video-card-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #ffffff;
}

.video-card-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.video-card-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #00c2ff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.video-card-desc {
    font-size: 1.05rem;
    color: #a8b8d0;
    max-width: 440px;
    margin-bottom: 32px;
    line-height: 1.45;
}

.btn-watch-video {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition-smooth);
}

.play-icon-white {
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    border-radius: 50%;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    transition: var(--transition-bounce);
}

.play-icon-white svg {
    width: 18px;
    height: 18px;
    margin-left: 3px;
}

.btn-watch-video:hover {
    color: #00c2ff;
}

.btn-watch-video:hover .play-icon-white {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 194, 255, 0.4);
    background-color: #ffffff;
}

.video-card-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.robot-pointing-img {
    height: 380px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
    animation: floatRobot 6s infinite ease-in-out;
}

/* Hidden Video Element */
.video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 5;
    transition: opacity 0.5s ease;
    background-color: #000000;
}

/* Custom Controls Bar */
.video-controls-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(0, 11, 33, 0.75);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    padding: 0 32px;
    gap: 16px;
    z-index: 15;
    transition: transform 0.3s ease;
}

.control-btn {
    color: #ffffff;
    opacity: 0.85;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
}

.control-btn:hover {
    color: var(--primary);
    opacity: 1;
    transform: scale(1.1);
}

.control-btn svg {
    width: 22px;
    height: 22px;
}

.video-timer {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 80px;
    user-select: none;
}

.video-progress-container {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.video-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--primary);
    border-radius: 6px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
}

.video-progress-thumb {
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    left: 0%;
    transform: translateX(-50%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.video-progress-container:hover .video-progress-thumb {
    opacity: 1;
}

.video-progress-container:hover {
    height: 8px;
}

/* ==========================================================================
   TRUST METRICS BAR SECTION
   ========================================================================== */
.trust-metrics-section {
    position: relative;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px 60px 24px;
}

.metrics-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.metrics-bar {
    width: 100%;
    max-width: 1140px;
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 50, 150, 0.03), 0 1px 3px rgba(0, 0, 0, 0.01);
    border: 1px solid var(--border-color);
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
}

.metric-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.metric-icon svg {
    width: 24px;
    height: 24px;
}

.metric-info h4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
}

.metric-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background-color: var(--border-color);
}

/* ==========================================================================
   TECH PARTNERS SECTION
   ========================================================================== */
.partners-section {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px 80px 24px;
    text-align: center;
}

.partners-heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
}

.partners-container {
    width: 100%;
    display: flex;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.partners-container::before,
.partners-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.partners-container::before {
    left: 0;
    background: linear-gradient(to right, #f4f8fb 0%, transparent 100%);
}
.partners-container::after {
    right: 0;
    background: linear-gradient(to left, #f4f8fb 0%, transparent 100%);
}

.partner-badges {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    width: max-content;
    animation: scroll-partners 25s linear infinite;
}

.partner-badges:hover {
    animation-play-state: paused;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

.partner-badge {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px 36px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    transition: var(--transition-bounce);
    user-select: none;
}

.partner-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 102, 255, 0.2);
}

.partner-icon {
    display: flex;
    align-items: center;
}

.partner-icon svg {
    width: 28px;
    height: 28px;
}

.partner-icon.openai { color: #10a37f; }
.partner-icon.n8n { color: #ff6d5a; }
.partner-icon.react { color: #61dafb; }
.partner-icon.mysql { color: #00758f; }
.partner-icon.node { color: #339933; }
.partner-icon.claude { color: #d97706; }
.partner-icon.gemini { color: #1a73e8; }

.partner-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* ==========================================================================
   CRM SLIDER SECTION
   ========================================================================== */
.crm-slider-section {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px 80px 24px;
}

.crm-slider-container {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 50, 150, 0.05);
    border: 1px solid var(--border-color);
    overflow: hidden;
    padding: 60px 40px;
}

.crm-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 200%; /* For 2 slides */
}

.crm-slide {
    width: 50%; /* 100% / number of slides */
    flex-shrink: 0;
    padding: 0 20px;
}

.crm-slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.crm-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1e26;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.crm-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.crm-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.check-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
}
.check-circle svg {
    width: 14px;
    height: 14px;
}

/* Phone Mockup */
.mockup-phone {
    width: 320px;
    height: 640px;
    background: #111;
    border-radius: 40px;
    margin: 0 auto;
    padding: 12px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2), inset 0 0 0 2px #333;
    position: relative;
}

.mockup-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background: #111;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.mockup-header {
    background: #0044ff; /* Stronger blue */
    color: white;
    padding: 40px 16px 20px;
}

.mockup-status-bar {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.status-icons { font-size: 0.7rem; }

.mockup-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.mockup-logo {
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.mockup-welcome {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    opacity: 0.9;
}

.mockup-body {
    flex: 1;
    background: #f4f7fb;
    padding: 16px;
    overflow-y: auto;
}

.mockup-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.mockup-stat-card {
    background: white;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.stat-title {
    font-size: 0.65rem;
    color: #666;
    margin-bottom: 6px;
}
.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
}

.mockup-recent {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}
.recent-header {
    padding: 12px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    color: #111;
}
.recent-header .arrow { color: var(--primary); }

.recent-list { display: flex; flex-direction: column; }
.recent-item {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f5f5f5;
}
.recent-item:last-child { border-bottom: none; }

.recent-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}
.recent-info { flex: 1; min-width: 0; }
.recent-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 2px;
}
.recent-msg {
    font-size: 0.65rem;
    color: #777;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.recent-time {
    font-size: 0.6rem;
    color: #00c25a; /* Green time */
    font-weight: 600;
}

.mockup-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: white;
    padding: 10px 5px 20px;
    border-top: 1px solid #eee;
}
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.55rem;
    color: #999;
    font-weight: 600;
}
.nav-item.active { color: var(--primary); }
.nav-fab-container { position: relative; top: -15px; }
.nav-fab {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 102, 255, 0.4);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    cursor: pointer;
    transition: var(--transition-bounce);
}
.slider-arrow:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.1);
}
.crm-slider-dots {
    display: flex;
    gap: 8px;
}
.crm-slider-dots .dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}
.crm-slider-dots .dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .crm-slide-content {
        grid-template-columns: 1fr;
    }
    .crm-title {
        font-size: 2rem;
    }
}

/* ==========================================================================
   INDUSTRY GRID SECTION
   ========================================================================== */
.industry-section {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 60px 24px;
    background: radial-gradient(circle at 10% 50%, rgba(240, 247, 255, 0.5) 0%, transparent 40%),
                radial-gradient(circle at 90% 50%, rgba(240, 247, 255, 0.5) 0%, transparent 40%);
    position: relative;
}

.industry-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1e26;
    margin-bottom: 40px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

@media (max-width: 1100px) {
    .industry-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 768px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }
}

.industry-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 50, 150, 0.08);
}

.ind-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.ind-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ind-icon svg {
    width: 24px;
    height: 24px;
}

.ind-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1e26;
}

.ind-desc {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.4;
    position: relative;
    padding-top: 8px;
    margin-top: auto;
}

.ind-desc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 2px;
}

/* Colors for each industry */
.ind-ecom .ind-icon { background: #eef2ff; color: #3b82f6; }
.ind-ecom .ind-desc::before { background: #3b82f6; }

.ind-health .ind-icon { background: #f0fdfa; color: #14b8a6; }
.ind-health .ind-desc::before { background: #14b8a6; }

.ind-real .ind-icon { background: #f3e8ff; color: #a855f7; }
.ind-real .ind-desc::before { background: #a855f7; }

.ind-rest .ind-icon { background: #fff7ed; color: #f97316; }
.ind-rest .ind-desc::before { background: #f97316; }

.ind-edu .ind-icon { background: #f0fdf4; color: #22c55e; }
.ind-edu .ind-desc::before { background: #22c55e; }

.ind-const .ind-icon { background: #fefce8; color: #eab308; }
.ind-const .ind-desc::before { background: #eab308; }

.ind-salon .ind-icon { background: #fdf2f8; color: #ec4899; }
.ind-salon .ind-desc::before { background: #ec4899; }

.ind-it .ind-icon { background: #eff6ff; color: #2563eb; }
.ind-it .ind-desc::before { background: #2563eb; }

.ind-lab .ind-icon { background: #faf5ff; color: #9333ea; }
.ind-lab .ind-desc::before { background: #9333ea; }

.ind-auto .ind-icon { background: #fef2f2; color: #ef4444; }
.ind-auto .ind-desc::before { background: #ef4444; }

.ind-hotel .ind-icon { background: #f0f9ff; color: #0ea5e9; }
.ind-hotel .ind-desc::before { background: #0ea5e9; }

.ind-retail .ind-icon { background: #fdf4ff; color: #d946ef; }
.ind-retail .ind-desc::before { background: #d946ef; }

/* Bottom Callout Banner */
.industry-callout {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.callout-icon {
    width: 48px;
    height: 48px;
    background: #eef2ff;
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.callout-icon svg {
    width: 28px;
    height: 28px;
}

.callout-text {
    font-size: 1.05rem;
    color: #444;
    font-weight: 500;
}

.callout-text strong {
    color: var(--primary);
    font-weight: 700;
}

/* ==========================================================================
   COMPARISON SECTION
   ========================================================================== */
.comparison-section {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 24px;
}

.comp-container {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    overflow: hidden;
    position: relative;
    padding: 30px;
    gap: 40px;
}

@media (max-width: 992px) {
    .comp-container {
        flex-direction: column;
    }
}

/* Left Sidebar */
.comp-sidebar {
    width: 32%;
    flex-shrink: 0;
    padding-right: 20px;
}

@media (max-width: 992px) {
    .comp-sidebar {
        width: 100%;
        padding-right: 0;
    }
}

.comp-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1e26;
}

.comp-title .color-blue {
    color: #1877F2;
}

.comp-socials {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}
.comp-socials img, .comp-socials svg {
    width: 36px;
    height: 36px;
}

.comp-feature-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.01);
}

.comp-fc-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.comp-fc-icon.blue { background: #eff6ff; color: #3b82f6; }
.comp-fc-icon.green { background: #f0fdf4; color: #22c55e; }
.comp-fc-icon.orange { background: #fff7ed; color: #f97316; }

.comp-fc-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1e26;
    margin-bottom: 4px;
}
.comp-fc-text p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

/* Comparison Tables */
.comp-tables-wrapper {
    flex: 1;
    display: flex;
    position: relative;
    background: #f8fafc;
    border-radius: 16px;
}
@media (max-width: 768px) {
    .comp-tables-wrapper {
        flex-direction: column;
        background: transparent;
    }
}

.vs-badge {
    position: absolute;
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: #0044ff; /* var(--primary) */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    z-index: 10;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
    .vs-badge {
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

/* Table Columns */
.comp-col {
    width: 50%;
    display: flex;
    flex-direction: column;
}
@media (max-width: 768px) {
    .comp-col {
        width: 100%;
        margin-bottom: 20px;
    }
}

.comp-col.robobot {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(13, 110, 253, 0.15);
    border: 1px solid var(--primary);
    position: relative;
    z-index: 5;
    margin: -10px 0;
}
@media (max-width: 768px) {
    .comp-col.robobot { margin: 0; }
}

.comp-col.other {
    background: transparent;
    padding-left: 10px;
}
@media (max-width: 768px) {
    .comp-col.other {
        padding-left: 0;
        background: #f8fafc;
        border-radius: 16px;
    }
}

.comp-header {
    padding: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.comp-col.robobot .comp-header {
    background: var(--primary);
    color: white;
    border-radius: 15px 15px 0 0;
}
.comp-col.other .comp-header {
    color: #333;
    background: #e2e8f0;
    border-radius: 15px 15px 0 0;
}

.comp-list {
    list-style: none;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.comp-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a1e26;
}

.comp-col.other .comp-list li {
    color: #666;
}

.comp-check {
    color: #22c55e;
    background: #dcfce7;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.comp-cross {
    color: #94a3b8;
    background: #e2e8f0;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.comp-check svg, .comp-cross svg {
    width: 14px;
    height: 14px;
}

/* ==========================================================================
   BILINGUAL FEATURES GRID SECTION
   ========================================================================== */
.language-features-section {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px 100px 24px;
}

.features-grid-container {
    display: grid;
    grid-template-columns: 0.32fr 0.68fr;
    gap: 40px;
    align-items: flex-start;
}

.features-title-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 15px;
}

.features-grid-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #1a1e26;
    margin-bottom: 12px;
}

.features-grid-title .color-blue {
    color: var(--primary);
}

.features-grid-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.title-underline {
    width: 32px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.features-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.platform-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 4px 10px rgba(0, 50, 150, 0.015);
    transition: var(--transition-bounce);
    border: 1px solid var(--border-color);
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 50, 150, 0.04);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.platform-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.platform-logo svg {
    width: 20px;
    height: 20px;
}

.wa-logo { background-color: var(--whatsapp); }
.ig-logo { background: var(--gradient-instagram); }
.fb-logo { background-color: #1877F2; }

.card-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.card-checklist {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.card-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a5468;
    line-height: 1.35;
}

.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon svg {
    width: 10px;
    height: 10px;
}

/* WhatsApp Card Accents */
.card-whatsapp { border-color: rgba(37, 211, 102, 0.15); }
.card-whatsapp:hover { border-color: rgba(37, 211, 102, 0.45); }
.card-whatsapp .check-icon { background: rgba(37, 211, 102, 0.1); color: var(--whatsapp); }

/* Instagram Card Accents */
.card-instagram { border-color: rgba(220, 39, 67, 0.15); }
.card-instagram:hover { border-color: rgba(220, 39, 67, 0.45); }
.card-instagram .check-icon { background: rgba(220, 39, 67, 0.1); color: #dc2743; }

/* Facebook Card Accents */
.card-facebook { border-color: rgba(24, 119, 242, 0.15); }
.card-facebook:hover { border-color: rgba(24, 119, 242, 0.45); }
.card-facebook .check-icon { background: rgba(24, 119, 242, 0.1); color: #1877F2; }

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Large screens and Desktops */
@media (max-width: 1100px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

/* Tablets (landscape and portrait) */
@media (max-width: 900px) {
    .nav-menu {
        display: none;
    }
    .meta-badge-header {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .title-line {
        justify-content: center;
    }
    
    .feature-list {
        align-items: flex-start;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }
    
    .hero-actions {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }
    
    .meta-badge-footer {
        justify-content: center;
    }

    .hero-section {
        padding: 40px 24px 80px 24px;
    }

    /* Video Section Responsive Tablet */
    .video-section {
        padding-bottom: 60px;
    }
    .video-card {
        height: auto;
        max-width: 680px;
    }
    .video-card-content {
        position: relative;
        grid-template-columns: 1fr;
        padding: 40px 40px 90px 40px;
        text-align: center;
    }
    .video-card-left {
        align-items: center;
    }
    .video-card-desc {
        max-width: 100%;
    }
    .video-card-right {
        justify-content: center;
        margin-top: 30px;
    }
    .robot-pointing-img {
        height: 280px;
    }

    /* Trust & Features Responsive Tablet */
    .trust-metrics-section {
        padding-bottom: 40px;
    }
    .metrics-bar {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }
    .metric-divider {
        width: 100%;
        height: 1px;
    }
    .metric-item {
        width: 100%;
        justify-content: flex-start;
        padding-left: 20px;
    }
    .partners-section {
        padding-bottom: 50px;
    }
    .language-features-section {
        padding-bottom: 60px;
    }
    .features-grid-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .features-title-block {
        align-items: center;
    }
}

/* Mobile Screens */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 28px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-whatsapp-hero, .btn-demo-hero {
        width: 100%;
        justify-content: center;
    }

    .btn-whatsapp-header {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .header-container {
        padding: 0 16px;
    }
    
    .logo-img {
        height: 38px;
    }
    
    .feature-list {
        width: 100%;
        font-size: 0.95rem;
    }
    
    .icon {
        width: 28px;
        height: 28px;
    }
    
    .icon svg {
        width: 15px;
        height: 15px;
    }

    .interactive-glow {
        width: 280px;
        height: 280px;
    }

    /* Video Section Responsive Mobile */
    .video-card-content {
        padding: 30px 20px 80px 20px;
    }
    .video-card-title {
        font-size: 1.8rem;
    }
    .video-card-subtitle {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    .video-card-desc {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    .video-controls-bar {
        padding: 0 16px;
        gap: 12px;
    }
    .video-timer {
        font-size: 0.8rem;
        min-width: 65px;
    }
    .robot-pointing-img {
        height: 200px;
    }

    /* Trust & Features Responsive Mobile */
    .partner-badges {
        gap: 10px;
    }
    .partner-badge {
        padding: 8px 14px;
        font-size: 0.9rem;
    }
    .features-grid-title {
        font-size: 2rem;
    }
    .features-grid-subtitle {
        font-size: 1.05rem;
    }
    .features-grid-cards {
        grid-template-columns: 1fr;
    }
    .meta-badge-footer {
        font-size: 1.1rem;
    }
    .meta-footer-logo svg {
        width: 30px;
        height: 17.5px;
    }
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    width: 100%;
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 20px;
}

.testim-container {
    background: linear-gradient(135deg, #185ef3 0%, #0d42d6 100%);
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
    overflow: hidden;
}

/* Background Quote Marks */
.testim-container::before,
.testim-container::after {
    content: '"';
    position: absolute;
    font-size: 150px;
    font-family: serif;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    font-weight: bold;
}
.testim-container::before {
    top: 20px;
    left: 30px;
}
.testim-container::after {
    top: 20px;
    right: 30px;
}

.testim-title {
    color: white;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.testim-grid-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 20px 0; /* Space for hover effects */
}

.testim-grid {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollTestimonials 25s linear infinite;
}

.testim-grid:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); }
}

.testim-card {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    width: 280px;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testim-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testim-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.testim-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testim-logo svg {
    width: 24px;
    height: 24px;
}

.testim-meta h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1e26;
    margin-bottom: 2px;
    line-height: 1.2;
}

.testim-category {
    font-size: 12px;
    color: #1877F2;
    font-weight: 600;
}

.testim-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.testim-stars svg {
    width: 16px;
    height: 16px;
    fill: #ffb400;
}

.testim-text {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.6;
    flex-grow: 1;
}

.testim-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.testim-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.testim-dots .dot.active {
    background: white;
}

@media (max-width: 600px) {
    .testim-container {
        padding: 40px 20px;
    }
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-section {
    padding: 80px 20px;
    background-color: #fcfdfd; /* very light blue/white */
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef3ff;
    color: #1877F2;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.pricing-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1e26;
    margin-bottom: 10px;
}

.pricing-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.pricing-toggle {
    display: inline-flex;
    background: white;
    padding: 5px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.toggle-btn {
    padding: 10px 25px;
    border-radius: 25px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: #0056ff; /* Match image blue */
    color: white;
    box-shadow: 0 4px 10px rgba(0, 86, 255, 0.3);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    width: 330px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.pricing-card.popular {
    border: 2px solid #0056ff;
    box-shadow: 0 20px 40px rgba(0, 86, 255, 0.1);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffb400;
    color: #1a1e26;
    padding: 6px 20px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pc-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.pc-header.center-header {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.pc-title-area.text-center {
    text-align: center;
}

.pc-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-icon svg {
    width: 26px;
    height: 26px;
}

.pc-icon.green { background: #e8f8f0; color: #10b981; }
.pc-icon.light-blue { background: #eef3ff; color: #0056ff; }

.pc-icon.insta {
    background: #ffeeee;
}

.pc-icon.blue {
    background: #eef3ff;
    color: #1877F2;
}

.pc-icon.sm {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}
.pc-icon.sm svg { width: 20px; height: 20px; }

.pc-icons-group {
    display: flex;
    gap: 6px;
}

.pc-title-area h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1e26;
    margin-bottom: 4px;
}

.pc-title-area span {
    font-size: 12px;
    color: #64748b;
    line-height: 1.3;
    display: block;
}

.pc-price {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1e26;
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 5px;
    line-height: 1;
}

.pc-price .currency {
    font-size: 1.6rem;
    color: #0056ff;
}

.pc-price .period {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.pc-integration {
    font-size: 13px;
    color: #0056ff;
    font-weight: 700;
    padding-bottom: 25px;
    border-bottom: 1px dashed #e2e8f0;
    margin-bottom: 25px;
}

.pc-integration span {
    color: #64748b;
    font-weight: 500;
}

.pc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.pc-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #1a1e26;
    font-weight: 600;
    margin-bottom: 15px;
}

.pc-check {
    color: #0056ff;
    display: flex;
}
.pc-check svg { width: 18px; height: 18px; }

.pc-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pc-btn.outline-green {
    background: transparent;
    border: 2px solid #10b981;
    color: #10b981;
}
.pc-btn.outline-green:hover {
    background: #10b981;
    color: white;
}

.pc-btn.solid-blue {
    background: linear-gradient(135deg, #0056ff, #0044cc);
    border: none;
    color: white;
}
.pc-btn.solid-blue:hover {
    box-shadow: 0 8px 20px rgba(0, 86, 255, 0.3);
    transform: translateY(-2px);
}

.pc-btn.outline-blue {
    background: transparent;
    border: 2px solid #0056ff;
    color: #0056ff;
}
.pc-btn.outline-blue:hover {
    background: #0056ff;
    color: white;
}

.pricing-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
}
.pricing-footer .pc-check svg {
    color: #0056ff;
}

@media (max-width: 1024px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card {
        width: 100%;
        max-width: 400px;
    }
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    padding: 80px 20px;
    background-color: #f8fafc; /* slightly darker than fcfdfd to alternate */
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef3ff;
    color: #0056ff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.faq-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1e26;
    margin-bottom: 10px;
}

.faq-subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

.view-all-faqs-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid #0056ff;
    border-radius: 12px;
    color: #0056ff;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-faqs-btn:hover {
    background: #0056ff;
    color: white;
}

.faq-grid {
    display: flex;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    gap: 15px;
    user-select: none;
}

.faq-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #eef3ff;
    color: #0056ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-icon svg {
    width: 20px;
    height: 20px;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1e26;
    margin: 0;
    flex: 1;
}

.faq-arrow {
    color: #0056ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-arrow svg {
    width: 20px;
    height: 20px;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 25px 25px 80px; /* Aligned with text, 80px offsets the icon + padding */
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.faq-footer-banner {
    background: white;
    border-radius: 16px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 40px auto 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.ff-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ff-icon {
    width: 45px;
    height: 45px;
    background: #0056ff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ff-icon svg {
    width: 24px;
    height: 24px;
}

.ff-text p {
    font-size: 16px;
    color: #64748b;
    margin: 0 0 5px 0;
}

.ff-text a {
    font-size: 18px;
    font-weight: 700;
    color: #0056ff;
    text-decoration: none;
}

.ff-text a:hover {
    text-decoration: underline;
}

.ff-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .faq-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .faq-grid {
        flex-direction: column;
    }
    .faq-footer-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .ff-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .faq-answer p {
        padding-left: 25px;
    }
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.main-footer {
    background-color: #07101e;
    color: #e2e8f0;
    padding-top: 60px;
}

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cta-robot-img {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 102, 255, 0.2));
}

.cta-text h2 {
    font-size: 2.2rem;
    color: white;
    margin: 0 0 10px 0;
    font-weight: 800;
}

.cta-text p {
    color: #94a3b8;
    margin: 0;
    font-size: 1.1rem;
}

.cta-btn-green {
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.cta-btn-green:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.cta-circle-arrow {
    background: white;
    color: #25d366;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-circle-arrow svg {
    width: 14px;
    height: 14px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr 1.5fr;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 26px;
    font-weight: 800;
    color: white;
    text-decoration: none;
    margin-bottom: 15px;
}

.brand-desc {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

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

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #111b2d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.links-col h4, .contact-col h4 {
    color: white;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.links-col h4::after, .contact-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #0066FF;
}

.links-col ul, .contact-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-col li {
    margin-bottom: 15px;
}

.links-col a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    padding-right: 20px;
}

.links-col a span {
    color: #0066FF;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
}

.links-col a:hover {
    color: white;
}

.contact-list li {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-list li svg {
    width: 18px;
    height: 18px;
    color: #0066FF;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    color: #64748b;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .footer-cta {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .cta-left {
        flex-direction: column;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    .brand-col {
        grid-column: span 1;
    }
}
