@font-face {
    font-family: 'fontspring_demo_-_proxima_nBd';
    src: url('fonts/fontspring-demo-proximanova-bold-webfont.woff2') format('woff2'), url('fonts/fontspring-demo-proximanova-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'proxima_novasemibold';
    src: url('fonts/fontspring-demo-proximanova-semibold-webfont.woff2') format('woff2'), url('fonts/fontspring-demo-proximanova-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'fontspring_demo_-_proxima_nRg';
    src: url('fonts/fontspring-demo-proximanova-regular-webfont.woff2') format('woff2'), url('fonts/fontspring-demo-proximanova-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary: #6f68ff;
    --primary-dark: #1F2546;
    --primary-color-light: #d5d3ff;
    --text-color-secondary: #666;
    --text-color-primary: #333;
    --border-color: #e0e0e0;
    --success-color: #4CAF50;
    --danger-color: #F44336;
    --white-color: #ffffff;
    --favorite-color: #ffc400; 
    --chat-primary-color: #03a9f4;
    --light-blue-bg: #e3f2fd;
    --light-gray-bg: #f0f0f0;
    --transition:all 254ms ease-in-out;
    --carrousel-vel: 20s;
}

*::selection {
    background-color: var(--primary);
    color: var(--white-color);
}

.nunito {
    font-family: "Nunito", sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 54px;
}

body {
    font-family: "Nunito", sans-serif;
    color: var(--primary-dark);
    max-width: 100vw;
    overflow: auto !important;
    overflow-x:hidden !important;
}

a {
    text-decoration: none;
    transition: all 200ms ease-in-out 0s;
}

p {
    font-size: 18px;
    color: var(--text-color-primary);
}

a, button, button p, button span, button a {
    white-space: nowrap;
}

header {
    position: fixed;
    background: var(--white-color);
    width: 100%;
    z-index: 10000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    left: 0;
    padding: 15px 0px;
    transition: all 254ms ease-in-out;
    padding-top: 48px;
}

header.header-padding{  
    padding-top: 15px;
}

header .bg-transparent {
    background: transparent !important;
}

header .menu-in {
    display: inline-flex;
    justify-content: center;
    width: 100%;
}

header .menu-in a {
    font-family: 'proxima_novasemibold';
    color: var(--primary-dark);
    font-size: 17px;
    margin: 0 15px;
}

header .menu-in a:hover,
header .menu-in a.active {
    color: var(--primary);
}

header .header-scrolled {
    padding-top: 42px;
}

.site-dev {
    position:     absolute;
    inset: 0px;
    background-color: var(--primary);
    color: var(--white-color);
    width: 100%;
    margin: 0px;
    font-weight: bold;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 14px;
}

.site-dev img {
    mix-blend-mode: darken;
    filter: brightness(1.3) contrast(1.2) saturate(1.4);
}

.logo{
    user-select: none;
    position: relative;
    bottom: 2px;
    left: 40px;
}

.banner-main {
    padding-top: 150px;
    background: url('../images/banner-bg.jpg');
    background-size: cover;
    min-height: 100vh;
}

.banner-main .main-head {
    font-size: 68px;
    text-transform: uppercase;
    font-family: 'fontspring_demo_-_proxima_nBd';
    position: relative;
    display: inline-block;
}

.main-head::after,
.main-head::before {
    content: '';
    width: 28px;
    height: 28px;
}

.main-head::after {
    background: url(../images/heading-corner2.svg);
    position: absolute;
    top: -13px;
    right: -28px;
    animation-duration: 100ms;
    animation-name: corner1;
}

.main-head::before {
    background: url(../images/heading-corner.svg);
    position: absolute;
    bottom: -9px;
    left: -33px;
    animation-duration: 100ms;
    animation-name: corner2;
}

.main-imagesc {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0px auto;
    margin-top: 40px;
    max-width: 1054px;
}

.main-imagesc img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    border: 8px solid #2c2c2c;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.15),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    background: #1a1a1a;
    padding: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 254ms cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: center center;
}

.main-imagesc img::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, #404040 0%, #2c2c2c 50%, #1a1a1a 100%);
    border-radius: 33px;
    z-index: -1;
}

.main-imagesc:hover img {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 25px 70px rgba(0, 0, 0, 0.2),
        inset 0 0 0 2px rgba(255, 255, 255, 0.15);
}

.main-imagesc:not(:hover) img {
    transform: translateY(0) scale(1) scaleX(1) scaleY(1);
}

@keyframes corner1 {
    from {
        right: -128px;
        opacity: 0;
    }
    to {
        right: -28px;
        opacity: 1;
    }
}

@keyframes corner2 {
    from {
        left: -133px;
        opacity: 0;
    }
    to {
        left: -33px;
        opacity: 1;
    }
}


.banner-main .main-head span,
.banner-main .sub-head span {
    color: var(--primary);
}

.banner-main .sub-head {
    font-size: 58px;
    margin-top: 12px;
    margin-bottom: 18px;
    font-family: 'proxima_novasemibold';
}

.banner-main .sub-head strong {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.banner-main p {
    font-size: 25px;
    max-width: 72%;
    margin: 0px auto;
    font-weight: 400;
}

.start-text {
    font-size: 16px !important;
    margin-top: 24px !important;
}

.login-btn {
    background: var(--white-color);
    color: var(--text-color-primary);;
    padding: 12px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
}

.start-btn {
    background: var(--primary);;
    color: var(--white-color);
    padding: 12px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    margin-left: 8px;
}

.blue-btn {
    background: var(--primary);
    color:var(--white-color);
    padding: 12px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
}

.start-btn:hover,
.blue-btn:hover {
    background: var(--primary-dark);
    color:var(--white-color);
}

.language-select {
    background: transparent;
    border: none;
    color: var(--primary-dark);
    font-weight: 700;
    margin-right: 10px;
}

.banner-main p.mini-pera {
    font-size: 21px;
    color: var(--primary-dark);
}

.features-container {
    position: relative;
}

.features-container:before {
    background: url(../images/feature-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    content: '';
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.highlight {
    color: var(--primary);
}


.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.image-container {
    position: sticky;
    top: 14rem;
    height: fit-content;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
}

.feature-image.active {
    user-select: none;
    opacity: 1;
    transform: translateY(0);
    position: relative;
    top: 0;
    left: 0;
    right: 0;
}

.content-sections {
    display: flex;
    flex-direction: column;
}

.feature-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0rem 0;
}

.section-content {
    transform: translateY(20px);
    opacity: 0;
    transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
    padding-right: 5rem;
}

.section-content.visible {
    transform: translateY(0);
    opacity: 1;
}

.feature-section h2 {
    font-size: 33px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    line-height: 42px;
}

.cta-button {
    background: var(--primary);
    color:var(--white-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 200ms ease-in-out;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.section-heading {
    font-family: 'proxima_novasemibold';
    color: var(--primary-dark);
    font-size: 52px;
    font-weight: normal;
}

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

.help-section {
    background: var(--white-color);
    min-height: 100vh;
}

.use-case-card {
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--bs-primary-rgb), 0.1), transparent);
    transition: left 400ms ease-in-out;
    z-index: 1;
}

.use-case-card:hover::before {
    left: 100%;
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(var(--bs-primary-rgb), 0.15) !important;
}

.use-case-card .card-title {
    font-size: 21px;
    color: var(--primary-dark);
}

.use-case-card p {
    color: var(--text-color-primary);
}

.card-icon {
    display: flex;
    justify-content: center;
}

.special-card {
    background: var(--primary) !important;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.special-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 400ms ease-in-out;
}

.special-card:hover::before {
    left: 100%;
}

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

.special-card .btn-outline-light {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 200ms ease-in-out;
}

.special-card .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.ready-sec {
    position: relative;
    min-height: 100vh;
}

.ready-sec .action-image {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 114px;
}

.pricing-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.billing-tabs {
    margin-bottom: 3rem;
}

.billing-toggle-group .btn-check:checked+.btn {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white !important;
    box-shadow: 0 2px 8px rgba(var(--bs-primary-rgb), 0.3);
    border-radius: 30px;
}

.billing-toggle-group .btn-outline-primary {
    border: none;
    color: var(--text-color-secondary);
    font-weight: 600;
    transition: all 200ms ease-in-out;
    position: relative;
}

.billing-toggle-group .btn-outline-primary:hover {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--primary) !important;
}

.billing-toggle-group .btn-outline-primary:not(.btn-check:checked + .btn):hover {
    border-color: transparent;
}

/* Badge positioning for annually tab */
.billing-toggle-group label[for="annuallyTab"] .badge {
    font-size: 0.65rem;
    white-space: nowrap;
}

.bg-grey {
    background-color: #F5F7F9 !important;
}

.pricing-card {
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.featured-plan {
    transform: scale(1.05);
    border-width: 2px !important;
}

.featured-plan:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    z-index: 10;
}

.price-display {
    position: relative;
}

.price-currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: 0.25rem;
}

