/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #ffffff;
    color: #000000;
}

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

/* Header Navigation */
.header {
    background-color: #ffffff;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: none;
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    gap: 40px;
    max-width: 100%;
    height: 60px;
    margin: 0 auto;
    background: #F6F8FA;
    border-radius: 13px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.5px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #6366F1;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.btn-login {
    color: #000000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.btn-login:hover {
    color: #6366F1;
}

.btn-signup {
    background-color: #6366F1;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.btn-signup:hover {
    background-color: #4F46E5;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #0F0F0F;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
}

.mobile-nav-menu.active {
    max-height: 500px;
    opacity: 1;
    padding: 24px;
}

.mobile-nav-link {
    color: #0F0F0F;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 16px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    background: transparent;
}

.mobile-nav-link:hover {
    background: #F6F8FA;
    color: #6366F1;
    transform: translateX(8px);
}

.mobile-nav-cta {
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    color: #FFFFFF !important;
    margin-top: 8px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.mobile-nav-cta:hover {
    background: linear-gradient(135deg, #4F46E5 0%, #4338CA 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .auth-buttons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav-menu {
        display: flex;
    }
    
    .nav-wrapper {
        justify-content: space-between;
    }
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 80px 0px;
    gap: 8px;
    width: 100%;
    height: 424px;
    margin-top: 100px;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 20px;
    width: 960px;
    height: 360px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 20px;
    width: 100%;
}

.hero-title {
    max-width: 811px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    line-height: 112%;
    text-align: center;
    letter-spacing: -0.03em;
    color: #0F0F0F;
    margin: 0;
}

.hero-description-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 24px;
    max-width: 826px;
}

.hero-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: #0F0F0F;
    margin: 0;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
    width: 352px;
    height: 50px;
}

.btn-primary {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 32px;
    gap: 8px;
    width: 166px;
    height: 50px;
    background: #6F70FA;
    box-shadow: 0px 12px 20px rgba(111, 112, 250, 0.13);
    border-radius: 12px;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    color: #FBFAFF;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #5F60EA;
    box-shadow: 0px 16px 24px rgba(111, 112, 250, 0.2);
}

.btn-secondary {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 32px;
    gap: 8px;
    width: 162px;
    height: 50px;
    border: 1px solid #6F70FA;
    filter: drop-shadow(0px 12px 20px rgba(111, 112, 250, 0.13));
    border-radius: 12px;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    color: #6F70FA;
    background: transparent;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: rgba(111, 112, 250, 0.05);
}

/* Dashboard Section */
.dashboard-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    width: 1440px;
    margin: 0 auto;
    background: transparent;
}

.dashboard-container {
    max-width: 1400px;
    width: 100%;
    padding: 80px;
    margin: 0 auto;
}

.dashboard-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

/* About Section */
.about-section {
    background-color: #FFFFFF;
    padding: 80px 20px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #EEF2FF;
    border-radius: 50px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #6F70FA;
    width: fit-content;
}

.about-badge i {
    font-size: 16px;
}

.about-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    color: #0F0F0F;
    margin: 0;
}

.title-question {
    color: #6F70FA;
}

.about-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 160%;
    color: #666666;
}

.about-text p {
    margin: 0;
}

.about-text strong {
    color: #0F0F0F;
    font-weight: 600;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 1.5px solid #6F70FA;
    border-radius: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #6F70FA;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    background: #6F70FA;
    color: #FFFFFF;
}

.btn-learn-more i {
    font-size: 14px;
}

.about-video {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.video-placeholder iframe {
    border-radius: 16px;
}

.video-placeholder i {
    font-size: 80px;
    color: #9CA3AF;
}

.video-caption {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #0F0F0F;
    margin: 0;
}

/* Responsive for About Section */
@media (max-width: 968px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 20px;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-text {
        font-size: 15px;
    }
}

/* Features Section */
.features-section {
    background-color: #F9FAFB;
    padding: 80px 20px;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #EEF2FF;
    border-radius: 50px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #6F70FA;
}

.features-badge i {
    font-size: 16px;
}

.features-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    text-align: center;
    color: #0F0F0F;
    margin: 0 0 48px 0;
    max-width: 1000px;
}

.features-grid-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    margin-bottom: 32px;
}

.features-grid-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    width: 100%;
    margin-bottom: 32px;
}

.features-grid-third {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
}

.feature-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-large .feature-image {
    height: 300px;
}

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

.feature-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #E5E7EB;
}

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

.feature-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    color: #0F0F0F;
    margin: 0;
    padding: 24px 24px 12px;
}

.feature-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 160%;
    color: #666666;
    margin: 0;
    padding: 0 24px 24px;
}

/* Two Column Feature Layout */
.feature-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    background: transparent;
    border-radius: 32px;
    overflow: hidden;
}

.feature-two-column:last-child {
    margin-bottom: 0;
}

.feature-text-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 60px 50px;
    background: #FFFFFF;
    justify-content: flex-start;
}

.feature-heading {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 120%;
    color: #000000;
    margin: 0;
}

.feature-paragraph {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 165%;
    color: #5A5A5A;
    margin: 0;
}

