/* =========================================================
   Global layout & background
   ========================================================= */

body {
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.85) 0%, rgba(15, 23, 42, 0.85) 40%, rgba(26, 5, 36, 0.85) 100%), url('../img/galaxy_background.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: #e5e7eb;
    min-height: 100vh;
}

.page-wrapper {
    padding-top: 80px;
    /* espacio para la navbar fija */
}

.pricing-card-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* =========================================================
   Navbar
   ========================================================= */

#site-header {
    backdrop-filter: blur(14px);
    background: rgba(2, 6, 23, 0.2);
    border-bottom: none;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3b82f6, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.navbar-brand {
    padding: 0.5rem 1rem;
    border-radius: 16px;
}

/* Navbar Links */
.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: #cbd5e1 !important;
    padding-inline: 1rem !important;
    border: 1px solid rgba(71, 85, 105, 0.4);
    border-radius: 999px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.15);
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25), 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* Active state for regular nav links - subtle highlight with left accent */
.navbar-nav .nav-link.active {
    color: #ffffff !important;
    background: rgba(56, 189, 248, 0.05);
    border-color: rgba(56, 189, 248, 0.6);
    border-left: 3px solid #38bdf8;
    box-shadow: 0 0 6px rgba(56, 189, 248, 0.15), 0 2px 4px rgba(0, 0, 0, 0.15);
    padding-left: calc(1rem - 3px) !important;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(2, 6, 23, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: 1rem;
        margin-top: 0.5rem;
        border: 1px solid rgba(148, 163, 184, 0.1);
    }
}

/* Download Button - Bootstrap blue background to match main download button */
.btn-nav-download {
    border: 1px solid rgba(13, 110, 253, 0.6);
    background: rgba(13, 110, 253, 0.2);
    color: #ffffff;
    border-radius: 999px;
    padding: 0.4rem 1.2rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.15);
}

.btn-nav-download:hover {
    background: rgba(13, 110, 253, 0.35);
    border-color: #0d6efd;
    color: #ffffff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25), 0 0 15px rgba(13, 110, 253, 0.4);
}

/* Active state for download button - blue background with left border like other links */
.btn-nav-download.active {
    background: rgba(13, 110, 253, 0.2);
    border-color: rgba(13, 110, 253, 0.6);
    border-left: 3px solid #0d6efd;
    box-shadow: 0 0 6px rgba(13, 110, 253, 0.2), 0 2px 4px rgba(0, 0, 0, 0.15);
    padding-left: calc(1.2rem - 3px) !important;
}

/* Language Switcher (Pill) */
.lang-switcher-pill {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 8px;
    padding: 3px;
    display: flex;
    gap: 2px;
}

.lang-switch-btn {
    border: none;
    background: transparent;
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.lang-switch-btn img {
    width: 16px;
    height: 11px;
    object-fit: cover;
    border-radius: 2px;
    opacity: 0.7;
}

.lang-switch-btn.active {
    background: #0ea5e9;
    color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.lang-switch-btn.active img {
    opacity: 1;
}

.lang-switch-btn:hover:not(.active) {
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.05);
}

/* =========================================================
   Hero section
   ========================================================= */

.section-hero {
    position: relative;
    overflow: hidden;
    padding-top: 4rem;
    padding-bottom: 4rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.section-hero::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 20% 0%, rgba(56, 189, 248, 0.18), transparent 60%),
        radial-gradient(circle at 80% 100%, rgba(129, 140, 248, 0.18), transparent 55%);
    opacity: 0.9;
    pointer-events: none;
    z-index: -1;
}

/* Hero Large Title */
.hero-large-title {
    font-size: 7rem;
    /* Increased size */
    font-weight: 800;
    line-height: 0.85;
    /* Tighter line height */
    letter-spacing: -0.04em;
    margin-bottom: 0;
    position: relative;
    text-shadow: 0 0 100px rgba(56, 189, 248, 0.3);
}

.hero-title-white {
    color: #ffffff;
    display: block;
}

.hero-title-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

/* Hero Blue Badge */
.hero-blue-badge {
    background: #0ea5e9 !important;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 2.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle-blue {
    color: #60a5fa;
    /* Lighter blue */
}

/* Hero Description */
.hero-description {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
}

/* Hero What Is Section - Premium Design */
.hero-what-is {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.6));
    border: 1px solid rgba(56, 189, 248, 0.1);
    border-radius: 1.5rem;
    padding: 1.5rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.hero-what-is::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.08), transparent 40%);
    pointer-events: none;
}

