/* ============================================================
   MAVEN PRINTS - DIGITAL SOLUTIONS STYLE SYSTEM
   Ultra-modern Clean White & Light Gray Tech Studio Aesthetic
   ============================================================ */

:root {
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Color Tokens (Bright, Clean White & Light Gray) */
    --bg-white: #ffffff;
    --bg-light-gray: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    
    --text-main: #334155;
    --text-muted: #64748b;
    --text-dark: #0f172a;

    /* Accents & Gradients */
    --primary: #4f46e5;
    --primary-light: #6366f1;
    --accent-cyan: #0284c7;
    --accent-violet: #7c3aed;
    --emerald: #10b981;
    --amber: #f59e0b;
    --red: #ef4444;

    --gradient-main: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #0284c7 100%);
    --gradient-glow: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(2, 132, 199, 0.15));
    
    /* Layout & Shadows */
    --border-glass: #e2e8f0;
    --border-glass-light: #cbd5e1;
    --shadow-glow: 0 10px 30px rgba(79, 70, 229, 0.15);
    --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 25px -5px rgba(15, 23, 42, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
    --shadow-xl: 0 20px 45px -10px rgba(15, 23, 42, 0.12), 0 10px 20px -15px rgba(15, 23, 42, 0.08);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100% !important;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100% !important;
    position: relative;
    margin: 0;
    padding: 0;
}

/* Ambient Subtle Background Glows */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    pointer-events: none;
    z-index: 0;
    max-width: 100vw;
}

.glow-1 {
    top: -100px;
    left: 15%;
    width: 600px;
    max-width: 100vw;
    height: 600px;
    background: rgba(79, 70, 229, 0.07);
}

.glow-2 {
    top: 35%;
    right: 0px;
    width: 700px;
    max-width: 100vw;
    height: 700px;
    background: rgba(2, 132, 199, 0.06);
}