.feature-image-column {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #E8E8E8;
    padding: 0;
}

.feature-image-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.feature-image-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Responsive for Features Section */
@media (max-width: 968px) {
    .features-grid-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .features-grid-bottom {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .features-grid-third {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .features-title {
        font-size: 36px;
    }
    
    .feature-two-column {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .feature-text-column {
        padding: 40px 30px;
    }
    
    .feature-image-column {
        padding: 0;
    }
    
    .feature-heading {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 60px 20px;
    }
    
    .features-title {
        font-size: 28px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-description {
        font-size: 15px;
    }
    
    .feature-two-column {
        border-radius: 24px;
    }
    
    .feature-text-column {
        padding: 32px 24px;
    }
    
    .feature-image-column {
        padding: 0;
    }
    
    .feature-heading {
        font-size: 24px;
    }
    
    .feature-paragraph {
        font-size: 15px;
    }
}

/* Why REBAX Matters Section */
.why-rebax-section {
    background: #1E293B;
    padding: 80px 20px;
}

.why-rebax-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 60% 1fr;
    gap: 60px;
    align-items: start;
}

.why-rebax-left {
    position: sticky;
    top: 100px;
}

.why-rebax-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.why-rebax-badge i {
    font-size: 16px;
}

.why-rebax-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    color: #FFFFFF;
    margin: 0 0 24px 0;
}

.why-rebax-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 165%;
    color: #D1D5DB;
    margin: 0;
}

.why-rebax-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-rebax-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.2s ease;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

.why-rebax-card:hover {
    transform: translateX(8px);
}

.why-rebax-card-header {
    background: #7366F0;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
}

.why-rebax-number {
    width: 32px;
    height: 32px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #7366F0;
    flex-shrink: 0;
}

.why-rebax-card-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 130%;
    color: #FFFFFF;
    margin: 0;
}

.why-rebax-card-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 15px;
    line-height: 160%;
    color: #1F2937;
    margin: 0;
    padding: 24px 28px;
    background: #EEF0FF;
}

/* Responsive for Why REBAX Section */
@media (max-width: 968px) {
    .why-rebax-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-rebax-left {
        position: static;
    }
    
    .why-rebax-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .why-rebax-section {
        padding: 60px 20px;
    }
    
    .why-rebax-title {
        font-size: 28px;
    }
    
    .why-rebax-description {
        font-size: 15px;
    }
    
    .why-rebax-card-header {
        padding: 16px 24px;
    }
    
    .why-rebax-number {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .why-rebax-card-title {
        font-size: 16px;
    }
    
    .why-rebax-card-text {
        font-size: 14px;
        padding: 20px 24px;
    }
    
    .why-rebax-number {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}


/* Pricing Section */
.pricing-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px;
    gap: 56px;
    background: #FFFFFF;
    position: relative;
}

.pricing-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #EEF2FF;
    border-radius: 50px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #6F70FA;
}

.pricing-badge i {
    font-size: 16px;
}

.pricing-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    text-align: center;
    color: #0F0F0F;
    margin: 0 0 48px 0;
    max-width: 900px;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    position: relative;
}

.pricing-card {
    background: #F3F4F6;
    border: none;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: row;
    overflow: visible;
    gap: 24px;
    min-height: 500px;
    position: relative;
}

.pricing-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0;
    width: 60%;
    min-width: 280px;
    background: transparent;
    border-radius: 16px;
    margin: 0;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    height: fit-content;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    z-index: 1;
}

.pricing-card:nth-child(1) .pricing-left {
    z-index: 3;
}

.pricing-card:nth-child(2) .pricing-left {
    z-index: 2;
}

.pricing-card:nth-child(3) .pricing-left {
    z-index: 1;
}

.pricing-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    background: #FFFFFF;
    padding: 24px;
    border-radius: 12px;
}

.pricing-price-wrapper .pricing-plan {
    margin: 0;
}

.pricing-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.pricing-price-wrapper .pricing-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.pricing-price-wrapper .pricing-toggle {
    width: auto;
    flex-shrink: 0;
}

.pricing-right {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    background: #FFFFFF;
    border-radius: 16px;
    margin: 0;
    overflow: hidden;
}

.pricing-plan {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #6366F1;
    background: #EEF2FF;
    padding: 8px 16px;
    border-radius: 8px;
    width: fit-content;
    margin: 0;
    box-shadow: 0 1px 3px rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin: 0;
    flex-shrink: 0;
}

.price-currency {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #0F0F0F;
}

.price-amount {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #0F0F0F;
    line-height: 1;
    letter-spacing: -0.02em;
}

.price-period {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #6B7280;
}

.pricing-toggle {
    display: flex;
    gap: 4px;
    background: transparent;
    padding: 0;
    border-radius: 8px;
    width: auto;
    align-items: center;
    flex-wrap: wrap;
}

.toggle-btn {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    background: #F3F4F6;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.toggle-btn.active {
    background: #0F0F0F;
    color: #FFFFFF;
    border-color: #0F0F0F;
    box-shadow: 0 4px 12px rgba(15, 15, 15, 0.25);
    transform: translateY(-1px);
}