.hero-what-is h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-what-is-content {
    border-left: 4px solid;
    border-image: linear-gradient(to bottom, #0ea5e9, #6366f1) 1;
    padding-left: 1.5rem;
}

.hero-what-is-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #e2e8f0 !important;
    font-weight: 300;
    letter-spacing: 0.01em;
    margin-bottom: 0;
}

/* Features List inside What Is Card */
.features-list {
    list-style: none;
    padding-left: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #cbd5e1;
    columns: 2;
    column-gap: 1.5rem;
}

.features-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
    break-inside: avoid;
}

.features-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    box-shadow: 0 0 6px rgba(14, 165, 233, 0.5);
}

@media (max-width: 767.98px) {
    .features-list {
        columns: 1;
    }
}

/* Decorative Waves below WebUI Image */
.decorative-waves {
    width: 100%;
    height: 50px;
    opacity: 0.8;
}

.decorative-waves svg {
    width: 100%;
    height: 100%;
}

.webui-image-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 767.98px) {
    .webui-image-container {
        align-items: center;
        margin-bottom: 2rem;
    }

    .webui-image-container img {
        max-width: 90%;
    }

    .decorative-waves {
        display: none;
    }
}

/* Cursor pointer for clickeable elements */
.cursor-pointer {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cursor-pointer:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(56, 189, 248, 0.2) !important;
}


/* Hover Scale Effect for WebUI Image */
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.hover-scale:hover {
    transform: scale(1.03);
    /* Shadow is handled by specific classes if needed, or default here */
    box-shadow: 0 15px 30px -5px rgba(56, 189, 248, 0.3);
}

.webui-shadow {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 40px rgba(56, 189, 248, 0.25);
}

.webui-shadow:hover {
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.8), 0 0 60px rgba(56, 189, 248, 0.5) !important;
}

/* Diagram Container */
.hero-diagram-container img {
    border: 1px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.hero-diagram-container img:hover {
    transform: scale(1.02);
}

/* Hero Wave Divider */
.hero-wave-divider {
    width: 100%;
    height: 40px;
    opacity: 0.8;
}

.hero-wave-divider svg {
    width: 100%;
    height: 100%;
}

/* Hero CTA Section */
.hero-cta-section {
    width: 100%;
    padding: 0.5rem 0;
}

.hero-cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.hero-cta-text {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 100%;
    margin-bottom: 1.5rem;
}

.hero-cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}

.hero-cta-badge {
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #38bdf8;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-cta-badge:hover {
    background: rgba(56, 189, 248, 0.2);
    border-color: #38bdf8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

/* Responsive CTA */
@media (max-width: 991.98px) {
    .hero-cta-title {
        font-size: 1.75rem;
    }

    .hero-cta-text {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-cta-title {
        font-size: 1.5rem;
    }

    .hero-cta-text {
        font-size: 0.95rem;
    }

    .hero-cta-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
}


/* Responsive hero title */
@media (max-width: 1199.98px) {
    .hero-large-title {
        font-size: 6rem;
    }
}

@media (max-width: 991.98px) {
    .hero-large-title {
        font-size: 5rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Galaxy background */
/* Galaxy background handled in body */

@media (max-width: 767.98px) {
    .hero-large-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.badge-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background-color: #0ea5e9;
}

/* Hero card / topology */
.hero-card {
    border-radius: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.pill {
    border-radius: 999px;
    padding: 0.4rem 0.7rem;
    background-color: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.6);
}

.pill-top {
    margin: 0 auto;
}

.pill-lan {
    text-align: center;
}

.gateway-card {
    border-radius: 1rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 64, 175, 0.95));
    border: 1px solid rgba(96, 165, 250, 0.6);
    font-size: 0.85rem;
}

/* =========================================================
   Generic sections
   ========================================================= */

.section-features,
.section-compatibility,
.section-pricing,
.section-download,
.section-manuals,
.section-contact,
.section-footer {
    position: relative;
}

.section-features::before,
.section-pricing::before,
.section-contact::before {
    display: none;
}

/* =========================================================
   Cards
   ========================================================= */

/* Unified card styles - all cards match manual preview cards */
.feature-card,
.pricing-card,
.download-step,
.download-card,
.doc-card,
.contact-card {
    border: 1px solid rgba(56, 189, 248, 0.15);
    background: radial-gradient(circle at top left, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.95)) !important;
    transition: all 0.3s ease;
}

/* Download Section Styles */
.download-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: all 0.2s ease;
}

.download-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(56, 189, 248, 0.3);
    transform: translateX(5px);
}