.price-period {
    font-size: 1rem;
    vertical-align: bottom;
    margin-left: 0;
}

.price-amount {
    transition: all 200ms ease-in-out;
    font-size: 1.7rem;
}

.features-list {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

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

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white !important;
}

.feature-item {
    padding: 0.5rem 0;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb), 0.3);
}

.btn-dark:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.transition-rotate {
    transition: transform 200ms ease-in-out;
}

.table th {
    font-weight: 600;
    color: #374151;
}

.table td,
.table th {
    vertical-align: middle;
}

.pricing-table th:first-child,
.price-row td:first-child,
.func-row td:first-child {
    color: rgba(0, 0, 0, 0.62);
}

.plan-header h5 {
    font-size: 29px;
    font-weight: 600;
    color: var(--primary-dark);
}

.pricing-table .price-display {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pricing-table .price-amount {
    line-height: 1.2;
    margin-bottom: 2px;
}

.pricing-table .price-period {
    font-size: 0.85rem;
    line-height: 1.2;
}

.pricing-table .plan-header h5 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.checkbox-item {
    scale: 1.54;
    accent-color: var(--primary);
    display: none;
}

.text-primary {
    color: var(--primary) !important;
}

.play-sec {
    min-height: 100vh;
    background: url(../images/play-bg.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
}

.z-3 {
    z-index: 999;
}

.play-button {
    position: absolute;
    left: 0;
    width: 100px;
    height: 100px;
    border: none;
    background: transparent;
    margin: 0 auto;
    right: 0;
    top: 50%;
    transition: all 400ms ease-in-out;
}

.play-button img {
    width: 100%;
}

.play-button:hover {
    width: 110px;
    height: 110px;
}

.industry-sec {
    background: url(../images/industry-bg.jpg);
    background-size: cover;
    min-height: 100vh;
}

.industry-col {
    flex: 0 0 20%;
    max-width: 20%;
    margin-bottom: 23px;
}

.industry-card {
    background: #EDEDFA;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.industry-card h4 {
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
    transition: color 200ms ease-in-out;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Nunito", sans-serif;
}

.callto-atc {
    background: url('../images/callto-act-bg.jpg');
    padding: 50px 0px;
    background-size: cover;
}

.callto-atc h2 {
    font-size: 60px;
    font-family: 'proxima_novasemibold';
    text-transform: uppercase;
    color:var(--white-color);
}

.callto-atc p {
    font-size: 20px;
    color:var(--white-color);
}

.custom-accordion {
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: 0;
}

.custom-accordion .accordion-item {
    background: transparent;
    border: none;
    margin-bottom: 1rem;
}

.custom-accordion .accordion-button {
    background: rgba(92, 90, 209, 0.11);
    border: none;
    border-radius: 15px !important;
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    box-shadow: none;
    position: relative;
    transition: all 100ms ease-in-out;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: rgba(92, 90, 209, 0.11);
    color: var(--primary-dark);
    border-radius: 15px 15px 0 0 !important;
}

.custom-accordion .accordion-button:focus {
    border-color: none;
    box-shadow: none;
}

.custom-accordion .accordion-button::after {
    display: none;
}

.faq-question {
    flex: 1;
    text-align: left;
    padding-right: 1rem;
    overflow: hidden;
    word-wrap: break-word;
    hyphens: auto;
}

.accordion-button {
    white-space: normal;
    min-height: 60px;
    align-items: flex-start;
    padding: 1rem;
}

.faq-icon {
    font-size: 1.2rem;
    transition: all 200ms ease-in-out;
    flex-shrink: 0;
    margin-top: 2px;
}

.accordion-button:not(.collapsed) .faq-icon {
    color: var(--bs-primary);
    transform: rotate(45deg);
}

.accordion-button.collapsed .faq-icon {
    transform: rotate(0deg);
}

.custom-accordion .accordion-body {
    background: rgba(92, 90, 209, 0.11);
    border-top: none;
    border-radius: 0 0 15px 15px;
    padding: 2rem;
    color: var(--primary-dark);
    line-height: 1.6;
}

.custom-accordion .accordion-collapse {
    border: none;
}

.custom-accordion .accordion-collapse .accordion-body {
    padding-top: 0;
}

.cta-section {
    padding: 4rem 0;
    background:var(--white-color);
}

.cta-card {
    background: var(--primary);
    border-radius: 30px;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    animation: float 8s ease-in-onfinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: -30px;
    transform: rotate(30deg);
    animation-delay: 100ms;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    left: 10%;
    transform: rotate(60deg);
    animation-delay: 200ms;
}

.shape-4 {
    width: 120px;
    height: 120px;
    bottom: -40px;
    right: 15%;
    transform: rotate(15deg);
    animation-delay: 300ms;
}

.shape-5 {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 5%;
    transform: rotate(75deg);
    animation-delay: 400ms;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 1;
    }
}

.cta-title {
    font-size: 60px;
    position: relative;
    z-index: 2;
    font-family: 'proxima_novasemibold';
}

.cta-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    opacity: 0.95;
}