.toggle-btn:hover:not(.active) {
    background: #E5E7EB;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-features {
    list-style: none;
    padding: 32px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.pricing-features li {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 14px;
    line-height: 150%;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pricing-features li i {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 16px;
}

.feature-included {
    color: #1F2937;
}

.feature-included i {
    color: #10B981;
}

.feature-excluded {
    color: #9CA3AF;
}

.feature-excluded i {
    color: #EF4444;
}

.pricing-cta {
    width: calc(100% - 64px);
    margin: 0 32px 32px 32px;
    padding: 14px 24px;
    background: #6F70FA;
    color: #FFFFFF;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.pricing-cta:hover {
    background: #5A5BCE;
}

/* FAQ Section */
.faq-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 24px;
    background: #F9FAFB;
}

.faq-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #EEF2FF;
    border-radius: 50px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #6F70FA;
}

.faq-badge i {
    font-size: 16px;
}

.faq-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    text-align: center;
    color: #0F0F0F;
    margin: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: #FFFFFF;
    border: none;
    cursor: pointer;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #0F0F0F;
    text-align: left;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: #F9FAFB;
}

.faq-question i {
    font-size: 18px;
    color: #0F0F0F;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 15px;
    line-height: 160%;
    color: #6B7280;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 24px;
    background: #FFFFFF;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    min-height: 600px;
    position: relative;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    height: fit-content;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    z-index: 1;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #EEF2FF;
    border-radius: 50px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #6F70FA;
    width: fit-content;
}

.contact-badge i {
    font-size: 16px;
}

.contact-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    color: #0F0F0F;
    margin: 0;
}

.contact-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 18px;
    line-height: 160%;
    color: #6B7280;
    margin: 0;
}

.contact-form-wrapper {
    background: #1F2937;
    padding: 40px;
    border-radius: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
}

.form-group input,
.form-group textarea {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 14px;
    padding: 14px 16px;
    border: none;
    border-radius: 12px;
    background: #374151;
    color: #9CA3AF;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: #4B5563;
    color: #FFFFFF;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6B7280;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    background: #6366F1; 
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-submit:hover {
    background: #4F46E5;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

/* Trusted By Section */
.trusted-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 24px;
    background: #F9FAFB;
}

.trusted-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.trusted-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #EEF2FF;
    border-radius: 50px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #6F70FA;
}

.trusted-badge i {
    font-size: 16px;
}

.trusted-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    text-align: center;
    color: #0F0F0F;
    margin: 0;
}

.trusted-title .mobile-br {
    display: none;
}

/* Carousels */
.logos-carousel-wrapper,
.agents-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 8px 0;
}

.logos-carousel-wrapper::before,
.logos-carousel-wrapper::after,
.agents-carousel-wrapper::before,
.agents-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.logos-carousel-wrapper::before,
.agents-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #F9FAFB, transparent);
}

.logos-carousel-wrapper::after,
.agents-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #F9FAFB, transparent);
}

.logos-carousel,
.agents-carousel {
    display: flex;
    gap: 16px;
    animation: scroll 20s linear infinite;
}

.logos-carousel:hover,
.agents-carousel:hover {
    animation-play-state: paused;
}

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

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-arrow:hover {
    background: #F9FAFB;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-arrow.left {
    left: 0;
}

.carousel-arrow.right {
    right: 0;
}

.carousel-arrow i {
    font-size: 16px;
    color: #0F0F0F;
}

/* Logo Cards */
.logo-card {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: #FFFFFF;
    border-radius: 8px;
    min-width: 120px;
    border: 1px solid #F3F4F6;
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 20px;
}

.logo-name {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #0F0F0F;
    text-align: center;
}

/* Agent Cards */
.agent-card {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #FFFFFF;
    border-radius: 8px;
    min-width: 160px;
    border: 1px solid #F3F4F6;
}

.agent-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.agent-avatar i {
    font-size: 18px;
    color: #6B7280;
}

.agent-name {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #0F0F0F;
}

/* About Product Section */
.about-product-section {
    padding: 40px 24px 120px 24px;
    background: #FFFFFF;
}

.about-product-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-product-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #EEF2FF;
    border-radius: 50px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #7366F0;
    margin-bottom: 24px;
}

.about-product-badge i {
    font-size: 16px;
}

.about-product-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 800;
    font-size: 72px;
    line-height: 105%;
    color: #000000;
    margin: 0 0 16px 0;
    letter-spacing: -2px;
}

.about-product-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 20px;
    line-height: 150%;
    color: #6B7280;
    margin: 0 0 48px 0;
    font-weight: 400;
    max-width: 700px;
}

.about-product-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.about-product-intro {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 18px;
    line-height: 175%;
    color: #1F2937;
    margin: 0;
    text-align: center;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

.about-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 16px;
}

.about-product-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 32px;
    background: #F9FAFB;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.about-product-feature:hover {
    background: #F3F4F6;
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #818CF8 0%, #7366F0 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon i {
    font-size: 28px;
    color: #FFFFFF;
}