.download-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.download-icon-box.zip {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.download-icon-box.doc {
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
}

.download-icon-box.txt {
    background: rgba(148, 163, 184, 0.2);
    color: #cbd5e1;
}

.download-icon-box.web {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.download-icon-box.android {
    background: rgba(249, 115, 22, 0.2);
    color: #fb923c;
}

.download-info {
    flex-grow: 1;
}

/* Feature Icons */
.feature-icon {
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.4));
}

/* Navbar Button Responsive Fix */
@media (min-width: 768px) and (max-width: 991.98px) {
    .navbar-nav .nav-link {
        padding-inline: 0.75rem !important;
        font-size: 0.9rem;
    }

    .btn-nav-download {
        padding: 0.4rem 1rem;
        width: auto;
        height: auto;
        border-radius: 999px !important;
        /* Force pill shape */
        aspect-ratio: auto !important;
        /* Prevent square/round shape */
    }
}

/* =========================================================
   Pricing
   ========================================================= */

.section-pricing .display-5 {
    font-size: 2.6rem;
}

/* Pricing Header Styles */
.pricing-header-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.pricing-header-white {
    color: #ffffff;
    display: inline-block;
}

.pricing-header-gradient {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.pricing-header-gradient-sub {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.pricing-header-badge .badge {
    background: #2563eb !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.pricing-header-image img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-header-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(56, 189, 248, 0.3) !important;
}

/* Responsive pricing header */
@media (max-width: 991.98px) {
    .pricing-header-title {
        font-size: 3rem;
    }
}

@media (max-width: 767.98px) {
    .pricing-header-title {
        font-size: 2.5rem;
    }
}

/* Unified card style - matches manual preview cards */
.pricing-card {
    border-radius: 1.5rem;
    border: 1px solid rgba(56, 189, 248, 0.15);
    background: radial-gradient(circle at top left, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.95));
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.85);
    transition: all 0.3s ease;
}

.pricing-card-featured {
    /* Removed intense background, now matches other cards */
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 1));
    border-color: rgba(37, 99, 235, 0.5);
    /* Subtle blue border */
    box-shadow: 0 18px 45px rgba(37, 99, 235, 0.15);
}

.pricing-card-featured .btn {
    font-weight: 600;
}

.pricing-card .display-6 {
    font-size: 2.4rem;
}

/* Ensure descriptions have consistent height for alignment */
.pricing-card-main p {
    min-height: 5.5rem;
}

.pricing-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.35rem;
}

.pricing-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background-color: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}

.pricing-card-footer {
    margin-top: auto;
}

.pricing-period {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    /* Slate-500 */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 0.25rem;
    background: rgba(148, 163, 184, 0.1);
    padding: 0.2em 0.6em;
    border-radius: 6px;
    vertical-align: 0.3em;
}

.badge-pricing-best {
    border-radius: 999px;
    letter-spacing: 0.04em;
    background-color: #2563eb;
    /* Intense blue */
    color: white;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.6);
    transform: skewX(-10deg);
    /* Slight diagonal effect */
}

.pricing-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-icon {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 0.5rem;
    border: 2px solid rgba(56, 189, 248, 0.9);
}

.pricing-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-icon {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 0.5rem;
    border: 2px solid rgba(56, 189, 248, 0.9);
}

/* Custom colors for each pricing plan */
/* Trial - Green */
.pricing-title-trial {
    color: #22c55e !important;
}

.pricing-icon-trial {
    border-color: rgba(34, 197, 94, 0.7);
}

.pricing-icon-trial svg {
    color: #22c55e;
}

.btn-trial {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.6);
    color: #22c55e !important;
    font-weight: 600;
}

.btn-trial:hover {
    background: rgba(34, 197, 94, 0.3);
    border-color: #22c55e;
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
}

/* Monthly - Blue */
.pricing-title-monthly {
    color: #3b82f6 !important;
}

.pricing-icon-monthly {
    border-color: rgba(59, 130, 246, 0.7);
}

.pricing-icon-monthly svg {
    color: #3b82f6;
}

.btn-monthly {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.6);
    color: #3b82f6 !important;
    font-weight: 600;
}

.btn-monthly:hover {
    background: rgba(59, 130, 246, 0.3);
    border-color: #3b82f6;
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

/* Annual - Purple */
.pricing-title-annual {
    color: #a855f7 !important;
}

.pricing-icon-annual {
    border-color: rgba(168, 85, 247, 0.7);
}

.pricing-icon-annual svg {
    color: #a855f7;
}

.btn-annual {
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.6);
    color: #a855f7 !important;
    font-weight: 600;
}