.btn-cta-primary, .btn-cta-secondary {
    padding: 1rem 3rem;
    border-radius: 15px;
    border: none;
    font-weight: 600;
    position: relative;
    z-index: 2;
    transition: all 200ms ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
    background:var(--white-color);
    color: var(--primary);
}

.btn-cta-primary:hover, .btn-cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    background:var(--white-color);
}

.btn-text {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.btn-subtitle {
    font-size: 15px;
    font-weight: 400;
    color: var(--primary-dark);
}

.footer-section {
    background:var(--white-color);
    color: var(--primary-dark);
    padding: 4rem 0 2rem;
}

.footer-brand .brand-logo {
    margin-bottom: 1.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--bs-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.logo-icon i {
    color: var(--text-color-primary);
    font-size: 1.2rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color-primary);
}

.brand-description {
    line-height: 1.6;
    color: var(--text-color-primary);
    font-size: 1rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 200ms ease-in-out;
}

.social-link:hover {
    background: var(--primary);
    color:var(--white-color);
    transform: translateY(-2px);
}

.footer-heading {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-color-primary);
    text-decoration: none;
    transition: all 200ms ease-in-out;
    font-size: 0.95rem;
}

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

.company-name {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
}

.company-address {
    color: var(--text-color-primary);
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-info {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--text-color-primary);
}