.feature-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    color: #000000;
    margin: 0 0 12px 0;
}

.feature-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 15px;
    line-height: 170%;
    color: #6B7280;
    margin: 0;
}

@media (max-width: 968px) {
    .about-product-title {
        font-size: 48px;
        letter-spacing: -1px;
    }
    
    .about-product-subtitle {
        font-size: 18px;
    }
    
    .about-product-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .about-product-section {
        padding: 80px 20px;
    }
    
    .about-product-title {
        font-size: 36px;
    }
    
    .about-product-subtitle {
        font-size: 16px;
    }
    
    .about-product-intro {
        font-size: 16px;
    }
    
    .about-product-feature {
        padding: 32px 24px;
    }
}

.about-hero-section {
    padding: 40px 24px 80px 24px;
    background: #FFFFFF;
}

.about-hero-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #EEF2FF;
    border-radius: 50px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #7366F0;
    margin-bottom: 32px;
}

.about-hero-badge i {
    font-size: 16px;
}

.about-hero-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 800;
    font-size: 72px;
    line-height: 105%;
    color: #000000;
    margin: 0 0 32px 0;
    letter-spacing: -2px;
    max-width: 1100px;
    text-align: center;
}

.about-hero-title .desktop-title {
    display: block;
}

.about-hero-title .mobile-title {
    display: none;
}

.about-hero-title .no-break {
    white-space: nowrap;
    position: relative;
    left: -40px;
}

.about-hero-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 22px;
    line-height: 150%;
    color: #1F2937;
    margin: 0 0 24px 0;
    font-weight: 500;
    max-width: 900px;
    text-align: center;
}

.about-hero-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 18px;
    line-height: 175%;
    color: #4B5563;
    margin: 0;
    font-weight: 400;
    max-width: 1050px;
    text-align: center;
    letter-spacing: 0.2px;
    opacity: 0.95;
}

@media (max-width: 968px) {
    .about-hero-title {
        font-size: 48px;
        letter-spacing: -1px;
    }
    
    .about-hero-title .no-break {
        white-space: normal;
    }
    
    .about-hero-description {
        font-size: 20px;
    }
    
    .about-hero-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        padding: 80px 20px;
    }
    
    .about-hero-title {
        font-size: 36px;
    }
    
    .about-hero-description {
        font-size: 18px;
    }
    
    .about-hero-text {
        font-size: 15px;
    }
}

/* End About Hero */

/* Vision Section */
.vision-section {
    background-color: #111827;
    padding: 60px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    margin: 40px auto;
    max-width: 1200px;
}

.vision-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    z-index: 1;
}

.vision-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.vision-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #6366F1;
    border-radius: 50px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #FFFFFF;
    width: fit-content;
}

.vision-badge i {
    font-size: 16px;
}

.vision-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 800;
    font-size: 56px;
    line-height: 110%;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: -1.5px;
}

.vision-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 17px;
    line-height: 180%;
    color: #D1D5DB;
    margin: 0;
    font-weight: 400;
    max-width: 800px;
}

.vision-logo-watermark {
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 900px;
    height: auto;
    opacity: 0.05;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    filter: brightness(0) invert(1);
}

@media (max-width: 968px) {
    .vision-section {
        padding: 80px 40px;
        margin: 40px 20px;
    }
    
    .vision-title {
        font-size: 42px;
    }
    
    .vision-logo-watermark {
        width: 400px;
        right: -50px;
    }
}

@media (max-width: 480px) {
    .vision-section {
        padding: 60px 24px;
        margin: 20px 16px;
        border-radius: 24px;
    }
    
    .vision-title {
        font-size: 32px;
        letter-spacing: -1px;
    }
    
    .vision-text {
        font-size: 16px;
    }
    
    .vision-logo-watermark {
        width: 300px;
        right: -80px;
    }
}

/* End Vision Section */

/* Mission Section */
.mission-section {
    padding: 80px 24px 40px 24px;
    background: #FFFFFF;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #F5F6F8;
    border-radius: 40px;
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.mission-content-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.mission-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #E4E1FF;
    border-radius: 50px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #6366F1;
    width: fit-content;
}

.mission-badge i {
    font-size: 16px;
    color: #6366F1;
}

.mission-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    color: #0F0F0F;
    margin: 0;
}

.mission-title .highlight {
    color: #6060FF;
}

.mission-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 18px;
    line-height: 160%;
    color: #4B5563;
    margin: 0;
}

.mission-content-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease;
}

.mission-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
}

.mission-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.mission-icon i {
    font-size: 20px;
    color: #6366F1;
}

.mission-card-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 150%;
    color: #0F0F0F;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 968px) {
    .mission-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
        border-radius: 24px;
    }

    .mission-content-left {
        position: static;
    }

    .mission-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .mission-section {
        padding: 60px 20px;
    }

    .mission-container {
        padding: 24px;
    }

    .mission-title {
        font-size: 28px;
    }

    .mission-description {
        font-size: 16px;
    }
}

/* Team Section */
.team-section {
    background: #FFFFFF;
    padding: 40px 24px 100px 24px;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #E4E1FF;
    border-radius: 50px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #6366F1;
    margin-bottom: 24px;
}

