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

:root {
    --primary: #2641C2;
    --primary-light: #A9B8FF;
    --gray-light: #F1F4FF;
    --black: #1B1B1B;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Gandom, system-ui, -apple-system, sans-serif;
    direction: rtl;
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
}

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

.section-content {
    position: relative;
    z-index: 10;
}

/* Background Images */
.bg-image {
    position: absolute;
    inset: 0;
}

.bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(5px);
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
}

.bg-overlay-light {
    position: absolute;
    inset: 0;
    background: rgba(241, 244, 255, 0.8);
}

.bg-overlay-blue {
    position: absolute;
    inset: 0;
    background: rgba(38, 65, 194, 0.8);
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, var(--gray-light) 1px, transparent 1px),
        linear-gradient(to bottom, var(--gray-light) 1px, transparent 1px);
    background-size: 4rem 4rem;
    opacity: 0.3;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: bold;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(38, 65, 194, 0.3);
}

.btn-primary:hover {
    background: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(27, 27, 27, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid rgba(38, 65, 194, 0.2);
}

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

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

.btn-white:hover {
    background: var(--black);
    color: var(--white);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--white);
    color: var(--white);
}

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

.btn-submit {
    width: 100%;
    background: var(--black);
    color: var(--white);
    justify-content: center;
}

.btn-submit:hover {
    background: var(--primary);
}

/* Header */
header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(241, 244, 255, 0.5);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--gray-light);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    display: block;
    width: 120px;
    height: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border-top: 1px solid var(--gray-light);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.75rem 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}

/* Hero Section */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(38, 65, 194, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    width: fit-content;
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.2;
}

.hero-content h1 .text-primary {
    display: block;
    color: var(--primary);
    margin-top: 0.5rem;
}

.hero-content h1 .subtitle {
    display: block;
    font-size: 2rem;
    color: rgba(27, 27, 27, 0.8);
    margin-top: 1rem;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(27, 27, 27, 0.7);
    max-width: 40rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-light);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(27, 27, 27, 0.6);
    margin-top: 0.25rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 32rem;
    margin: 0 auto;
}

.visual-circle {
    position: absolute;
    inset: 0;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

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

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-light);
    transition: transform 0.3s ease;
}

.floating-card:hover {
    transform: scale(1.05);
}

.card-1 { top: 0; right: 0; }
.card-2 { top: 25%; left: 0; }
.card-3 { bottom: 25%; right: 25%; }
.card-4 { bottom: 0; left: 25%; }

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 0.875rem;
    font-weight: bold;
    color: var(--black);
}

.card-subtitle {
    font-size: 0.75rem;
    color: rgba(27, 27, 27, 0.6);
    margin-top: 0.25rem;
}

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10rem;
    height: 10rem;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(38, 65, 194, 0.4);
    border: 3px solid var(--gray-light);
    padding: 2rem;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

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

.scroll-indicator span {
    font-size: 0.75rem;
    color: rgba(27, 27, 27, 0.5);
    font-weight: 500;
}

.scroll-indicator svg {
    color: var(--primary);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge, .section-badge-light {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(38, 65, 194, 0.1);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.section-badge-light {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 1rem;
}

.section-header .text-primary {
    display: block;
    color: var(--primary);
    margin-top: 0.5rem;
}

.section-header p {
    font-size: 1.25rem;
    color: rgba(27, 27, 27, 0.6);
}

/* Sections */
section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Trust Badges */
#trust-badges {
    background: var(--gray-light);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.partner-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.partner-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(38, 65, 194, 0.2);
}

.partner-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.partner-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.partner-label {
    font-size: 0.875rem;
    color: rgba(27, 27, 27, 0.7);
}

.trust-banner {
    max-width: 64rem;
    margin: 0 auto;
    background: var(--primary);
    border-radius: 2rem;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 20px 50px rgba(38, 65, 194, 0.3);
}

.trust-content {
    flex: 1;
    text-align: right;
    color: var(--white);
}

.trust-content h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.trust-content p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Features */
#features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(38, 65, 194, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gray-light);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.feature-card > p {
    color: rgba(27, 27, 27, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(27, 27, 27, 0.8);
    margin-bottom: 0.5rem;
}

.feature-list svg {
    color: var(--primary);
    flex-shrink: 0;
}

.cta-banner {
    max-width: 64rem;
    margin: 0 auto;
    background: var(--primary);
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    color: var(--white);
    box-shadow: 0 20px 50px rgba(38, 65, 194, 0.3);
}

.cta-banner h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services */
#services {
    background: var(--gray-light);
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: fit-content;
    margin: 0 auto 3rem;
}