.btn-annual:hover {
    background: rgba(168, 85, 247, 0.3);
    border-color: #a855f7;
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

/* Perpetual - Orange */
.pricing-title-perpetual {
    color: #f97316 !important;
}

.pricing-icon-perpetual {
    border-color: rgba(249, 115, 22, 0.7);
}

.pricing-icon-perpetual svg {
    color: #f97316;
}

.btn-perpetual {
    background: rgba(249, 115, 22, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.6);
    color: #f97316 !important;
    font-weight: 600;
}

.btn-perpetual:hover {
    background: rgba(249, 115, 22, 0.3);
    border-color: #f97316;
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}

/* Futuristic Section Titles */
.section-title-futuristic {
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #38bdf8 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(56, 189, 248, 0.3);
}

.section-title-futuristic::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #38bdf8, #a855f7, transparent);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
}

.section-subtitle-futuristic {
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* Turnkey Card Styling */
.turnkey-badge {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.turnkey-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(56, 189, 248, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.turnkey-card:hover {
    border-color: rgba(56, 189, 248, 0.6);
    box-shadow: 0 8px 32px rgba(56, 189, 248, 0.2);
    transform: translateY(-4px);
    background: rgba(15, 23, 42, 0.8);
}

.turnkey-card .pricing-header-title {
    font-size: 2.5rem;
}

.turnkey-card .btn {
    transition: all 0.3s ease;
}

.turnkey-card:hover .btn {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

/* Mobile Pricing Carousel */
@media (max-width: 767.98px) {
    .section-pricing .row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1.5rem;
        /* Space for scrollbar/shadow */
        -webkit-overflow-scrolling: touch;
        /* Center the first item if needed, or use padding */
        padding-inline: 1rem;
    }

    .section-pricing .col-lg-4,
    .section-pricing .col-md-6 {
        flex: 0 0 80%;
        /* Reduced from 85% to show more of the next card */
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    /* Hide scrollbar for cleaner look */
    .section-pricing .row::-webkit-scrollbar {
        display: none;
    }

    .section-pricing .row {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* Pricing Dots */
.pricing-dots-container {
    display: none;
    /* Hidden on desktop */
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

@media (max-width: 767.98px) {
    .pricing-dots-container {
        display: flex;
    }
}

.pricing-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(148, 163, 184, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-dot.active {
    background-color: #38bdf8;
    /* Sky blue */
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.5);
}

/* =========================================================
   Manuals
   ========================================================= */

.section-manuals .doc-card h3 {
    font-weight: 600;
}

/* =========================================================
   Contact
   ========================================================= */

.contact-card textarea {
    resize: vertical;
}

/* Contact form - unified card style */
.contact-form {
    background: radial-gradient(circle at top left, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.95)) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 189, 248, 0.15) !important;
    transition: all 0.3s ease;
}

.contact-form .form-control {
    background-color: rgba(2, 6, 23, 0.5);
    border-color: rgba(148, 163, 184, 0.2);
    color: #e2e8f0;
}

.contact-form .form-control:focus {
    background-color: rgba(2, 6, 23, 0.8);
    border-color: #3b82f6;
    color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
}

.contact-form .form-label {
    color: #cbd5e1;
}

/* =========================================================
   Footer
   ========================================================= */

.section-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(15, 23, 42, 0.9);
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s ease, filter 0.18s ease;
}

.footer-social-icon {
    width: 26px;
    height: 26px;
}

.footer-social-link:hover .footer-social-icon {
    transform: translateY(-1px) scale(1.05);
    filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.65));
}



/* =========================================================
   Manuals page
   ========================================================= */

.section-manuals-page {
    background: radial-gradient(circle at top, rgba(30, 64, 175, 0.45), transparent 55%);
}

/* Tabs for PDF / Video */
.manuals-tabs-bar {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem;
    border-radius: 999px;
    background-color: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.btn-doc-tab {
    border-radius: 999px;
    padding: 0.3rem 0.9rem;
    font-size: 0.85rem;
    border: none;
    background: transparent;
    color: #e5e7eb;
    box-shadow: none;
}

.btn-doc-tab.doc-tab-active {
    background: linear-gradient(135deg, #0ea5e9, #22c55e);
    color: #0b1220;
    font-weight: 600;
}

/* ZIP buttons (smaller pill) */
.btn-doc-primary {
    font-size: 0.9rem;
    padding: 0.35rem 1.25rem;
    border-radius: 999px;
}

/* Manual PDF cards */
.manual-pdf-card {
    border-radius: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), rgba(15, 23, 42, 0.96));
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.manual-pdf-header {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 0.85rem;
}

.manual-pdf-icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top, rgba(56, 189, 248, 0.3), rgba(15, 23, 42, 0.9));
    font-size: 1.3rem;
}

.manual-pdf-title {
    margin-bottom: 0.2rem;
}

.manual-pdf-description {
    margin: 0;
    font-size: 0.9rem;
    color: #9ca3af;
}

.manual-pdf-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Manual video cards */
.manual-video-card {
    border-radius: 1.5rem;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.4);
    display: flex;
    flex-direction: column;
}

