:root {
    --primary: #c8102e;
    --primary-dark: #a50d25;
    --primary-light: rgba(200, 16, 46, 0.1);
    --text-dark: #333333;
    --text-light: #676879;
    --background: #fff5f5;
    --white: #FFFFFF;
    --shadow: rgba(200, 16, 46, 0.1);
    --gray-light: #f5f5f5;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
   
}

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

.navbar {
    padding: 16px 0;
    background: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 120px;
}

.nav-logo {
    /*height: 5vh;*/
    width: 10vw;
}

.nav-links {
    display: flex;
    gap: 40px;
    margin-left: 40px;
}

.nav-links a {
    color: #4A4A4A;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 42px;
}

.demo-link {
    color: #E53E3E;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
}

.demo-link:hover {
    color: #C53030;
}

.btn-primary {
    background: #DC2626;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: #B91C1C;
}

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


.nav-right a:not(.btn-secondary):not(.btn-primary) {
    color: #333;
}


.nav-right a[href="#pricing"] {
    color: #0000EE; 
}


.btn-secondary {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #333;
    background: white;
    font-weight: 500;
}

.btn-primary {
    padding: 8px 16px;
    border-radius: 25px;
    background: #C8102E; 
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary::after {
    font-size: 18px;
}

.btn-secondary:hover {
    background: #f5f5f5;
}

.btn-primary:hover {
    background: #a50d26; 
}

.menu-toggle {
    display: none;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1001;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.search-overlay.active {
    display: flex;
}

.search-form {
    width: 100%;
    max-width: 600px;
}

.search-input {
    width: 100%;
    padding: 16px;
    font-size: 24px;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    background: transparent;
}

.search-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 10vh;
    right: 0;
    width: 100%;
    height: 65%;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0% 73px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.text-content {
    max-width: 687px;
    position: relative;
    top: 25vh;
}

.hero-title {
    font-size: clamp(30px, 2.8vw, 59px);
    line-height: clamp(35px, 3.4vw, 69px);
    font-weight: 600;
    color: #333333;
    margin-bottom: 24px;
    max-width: none;
    white-space: nowrap;
}

.hero-title br {
    display: block;
}

.red-text {
    color: #C4161C;
}

.hero-subtitle {
    font-size: clamp(14px, 1vw, 17px);  
    line-height: clamp(20px, 1.7vw, 25px);
    color: #717171;
    margin-bottom: 10px;
    white-space: nowrap;
}

.hero-subtitle-v3 {
    font-size: clamp(14px, 1.2vw, 17px);  
    line-height: clamp(20px, 1.7vw, 25px);
    color: #717171;
    display: none;
}

@media screen and (max-width: 900px) {
    .hero-content {
       padding-left: 2%;
    }
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-register {
    background: #C4161C;
    color: white;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.btn-register:hover {
    background: #a11318;
}

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

.play-icon-wrapper {
    width: 58px;
    height: 58px;
    border: 2px solid #C4161C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: transparent;
}

.play-icon {
    width: 40px;
    height: 40px;
    background: transparent;
}
.btn-demo {
    color: #C4161C;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    white-space: nowrap;
}

.hero-buttons {
    align-items: flex-start;
    gap: 24px;
}

.btn-register {
    padding: 14px 28px;
    font-size: 15px;
}

.demo-button {
    gap: 10px;
}

.play-icon-wrapper {
    width: 50px;
    height: 50px;
}

.play-icon {
    width: 20px;
    height: 20px;
}

.btn-demo {
    font-size: 15px;
}

.dashboard-wrapper {
    position: absolute;
    width: 817.03px;
    height: 581px;
    right: 312px;
    bottom: -290px; 
    z-index: 1;
}

.dashboard-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 26px;
    filter: drop-shadow(0px 100px 80px rgba(0, 0, 0, 0.02)) 
           drop-shadow(0px 64.8148px 46.8519px rgba(0, 0, 0, 0.0151852))
           drop-shadow(0px 38.5185px 25.4815px rgba(0, 0, 0, 0.0121481))
           drop-shadow(0px 20px 13px rgba(0, 0, 0, 0.01))
           drop-shadow(0px 8.14815px 6.51852px rgba(0, 0, 0, 0.00785185))
           drop-shadow(0px 1.85185px 3.14815px rgba(0, 0, 0, 0.00481481));
}

.feature-cards {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 48px;
}

.card {
    background: var(--white);
    padding: 24px;
    border-radius: 8px;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 4px 8px var(--shadow);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px var(--shadow);
}

.card-icon {
    font-size: 24px;
    margin-bottom: 8px;
}


.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.1;
    animation: shapeFloat 20s infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 15%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: -15s;
}

.shape-5 {
    width: 50px;
    height: 50px;
    top: 30%;
    left: 35%;
    animation-delay: -7s;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--primary-light);
    border-radius: 20px;
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 24px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 40px;
}

.stats {
    display: flex;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.number {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.label {
    font-size: 14px;
    color: var(--text-light);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-item {
    position: absolute;
    background: var(--white);
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 6s infinite;
}

.float-item .icon {
    font-size: 20px;
}

.float-item span {
    font-size: 14px;
    font-weight: 500;
}

.item-1 {
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.item-2 {
    top: 50%;
    left: 0;
    animation-delay: -2s;
}

.item-3 {
    bottom: 20%;
    right: 10%;
    animation-delay: -4s;
}

.dashboard-item {
    fill: var(--primary);
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
}

.item-1 { animation-delay: 0.2s; }
.item-2 { animation-delay: 0.4s; }
.item-3 { animation-delay: 0.6s; }
.item-4 { animation-delay: 0.8s; }
.item-5 { animation-delay: 1s; }

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -10px) rotate(5deg); }
    50% { transform: translate(-5px, 5px) rotate(-5deg); }
    75% { transform: translate(-10px, -5px) rotate(3deg); }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.7;
        transform: translateY(0);
    }
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.footer {
    background: #f9fafc;
    padding: 80px 0 40px;
    color: #333;
    scroll-margin-top: 80px;
}

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

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 45px;
    width: auto;
    margin-bottom: 24px;
}

.brand-description {
    color: #666;
    margin-bottom: 16px;
    line-height: 1.5;
}

.registration-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
}

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