.team-badge i {
    font-size: 16px;
    color: #6366F1;
}

.team-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 120%;
    color: #2A2A2A;
    margin: 0 0 24px 0;
    max-width: 900px;
}

.team-title .highlight {
    color: #6060FF;
}

.team-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 17px;
    line-height: 170%;
    color: #5A5A5A;
    margin: 0 0 64px 0;
    max-width: 1050px;
    opacity: 0.95;
}

.team-description strong {
    font-weight: 600;
    color: #0F0F0F;
}

.team-cards {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 1100px;
}

.team-card {
    align-items: center;
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.team-image {
    width: 100%;
    aspect-ratio: 1 / 1.2;
    overflow: hidden;
    background: #E5E7EB;
}

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

.team-info {
    padding: 24px;
    text-align: left;
}

.team-name {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #0F0F0F;
    margin: 0 0 8px 0;
}

.team-role {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 14px;
    color: #7A7A7A;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 968px) {
    .team-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .team-title {
        font-size: 40px;
    }

    .team-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 60px 20px;
    }

    .team-title {
        font-size: 32px;
    }

    .team-description {
        font-size: 15px;
        margin-bottom: 40px;
    }
}

/* Registration Section */
.registration-section {
    background: #FFFFFF;
    padding: 80px 80px;
}

.registration-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.registration-content-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.registration-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #E4E1FF;
    border-radius: 50px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #6366F1;
    width: fit-content;
}

.registration-badge i {
    font-size: 16px;
    color: #6366F1;
}

.registration-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    color: #0F0F0F;
    margin: 0;
}

.registration-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 18px;
    line-height: 160%;
    color: #7A7A7A;
    margin: 0;
    white-space: nowrap;
}

.registration-content-right {
    display: flex;
    justify-content: center;
}

.registration-form-card {
    background: #F5F6F8;
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.registration-form label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #0F0F0F;
}

.registration-form input,
.registration-form select {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 15px;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    background: #FFFFFF;
    color: #0F0F0F;
    transition: all 0.2s ease;
    outline: none;
}

.registration-form input::placeholder {
    color: #9CA3AF;
}

.registration-form input:focus,
.registration-form select:focus {
    border-color: #6366F1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    appearance: none;
    cursor: pointer;
    padding-right: 40px;
}

.select-wrapper .select-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6B7280;
    font-size: 12px;
    pointer-events: none;
}

.btn-register {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    background: #6366F1;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-register:hover {
    background: #4F46E5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

@media (max-width: 968px) {
    .registration-section {
        padding: 60px 40px;
    }

    .registration-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .registration-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .registration-section {
        padding: 60px 20px;
    }

    .registration-form-card {
        padding: 24px;
    }

    .registration-title {
        font-size: 28px;
    }

    .registration-description {
        font-size: 16px;
    }
}

/* Legal Pages Styles */
.legal-section {
    background: #FFFFFF;
    padding: 40px 80px 80px 80px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #E4E1FF;
    border-radius: 50px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #6366F1;
    margin-bottom: 24px;
}

.legal-badge i {
    font-size: 16px;
    color: #6366F1;
}

.legal-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    color: #0F0F0F;
    margin: 0 0 16px 0;
}

.legal-updated {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 16px;
    color: #7A7A7A;
    margin: 0;
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.legal-block h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    color: #0F0F0F;
    margin: 0 0 16px 0;
}

.legal-block h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    color: #0F0F0F;
    margin: 24px 0 12px 0;
}

.legal-block p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 180%;
    color: #4A4A4A;
    margin: 0 0 16px 0;
}

.legal-block ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-block ul li {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 180%;
    color: #4A4A4A;
    margin-bottom: 8px;
}

@media (max-width: 968px) {
    .legal-section {
        padding: 40px 40px 60px 40px;
    }

    .legal-title {
        font-size: 36px;
    }

    .legal-block h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .legal-section {
        padding: 40px 20px 40px 20px;
    }

    .legal-title {
        font-size: 28px;
    }

    .legal-block h2 {
        font-size: 18px;
    }

    .legal-block p,
    .legal-block ul li {
        font-size: 14px;
    }
}

/* About Features Section */
.about-features-section {
    padding: 80px 24px;
    background: #FFFFFF;
}

.about-features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-features-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

.about-features-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #EEF2FF;
    border-radius: 50px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #6F70FA;
    margin-bottom: 16px;
}

.about-features-badge i {
    font-size: 16px;
}

.about-features-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    color: #0F0F0F;
    margin: 0;
}

.about-features-title .title-highlight {
    color: #6366F1;
}

.about-feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 48px;
    background: #F9FAFB;
    border-radius: 24px;
    margin-bottom: 32px;
}

.about-feature-showcase:last-child {
    margin-bottom: 0;
}

.about-feature-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 20px;
}

.about-feature-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 130%;
    color: #0F0F0F;
    margin: 0;
}

.about-feature-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 15px;
    line-height: 160%;
    color: #6B7280;
    margin: 0;
}

