/* ========================================
   FLEX LLC - Smart Parking Systems
   HTML/CSS/JS Version
   ======================================== */

/* CSS Variables */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #0f172a;
    --background: #ffffff;
    --foreground: #0f172a;
    --muted: #f1f5f9;
    --muted-foreground: #64748b;
    --border: #e2e8f0;
    --radius: 0.625rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--foreground);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.hidden {
    display: none !important;
}

.text-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

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

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

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

.btn-white:hover {
    background: #f8fafc;
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

.btn-outline-transparent:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* Navigation */

.nav-actions .btn-outline {
    color: #000000 !important; 
    border: 1px solid #000000; 
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}


.nav-actions .btn-outline:hover {
    background-color: #000000;
    color: #ffffff !important;
}


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


.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .nav-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
    }
}

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

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;

    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--primary);
    background: #f8fafc;
}

.nav-link.active {
    color: var(--primary);
    background: #eff6ff;
}

.btn-login {
    display: none;
}

@media (min-width: 768px) {
    .btn-login {
        display: inline-flex;
    }
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: #475569;
    border-radius: var(--radius);
}

.mobile-menu-btn:hover {
    background: #f1f5f9;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem;
    border-top: 1px solid var(--border);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav .nav-link {
    padding: 0.75rem 1rem;
}

.mobile-nav .btn {
    margin-top: 0.5rem;
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234f46e5' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-grid {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    padding: 3rem 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 9999px;
    color: #bfdbfe;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 36rem;
    margin-bottom: 2rem;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1rem;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.875rem;
    color: #94a3b8;
}

.stat-divider {
    width: 1px;
    height: 3rem;
    background: #334155;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .hero-visual {
        display: block;
    }
}

.visual-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(6, 182, 212, 0.3) 100%);
    border-radius: var(--radius-xl);
    filter: blur(40px);
}

.visual-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.visual-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.visual-col-offset {
    padding-top: 2rem;
}

.visual-item {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid;
}

.visual-item svg {
    margin-bottom: 0.75rem;
}

.visual-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.visual-text {
    font-size: 0.875rem;
}

.visual-blue {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(96, 165, 250, 0.3);
}

.visual-blue .visual-text {
    color: #bfdbfe;
}

.visual-blue svg {
    color: #93c5fd;
}

.visual-green {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(52, 211, 153, 0.3);
}

.visual-green .visual-text {
    color: #a7f3d0;
}

.visual-green svg {
    color: #6ee7b7;
}

.visual-purple {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(167, 139, 250, 0.3);
}

.visual-purple .visual-text {
    color: #ddd6fe;
}

.visual-purple svg {
    color: #c4b5fd;
}

.visual-amber {
    background: rgba(245, 158, 11, 0.2);
    border-color: rgba(251, 191, 36, 0.3);
}

.visual-amber .visual-text {
    color: #fde68a;
}

.visual-amber svg {
    color: #fcd34d;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--muted);
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}
.inline-title {
    display: block;
    line-height: 1.4;
}

.text-with-logos {
    display: inline-flex;
    align-items: center; 
    gap: 8px;
    vertical-align: middle;
}

.title-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
    transform: translateY(-2px); 
    display: inline-block;
}
@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: #bfdbfe;
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}

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

.feature-icon-blue {
    background: #dbeafe;
    color: var(--primary);
}

.feature-icon-green {
    background: #d1fae5;
    color: #059669;
}

.feature-icon-purple {
    background: #ede9fe;
    color: #7c3aed;
}

.feature-icon-amber {
    background: #fef3c7;
    color: #d97706;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: white;
}

.steps-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 640px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step {
    position: relative;
}

.step-number {
    font-size: 3.75rem;
    font-weight: 700;
    color: #dbeafe;
    margin-bottom: 1rem;
    line-height: 1;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.step-line {
    display: none;
    position: absolute;
    top: 2rem;
    left: 100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #bfdbfe, transparent);
}

@media (min-width: 1024px) {
    .step-line {
        display: block;
    }
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--muted);
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--border);
}

.pricing-highlighted {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.pricing-highlighted .pricing-desc {
    color: #bfdbfe;
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.25rem;
    font-weight: 700;
}

.period {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.pricing-highlighted .period {
    color: #bfdbfe;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.pricing-features svg {
    color: #10b981;
    flex-shrink: 0;
}

.pricing-highlighted .pricing-features svg {
    color: #bfdbfe;
}

/* CTA Section */
.cta {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234f46e5' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-description {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

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

/* Footer */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 3rem 0 0;
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

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

.footer .logo-text {
    color: white;
    
}

.footer .logo-icon {
    background: transparent; 
    padding: 0;
}

.footer-about {
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 20rem;
}



.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

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

.footer-links a,
.footer-links span {
    font-size: 0.875rem;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #60a5fa;
}

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

.footer-contact svg {
    color: #60a5fa;
    flex-shrink: 0;
}

.footer-contact a {
    font-size: 0.875rem;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #64748b;
}


/* Page Hero */
.page-hero {
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
}

.page-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234f46e5' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.page-hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .page-hero-title {
        font-size: 3rem;
    }
}

.page-hero-description {
    font-size: 1.125rem;
    color: #cbd5e1;
}

/* About Page */
.about-content {
    padding: 5rem 0;
    background: white;
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-paragraphs p {
    color: var(--muted-foreground);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.about-stats-wrapper {
    position: relative;
}

.about-stats-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
    border-radius: var(--radius-xl);
    filter: blur(20px);
}

.about-stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    background: var(--muted);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--border);
}

.stat-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-card-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-card-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Mission & Vision */
.mission-vision {
    padding: 5rem 0;
    background: var(--muted);
}