.footer-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #333;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
}

.offices-grid {
    display: grid;
    gap: 24px;
}

.office-item h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.office-item p {
    color: #666;
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-details {
    display: grid;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 12px;
}

.contact-group {
    display: grid;
    gap: 8px;
}

.newsletter-section {
    max-width: 400px;
}

.newsletter-description {
    color: #666;
    margin-bottom: 16px;
}

.newsletter-form .input-group {
    display: grid;
    gap: 12px;
}

.newsletter-input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.newsletter-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-policies {
    display: flex;
    align-items: center;
    gap: 16px;
}

.policy-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.divider {
    color: #ddd;
}

.copyright {
    color: #666;
    font-size: 14px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item {
    width: 100%;
    max-width: 300px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter-input {
    width: 100%;
    max-width: 400px;
}

.newsletter-button {
    width: 100%;
    max-width: 400px;
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 24px;
    }

    .footer-container {
        padding: 0 16px;
    }

    .footer-main {
        gap: 32px;
    }

    .newsletter-input {
        padding: 14px;
    }

    .newsletter-button {
        padding: 14px;
    }
}

.benefits {
    scroll-margin-top: 80px;
    background: #fff;
}

.benefits-header {
    text-align: center;
    margin-bottom: 64px;
}

.benefits-label {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.benefits-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.benefits-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.benefit-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: var(--primary);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 24px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.get-started {
    display: inline-block;
    font-size: 18px;
    color: var(--primary);
    text-decoration: underline;
    padding: 16px 0;
    margin-bottom: 16px;
    transition: color 0.2s ease;
}

.get-started::after {
    content: "→";
    margin-left: 8px;
    display: inline-block;
}

.get-started:hover {
    color: var(--primary-dark);
}

.no-credit {
    color: #666;
    font-size: 15px;
}

.no-credit .star {
    color: #666;
    margin: 0 4px;
}

.pricing {
    padding-top: 40px;
    padding-bottom: 100px;
    background: #f9fafc;
    scroll-margin-top: 100px;
    scroll-padding-top: 100px;
}

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

.pricing-label {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header h2 {
    font-size: 36px;
    margin: 16px 0;
    color: #1a1a1a;
}

.pricing-subtitle {
    color: #666;
    font-size: 18px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.pricing-card.popular {
    border: 2px solid var(--primary);
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.plan-header {
    margin-bottom: 32px;
}

.plan-header h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.price {
    margin-bottom: 16px;
}

.amount {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
}

.period {
    color: #666;
    font-size: 16px;
}

.plan-header p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.features li {
    color: #4a4a4a;
    margin-bottom: 16px;
    font-size: 15px;
}

.button-container {
    margin-top: 32px;
}

.plan-cta {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.plan-cta:not(.primary) {
    border: 2px solid #e0e0e0;
    color: #333;
}

.plan-cta.primary {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.plan-cta:hover:not(.primary) {
    background: #f5f5f5;
}

.plan-cta.primary:hover {
    background: #a50d26;
    border-color: #a50d26;
}

@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-header h2 {
        font-size: 28px;
    }
}

.video-showcase {
    padding: 80px 0;
    background: #f9fafc;
}

.video-content {
    max-width: 1000px;
    margin: 0 auto;
}

.video-header {
    text-align: center;
    margin-bottom: 48px;
}

.video-label {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(200, 16, 46, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.video-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.video-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.feature-video {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
}

.gif-showcase {
    padding: 80px 0;
    background: #f9fafc;
}

.gif-content {
    max-width: 1000px;
    margin: 0 auto;
}

.gif-header {
    text-align: center;
    margin-bottom: 48px;
}

.gif-label {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(200, 16, 46, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.gif-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.gif-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.gif-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.feature-gif {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
}

.pricing-card {
    animation: selectCard 0.3s ease;
}

@keyframes selectCard {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

.plan-cta {
    transition: all 0.3s ease;
}

.plan-cta.primary {
    background: var(--primary);
    color: white;
}

.partners {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
    scroll-margin-top: 80px;
}

.partners-title {
    text-align: center;
    font-size: 36px;
    color: #2C3E50;
    margin-bottom: 40px;
    font-weight: 600;
}

.partners-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.partners-track {
    display: flex;
    animation: scroll 40s linear infinite;
}

.partner-item {
    flex: 0 0 100px;
    margin: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    max-width: 100px;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100px * 8 - 32px * 8));
    }
}

html {
    scroll-behavior: smooth;
}

#subscriptions {
    scroll-margin-top: 100px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: white;
    padding: 0px 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu-links a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 0;
}

.mobile-menu-links .mobile-cta {
    color: white;
    background: var(--primary);
    padding: 12px 24px;
    border-radius: 6px;
    text-align: center;
    margin-top: 10px;
}

.menu-toggle {
    display: none;
}

.features-section {
    padding-top: 10vh;
}

.features-section-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 73px;
}

.features-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.features-section-title {
    font-size: 43px;
    line-height: 1.2;
    font-weight: 500;
    color: #333333;
    margin: 0 0 24px 0;
}

.features-section-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

.features-section-grid {
    display: flex;
    justify-content: center;
    gap: 120px;
    margin-top: 80px;
}

.features-section-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.features-section-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.features-section-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.features-section-item-title {
    font-size: 24px;
    font-weight: 600;
    color: #666666;
    margin: 0;
}

.solution-section {
    padding: 120px 0;
    background: #fff;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.solution-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.solution-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1F2937;
}

.text-primary {
    color: #E53E3E;
}

.solution-subtitle {
    font-size: 18px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 40px;
}

.solution-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-demo {
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-demo:hover {
    color: #0052CC;
}

.solution-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 80px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E2E8F0;
}

.dot.active {
    background: #E53E3E;
}

.manager-x-container {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    top: 40vh;
}

.manager-x-image {
    width: 56.7%;  
    height: auto;
    border-radius: 26px;
}

@media (max-width: 480px) {
    .hero-content {
        padding: 20px 16px;
    }

    .hero-buttons {
        flex-direction: row;  
        width: 100%;
        gap: 12px;
    }

    .manager-x-container {
        padding: 0 12px;
        margin-bottom: 16px;
    }
}

.mx-how-section {
    padding: 120px 0;
    background: #FFF5F5;
}

.mx-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 73px;
    display: grid;
    grid-template-columns: minmax(400px, 1fr) minmax(500px, 1fr);
    gap: 80px;
    align-items: start;
}


.mx-left-column {
    padding-top: 40px; 
}

.mx-how-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 600;
    color: #333333;
    margin-bottom: 24px;
}

.mx-how-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 48px;
    max-width: 480px;
}

.mx-right-column {
    display: flex;
    flex-direction: column;
    gap: 24px; 
}

.mx-role {
    display: flex;
    align-items: center;
    gap: 20px;
}

.role-icon {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    object-fit: contain;
    margin-top: 4px;
}

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

.role-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin: 0;
}

.role-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #666666;
    margin: 0;
}

@media (max-width: 1200px) {
    .mx-container {
        padding: 0 40px;
        gap: 60px;
        grid-template-columns: 1fr 1fr;
    }
}

.how-manager-x {
    
}

.how-manager-x .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 73px;
    display: grid;
    grid-template-columns: minmax(400px, 1fr) minmax(500px, 1fr);
    gap: 64px; 
}

.left-column h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 600;
    color: #333333;
    margin-bottom: 20px; 
}   

