:root {
    --primary: #9333ea;
    --primary-dark: #7e22ce;
    --secondary: #ec4899;
    --text-light: #f3f4f6;
    --text-dark: #1f2937;
    --bg-dark: #111827;
    --bg-color: #e4f1ed;
    --dark: #0f172a;
    --white: #ffffff;


     /* Primary Brand Colors */
    --primary-color: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #6366f1;
    --primary-lighter: #818cf8;
    --primary-lightest: #a5b4fc;

    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Semantic Colors */
    --success: #10b981;
    --success-light: #d1fae5;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --danger: #ef4444;
    --danger-light: #fee2e2;
    --info: #3b82f6;
    --info-light: #dbeafe;

    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);

    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-primary: 0 10px 40px -5px rgba(79, 70, 229, 0.3);
    --shadow-primary-lg: 0 20px 60px -10px rgba(79, 70, 229, 0.4);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 25px;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Typography */
    --font-family: 'Times New Roman', Times, serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

body {
    font-family: 'Times New Roman', Times, serif;
    color: var(--text-light);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

.ini-image {
    display: none;
}


.hero {
    padding: 8rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container, .features .container, .benefits .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 1rem 0;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: var(--primary-dark);
}

.hero-image img {
    width: 100%;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s;
}

.hero-image img:hover {
    transform: scale(1.05);
}

.features {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 0.75rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, background-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background-color: rgba(31, 41, 55, 0.8);
}

.feature-card svg {
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.benefits {
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-list {
    list-style: none;
    margin-top: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.benefits-list svg {
    color: var(--primary);
    flex-shrink: 0;
}

.benefits-image img {
    width: 100%;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s;
}

.benefits-image img:hover {
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    /* gap: 6px; */
    cursor: pointer;
    /* padding: 0.5rem; */
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .ini-image {
        display: block;
        margin-bottom: 1rem;
    }

    .oni-image {
        display: none;
    }


    .nav-links {
        display: none;
        position: absolute;
        top: 4rem;
        left: 0;
        width: 100%;
        background-color: rgba(17, 24, 39, 0.95);
        backdrop-filter: blur(8px);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    /* .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        grid-template-areas: "right left";
    } */

    .hero-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        grid-template-areas:
        "image"
        "text"; /* 👈 important: image first */
        gap: 2rem;
        align-items: start;
        justify-items: center;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .badge {
        justify-content: center;
    }

    .cta-button {
        margin: 0 auto;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.features-grid,
.benefits-grid {
    animation: fadeIn 1s ease-out;
}

/* Button styling for login and CTA links */
.login-btn,
.cta-button {
    background-color: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.login-btn:hover,
.cta-button:hover {
    background-color: var(--primary-dark);
}


/* ========================================
   FOOTER
   ======================================== */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.footer-section h4 {
    font-size: var(--font-size-lg);
    margin-bottom: 1.25rem;
    font-weight: 700;
    color: var(--primary-lightest);
}

.footer-section p {
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(79, 70, 229, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-base);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--gray-400);
    text-decoration: none;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--font-size-base);
}

.footer-section a:hover {
    color: var(--primary-lightest);
    transform: translateX(5px);
}

.footer-section a i {
    font-size: var(--font-size-sm);
    width: 16px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: var(--font-size-sm);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray-500);
    font-size: var(--font-size-sm);
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-lightest);
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.animate-slide-up {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1s;
}

.delay-6 {
    animation-delay: 1.2s;
}

.delay-7 {
    animation-delay: 1.4s;
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-text-secondary h2 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .benefits-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 968px) {
    .hero-content,
    .hero-content-reverse,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image-secondary {
        order: 1;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero-text-secondary h2,
    .benefits-content h2 {
        font-size: 2.25rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

   
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 4rem 0 4rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p,
    .hero-text-secondary p,
    .benefits-content p {
        font-size: 1rem;
    }

    .badge {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .logo-container {
        max-width: 300px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-text-secondary h2,
    .benefits-content h2 {
        font-size: 1.875rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-card h3 {
        font-size: 1.5rem;
    }

    .features,
    .benefits {
        padding: 5rem 0;
    }

    .hero-secondary {
        padding: 4rem 0;
    }

   
    footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.875rem;
    }

    .hero-content {
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .hero-text-secondary h2,
    .benefits-content h2 {
        font-size: 1.625rem;
    }

    .badge {
        font-size: 0.85rem;
        padding: 0.5rem 0.875rem;
    }

    .badge svg {
        width: 18px;
        height: 18px;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon svg {
        width: 28px;
        height: 28px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        gap: 6px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 4rem;
        left: 0;
        width: 100%;
        background-color: rgba(17, 24, 39, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem 1rem;
        flex-direction: column;
        gap: 1.5rem;
        border-bottom: 2px solid var(--primary);
    }

    .nav-links.active {
        display: flex;
    }
}

p {
    text-align: justify;
}

.login-btn {
    background-color: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.login-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.4);
}