.glow-3 {
    bottom: 10%;
    left: 20%;
    width: 800px;
    max-width: 100vw;
    height: 800px;
    background: rgba(124, 58, 237, 0.05);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.section-padding {
    padding: 110px 0;
}

/* Very Light Gray Section Backgrounds */
.bg-light-gray {
    background-color: var(--bg-light-gray);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

/* Typography Helpers */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.badge-sub {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header {
    margin-bottom: 64px;
}

.section-header.center {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
}

.btn-xl {
    padding: 18px 34px;
    font-size: 1.05rem;
    border-radius: 12px;
}

.cb-input:focus, .cb-textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.input-prefix-wrapper {
    display: flex;
    align-items: center;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0 12px;
    transition: all 0.2s ease;
}
.input-prefix-wrapper:focus-within {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
.input-prefix-wrapper .prefix {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 600;
    padding-right: 12px;
    border-right: 1px solid #e5e7eb;
}
.cb-input-with-prefix {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px;
    font-size: 0.9rem;
    color: #1f2937;
    outline: none;
}
/* Quitar flechas del input number */
.cb-input-with-prefix::-webkit-outer-spin-button,
.cb-input-with-prefix::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cb-input-with-prefix[type=number] {
  -moz-appearance: textfield;
}

.btn-gradient {
    background: var(--gradient-main);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.25);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.4);
}

.btn-outline-glass {
    background: #ffffff;
    color: var(--text-dark);
    border: 1px solid var(--border-glass-light);
    box-shadow: var(--shadow-sm);
}

.btn-outline-glass:hover {
    background: var(--bg-light-gray);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.btn-glow-primary {
    background: var(--primary);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.88rem;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.25);
}

.btn-glow-primary:hover {
    background: var(--accent-violet);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.35);
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo-img {
    height: 48px;
    width: auto;
    max-height: 52px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.footer-logo .brand-logo-img {
    height: 54px;
    max-height: 58px;
}

.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-primary {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.35rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.brand-accent {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.35rem;
    color: var(--accent-cyan);
    letter-spacing: -0.5px;
}

.logo-subtext {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
}

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

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.2s;
}

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

.mobile-only-contact {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.mobile-toggle:hover, .mobile-toggle:active {
    background: #e2e8f0;
}

.mobile-toggle .bar {
    width: 26px;
    height: 3px;
    background: #0f172a !important;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ==================== HERO SECTION PRO ==================== */
.hero-pro {
    position: relative;
    padding-top: 160px;
    padding-bottom: 110px;
    min-height: 94vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle at 50% 0%, #f8fafc 0%, #ffffff 100%);
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    opacity: 0.55;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 1;
}

.orb-1 {
    top: -80px;
    left: 20%;
    width: 500px;
    height: 500px;
    background: rgba(79, 70, 229, 0.1);
}

.orb-2 {
    top: 10%;
    right: 20%;
    width: 550px;
    height: 550px;
    background: rgba(2, 132, 199, 0.08);
}

.hero-container-pro {
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 5;
}

.hero-badge-pro {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
}

.badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
    animation: pulsePro 2s infinite;
}

@keyframes pulsePro {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

.hero-title-pro {
    font-size: 3.1rem;
    line-height: 1.15;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.text-gradient-pro {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-tag-pills {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px;
    margin: 24px 0;
    width: 100%;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 30px;
    font-size: 0.74rem;
    font-weight: 700;
    color: #334155;
    white-space: nowrap;
}

.tag-pill i {
    color: #4f46e5;
}

.hero-subtitle-pro {
    font-size: 0.96rem;
    color: #475569;
    max-width: 760px;
    margin: 0 auto 36px;
    line-height: 1.65;
}

.hero-cta-group-pro {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 64px;
}

.btn-gradient-pro {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    padding: 18px 36px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.05rem;
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-gradient-pro:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(79, 70, 229, 0.45);
}

.btn-glass-pro {
    background: #ffffff;
    color: #0f172a;
    padding: 18px 36px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.05rem;
    border: 1px solid #cbd5e1;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-glass-pro:hover {
    background: #f8fafc;
    border-color: #4f46e5;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}

/* Compact Hero Buttons side by side */
.btn.btn-hero-compact {
    padding: 11px 22px !important;
    font-size: 0.88rem !important;
    border-radius: 11px !important;
    gap: 8px !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* ==================== SPLIT HERO GRID (LEFT TEXT + RIGHT FLOATING LAPTOP) ==================== */
.hero .container {
    max-width: 1540px !important;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    align-items: center;
    gap: 36px;
    margin-bottom: 72px;
    text-align: left;
}

.hero-split-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    z-index: 10;
}

.hero-split-text .hero-badge-pro {
    margin: 0 0 20px 0;
}

.hero-split-text .hero-title-pro {
    text-align: left;
    margin: 0 0 24px 0;
}

.hero-split-text .hero-tag-pills {
    justify-content: flex-start;
    margin: 24px 0 24px 0;
}

.hero-split-text .hero-subtitle-pro {
    text-align: left;
    margin: 0 0 32px 0;
    max-width: 100%;
}

.hero-split-text .hero-cta-group-pro {
    justify-content: flex-start;
    margin: 0;
}

/* Right Column: Massive Pure Floating Laptop without Background Box (Sin Fondo) */
.hero-split-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px 10px 35px 0;
    overflow: visible;
}

.floating-laptop-pure {
    position: relative;
    width: 100%;
    max-width: 920px;
    min-width: 690px;
    animation: floatMacbook 6s ease-in-out infinite;
    filter: drop-shadow(0 40px 55px rgba(15, 23, 42, 0.32));
    transform: scale(1.02);
    transform-origin: center right;
}

@keyframes floatMacbook {
    0%, 100% { transform: scale(1.02) translateY(0) rotate(-0.5deg); }
    50% { transform: scale(1.02) translateY(-14px) rotate(0.5deg); }
}

/* Pure CSS MacBook Pro Chassis */
.css-macbook {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.macbook-screen-lid {
    position: relative;
    background: #1e293b;
    border-radius: 16px 16px 0 0;
    padding: 12px 12px 16px;
    border: 2px solid #334155;
    border-bottom: none;
    box-shadow: inset 0 0 0 2px #0f172a;
}

.macbook-camera-notch {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 10px;
    background: #0f172a;
    border-radius: 0 0 6px 6px;
    z-index: 10;
}

.macbook-display {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
}

.macbook-ui-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.macbook-screen-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 100%;
    background: linear-gradient(115deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 45%);
    pointer-events: none;
}

.macbook-base-lip {
    position: relative;
    height: 14px;
    background: linear-gradient(180deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 2px 2px 0 0;
    border-top: 1px solid #f1f5f9;
}

.macbook-thumb-groove {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 68px;
    height: 6px;
    background: #94a3b8;
    border-radius: 0 0 6px 6px;
}

.macbook-base-bottom {
    height: 8px;
    background: linear-gradient(180deg, #94a3b8 0%, #64748b 100%);
    border-radius: 0 0 20px 20px;
    margin: 0 -16px;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.3);
}

/* Floating Technological Cards moved to corners so they don't cover screen */
.floating-tech-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 16px;
    box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.18);
    z-index: 12;
    animation: floatCard 6s ease-in-out infinite;
}

.floating-laptop-pure .floating-tech-card.card-left {
    top: -28px;
    left: 15px;
    animation-delay: 0s;
    transform: scale(0.85);
}

.floating-laptop-pure .floating-tech-card.card-right {
    top: 12%;
    right: -25px;
    animation-delay: 2s;
    transform: scale(0.85);
}

.floating-laptop-pure .floating-tech-card.card-bottom {
    bottom: -32px;
    left: 28%;
    animation: floatCenterCard 7s ease-in-out infinite;
    animation-delay: 1s;
    transform: scale(0.85);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes floatCenterCard {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.card-icon-pulse {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.35);
}

.card-icon-check {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 6px 15px rgba(79, 70, 229, 0.35);
}

.card-icon-wa {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.35);
}

.card-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.card-details span {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-details strong {
    font-size: 0.95rem;
    color: #0f172a;
    font-weight: 800;
}

@media (max-width: 1024px) {
    .hero-split-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .hero-split-text {
        align-items: center;
        text-align: center;
    }
    .hero-split-text .hero-title-pro,
    .hero-split-text .hero-subtitle-pro {
        text-align: center;
    }
    .hero-split-text .hero-tag-pills,
    .hero-split-text .hero-cta-group-pro {
        justify-content: center;
    }
    .floating-laptop-pure .floating-tech-card.card-left { left: 0; top: -15px; }
    .floating-laptop-pure .floating-tech-card.card-right { right: 0; top: 15px; }
}

@media (max-width: 768px) {
    .floating-tech-card {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin-top: 12px;
        width: 100%;
        animation: none;
    }
}

/* Floating SaaS Showcase Bar */
.hero-showcase-bar {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12), 0 10px 20px -15px rgba(15, 23, 42, 0.08);
    margin-bottom: 56px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 12px;
}

.showcase-title {
    font-size: 0.82rem;
    font-weight: 800;
    color: #4f46e5;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.showcase-status {
    font-size: 0.78rem;
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
}

.showcase-items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.3s;
}

.showcase-item:hover {
    background: #ffffff;
    border-color: #4f46e5;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(79, 70, 229, 0.12);
}

.showcase-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(2, 132, 199, 0.12));
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.showcase-text {
    display: flex;
    flex-direction: column;
}

.showcase-text strong {
    font-size: 0.96rem;
    color: #0f172a;
    font-family: var(--font-heading);
    margin-bottom: 2px;
}

.showcase-text span {
    font-size: 0.8rem;
    color: #64748b;
}

/* ==================== FULL-WIDTH PARALLAX TRUST RIBBON ==================== */
.trust-parallax-ribbon {
    width: 100%;
    position: relative;
    background: #0b1120;
    overflow: hidden;
    padding: 72px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

/* Parallax Technological Photo Background Effect */
.ribbon-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(135deg, rgba(11, 17, 32, 0.86) 0%, rgba(15, 23, 42, 0.90) 100%),
        url('parallax-tech-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    pointer-events: none;
    z-index: 1;
}

.ribbon-glow-1 {
    position: absolute;
    width: 450px;
    height: 450px;
    top: -120px;
    left: 8%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.28) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    animation: pulseParallax 8s ease-in-out infinite alternate;
}

.ribbon-glow-2 {
    position: absolute;
    width: 450px;
    height: 450px;
    bottom: -150px;
    right: 12%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.22) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    animation: pulseParallax 10s ease-in-out infinite alternate-reverse;
}

@keyframes pulseParallax {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-35px) scale(1.18); }
}

/* Full-width Metrics Row inside the ribbon container */
.hero-metrics-row.fullwidth-metrics {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 36px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    z-index: 5;
    flex-wrap: wrap;
}

.metric-box {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 260px;
}

.metric-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.metric-box:hover .metric-icon-wrapper {
    transform: scale(1.15) rotate(-6deg);
}

.metric-icon-wrapper.pulse-icon {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.45);
}

