/* Modern EdTech Design System */
:root {
    /* Color Palette */
    --primary: #0A2647;
    /* Deep Royal Blue */
    --secondary: #144272;
    /* Tech Blue */
    --accent: #2C74B3;
    /* Bright Cyan */
    --background: #EBF2FA;
    /* Pale Gray */

    /* Functional Colors */
    --surface: #FFFFFF;
    --surface-hover: #F8FAFC;
    --border: #CBD5E1;

    /* Text */
    --text-main: #0A2647;
    --text-muted: #475569;
    --text-on-primary: #FFFFFF;

    /* Feedback */
    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;

    /* Properties */
    --font-sans: 'Inter', 'Tajawal', system-ui, -apple-system, sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(10, 38, 71, 0.1), 0 2px 4px -1px rgba(10, 38, 71, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(10, 38, 71, 0.1), 0 4px 6px -2px rgba(10, 38, 71, 0.05);
    --radius: 0.75rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--primary);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--secondary);
}

/* Cards & Panels */
.glass-panel,
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

input,
select,
textarea,
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--text-main);
    font-family: inherit;
    transition: all 0.2s;
}

input:focus,
select:focus,
textarea:focus,
.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(44, 116, 179, 0.15);
    /* Accent color opacity */
}

input::placeholder {
    color: var(--text-muted);
}

button,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    border: none;
}

/* Primary Button (Accent) */
.btn-primary {
    background-color: var(--primary) !important;
    color: white !important;
}

.btn-primary:hover {
    background-color: var(--secondary) !important;
    transform: translateY(-1px);
}

/* Secondary Button */
.btn-secondary {
    background-color: var(--background) !important;
    color: var(--primary) !important;
    border: 1px solid var(--border) !important;
}

.btn-secondary:hover {
    background-color: var(--border) !important;
}

/* Responsive Typography & Icons */
.responsive-icon {
    font-size: 1.5rem;
    /* ~fa-lg for mobile */
    transition: all 0.3s;
}

.responsive-icon-lg {
    font-size: 2.5rem;
}

/* Tablet & Desktop */
@media (min-width: 768px) {
    .responsive-icon {
        font-size: 2.5rem;
        /* ~fa-2x or larger for desktop */
    }

    .responsive-icon-lg {
        font-size: 4rem;
    }

    .text-md-h5 {
        font-size: 1.25rem;
        /* h5 size */
    }
}

/* Mobile Adjustments */
@media (max-width: 576px) {
    .responsive-icon {
        font-size: 1.25rem;
    }

    .card-body {
        padding: 1rem;
    }
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Tables */
.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

th,
td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

th {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mt-4 {
    margin-top: 1rem;
}

.flex {
    display: flex;
    gap: 1rem;
}

.grid {
    display: grid;
    gap: 1rem;
}

.grid-2 {
    grid-template-columns: 1fr 1fr;
}

/* Dashboard layout specific */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-title {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flash-messages {
    margin-bottom: 1rem;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--success);
    color: var(--success);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--error);
    color: var(--error);
}

/* Dashboard Redesign - Professional */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.dashboard-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 180px;
}

.dashboard-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    background: #252e42;
    /* Slightly lighter slate */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.dashboard-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    /* Solid color instead of gradient */
    transition: color 0.2s;
}

.dashboard-card:hover i {
    color: var(--accent);
}

.dashboard-card h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    color: #f8fafc;
}