.about-feature-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.about-feature-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 968px) {
    .about-feature-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 32px;
    }

    .about-feature-content {
        padding-right: 0;
        text-align: center;
    }

    .about-feature-title {
        font-size: 24px;
    }

    .about-feature-description {
        font-size: 14px;
    }

    .about-feature-image {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .about-feature-showcase {
        padding: 24px;
        gap: 32px;
    }

    .about-feature-title {
        font-size: 22px;
    }

    .about-feature-image {
        padding: 20px;
    }
}

/* Download App Section */
.download-section {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    padding: 40px 24px 0 24px;
    overflow: hidden;
    border-radius: 32px;
    margin: 0 24px 80px 24px;
}

.download-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.download-content {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.download-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    color: #FFFFFF;
    margin: 0 0 32px 0;
}

.download-title .mobile-br-download {
    display: none;
}

.download-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: #000000;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #000000;
}

.store-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.store-button i {
    font-size: 32px;
    color: #FFFFFF;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-name {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.2;
}

.download-phone {
    flex: 0 0 auto;
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
    background: transparent;
}

.samsung-s24 {
    position: relative;
    width: 300px;
    height: 600px;
    background: #2c2c2c;
    border-radius: 30px;
    box-shadow: inset 0 0 0 8px #1a1a1a, inset 0 0 0 10px #0d0d0d, 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.samsung-s24 .camera-punch {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #0a0a0a;
    border-radius: 50%;
    z-index: 5;
    box-shadow: 0 0 0 2px #2c2c2c;
}

.samsung-s24 .camera-punch::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #1a4d6b;
    border-radius: 50%;
}

.samsung-s24 .power-button {
    position: absolute;
    top: 180px;
    right: -3px;
    width: 3px;
    height: 60px;
    background: #1a1a1a;
    border-radius: 0 2px 2px 0;
}

.samsung-s24 .volume-buttons {
    position: absolute;
    top: 120px;
    left: -3px;
    width: 3px;
    height: 100px;
    background: #1a1a1a;
    border-radius: 2px 0 0 2px;
}

.samsung-s24 .screen {
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
}

.samsung-s24 .screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    background: #F9FAFB;
    padding: 80px 24px 40px 24px;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand {
    padding-top: 8px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: #6366F1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 24px;
}

.footer-logo-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #0F0F0F;
    letter-spacing: 1px;
}

.footer-heading {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #0F0F0F;
    margin: 0 0 12px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 14px;
    color: #6B7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links li a:hover {
    color: #6366F1;
}

.footer-watermark {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px auto 0 auto;
    pointer-events: none;
}

.footer-watermark-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    opacity: 0.9;
    object-fit: contain;
    display: block;
}