.left-column .subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #757575; 
    margin-bottom: 40px; 
    max-width: 480px;
}

@media (max-width: 800px) {
    .left-column .subtitle {
        text-align: center;
    }
}

.right-column {
    display: flex;
    flex-direction: column;
    gap: 24px; 
    padding-top: 32px; 
}

.role-block {
    display: flex;
    align-items: center; 
    gap: 16px; 
}

.role-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    object-fit: contain;
    display: block; 
}

.role-content {
    display: flex;
    flex-direction: column;
    gap: 2px; 
}

.role-content h3 {
    font-size: 20px;
    font-weight: 600; 
    color: #333333;
    margin: 0;
    line-height: 1.4; 
}

.role-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #757575; 
    margin: 0;
    font-weight: 400; 
}

.left-column .role-block {
    margin-top: 40px; 
}

@media (max-width: 1200px) {
    .how-manager-x .container {
        padding: 0 40px;
        gap: 48px; 
    }
}



.pricing-section-v2 {
    position: relative;
    top: 5vh;
    background: #FFF5F5;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.pricing-section-v2-container {
    
    max-width: 1152px;
    margin: 5vh auto;
    padding: 0 24px;
    width: 100%;
}

.pricing-section-v2-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-section-v2-title {
    font-size: 38px;
    line-height: 1.2;
    color: #333333;
    margin: 0 0 12px;
    font-weight: 600;
}

