/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
}

button {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    /* Ensure all buttons use Inter with fallbacks */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utility Classes */
.gradient-text {
    background: linear-gradient(to right, #3a64ed, #213cb6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #d5e7ff;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(to bottom right, #3a64ed, #213cb6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

.logo-text-footer {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #3a64ed;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-login {
    display: none;
    padding: 8px 16px;
    color: #3a64ed;
    background: none;
    border: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    font-size: 16px;
    /* Explicit font size for consistency */
    cursor: pointer;
    transition: color 0.2s;
}

@media (min-width: 768px) {
    .btn-login {
        display: block;
    }
}

.btn-login:hover {
    color: #213cb6;
}

.btn-primary {
    padding: 8px 24px;
    background: linear-gradient(to right, #3a64ed, #213cb6);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    font-size: 16px;
    /* Explicit font size for consistency */
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(to right, #213cb6, #1d3395);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(to bottom right, #faf5ff, #ffffff, #faf5ff);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #d5e7ff;
    border-radius: 50px;
    color: #213cb6;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    gap: 8px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 64px;
    }
}

.hero-description {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-download {
    padding: 16px 32px;
    background: linear-gradient(to right, #3a64ed, #213cb6);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-download:hover {
    background: linear-gradient(to right, #213cb6, #1d3395);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-demo {
    padding: 16px 32px;
    background: none;
    color: #213cb6;
    border: 2px solid #d5e7ff;
    border-radius: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-demo:hover {
    background: #e8ecff;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    font-size: 14px;
    color: #6b7280;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat i {
    color: #10b981;
}

.stat i.fa-clock {
    color: #3b82f6;
}

.stat i.fa-users {
    color: #3a64ed;
}

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #d5e7ff;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(58, 91, 237, 0.2), rgba(33, 73, 182, 0.2));
    border-radius: 16px;
}

.status-indicator {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 500;
    color: #374151;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
}

.bottom-panel {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 16px;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.panel-header i {
    color: #3a64ed;
}

.panel-text {
    font-size: 12px;
    color: #6b7280;
}

.bg-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.decoration-1 {
    top: -40px;
    right: -40px;
    width: 80px;
    height: 80px;
    background: #d5e7ff;
}

.decoration-2 {
    bottom: -40px;
    left: -40px;
    width: 64px;
    height: 64px;
    background: #d6ddfe;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(to bottom right, #f9fafb, #faf5ff);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 48px;
    }
}

.section-description {
    font-size: 20px;
    color: #6b7280;
    max-width: 768px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    position: relative;
    padding: 32px;
    background: white;
    border-radius: 24px;
    border: 1px solid #f3f4f6;
    transition: all 0.5s;
    cursor: pointer;
    overflow: hidden;
}

.feature-card:hover {
    border-color: #d5e7ff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-8px);
}

.feature-card:hover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(58, 91, 237, 0.05), rgba(91, 33, 182, 0.05));
    border-radius: 24px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: transform 0.3s;
    background: #e9ebfe;
    color: #3a64ed;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon.yellow,
.feature-icon.green,
.feature-icon.blue,
.feature-icon.purple,
.feature-icon.pink,
.feature-icon.indigo {
    background: #e9ebfe;
    color: #3a64ed;
}

.feature-title {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.feature-description {
    position: relative;
    color: #6b7280;
    line-height: 1.6;
}

.feature-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #3a64ed, #213cb6);
    border-radius: 0 0 24px 24px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

.feature-card:hover .feature-border {
    transform: scaleX(1);
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-content {
        order: 2;
    }

    .about-image {
        order: 1;
    }
}

.about-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #d5e7ff;
    border-radius: 50px;
    color: #213cb6;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    gap: 8px;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

@media (min-width: 1024px) {
    .about-title {
        font-size: 48px;
    }
}

.about-description {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.about-features {
    margin-bottom: 32px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: #d5e7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    flex-shrink: 0;
}

.check-icon i {
    color: #3a64ed;
    font-size: 12px;
}

.about-feature h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.about-feature p {
    color: #6b7280;
}

.about-stats {
    display: flex;
    gap: 32px;
    font-size: 14px;
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon.green {
    background: #d1fae5;
    color: #10b981;
}

.stat-icon.blue {
    background: #dbeafe;
    color: #3b82f6;
}

.stat-number {
    font-weight: 600;
    color: #111827;
}

.stat-label {
    color: #6b7280;
}

.about-image {
    position: relative;
}

.about-image-container {
    position: relative;
    z-index: 10;
}

.about-image-container img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.about-decoration.decoration-1 {
    top: -40px;
    right: -40px;
    width: 128px;
    height: 128px;
    background: #d5e7ff;
}

.about-decoration.decoration-2 {
    bottom: -40px;
    left: -40px;
    width: 96px;
    height: 96px;
    background: #b5c0fd;
}

.about-decoration.decoration-3 {
    top: 50%;
    right: -20px;
    width: 64px;
    height: 64px;
    background: #b5c2fd;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(to bottom right, #faf5ff, #ffffff);
}

.faq-container {
    max-width: 1024px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.faq-question:hover {
    border-color: #d5e7ff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.faq-question:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(58, 91, 237, 0.5);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: #e8ecff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.faq-icon i {
    color: #3a64ed;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    padding-left: 24px;
}

.faq-item.active .faq-answer {
    max-height: 384px;
    margin-top: 16px;
    padding-left: 24px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #141414;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand {
    grid-column: span 2;
}

@media (min-width: 768px) {
    .footer-brand {
        grid-column: span 1;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.footer-description {
    color: #e0e0e0;
    margin-bottom: 24px;
    max-width: 384px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #272727;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.2s;
}

.social-link:hover {
    background: #3a64ed;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #acacac;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright {
    color: #a7a7a7;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-title {
        font-size: 28px;
    }

    .hero-buttons {
        align-items: stretch;
    }

    .about-stats {
        flex-direction: column;
        gap: 16px;
    }
}