.metric-icon-wrapper.icon-emerald {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.45);
}

.metric-icon-wrapper.icon-sky {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.45);
}

.metric-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-content strong {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.metric-content span {
    font-size: 0.92rem;
    color: #94a3b8;
    line-height: 1.45;
}

.metric-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .showcase-items-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title-pro {
        font-size: 2.8rem;
    }
    .hero-subtitle-pro {
        font-size: 0.88rem;
    }
    .showcase-items-grid {
        grid-template-columns: 1fr;
    }
    .trust-parallax-ribbon {
        padding: 48px 0;
    }
    .hero-metrics-row.fullwidth-metrics {
        gap: 32px;
        flex-direction: column;
    }
    .metric-box {
        width: 100%;
        justify-content: flex-start;
    }
    .metric-divider {
        display: none;
    }
}


/* ==================== COMPARISON SECTION ==================== */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.comp-card {
    background: #ffffff;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.problem-card {
    border-color: rgba(239, 68, 68, 0.25);
}

.problem-card:hover {
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.08);
}

.solution-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 2px solid var(--primary);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.12);
}

.solution-card:hover {
    box-shadow: 0 20px 45px rgba(79, 70, 229, 0.18);
    transform: translateY(-5px);
}

.comp-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-glass);
}

.comp-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.red-icon { background: rgba(239, 68, 68, 0.12); color: #ef4444; }
.green-icon { background: rgba(16, 185, 129, 0.12); color: #10b981; }

.comp-card-header h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.comp-card-header span {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.comp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.comp-list li {
    display: flex;
    gap: 16px;
}

.comp-list li i {
    font-size: 1.25rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.red-text { color: #ef4444; }
.green-text { color: #10b981; }

.comp-list li strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

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

/* ==================== DEMOS SECTION (Light Gray background) ==================== */
.demo-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.demo-tab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: var(--radius-sm);
    background: #ffffff;
    border: 1px solid var(--border-glass-light);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

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

.demo-tab-btn.active {
    background: var(--gradient-main);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.25);
}

.demo-panel {
    display: none;
}

.demo-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.demo-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--border-glass-light);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.industry-tag {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1.5px;
}

.demo-info-col h3 {
    font-size: 2.2rem;
    margin: 12px 0 16px;
    color: var(--text-dark);
}

.demo-info-col p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.demo-features-pill {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.demo-features-pill span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.demo-features-pill i {
    color: #10b981;
}

.btn-primary-gradient {
    background: var(--gradient-main);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.25);
}

/* Preview Mockup inside Demos stays sleek slate for high contrast */
.preview-mockup {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.mockup-header {
    background: #1e293b;
    padding: 12px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #94a3b8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-content {
    padding: 28px;
    display: flex;
    justify-content: center;
}

.mini-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.2);
}

.mini-img {
    height: 190px;
    position: relative;
}

.mini-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.88);
    color: #10b981;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
}
.mini-tag.emerald-tag { color: #34d399; }
.mini-tag.amber-tag { color: #f59e0b; }

.mini-body {
    padding: 18px;
    color: #334155;
}

.mini-body h5 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: #0f172a;
}

.mini-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--accent-cyan);
    margin-bottom: 14px;
}