.contact-item i {
    color: var(--primary);
    font-size: 0.9rem;
}

.contact-item a {
    color: var(--text-color-primary);
    text-decoration: none;
    transition: color 200ms ease-in-out;
}

.contact-item a:hover {
    color: var(--bs-primary);
}

.footer-bottom {
    padding-top: 2rem;
    margin-top: 3rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legal-link {
    color: var(--text-color-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 200ms ease-in-out;
}

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

.separator {
    color: var(--text-color-secondary);
}

.copyright {
    color: var(--text-color-primary);
    font-size: 0.9rem;
}

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

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

.pricing-card {
    animation: fadeInUp 400ms ease-in-out forwards;
}

.pricing-card:nth-child(1) {
    animation-delay: 100ms;
}

.pricing-card:nth-child(2) {
    animation-delay: 200ms;
}

.pricing-card:nth-child(3) {
    animation-delay: 300s;
}

.pricing-card:nth-child(4) {
    animation-delay: 400s;
}

.pricing-card {
    opacity: 0;
}

.pricing-card.loaded {
    opacity: 1;
}

.featured-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--bs-primary-rgb), 0.1), transparent);
    transition: left 400ms ease-in-out;
    z-index: 1;
}

.featured-plan:hover::before {
    left: 100%;
}

.pricing-card:focus-within {
    outline: 2px solid var(--bs-primary);
    outline-offset: 2px;
}