.pricing-section-v2-subtitle {
    font-size: 15px;
    line-height: 1.5;
    color: #666666;
    margin: 0;
}

.pricing-section-v2-toggle {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.pricing-section-v2-toggle-btn {
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid #c63232;
    background: transparent;
    color: #c63232;
    transition: all 0.2s ease;
    outline: none;
    box-shadow: none;
}

.pricing-section-v2-toggle-btn.active {
    background: #c63232;
    color: #FFFFFF;
    border: none;
}

.pricing-section-v2-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.pricing-section-v2-card {
    cursor: pointer;
    padding: 32px;
    background: var(--white);
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}


.pricing-section-v2-card:hover,
.pricing-section-v2-card.active {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow);
}

.pricing-section-v2-card.active {
    border-color: var(--primary);
}

.pricing-section-v2-card.premium {
    background-color: rgb(198, 50, 50);

    color: var(--white);
}

.pricing-section-v2-card.premium.active {
    border-color: var(--white);
}

.pricing-section-v2-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 8px;
    text-align: center;
}

.pricing-section-v2-card.premium.active .pricing-section-v2-card-desc,
.pricing-section-v2-card.premium.active .pricing-section-v2-price .amount {
    color: #FFFFFF;
}

.pricing-section-v2-card.premium .pricing-section-v2-card-title,
.pricing-section-v2-card.premium .pricing-section-v2-card-desc,
.pricing-section-v2-card.premium .pricing-section-v2-price .amount {
    color: var(--white);
}