.mini-grid-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    font-size: 0.82rem;
    color: #64748b;
    border-top: 1px solid #e2e8f0;
    padding-top: 12px;
}

.demos-custom-notice {
    margin-top: 36px;
    background: #ffffff;
    border: 1px solid var(--border-glass-light);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-dark);
    font-size: 0.98rem;
    box-shadow: var(--shadow-sm);
}
.demos-custom-notice i {
    font-size: 1.5rem;
    color: var(--primary);
}

/* ==================== CALCULATOR SECTION ==================== */
.calc-card {
    background: #ffffff;
    border: 1px solid var(--border-glass-light);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-xl);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.calc-controls {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.calc-group label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.slider-val {
    color: var(--primary);
    font-size: 1.15rem;
}

.custom-slider {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 10px;
    outline: none;
    -webkit-appearance: none;
    accent-color: var(--primary);
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-main);
    cursor: pointer;
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.4);
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.calc-results {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border: 1px solid rgba(6, 182, 212, 0.4);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
}

.result-header span {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #38bdf8;
}

.result-header h4 {
    font-size: 1.4rem;
    margin: 8px 0 20px;
    color: #ffffff;
}

.result-main-num {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 900;
    color: #10b981;
    margin-bottom: 24px;
    line-height: 1;
}

.result-main-num small {
    font-size: 1.2rem;
    color: #94a3b8;
    font-weight: 600;
}