.tab-btn {
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    border-radius: 0.75rem;
    font-weight: bold;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(27, 27, 27, 0.6);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(38, 65, 194, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 1.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(38, 65, 194, 0.15);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--gray-light);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.service-short {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.875rem;
    color: rgba(27, 27, 27, 0.7);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.services-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-text {
    color: rgba(27, 27, 27, 0.6);
}

/* About */
#about {
    background: var(--white);
}

.key-numbers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.key-number {
    text-align: center;
}

.key-number .number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.key-number .label {
    color: rgba(27, 27, 27, 0.7);
    font-weight: 600;
}

.timeline {
    max-width: 72rem;
    margin: 0 auto 5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.timeline-item {
    background: var(--primary);
    border-radius: 1.5rem;
    padding: 2rem;
    color: var(--white);
    position: relative;
}

.timeline-year {
    font-size: 4rem;
    font-weight: 900;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.timeline-item h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.timeline-item p {
    opacity: 0.9;
    line-height: 1.6;
}

.mission-box {
    max-width: 56rem;
    margin: 0 auto 5rem;
    background: var(--gray-light);
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
}

.mission-box svg {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.mission-box p {
    font-size: 1.5rem;
    color: var(--black);
    line-height: 1.8;
}

.mission-box strong {
    color: var(--primary);
}

.about-description {
    max-width: 56rem;
    margin: 0 auto 5rem;
}

.about-description p {
    font-size: 1.125rem;
    color: rgba(27, 27, 27, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-description strong {
    color: var(--primary);
}

.partners-section {
    max-width: 72rem;
    margin: 0 auto;
}

.partners-section h3 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: var(--black);
    margin-bottom: 3rem;
}

.partners-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.partner-item {
    background: var(--gray-light);
    border-radius: 1.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.partner-item:hover {
    box-shadow: 0 10px 30px rgba(38, 65, 194, 0.15);
}

.partner-icon-large {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.partner-count {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.partner-name {
    font-size: 0.875rem;
    color: rgba(27, 27, 27, 0.7);
}

/* Demo Form */
#demo {
    background: var(--primary);
    color: var(--white);
}

.demo-container {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 10;
}

.demo-info h2 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.demo-info h2 span {
    display: block;
}

.demo-info > p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.demo-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-icon {
    font-size: 2rem;
}

.benefit-item span:last-child {
    font-weight: 600;
    opacity: 0.9;
}

.contact-info {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-item svg {
    color: rgba(255, 255, 255, 0.8);
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.125rem;
    transition: opacity 0.3s ease;
}

.contact-item a:hover {
    opacity: 0.8;
}

.demo-form-wrapper {
    position: sticky;
    top: 6rem;
}

.demo-form-card {
    background: var(--white);
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.demo-form-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    color: var(--black);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(241, 244, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-privacy {
    font-size: 0.75rem;
    color: rgba(27, 27, 27, 0.6);
    text-align: center;
    margin-top: 1rem;
}

.form-privacy a {
    color: var(--primary);
    text-decoration: none;
}

.form-privacy a:hover {
    text-decoration: underline;
}

.success-message {
    text-align: center;
    padding: 3rem 2rem;
    animation: fadeIn 0.5s ease;
}

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

.success-icon {
    width: 5rem;
    height: 5rem;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.5s ease 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-icon svg {
    color: var(--white);
    stroke-width: 3;
}

.success-message h3 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 1rem;
}

.success-message p {
    color: rgba(27, 27, 27, 0.7);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-logo img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-company {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-col h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact span {
    font-size: 1.5rem;
}

.footer-contact div {
    flex: 1;
}

.footer-contact div > div:first-child {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.125rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container,
    .demo-container {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .demo-info h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .logo img {
        width: 90px;
    }
    
    .footer-logo img {
        width: 90px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h1 .subtitle {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .trust-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-banner h3 {
        font-size: 1.75rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .demo-benefits {
        grid-template-columns: 1fr;
    }
    
    .tabs {
        flex-direction: column;
        width: 100%;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .scroll-top-btn {
        bottom: 1rem;
        left: 1rem;
        width: 3rem;
        height: 3rem;
    }
    
    #mouse-follower {
        display: none;
    }
}

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

/* Loading Screen */
#loading-screen {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    text-align: center;
}

.loading-logo p {
    margin-top: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(38, 65, 194, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 27, 27, 0.4);
}

.scroll-top-btn svg {
    width: 24px;
    height: 24px;
}

/* Mouse Follower */
#mouse-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

#mouse-follower.active {
    opacity: 0.6;
}

#mouse-follower.hover {
    width: 50px;
    height: 50px;
    background: rgba(38, 65, 194, 0.1);
}

/* Icon Styling */
.card-icon i,
.feature-icon i,
.service-icon i,
.partner-icon i,
.partner-icon-large i,
.benefit-icon i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.partner-icon i,
.partner-icon-large i {
    width: 48px;
    height: 48px;
    stroke-width: 2;
    color: var(--primary);
}

.benefit-icon i {
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
}