.pricing-section-v2-card-desc {
    text-align: center;
    font-size: 14px;
    color: #666666;
    margin: 0 0 16px;
}

.pricing-section-v2-price {
    display: flex;
    align-items: flex-start; 
    justify-content: center;
    margin: 16px 0;
}

.pricing-section-v2-price .currency {
    font-size: 18px;
    color: #333333;
    font-weight: 500;
    margin-right: 4px;
    margin-top: -10px; 
}

.pricing-section-v2-price .amount {
    font-size: 42px;
    color: #333333;
    font-weight: 600;
    line-height: 1;
}

.pricing-section-v2-save {
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 7px;
    display: inline-block;
    margin: 8px 0;
    width: 51%;
    margin: 0 auto;
}

.pricing-section-v2-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-section-v2-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.pricing-section-v2-features li svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.pricing-section-v2-features li span {
    flex: 1;
}

.pricing-section-v2-features li.pricing-button-wrapper {
    display: block;
    margin-top: auto;
}

.pricing-section-v2-card.premium .pricing-section-v2-features-wrapper,
.pricing-section-v2-card.selected .pricing-section-v2-features-wrapper {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 0px 20px;
    margin: 16px 0;
}

.pricing-section-v2-card.premium,
.pricing-section-v2-card.selected {
    color: #FFFFFF;
}

.pricing-section-v2-card.premium .pricing-section-v2-features-wrapper .pricing-section-v2-features li,
.pricing-section-v2-card.selected .pricing-section-v2-features-wrapper .pricing-section-v2-features li {
    color: #4a4a4a;
}

.pricing-section-v2-card.premium .pricing-section-v2-features-wrapper .pricing-section-v2-features li::before,
.pricing-section-v2-card.selected .pricing-section-v2-features-wrapper .pricing-section-v2-features li::before {
    color: #c63232;
}

.pricing-section-v2-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin-left: 10%;
    padding: 12px 24px;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: auto;
    border: 2px solid #c63232;
    background: #FFFFFF;
    color: #c63232;
}

.pricing-section-v2-card.premium .pricing-section-v2-cta {
    background: #c63232;
    color: #ffffff;
    border: none;
}

.pricing-section-v2-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.pricing-section-v2-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 20px;
}

.pricing-section-v2-features-wrapper {
    flex: 1; 
    display: flex;
    flex-direction: column;
}

.pricing-section-v2-features {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pricing-button-wrapper {
    margin-top: auto;
    padding-top: 32px;
}

.mx-benefits {
    padding: 80px 20px;
    background: #fff;
}

.mx-benefits-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.mx-benefits-header h2 {
    font-size: 43px;
    line-height: 1.2;
    font-weight: 500;
    color: #333333;
    margin: 0 0 24px 0;
}
@media (max-width: 800px) {
    .mx-benefits-header h2 {
        font-size: 17px;
    }
}

.mx-benefits-header p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.mx-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.mx-benefit-card {
    background: #F8F9FC;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
}

.mx-benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    background: rgba(196, 22, 28, 0.1);
    border-radius: 12px;
    padding: 12px;
}

.mx-benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mx-benefit-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
}
@media (max-width: 800px) {
    .mx-benefit-card h3 {
        font-size: 17px;
    }
}