.result-breakdown {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    margin-bottom: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.breakdown-item i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.breakdown-item div strong {
    display: block;
    font-size: 0.88rem;
    color: #ffffff;
}

.breakdown-item div span {
    font-size: 0.85rem;
    color: #94a3b8;
}

.btn-glow-result {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--gradient-main);
    color: #fff;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.35);
}

/* ==================== PROCESS SECTION (Light Gray background) ==================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.process-step {
    background: #ffffff;
    border: 1px solid var(--border-glass-light);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: #f1f5f9;
}

.step-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(79, 70, 229, 0.08);
    border: 1px solid rgba(79, 70, 229, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.process-step h4 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* ==================== PRICING SECTION ==================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: center;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid var(--border-glass-light);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

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

.featured-plan {
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border: 2px solid var(--primary);
    box-shadow: 0 20px 45px rgba(79, 70, 229, 0.15);
    padding: 56px 40px;
}

.featured-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 18px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
    white-space: nowrap;
}

.plan-header h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.plan-header p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 28px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 28px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.7rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
}

.price-period {
    color: var(--primary);
    font-weight: 700;
    margin-left: 8px;
    white-space: nowrap;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.plan-features li i {
    color: #10b981;
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: center;
    background: var(--bg-light-gray);
    color: var(--text-dark);
    border: 1px solid var(--border-glass-light);
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-plan:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Pricing Guarantee Note Box */
.pricing-guarantee-note {
    max-width: 900px;
    margin: 48px auto 0;
    padding: 24px 32px;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.pricing-guarantee-note .note-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(79, 70, 229, 0.12);
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pricing-guarantee-note .note-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pricing-guarantee-note .note-text strong {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: #0f172a;
}

.pricing-guarantee-note .note-text span {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .pricing-guarantee-note {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}

/* ==================== FAQ ACCORDION (Light Gray background) ==================== */
.faq-container {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-glass-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
}

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

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

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* ==================== CONTACT SECTION ==================== */
.contact-box {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border: 1px solid var(--border-glass-light);
    border-radius: var(--radius-xl);
    padding: 60px;
    box-shadow: var(--shadow-xl);
    color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin: 16px 0 20px;
    color: #ffffff;
}

.contact-info p {
    color: #94a3b8;
    font-size: 1.08rem;
    margin-bottom: 24px;
}

/* New Quick Contact Badge on Left side */
.contact-quick-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    margin-top: auto;
}

.quick-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, #4f46e5, #0284c7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.35);
}

.quick-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quick-text strong {
    color: #fff;
    font-size: 1.02rem;
    font-weight: 800;
}

.quick-text span {
    color: #94a3b8;
    font-size: 0.88rem;
    line-height: 1.45;
}