.badge {
    font-size: 0.75rem;
    font-weight: 600;
}

.table-hover tbody tr:hover {
    background-color: rgba(var(--bs-primary-rgb), 0.05);
}

.bi {
    font-size: 1.2rem;
}

.collapse {
    transition: height 300ms ease-in-out;
}

.custom-toggler {
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0.5rem;
}

.toggler-icon {
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    transition: all 200ms ease-in-out;
    border-radius: 3px;
}

.w-1875{
    width: 18.75%;
}

.w-25{
    width: 25%;
}

.conversa-launcher, .user-message .bubble   {
    background: var(--primary) !important;
}

.video-container {
    width: 100%;
    max-width: 954px;
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: transform 200ms ease-in-out, box-shadow 200ms ease-in-out;
}

.video-responsive {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
}

.video-responsive::-webkit-media-controls-panel {
    background-color: rgba(0,0,0,0.454);
}

.video-fallback {
    color: var(--white-color);
    padding: 3rem;
    text-align: center;
    height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-form-wrapper {
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 1.5rem 2.5rem;
    padding-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.form-subtitle {
    font-size: 1.1rem;
    text-align: center;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.contact-form .form-floating {
    position: relative;
}

.contact-form .form-control,
.contact-form .form-select {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1rem 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--primary-dark);
    height: auto;
    min-height: 58px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(111, 104, 255, 0.25);
    outline: none;
}

.contact-form .form-floating > label {
    color: var(--text-color-secondary);
    font-weight: 500;
    padding: 1rem 0.75rem;
}

.contact-form .form-floating > .form-control:focus ~ label,
.contact-form .form-floating > .form-control:not(:placeholder-shown) ~ label,
.contact-form .form-floating > .form-select:focus ~ label,
.contact-form .form-floating > .form-select:not([value=""]) ~ label {
    color: var(--primary);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    text-align: center;
}

.btn-form-submit {
    background: white;
    color: var(--primary);
    border: none;
    padding: 1rem 3rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 200px;
    transition: all 0.3s ease;
    position: relative;
}

.btn-form-submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
}

.btn-form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.alert {
    border-radius: 12px;
    border: none;
    padding: 1rem 1.5rem;
}

.alert-success {
    background: rgba(76, 175, 80, 0.15);
    color: white;
    border-left: 4px solid #4CAF50;
}

.alert-danger {
    background: rgba(244, 67, 54, 0.15);
    color: white;
    border-left: 4px solid #F44336;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

@media (max-width: 992px) {
    .featured-plan {
        transform: none;
    }

    .featured-plan:hover {
        transform: translateY(-8px);
    }

    .start-text {
        font-size: 14px !important;
    }
}

@media (max-width: 768px) {
    .billing-toggle-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .billing-toggle-group .btn {
        border-radius: 25px !important;
        margin: 0.25rem 0;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .pricing-card {
        margin-bottom: 2rem;
    }

    .start-text {
        font-size: 12px !important;
    }

    .billing-toggle-group label[for="annuallyTab"] .badge {
        position: static !important;
        transform: none !important;
        margin-left: 0.5rem;
        margin-top: 0.25rem;
        display: inline-block;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .btn-form-submit {
        width: 100%;
        padding: 1rem 2rem;
    }

    .main-imagesc img {
        border-width: 6px;
        padding: 10px;
        border-radius: 20px;
    }

    .video-container {
        max-width: 95%;
        margin: 0 1rem;
    }

    .video-responsive {
        height: 300px;
    }

    .video-fallback {
        height: 300px;
        padding: 2rem;
    }

    .faq-question{
        padding: 0px !important;
    }

    .faq-icon{
        display: none;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 2rem;
    }

    .price-amount {
        font-size: 1.5rem !important;
    }

    .billing-toggle-group {
        padding: 0.25rem;
    }

    .banner-main .main-head {
        font-size: 32px;
    }

    .banner-main .sub-head {
        font-size: 22px;
    }

    .main-head::after,
    .main-head::before {
        display: none;
    }

    .banner-main p {
        font-size: 16px;
    }

    .banner-main p.mini-pera {
        font-size: 14px;
    }

    .section-heading {
        font-size: 30px;
    }

    .features-content {
        display: block;
    }

    .feature-section {
        display: block;
        align-items: start;
        padding: 0rem 0;
        min-height: 48vh;
    }

    .section-content {
        text-align: center;
        padding: 0;
    }

    .feature-section h2 {
        line-height: 33px;
        font-size: 25px;
    }

    .ready-sec .action-image {
        position: static;
    }

    .play-sec {
        min-height: 50vh;
    }

    .play-button {
        width: 70px;
    }

    .w-50 {
        width: 100% !important;
    }

    .industry-col {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 23px;
    }
    .callto-atc{
        padding: 70px 0 70px;
    }
    .callto-atc h2{
        font-size: 30px;
    }
    .callto-atc p{
        font-size: 14px;
    }
    .cta-title{
        font-size: 30px;
    }
    .cta-subtitle{
        font-size: 14px;
    }
    .footer-section{
        padding: 0rem 0 2rem;
    }
    .footer-bottom{
        margin-top: 0;
        padding-top: 0;
    }
    .industry-card h4{
        font-size: 17px;
    }
    .industry-card img{
        width: 50%;
    }
    .industry-card{
        height: auto;
    }

    .contact-form-container {
        padding: 1.5rem 1rem;
    }
    
    .form-title {
        font-size: 1.6rem;
    }
    
    .contact-form .form-control,
    .contact-form .form-select {
        font-size: 0.9rem;
    }

    .logo {
        scale: 0.8;
        position: relative;
        left: 10px;
    }

    .video-responsive {
        height: 250px;
    }

    .video-fallback {
        height: 250px;
        padding: 1.5rem;
    }

    .start-text {
        font-size: 14px !important;
    }
}

/* carrousel */
@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.carousel {
    position: relative;
    padding-top: 5.4rem;
    padding-bottom: 2rem;
}

.slider {
    user-select: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: var(--dark1);
    height: 140px;
    overflow: hidden;
    position: relative; 
    width: 100%;
    transition: var(--transition);
    pointer-events: all;
}

.slider::before, .slider::after {
    background: linear-gradient( to right, var(--light-gray-bg) 0%, rgba(26, 26, 26, 0) 100% );
    content: "";
    height: 140px;
    position: absolute;
    width: 250px;
    z-index: 2;
    transition: var(--transition);

}

.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.slider::before {
    left: 0;
    top: 0;
}

/* temporal hasta que haya logos reales */
.slide img {
    filter: invert(1);
}

.slide-track {
    animation: scroll var(--carrousel-vel) linear infinite;
    display: flex;
    width: max-content;
    gap: 2em;
}

.slide {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 2.4em;
    height: 100px;
    width: 200px;
    flex-shrink: 0; 
}

@media (max-width: 888px) {
    .slider::before, .slider::after { width: 150px; }
    .carousel { margin-bottom: 0em; }
}