.mx-benefit-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .mx-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1150px) {
    .nav-logo {
        height: 40px;
        width: auto;
    }
    .hero-title {
        font-size: clamp(5px, 3.1vw, 58px);
        line-height: clamp(35px, 2.8vw, 69px);
        
    }
    .hero-subtitle {
        display: none;
    }
    .hero-subtitle-v3 {
        font-size: clamp(14px, 1.2vw, 17px);
        line-height: clamp(20px, 1.7vw, 25px);
        color: #717171;
        margin-bottom: 10px;
        
        white-space: nowrap;
        display: block;
        margin-bottom: 5%;
    }

    .hero-background {
        position: absolute;
        top: 7vh;
        right: 0;
        width: 100%;
        height: 55%;
        z-index: 1;
    }

    .manager-x-image {
        width: 56.7%;
        height: auto;
        border-radius: 26px;
        position: absolute;
        
    }

    .manager-x-container {
        position: relative;
        z-index: 1;
        width: 100%;
        display: flex;
        justify-content: center;
        top: 30vh;
    }
    .features-section {
        padding-top: 10vh;
    }
    .mx-benefits {
        padding-top: 10vh;
    }
    .features-section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .mx-benefits-header h2 {
        font-size: 28px;
    }
    
}

.sec-element {
    display: none;
}