.contact-form {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 32px;
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form h3 {
    grid-column: span 2;
    font-size: 1.45rem;
    margin-bottom: 4px;
    color: #ffffff;
}

.contact-form .form-group-full {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

@media (max-width: 640px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
    .contact-form .form-group,
    .contact-form h3,
    .contact-form .form-group-full,
    .contact-form button {
        grid-column: span 1 !important;
    }
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #e2e8f0;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #38bdf8;
}

.btn-glow-submit {
    width: 100%;
    padding: 16px;
    background: var(--gradient-main);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 0 32px;
    color: #ffffff;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 16px;
    max-width: 320px;
}

.footer-brand .brand-primary {
    color: #ffffff;
}

.footer-links-col h4 {
    font-size: 0.92rem;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col ul li,
.footer-links-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links-col ul li a:hover {
    color: #38bdf8;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    color: #94a3b8;
    font-size: 0.85rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1150px) {
    .nav-links:not(.active), .nav-actions .btn-glow-primary {
        display: none !important;
    }
    
    .mobile-toggle {
        display: flex !important;
        z-index: 1001;
    }

    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-links.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f172a !important;
        padding: 28px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85);
        z-index: 1000;
        gap: 16px;
    }

    .nav-links.active .nav-link {
        font-size: 1.15rem;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        width: 100%;
        color: #ffffff !important;
    }

    .nav-links.active .mobile-only-contact {
        display: block !important;
        margin-top: 16px;
        width: 100%;
    }

    .nav-links.active .mobile-only-contact .btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 1.05rem;
    }

    .hero-split-grid,
    .hero-grid,
    .comparison-grid,
    .demo-panel-grid,
    .calc-grid,
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 36px;
    }
    
    .hero-tag-pills {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    .tag-pill {
        white-space: normal !important;
    }

    .hero-cta-group-pro {
        flex-wrap: wrap !important;
        width: 100%;
    }

    .hero-split-visual {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px 0 !important;
        overflow: hidden !important;
    }

    .floating-laptop-pure {
        width: 100% !important;
        max-width: 680px !important;
        min-width: 0 !important;
        transform: none !important;
        transform-origin: center center !important;
        animation: floatMacbookMobile 6s ease-in-out infinite !important;
        margin: 20px auto 30px !important;
    }

    .floating-tech-card {
        padding: 8px 12px !important;
        gap: 8px !important;
        border-radius: 12px !important;
    }
    .floating-tech-card strong {
        font-size: 0.75rem !important;
    }
    .floating-tech-card span {
        font-size: 0.65rem !important;
    }
    .floating-laptop-pure .floating-tech-card.card-left {
        top: 5% !important;
        left: 8px !important;
        transform: scale(0.85) !important;
    }
    .floating-laptop-pure .floating-tech-card.card-right {
        top: 15% !important;
        right: 8px !important;
        transform: scale(0.85) !important;
    }
    .floating-laptop-pure .floating-tech-card.card-bottom {
        bottom: -15px !important;
        left: 50% !important;
        transform: translateX(-50%) scale(0.85) !important;
        width: 90% !important;
        max-width: 320px !important;
        justify-content: center !important;
    }

    .process-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

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

@keyframes floatMacbookMobile {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }

    .nav-links:not(.active), .nav-actions .btn-glow-primary {
        display: none !important;
    }
    
    .mobile-toggle {
        display: flex !important;
        z-index: 1001;
    }

    .hero-title,
    .hero-title-pro {
        font-size: 2.15rem !important;
        line-height: 1.25 !important;
    }

    .section-title {
        font-size: 1.75rem !important;
    }

    .contact-box, .comp-card, .calc-card, .demo-panel-grid, .pricing-card, .featured-plan {
        padding: 24px 18px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Calculator Mobile Fix */
    .calc-group label {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 6px !important;
        width: 100% !important;
    }
    .calc-group label span {
        width: 100% !important;
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
    }
    .calc-group label .slider-val {
        align-self: flex-start !important;
        background: #f1f5f9;
        padding: 4px 12px;
        border-radius: 8px;
        border: 1px solid #cbd5e1;
        font-size: 0.95rem !important;
        font-weight: 800;
        margin-top: 4px;
        margin-bottom: 4px;
        color: var(--primary) !important;
    }
    .custom-slider {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .slider-ticks {
        width: 100% !important;
        box-sizing: border-box !important;
        gap: 4px !important;
    }
    .slider-ticks span {
        font-size: 0.72rem !important;
    }
    .calc-results {
        padding: 24px 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .result-main-num {
        font-size: 2.1rem !important;
    }

    /* Pricing Plans Mobile Fix */
    .pricing-card,
    .featured-plan {
        padding: 28px 18px !important;
        overflow: hidden !important;
    }
    .plan-header h3 {
        font-size: 1.5rem !important;
    }
    .plan-price {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: baseline !important;
        gap: 6px !important;
        margin-bottom: 24px !important;
        padding-bottom: 20px !important;
        width: 100% !important;
    }
    .price-currency {
        font-size: 1.3rem !important;
    }
    .price-amount {
        font-size: 2.3rem !important;
    }
    .price-period {
        font-size: 0.88rem !important;
        margin-left: 0 !important;
        width: 100% !important;
        margin-top: 4px !important;
    }
    .pricing-features {
        margin-bottom: 24px !important;
        padding: 0 !important;
    }
    .pricing-features li {
        font-size: 0.92rem !important;
        padding: 10px 0 !important;
        line-height: 1.35 !important;
    }
    .pricing-card .btn {
        width: 100% !important;
        padding: 14px !important;
        font-size: 0.95rem !important;
        box-sizing: border-box !important;
    }

    .floating-laptop-pure {
        max-width: 100% !important;
    }

    .floating-laptop-pure .floating-tech-card.card-left {
        top: 2% !important;
        left: 4px !important;
        transform: scale(0.75) !important;
    }
    .floating-laptop-pure .floating-tech-card.card-right {
        top: 12% !important;
        right: 4px !important;
        transform: scale(0.75) !important;
    }
    .floating-laptop-pure .floating-tech-card.card-bottom {
        bottom: -12px !important;
        left: 50% !important;
        transform: translateX(-50%) scale(0.75) !important;
        width: 92% !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px !important;
    }

    .hero-title,
    .hero-title-pro {
        font-size: 1.85rem !important;
    }
    
    .contact-info h2 {
        font-size: 1.75rem !important;
    }

    .price-amount {
        font-size: 2.1rem !important;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }

    .btn.btn-hero-compact {
        width: 100% !important;
    }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-wa-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    text-decoration: none;
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.floating-wa-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.25);
    border-color: #25d366;
}

.floating-wa-text {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin-right: 12px;
}

.floating-wa-icon {
    width: 45px;
    height: 45px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

@media (max-width: 576px) {
    .floating-wa-btn {
        bottom: 20px;
        right: 20px;
        padding: 4px;
        border: none;
        background: transparent;
        box-shadow: none;
    }
    
    .floating-wa-text {
        display: none;
    }
    
    .floating-wa-icon {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   AI CHATBOT WIDGET
   ========================================================================== */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    font-family: var(--font-body);
}

.chatbot-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-toggle-btn:hover {
    transform: scale(1.1);
    background: var(--secondary);
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 340px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border: 1px solid var(--border-glass);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform-origin: bottom left;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chatbot-window.hidden {
    opacity: 0;
    transform: scale(0.5);
    pointer-events: none;
}

.chatbot-header {
    background: var(--gradient-main);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.chatbot-header-info i {
    font-size: 1.5rem;
}

.chatbot-header-info h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.chatbot-header-info span {
    font-size: 0.75rem;
    opacity: 0.9;
}

.chatbot-close-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.chatbot-close-btn:hover {
    opacity: 1;
}

.chatbot-body {
    height: 350px;
    background: #f8fafc;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-msg {
    display: flex;
    max-width: 85%;
}

.chat-msg.bot {
    align-self: flex-start;
}

.chat-msg.user {
    align-self: flex-end;
}

.msg-bubble {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.chat-msg.bot .msg-bubble {
    background: white;
    color: var(--text-dark);
    border: 1px solid var(--border-glass);
    border-bottom-left-radius: 4px;
}

.chat-msg.user .msg-bubble {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 4px;
}

.chatbot-footer {
    display: flex;
    padding: 16px;
    background: white;
    border-top: 1px solid var(--border-glass);
    gap: 10px;
}

.chatbot-footer input {
    flex: 1;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

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

.chatbot-footer button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.chatbot-footer button:hover {
    background: var(--secondary);
}

@media (max-width: 576px) {
    .chatbot-widget {
        bottom: 20px;
        left: 20px;
    }
    
    .chatbot-window {
        width: calc(100vw - 40px);
    }
}

/* Chatbot Form Styles */
.hidden {
    display: none !important;
}
.chatbot-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.chatbot-form p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}
.chatbot-form input,
.chatbot-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}
.chatbot-form input:focus,
.chatbot-form textarea:focus {
    border-color: var(--primary);
}
.chatbot-form textarea {
    resize: none;
    height: 70px;
}
.cb-error {
    color: #ef4444;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: -4px;
}
.cb-submit-btn {
    background: var(--gradient-main);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}
.cb-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
}
.chatbot-messages {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Quick Replies */
.cb-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: -8px;
}
.cb-chip {
    background: #eef2ff;
    color: var(--primary);
    border: 1px solid #c7d2fe;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.cb-chip:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