.mv-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .mv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mv-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.mv-icon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mv-icon-blue {
    background: #dbeafe;
    color: var(--primary);
}

.mv-icon-cyan {
    background: #cffafe;
    color: #0891b2;
}

.mv-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.mv-description {
    color: var(--muted-foreground);
    line-height: 1.8;
}

/* Values */
.values {
    padding: 5rem 0;
    background: white;
}

.values-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background: var(--muted);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: #bfdbfe;
}

.value-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: white;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.value-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Team */
.team {
    padding: 5rem 0;
    background: var(--muted);
}

.team-grid {
    display: grid;
    gap: 2rem;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.team-avatar {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--primary) 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--muted-foreground);
}

/* Partners Page */
.partners-grid-section {
    padding: 5rem 0;
    background: white;
}

.partners-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.partner-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: #bfdbfe;
}

.partner-logo {
    width: 5rem;
    height: 5rem;
   
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.1);
}

.partner-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.partner-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #dbeafe;
    color: var(--primary);
    font-size: 0.875rem;
    border-radius: 9999px;
}

/* Benefits */
.benefits {
    padding: 5rem 0;
    background: var(--muted);
}

.benefits-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #dbeafe;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.benefit-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--muted);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--border);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    color: #fbbf24;
}

.testimonial-text {
    color: var(--foreground);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.author-name {
    font-weight: 600;
    color: var(--foreground);
}

.author-role {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Services Page */
.services-grid-section {
    padding: 5rem 0;
    background: white;
}

.services-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.service-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: #bfdbfe;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: #dbeafe;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

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

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.service-features svg {
    color: #10b981;
    flex-shrink: 0;
}

/* Process */
.process {
    padding: 5rem 0;
    background: var(--muted);
}

.process-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 640px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    position: relative;
}

.process-number {
    font-size: 3.75rem;
    font-weight: 700;
    color: #dbeafe;
    margin-bottom: 1rem;
    line-height: 1;
}

.process-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.process-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.process-line {
    display: none;
    position: absolute;
    top: 2rem;
    left: 100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #bfdbfe, transparent);
}

@media (min-width: 1024px) {
    .process-line {
        display: block;
    }
}

/* Support Stats */
.support-stats {
    padding: 5rem 0;
    background: white;
}

.stats-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.stats-grid {
    display: grid;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-item-label {
    color: #bfdbfe;
}

/* Login Page */
.login-page {
    min-height: 100vh;
    display: flex;
}

.login-container {
    display: flex;
    width: 100%;
}

.login-left {
    position: relative;
    display: none;
    width: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .login-left {
        display: flex;
    }
}

.login-left-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
}

.login-left-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234f46e5' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.login-left-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 24rem;
}

.login-logo {
    margin-bottom: 2rem;
}

.login-logo-icon {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
}

.login-left-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.login-left-description {
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.login-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.login-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 1rem;
}

.login-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.login-stat-label {
    font-size: 0.875rem;
    color: #cbd5e1;
}

.login-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: white;
}

.login-mobile-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .login-mobile-logo {
        display: none;
    }
}

.login-form-wrapper {
    width: 100%;
    max-width: 28rem;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .login-title {
        font-size: 1.875rem;
    }
}

.login-subtitle {
    color: var(--muted-foreground);
}

.login-form {
    margin-bottom: 2rem;
}

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

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

.form-input-wrapper {
    position: relative;
}

.form-input-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}

.form-input {
    width: 100%;
    height: 3rem;
    padding: 0 0.75rem 0 2.75rem;
    font-size: 0.875rem;
    color: var(--foreground);
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder {
    color: #94a3b8;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    padding: 0.25rem;
}

.password-toggle:hover {
    color: var(--foreground);
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-input {
    display: none;
}

.checkbox-checkmark {
    width: 1rem;
    height: 1rem;
    border: 1px solid var(--border);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.checkbox-input:checked + .checkbox-checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-checkmark::after {
    content: '';
    width: 0.375rem;
    height: 0.625rem;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.checkbox-input:checked + .checkbox-checkmark::after {
    opacity: 1;
}

.checkbox-label {
    font-size: 0.875rem;
    color: var(--foreground);
}

.forgot-password {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
}

.forgot-password:hover {
    color: var(--primary-dark);
}

.login-footer {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.login-footer p {
    color: var(--muted-foreground);
}

.login-footer a {
    color: var(--primary);
    font-weight: 500;
}

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

.login-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.login-links a:hover {
    color: var(--foreground);
}

   RESPONSIVE DESIGN
========================= */

@media (max-width: 1024px){

.hero-grid{
grid-template-columns:1fr;
gap:40px;
text-align:center;
}

.hero-visual{
order:-1;
}

.features-grid{
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.pricing-grid{
grid-template-columns:1fr;
}

.footer-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* Tablet */

@media (max-width: 768px){

.nav-links{
display:none;
}

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

.hero-title{
font-size:32px;
line-height:1.2;
}

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

.hero-buttons{
flex-direction:column;
gap:10px;
}

.hero-stats{
flex-direction:column;
gap:20px;
}

.features-grid{
grid-template-columns:1fr;
}

.steps-grid{
grid-template-columns:1fr;
gap:30px;
}

.pricing-grid{
grid-template-columns:1fr;
}

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

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

.container{
padding-left:20px;
padding-right:20px;
}

}

/* Mobile */

@media (max-width: 480px){

.hero-title{
font-size:26px;
}

.section-title{
font-size:24px;
}

.logo-text{
font-size:18px;
}

.btn-lg{
padding:12px 18px;
font-size:14px;
}

.stat-value{
font-size:24px;
}

}