@media screen and (max-width: 950px) {
    
    .features-section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .mx-benefits-header h2 {
        font-size: 24px;
    }

    .how-manager-x {
        padding: 0px 0;
    }
    .how-manager-x .container {
        padding: 0px 40px;
        gap: 0px;
        display: flex;
        flex-direction: column;
        margin-bottom: 10vh;
    }

    .left-column {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin: 0 auto;
    }
    .left-column h2 {
        font-size: 40px;
        text-align: center;
        
    }
    .left-column .subtitle {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .right-column {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding-top: 32px;
        margin: 0 auto;
    }

    .right-column {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding-top: 32px;
        margin: 0 auto;
    }
    .left-column .role-block {
        display: none;
    }
    .role-block .sec-element {
        display: block;
    }
    .role-block .sec-element {
        display: block;
    }

}

@media screen and (max-width: 840px) {
    .nav-links {
        gap: 20px;
    }

    .pricing-section-v2-cards {
        grid-template-columns: minmax(0, 1fr);
        display: flex;
        flex-direction: column;
        
    }

    .pricing-section-v2-card {
        display: flex;
        flex-direction: column;
        height: 100%;
        margin: 0 auto;
        width: 50%;
    }

    .pricing-section-v2-card .pricing-section-v2-card.selected {
        color: #FFFFFF;
        display: flex;
        flex-direction: column;
        height: 100%;
        margin: 0 auto;
    }
}
@media (max-width: 800px) {



    .hero-section {
        background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
        min-height: 80vh;
    }

    .hero-bg-image {
        object-position: 70% center; 
    }

    .hero-content {
        position: relative;
        z-index: 2;
        padding: 24px;
    }
    .hero-title {
        font-size: clamp(15px, 4vw, 46px);
        line-height: 1.2;
        color: #2D3748;
        margin-bottom: 5px;
    }
    .text-content {
        position: relative;
        max-width: 687px;
        top: 17vh;
    }

    .red-text {
        color: #C4161C;
        display: inline;
    }
    .hero-subtitle {
        font-size: clamp(7px, 2vw, 16px);
        line-height: 1.6;
        color: #4A5568;
        display: none;
        max-width: 50%;
    }
    .hero-subtitle-v3 {
        font-size: clamp(7px, 2vw, 16px);
        line-height: 1.6;
        color: #4A5568;
        display: block;
        margin-bottom: 12px;
        
    }

    .hero-buttons {
        flex-direction: row;
        width: 100%;
        gap: 12px;
    }
    .btn-register {
        padding: 0px 10px;
        background: #C4161C;
        color: white;
        border-radius: 25px;
        font-weight: 500;
        font-size: 6.5px;
        text-decoration: none;
    }

    .demo-button {
        display: flex
;
        align-items: center;
        gap: 4px;
        color: #C4161C;
        font-weight: 500;
        text-decoration: none;
        
    }
    .play-icon-wrapper {
        width: 20px;
        height: 20px;
    }
    .play-icon {
        width: 10px;
        height: 10px;
    }
    .btn-demo {
        font-weight: 500;
        transition: color 0.3sease;
        font-size: 10px;
    }

    .manager-x-container {
        padding: 0 12px;
        position: absolute;
        top: 42vh;
        z-index: 1;
        width: 100%;
        display: flex;
        justify-content: center;
        
    }


    .features-section {
        padding: 0px 0;
    }
    .features-section-title {
        font-size: 23px;
        margin-bottom: 20px;
    }
    .mx-benefits-header h2 {
        font-size: 23px;
    }


}

@media screen and (max-width: 745px) {
    .nav-links {
        display: none;
    }
    .nav-right {
        display: none;
    }
    .menu-toggle {
        justify-content: flex-end;
        bottom: 0.5vh;
        display: flex;
        width: 50%;
        background: none;
        border: none;
        font-size: 24px;
        color: #333;
        cursor: pointer;
        padding: 8px;
    }
   
    .pricing-section-v2-cards {
        grid-template-columns: minmax(0, 1fr);
        display: flex;
        flex-direction: column;
        
    }

    .pricing-section-v2-card {
        display: flex;
        flex-direction: column;
        height: 100%;
        margin: 0 auto;
        width: 70%;
    }

    .pricing-section-v2-card .pricing-section-v2-card.selected {
        color: #FFFFFF;
        display: flex;
        flex-direction: column;
        height: 100%;
        margin: 0 auto;
    }

    .features-section-grid {
        
        gap: 50px;
    }

    .features-section-item-title {
        font-size: 20px;
        
    }

}

@media (max-width: 450px) {
    .navbar {
        padding-top: 12px;
        padding-bottom: 0px;
    }

    .nav-content {
        display: flex;
        justify-content: unset;
        align-items: unset;
        
    }

    .logo {
        position: relative;
        width: 50%;
        margin: 0px;
    }
    .nav-logo {
        height: 40px;
        width: auto;
    }

    .nav-links, .nav-right {
        display: none;
    }
    .mobile-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        z-index: 1001;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu.active {
        left: 0;
    }


    .features-section-title {
        font-size: 17px;
        margin-bottom: 20px;
    }
    .mx-benefits-header h2 {
        font-size: 17px;
    }

    .mobile-menu-links {
        margin-top: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .mobile-menu-links a {
        color: #333;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        text-align: center;
        width: 100%;
        padding: 12px 0;
    }


    .nav-links {
        display: none;
    }

    .feature-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 280px;
    }


    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }


    .footer-section h3 {
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .offices-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-group {
        text-align: center;
    }

    .newsletter-section {
        max-width: 100%;
    }

    .input-group {
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-policies {
        flex-direction: column;
        gap: 8px;
    }

    .divider {
        display: none;
    }




    .benefits {
        padding: 60px 0;
        padding-top: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }
    
    .benefits-header h2 {
        font-size: 28px;
    }
    
    .benefits-subtitle {
        font-size: 16px;
        padding: 0 24px;
    }

    .video-showcase {
        padding: 60px 0;
    }

    .video-content {
        padding: 0 24px;
    }

    .video-header h2 {
        font-size: 28px;
    }

    .video-header p {
        font-size: 16px;
    }

    .video-wrapper {
        border-radius: 12px;
    }
    
    .container {
        padding: 0 12px;
    }
    .mx-benefits {
        padding: 60px 16px;
        padding-top: 0px;
    }


    .gif-showcase {
        padding: 60px 0;
    }

    .gif-content {
        padding: 0 24px;
    }

    .gif-header h2 {
        font-size: 28px;
    }

    .gif-header p {
        font-size: 16px;
    }

    .gif-wrapper {
        border-radius: 12px;
    }



    .partners-title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .partner-item {
        flex: 0 0 75px;
        margin: 0 12px;
    }
    
    .partner-logo {
        max-width: 75px;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-75px * 8 - 24px * 8));
        }
    }


    .nav-links {
        display: none;
    }


    .features-section {
        padding: 80px 0;
    }

    .features-section-container {
        padding: 0 24px;
    }

    .features-section-header {
        margin-bottom: 60px;
    }

    .features-section-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .features-section-subtitle {
        font-size: 16px;
    }

    .features-section-grid {
        flex-direction: row;
        gap: 30px;
        margin-top: 60px;
        
    }

    .features-section-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .features-section-item-title {
        font-size: 13px;
    }


    .solution-section {
        padding: 80px 0;
    }

    .solution-content h2 {
        font-size: 40px;
    }

    .solution-subtitle {
        font-size: 16px;
    }

    .solution-buttons {
        flex-direction: column;
    }


    .manager-x-container {
        margin-top: -5%; 
    }
    
    .manager-x-image {
        width: 85%;
    }


    .features-section-container {
        padding: 0 40px;
    }

    .features-section-grid {
        gap: 80px;
    }


    .mx-how-section {
        padding: 80px 0;
    }

    .mx-container {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 40px;
    }

    .mx-left-column {
        padding-top: 0;
    }

    .mx-how-title {
        font-size: 36px;
    }

    .mx-how-desc {
        max-width: none;
        margin-bottom: 40px;
    }

    .mx-right-column {
        gap: 24px;
    }


    .how-manager-x {
        padding: 0px;
        margin-bottom: 10vh;
    }

    .how-manager-x .container {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 20px;
    }

    .left-column h2 {
        font-size: 17px;
        text-align: center;
    }


    .right-column {
        padding-top: 0;
        gap: 20px; 
    }

    .role-block {
        gap: 14px; 
    }



    .pricing-section-v2-save {
        width: 75%;
    }
    .pricing-section-v2-save {
        display: none;
    }

    .pricing-section-v2-card.premium .pricing-section-v2-save,