.manual-video-thumb {
    position: relative;
    padding-top: 56.25%;
    /* 16:9 */
    background: radial-gradient(circle at top, rgba(56, 189, 248, 0.22), rgba(15, 23, 42, 1));
}

.manual-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.manual-video-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(248, 250, 252, 0.7);
    font-size: 1.3rem;
}

.manual-video-body {
    padding: 0.9rem 1.1rem 1.1rem;
}

.manual-video-meta {
    color: #9ca3af;
}

/* Shared hover effect for interactive elements */
.btn,
.doc-card,
.feature-card,
.pricing-card,
.contact-card,
.manual-pdf-card,
.manual-video-card,
.nav-link,
.navbar-brand,
.lang-switch {
    transition:
        transform 0.18s ease-out,
        box-shadow 0.18s ease-out,
        border-color 0.18s ease-out,
        background 0.18s ease-out;
}

.btn:hover,
.btn:focus-visible,
.manual-pdf-card:hover,
.manual-video-card:hover,
.doc-card:hover,
.feature-card:hover,
.pricing-card:hover,
.contact-card:hover,
.nav-link:hover,
.lang-switch:hover {
    transform: translateY(-1px) scale(1.03);
    border-color: rgba(56, 189, 248, 0.8);
    box-shadow:
        0 0 0 1px rgba(56, 189, 248, 0.4),
        0 0 25px rgba(56, 189, 248, 0.35),
        0 18px 40px rgba(15, 23, 42, 0.9);
}

/* Specific hover for navbar brand to avoid overflow 
   Reduced scale from 1.03 to 1.01 to prevent text clipping */
.navbar-brand:hover {
    transform: translateY(-1px) scale(1.01);
    /* Reduced scale */
    border-color: rgba(56, 189, 248, 0.8);
    box-shadow:
        0 0 0 1px rgba(56, 189, 248, 0.4),
        0 0 25px rgba(56, 189, 248, 0.35),
        0 18px 40px rgba(15, 23, 42, 0.9);
}


/* Global hover halo */
.hover-glow:hover,
a:hover,
button:hover,
.btn:hover,
.nav-link:hover {
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.45) !important;
    border-radius: 14px !important;
    transform: scale(1.03);
}

/* Neon download button 
   Intense blue background with glow effect */
.btn-download {
    background: #2563eb;
    /* Intense blue from pricing */
    color: white !important;
    border-radius: 22px;
    padding: 8px 20px;
    box-shadow: 0 0 18px rgba(37, 99, 235, 0.85);
    border: none;
}

.btn-download:hover {
    background: #1d4ed8;
    box-shadow: 0 0 28px rgba(37, 99, 235, 1);
    transform: scale(1.06);
}

/* Remove border from language buttons 
   Overrides default btn-outline-light border */
/* =========================================================
   Manuals Preview Section (Landing Page)
   ========================================================= */

.bg-darker {
    background: transparent;
}

.manual-preview-card {
    background: radial-gradient(circle at top left, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(56, 189, 248, 0.15);
    transition: all 0.3s ease;
}

.manual-preview-card:hover {
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.15), rgba(15, 23, 42, 0.98));
    border-color: rgba(56, 189, 248, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.manual-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.manual-preview-card:hover .manual-icon-box {
    border-color: rgba(56, 189, 248, 0.4);
    background: rgba(15, 23, 42, 0.95);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Robust Feature Icon Styling */
.feature-icon {
    min-width: 24px !important;
    min-height: 24px !important;
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
}

/* Feature Title Colors */
.feature-title-blue {
    color: #3b82f6 !important;
}

.feature-title-green {
    color: #22c55e !important;
}

.feature-title-purple {
    color: #a855f7 !important;
}

.feature-title-yellow {
    color: #eab308 !important;
}

.feature-title-cyan {
    color: #06b6d4 !important;
}

.feature-title-orange {
    color: #f97316 !important;
}