/* Responsive for Pricing Section */
@media (max-width: 968px) {
    .container {
        padding: 0 20px;
    }

    .nav-wrapper {
        padding: 8px 16px;
        gap: 20px;
    }

    .nav-menu {
        display: none;
    }
    
    .mobile-nav-menu {
        top: 95px;
    }

    .hero {
        padding: 40px 40px 0px;
        height: auto;
        margin-bottom: 20px;
    }
    
    .hero-container {
        height: auto;
        width: 100%;
    }

    .hero-title {
        font-size: 36px;
        line-height: 120%;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .dashboard-section {
        width: 100%;
        padding: 40px 20px;
    }

    .dashboard-container {
        padding: 40px 20px;
    }
    
    .dashboard-image {
        border-radius: 20px;
    }

    .about-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-title {
        font-size: 36px;
    }
    
    .about-product-section {
        padding: 60px 40px;
    }

    .features-title {
        font-size: 36px;
    }

    .features-grid-top,
    .features-grid-bottom,
    .features-grid-third {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-card {
        padding: 28px 24px;
    }

    .pricing-section {
        padding: 60px 40px;
    }

    .pricing-card {
        flex-direction: column;
    }
    
    .pricing-left {
        min-width: auto;
        width: 100%;
        position: relative;
    }
    
    .pricing-title {
        font-size: 36px;
    }
    
    .faq-section {
        padding: 60px 40px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-title {
        font-size: 36px;
    }

    .contact-section {
        padding: 60px 40px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-title {
        font-size: 36px;
    }
    
    .trusted-section {
        padding: 60px 40px;
    }
    
    .trusted-title {
        font-size: 36px;
    }
    
    .download-section {
        margin: 0 16px 60px 16px;
        padding: 30px 20px 0 20px;
    }
    
    .download-container {
        flex-direction: column;
        text-align: center;
    }
    
    .download-content {
        max-width: 100%;
    }
    
    .download-title {
        font-size: 28px;
    }
    
    .download-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }
    
    .store-button {
        width: 100%;
        justify-content: center;
    }

    .download-phone {
        height: 320px;
    }

    .samsung-s24 {
        width: 240px;
        height: 480px;
    }
    
    .footer {
        padding: 60px 24px 40px 24px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .footer-watermark-img {
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 8px 12px;
        gap: 10px;
        height: auto;
        min-height: 60px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: 20px;
    }
    
    .mobile-nav-menu {
        top: 85px;
        padding: 20px;
    }
    
    .mobile-nav-link {
        font-size: 16px;
        padding: 14px 16px;
    }

    .auth-buttons {
        gap: 8px;
    }

    .btn-login,
    .btn-signup {
        font-size: 13px;
        padding: 8px 12px;
    }

    .hero {
        margin-top: 80px;
        padding: 40px 20px 40px 20px;
        height: auto;
        margin-bottom: 0;
    }

    .hero-container {
        height: auto;
        gap: 16px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 120%;
    }

    .hero-description {
        font-size: 14px;
        line-height: 160%;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 14px;
        padding: 12px 20px;
        width: 100%;
    }

    .dashboard-section {
        padding: 40px 20px 60px 20px;
    }

    .dashboard-container {
        padding: 0;
    }
    
    .dashboard-image {
        border-radius: 16px;
    }
    
    .about-hero-section {
        padding: 40px 24px 70px 24px;
    }

    .about-hero-badge {
        padding: 8px 18px;
        font-size: 13px;
        margin-bottom: 28px;
    }

    .about-hero-title {
        font-size: 32px;
        line-height: 120%;
        margin-bottom: 24px;
        letter-spacing: -1px;
        font-weight: 800;
        word-break: keep-all;
        hyphens: none;
    }
    
    .about-hero-title .desktop-title {
        display: none;
    }
    
    .about-hero-title .mobile-title {
        display: block;
    }
    
    .about-hero-title .mobile-title br {
        display: block;
    }
    
    .about-hero-description {
        font-size: 17px;
        line-height: 155%;
        margin-bottom: 20px;
        font-weight: 500;
        color: #1F2937;
    }
    
    .about-hero-text {
        font-size: 15px;
        line-height: 175%;
        color: #6B7280;
        font-weight: 400;
        letter-spacing: 0.3px;
    }
    
    .about-product-section {
        padding: 40px 20px;
    }

    .about-title {
        font-size: 28px;
    }
    
    .mission-section {
        padding: 40px 20px;
    }
    
    .mission-title {
        font-size: 28px;
    }
    
    .mission-description {
        font-size: 14px;
    }
    
    .team-section {
        padding: 40px 20px;
    }
    
    .team-title {
        font-size: 28px;
    }

    .features-section {
        padding: 40px 20px;
    }

    .features-title {
        font-size: 28px;
    }

    .feature-title {
        font-size: 18px;
    }
    
    .feature-card {
        padding: 24px 20px;
    }

    .pricing-section {
        padding: 40px 20px;
    }
    
    .pricing-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .pricing-left {
        position: relative;
        top: 0;
        width: 100%;
        z-index: auto !important;
    }
    
    .pricing-title {
        font-size: 24px;
    }

    .pricing-price-wrapper {
        padding: 20px;
    }

    .pricing-price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .price-amount {
        font-size: 32px;
    }

    .pricing-toggle {
        width: 100%;
        gap: 8px;
    }

    .toggle-btn {
        font-size: 11px;
        padding: 8px 12px;
    }

    .pricing-features {
        font-size: 13px;
    }
    
    .faq-section {
        padding: 40px 20px;
    }
    
    .faq-title {
        font-size: 24px;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 16px;
    }
    
    .faq-answer p {
        font-size: 13px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 16px 16px 16px;
    }

    .contact-section {
        padding: 40px 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .contact-content {
        position: relative;
        top: 0;
        z-index: auto;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .contact-title {
        font-size: 24px;
    }
    
    .contact-description {
        font-size: 14px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
        padding: 14px;
    }
    
    .contact-submit {
        padding: 14px;
        font-size: 14px;
    }
    
    .trusted-section {
        padding: 40px 20px;
    }
    
    .trusted-title {
        font-size: 24px;
    }
    
    .trusted-title .mobile-br {
        display: block;
    }
    
    .logos-carousel-wrapper,
    .agents-carousel-wrapper {
        padding: 0 20px;
    }
    
    .logo-card,
    .agent-card {
        min-width: 140px;
    }

    .download-section {
        margin: 0 12px 40px 12px;
        padding: 24px 16px 0 16px;
    }
    
    .download-title {
        font-size: 22px;
        margin-bottom: 24px;
    }
    
    .download-title .mobile-br-download {
        display: inline;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .store-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 20px;
    }

    .download-phone {
        height: 280px;
    }
    
    .samsung-s24 {
        width: 200px;
        height: 400px;
    }
    
    .registration-section {
        padding: 40px 20px;
    }
    
    .registration-title {
        font-size: 24px;
    }
    
    .registration-description {
        font-size: 14px;
        white-space: normal;
    }
    
    .registration-form-card {
        padding: 28px 20px;
    }
    
    .registration-form input,
    .registration-form select {
        font-size: 14px;
        padding: 14px;
    }
    
    .btn-register {
        font-size: 14px;
        padding: 14px;
    }
    
    .legal-section {
        padding: 40px 20px;
    }
    
    .legal-title {
        font-size: 24px;
    }
    
    .legal-block h2 {
        font-size: 18px;
    }
    
    .legal-block h3 {
        font-size: 16px;
    }
    
    .legal-block p,
    .legal-block ul li {
        font-size: 14px;
    }
    
    .footer {
        padding: 40px 20px 30px 20px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    .footer-logo-text {
        font-size: 20px;
    }
    
    .footer-heading {
        font-size: 14px;
    }
    
    .footer-links li a {
        font-size: 13px;
    }
    
    .footer-watermark {
        margin: 40px auto 0 auto;
    }
    
    .footer-watermark-img {
        max-width: 400px;
    }
    }

    .footer-heading {
        font-size: 16px;
    }

    .footer-links {
        font-size: 13px;
    }

/* Index Vision Section */
.index-vision-section {
    background-color: #1E293B;
    padding: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
}

.index-vision-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.index-vision-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #6366F1;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #FFFFFF;
}

.index-vision-badge i {
    font-size: 16px;
}

.index-vision-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 56px;
    line-height: 130%;
    text-align: center;
    letter-spacing: -0.02em;
    margin: 0;
}

.index-vision-text .text-white {
    color: #FFFFFF;
    display: inline;
}

.index-vision-text .text-grey {
    color: #6B7280;
    display: inline;
}

@media (max-width: 768px) {
    .index-vision-section {
        padding: 40px 24px;
    }
    
    .index-vision-text {
        font-size: 28px;
    }
}

/* ------------------------- */
/* CONTACT MODAL (GLOBAL)    */
/* ------------------------- */

.contact-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    font-family: inherit;
}

.contact-modal.show {
    display: flex;
}

.contact-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
}

.contact-modal-content {
    position: relative;
    z-index: 2;
    max-width: 420px;
    width: 90%;
    padding: 26px 24px;
    border-radius: 16px;
    background: #0c1218;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
    color: #f1f1f1;
    animation: modalFadeIn 0.25s ease-out;
}

/* color border for success/error */
.contact-modal-content.success {
    border-left: 25px solid #4ade80; /* green */
}

.contact-modal-content.error {
    border-left: 25px solid #f87171; /* red */
}

.contact-modal-content h3 {
    margin: 0 0 10px;
    font-size: 19px;
    font-weight: 600;
}

.contact-modal-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #d4d4d4;
}

.contact-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    border: none;
    background: transparent;
    color: #a0a0a0;
    font-size: 24px;
    cursor: pointer;
    transition: 0.2s;
}

.contact-modal-close:hover {
    color: #ffffff;
}

/* Animation */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* ------------------------- */
/* CONTACT FORM (STYLING)    */
/* ------------------------- */

.contact-form {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form .form-group label {
    font-size: 14px;
    color: #d9d9d9;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    background: #0f1722;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 15px;
    color: #ffffff;
    transition: 0.2s;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: #3b82f6;
    outline: none;
}

.contact-submit {
    padding: 12px 20px;
    background: #6F70FA;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.25s;
}

.contact-submit:hover {
    transform: translateY(-1px);
    background: #5A5BCE;
}


/* ------------------------- */
/* MOBILE RESPONSIVE CSS     */
/* ------------------------- */

@media (max-width: 768px) {

    .contact-section {
        padding: 40px 20px;
    }

    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-title {
        font-size: 24px;
        text-align: center;
    }

    .contact-description {
        text-align: center;
        font-size: 15px;
    }

    .contact-form .form-group input,
    .contact-form .form-group textarea {
        font-size: 14px;
        padding: 11px 12px;
    }

    .contact-submit {
        font-size: 15px;
        padding: 12px;
    }

    /* Modal adjustments */
    .contact-modal-content {
        max-width: 360px;
        width: 88%;
        padding: 22px 20px;
        border-radius: 14px;
    }

    .contact-modal-content h3 {
        font-size: 17px;
    }

    .contact-modal-content p {
        font-size: 14px;
    }

    .contact-modal-close {
        font-size: 22px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .contact-modal-content {
        width: 90%;
        padding: 20px 18px;
    }

    .contact-modal-content h3 {
        font-size: 16px;
    }

    .contact-modal-content p {
        font-size: 13px;
    }

    .contact-submit {
        font-size: 14px;
        padding: 10px;
    }
}

.btn-register.loading {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    background: #1e40af !important;
}

.btn-register:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Button Loading State */
.contact-submit {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: 0.25s ease-in-out;
}

.contact-submit.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Loader hidden by default */
.btn-loader {
    display: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

/* Show loader when loading */
.contact-submit.loading .btn-loader {
    display: inline-block;
}

/* Hide text during loading */
.contact-submit.loading .btn-text {
    opacity: 0;
}

/* Spinner animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Button Loading State */
.btn-register,
.contact-submit {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: 0.25s ease-in-out;
}

.btn-register.loading,
.contact-submit.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Loader hidden by default */
.btn-loader {
    display: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

/* Show loader when loading */
.btn-register.loading .btn-loader,
.contact-submit.loading .btn-loader {
    display: inline-block;
}

/* Hide text during loading */
.btn-register.loading .btn-text,
.contact-submit.loading .btn-text {
    opacity: 0;
}

/* Spinner Animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