.pricing-section-v2-card.active .pricing-section-v2-save {
    display: block;
}

.pricing-section-v2 {
    padding: 32px 0;
    padding-top: 0px;
    top: 0vh;
    min-height: auto;
}

.pricing-section-v2-title {
    font-size: 28px;
}

.pricing-section-v2-cards {
    grid-template-columns: minmax(0, 1fr); 
    display: flex;
    flex-direction: column;
}

.pricing-section-v2-container {
    padding: 0 16px;
}

.pricing-section-v2-card {    
    width: 90%;
    margin: 0 auto;
    min-height: 440px;
}

.pricing-section-v2-card-title {
    font-size: 20px;
}

.pricing-section-v2-price .amount {
    font-size: 32px;
}

.pricing-section-v2-features li {
    font-size: 13px;
    margin-bottom: 10px;
}

.pricing-section-v2-cta {
    padding: 10px 20px;
    font-size: 14px;
}

.features-section {
    padding-top: 0;
}


.features-section-title {
    font-size: 17px;
    margin-bottom: 20px;
}
.mx-benefits-header h2 {
    font-size: 17px;
}

.features-section-grid {
    flex-direction: row;
    gap: 30px;
    margin-top: 60px;
    
}

.features-section-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
}

.features-section-item-title {
    font-size: 13px;
}

    .mx-benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mx-benefit-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    

    .nav-right {
        gap: 16px;
    }

    .btn-secondary {
        display: none;
    }
    .pricing-section-v2-cta {
        width: 85%;
    }
}







.register-now-btn {
    position: relative;
    z-index: 2;
}

.language-selector {
    position: relative;
    margin-right: 20px;
    cursor: pointer;
}

.language-selector .selected-lang {
    position: absolute;
    top: -17px;
    /* margin-top: 10px; */
    width: 34px;
    height: 34px;
    object-fit: cover;
}

.language-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 8px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}
.language-dropdown.active {
    display: block;
}
/* .language-dropdown {
    display: block;
} */

.language-dropdown a {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
    white-space: nowrap;
}

.language-dropdown a:hover {
    background: #f5f5f5;
}

.language-dropdown img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}