.dashboard-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Modal Customization - Professional */
.modal-content {
    background: var(--surface);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* New Landing Page Styles */

/* Hero Section Enhanced */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    overflow: hidden;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.gradient-text {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.badge-soft {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid #dbeafe;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
    font-weight: 600;
}

.stat-item i {
    color: #2563eb;
}

/* Abstract Dashboard Preview */
.hero-image {
    position: relative;
}

.dashboard-preview {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s ease;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    font-size: 0.9rem;
    animation: float 3s ease-in-out infinite;
}

.c1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.c2 {
    bottom: 20%;
    left: -20px;
    animation-delay: 1.5s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Trust Section */
.trust-section {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid #f1f5f9;
    text-align: center;
}

.trust-section p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.7;
}

.partner-placeholder {
    font-weight: 700;
    color: #cbd5e1;
    font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .dashboard-preview {
        height: 300px;
        transform: none;
    }

    .floating-card {
        display: none;
    }
}

/* Detailed Features Section */
.features-detailed {
    padding: 6rem 0;
    background: #fff;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #1e293b;
}

.feature-text h3 i {
    width: 50px;
    height: 50px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #475569;
    padding-right: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 5px;
    color: #10b981;
}

.feature-image {
    flex: 1;
    background: #f8fafc;
    border-radius: 20px;
    height: 350px;
    /* Placeholder height */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon-large {
    font-size: 8rem;
    color: #cbd5e1;
    opacity: 0.5;
}

/* Responsive Features */
@media (max-width: 992px) {

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .feature-text h3 {
        justify-content: center;
    }

    .feature-list li {
        padding-right: 0;
        text-align: center;
    }

    .feature-list li::before {
        position: static;
        margin-left: 0.5rem;
    }

    .feature-image {
        width: 100%;
        height: 250px;
    }
}

/* Stats Section */
.stats-new {
    padding: 6rem 0;
    background: #1e293b;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.stats-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#334155 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-card-new {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.stat-card-new:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #60a5fa 0%, #34d399 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.1rem;
    color: #cbd5e1;
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.testimonial-text {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: bold;
}

.author-info h4 {
    font-size: 1rem;
    margin: 0;
    color: #1e293b;
}

.author-info span {
    font-size: 0.85rem;
    color: #64748b;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: white;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    text-align: right;
    transition: background 0.2s;
}

.accordion-header:hover {
    background: #f8fafc;
}

.accordion-header.active {
    background: #eff6ff;
    color: #2563eb;
}

.accordion-header i {
    transition: transform 0.3s;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: white;
    color: #64748b;
    line-height: 1.7;
}

.accordion-header.active+.accordion-body {
    padding: 1.5rem;
    max-height: 500px;
    /* Arbitrary large height */
    border-top: 1px solid #e2e8f0;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e2e8f0;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, #fff 0%, #eff6ff 100%);
}

.popular-tag {
    background: var(--accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    font-size: 0.9rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1.5rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 500;
}

.features {
    list-style: none;
    margin: 2rem 0;
    text-align: right;
}

.features li {
    margin-bottom: 1rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.features li i {
    color: #10b981;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

/* Landing Page V2 - Premium SaaS Design */

:root {
    /* V2 Color Palette - Deep Indigo & Vibrant Gradients */
    --v2-primary: #4f46e5;
    /* Indigo 600 */
    --v2-primary-dark: #4338ca;
    /* Indigo 700 */
    --v2-secondary: #0f172a;
    /* Slate 900 */
    --v2-accent: #8b5cf6;
    /* Violet 500 */
    --v2-bg: #f8fafc;
    /* Slate 50 */
    --v2-text: #1e293b;
    /* Slate 800 */
    --v2-text-muted: #64748b;
    /* Slate 500 */

    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --blob-color-1: rgba(79, 70, 229, 0.15);
    --blob-color-2: rgba(139, 92, 246, 0.15);
    --blob-color-3: rgba(236, 72, 153, 0.15);
}

body {
    background-color: var(--v2-bg);
    overflow-x: hidden;
}

/* Typography Overrides for V2 */
h1,
h2,
h3 {
    letter-spacing: -0.02em;
    color: var(--v2-secondary);
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, #4f46e5 0%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

/* Background Blobs */
.blob-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.8;
    animation: blob-float 10s infinite alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--blob-color-1);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: var(--blob-color-2);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation-delay: -5s;
}

@keyframes blob-float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(30px, 50px) rotate(10deg);
    }
}

/* Hero V2 */
.hero-v2 {
    padding: 8rem 0 4rem;
    position: relative;
    text-align: center;
}

.hero-v2 h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-v2 p {
    font-size: 1.25rem;
    color: var(--v2-text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-v2 .buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.btn-v2-primary {
    background: var(--v2-primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
    border: none;
}

.btn-v2-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
    background: var(--v2-primary-dark);
}

.btn-v2-secondary {
    background: white;
    color: var(--v2-text);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    transition: background 0.2s;
}

.btn-v2-secondary:hover {
    background: #f1f5f9;
}

/* 3D Dashboard Mockup */
.dashboard-mockup-wrapper {
    perspective: 1000px;
    margin-top: 2rem;
    padding: 0 2rem;
}

.dashboard-mockup {
    background: white;
    border-radius: 24px;
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    /* Border ring */
    transform: rotateX(5deg) scale(0.95);
    transition: transform 0.5s ease;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.dashboard-mockup:hover {
    transform: rotateX(0deg) scale(1);
}

.dashboard-mockup img {
    width: 100%;
    height: auto;
    display: block;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(300px, auto));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bento-card {
    padding: 2.5rem;
    background: white;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px -5px rgba(0, 0, 0, 0.05);
}

.bento-large {
    grid-column: span 2;
}

.bento-tall {
    grid-row: span 2;
}

.bento-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.bento-content p {
    color: var(--v2-text-muted);
    font-size: 1.1rem;
}

.bento-visual {
    flex-grow: 1;
    background: #f8fafc;
    border-radius: 16px;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
    font-size: 4rem;
    min-height: 200px;
}

/* Steps / How it works */
.steps-v2 {
    padding: 6rem 0;
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--v2-primary-dark);
    /* Darker for better contrast */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

/* Call to Action V2 */
.cta-v2 {
    margin: 6rem 2rem;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: 32px;
    padding: 6rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-v2 h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-v2 p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.btn-white {
    background: white;
    color: var(--v2-primary);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.btn-white:hover {
    transform: scale(1.05);
}

/* Responsive V2 */
@media (max-width: 992px) {
    .hero-v2 h1 {
        font-size: 3rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-large,
    .bento-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}