/* Landing Page CSS untuk MeSchoolApp */
:root {
    --primary-color: #4f46e5;
    --primary-hover: #4338ca;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --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);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.landing-page-body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-white);
}

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

/* Navigation */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
}

.nav-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.btn-login {
    background: var(--primary-color);
    color: var(--bg-white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    transition: background 0.3s ease;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
/* Hero Section */
/* Hero Section */
.hero-section {
    position: relative;
    padding: 0;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: var(--bg-white);
    overflow: hidden;
    margin-top: 20px;
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}



.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
    z-index: 0;
}

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

/* Left Column */
.hero-content-left {
    text-align: left;
}

.hero-brand-mobile {
    display: none;
    margin-bottom: 2rem;
}

.hero-logo-mobile {
    width: 100px;
    height: auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.025em;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 90%;
}

.hero-features-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pill i {
    color: #818cf8;
    font-size: 1.1rem;
}

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

.hero-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    opacity: 0.9;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}

.hero-link::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-link:hover {
    opacity: 1;
    border-bottom-color: var(--bg-white);
}

.hero-link:hover::after {
    transform: translateX(5px);
}

/* Right Column: Login Card */
.hero-login-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 450px;
    margin-left: auto;
}

.login-header-custom {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.login-title-large {
    font-size: 1.85rem;
    font-weight: 800;
    color: #1e1b4b;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.login-brand-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.login-logo-custom {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.login-brand-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.login-subtitle-custom {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1e1b4b;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.login-modules-custom {
    font-size: 0.65rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.4;
}

.login-header {
    display: none;
}

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

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

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    color: #94a3b8;
    font-size: 1.25rem;
    pointer-events: none;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.95rem;
    transition: all 0.2s;
    background: #f8fafc;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    background: white;
}

.btn-toggle-pass {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
}

/* Small Link & Utilities */
.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1rem;
}

.small-link {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.small-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.login-brand-subtitle {
    display: block;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-top: -5px;
}

.btn-toggle-pass:hover {
    color: var(--text-dark);
}

.form-footer-link {
    text-align: right;
    margin-top: 0.5rem;
}

.form-footer-link a {
    color: var(--primary-color);
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 500;
}

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

/* Logo Styles within Login Card */
.login-brand-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.login-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.login-brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.btn-login-submit {
    width: 100%;
    padding: 0.875rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1rem;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2);
}

.btn-login-submit:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-wrapper {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .hero-content-right {
        width: 100%;
        order: -1 !important;
        /* Login Card First */
    }

    .hero-content-left {
        text-align: center;
    }

    .hero-brand-mobile {
        display: none;
        /* Hide duplicate logo since it is now in the login card */
    }

    .hero-features-pills {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }

    .hero-login-card {
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        padding: 2rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

/* Mobile Login Focus (Match login.php) */
/* Mobile Login Focus with Content Below */
@media (max-width: 768px) {
    .landing-nav {
        display: none;
    }

    .hero-section {
        margin-top: 0;
        min-height: auto;
        /* Allow height to adjust */
        padding: 3rem 1.5rem 4rem;
        /* Add specific padding */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #667eea 0%, #4058c2 100%) !important;
    }

    .hero-content-left {
        display: none;
    }

    .hero-content-right {
        order: 1 !important;
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        /* Ensure flex context for centering */
        justify-content: center;
        /* Center the card horizontally */
    }

    .hero-login-card {
        max-width: 350px;
        /* Kuruskan width */
        width: 100%;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        border: none;
        border-radius: 15px;
        margin: 0 auto;
    }

    .card-body {
        padding: 1.5rem !important;
        /* Reduce padding slightly */
    }

    /* Show sections on mobile now */
    .features-section,
    .benefits-section,
    .cta-section,
    .landing-footer {
        display: block;
    }
}

@media (max-width: 768px) {
    .booking-stats {
        margin-top: -50px;
    }

    .hero-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

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

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.feature-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.feature-icon svg {
    width: 64px;
    height: 64px;
}

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

.feature-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.feature-badge {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #8b6914;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-badge-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.feature-badge-warning {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #856404;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    justify-content: center;
}

.feature-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.feature-highlight-item i {
    font-size: 0.875rem;
    color: #28a745;
    flex-shrink: 0;
}

.feature-demo {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--border-color);
    text-align: left;
}

.feature-demo-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-demo-title i {
    font-size: 1rem;
    color: var(--primary-color);
}

.feature-demo-accounts {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.feature-demo-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.8rem;
    position: relative;
    overflow: hidden;
}

.feature-demo-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.feature-demo-link:hover::before {
    left: 100%;
}

.feature-demo-link-primary {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.1);
}

.feature-demo-link-primary:hover {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-color: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.25);
}

.feature-demo-link-secondary {
    border-color: #2196F3;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.1);
}

.feature-demo-link-secondary:hover {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-color: #2196F3;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(33, 150, 243, 0.25);
}

.feature-demo-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: white;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
    transition: transform 0.3s ease;
}

.feature-demo-link-primary .feature-demo-icon-wrapper {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}

.feature-demo-link-secondary .feature-demo-icon-wrapper {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.2);
}

.feature-demo-icon-wrapper i {
    font-size: 1.25rem;
}

.feature-demo-link:hover .feature-demo-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.feature-demo-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    min-width: 0;
}

.feature-demo-school {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.85rem;
    line-height: 1.2;
}

.feature-demo-link-primary .feature-demo-school {
    color: #2E7D32;
}

.feature-demo-link-secondary .feature-demo-school {
    color: #1565C0;
}

.feature-demo-cred {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.feature-demo-cred-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.feature-demo-cred i {
    font-size: 1rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-demo-link-primary .feature-demo-cred i {
    color: #4CAF50;
}

.feature-demo-link-secondary .feature-demo-cred i {
    color: #2196F3;
}

.feature-demo-cred-label {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.8rem;
    min-width: 70px;
}

.feature-demo-cred-value {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    background: rgba(0, 0, 0, 0.05);
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    letter-spacing: 0.5px;
}

.feature-demo-link-primary .feature-demo-cred-value {
    color: #2E7D32;
    background: rgba(76, 175, 80, 0.1);
}

.feature-demo-link-secondary .feature-demo-cred-value {
    color: #1565C0;
    background: rgba(33, 150, 243, 0.1);
}

.feature-demo-separator {
    color: var(--border-color);
    margin: 0 0.25rem;
}

.feature-demo-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.1);
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-demo-link-primary .feature-demo-arrow {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.feature-demo-link-secondary .feature-demo-arrow {
    background: rgba(33, 150, 243, 0.1);
    color: #2196F3;
}

.feature-demo-arrow i {
    font-size: 1.25rem;
}

.feature-demo-link:hover .feature-demo-arrow {
    background: var(--primary-color);
    color: white;
    transform: translateX(4px);
}

.feature-demo-link-primary:hover .feature-demo-arrow {
    background: #4CAF50;
}

.feature-demo-link-secondary:hover .feature-demo-arrow {
    background: #2196F3;
}

/* Feature Module Links */
.feature-module-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.8rem;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.feature-module-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.feature-module-link:hover::before {
    left: 100%;
}

.feature-module-link-dskp {
    border-color: #28a745;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.1);
}

.feature-module-link-dskp:hover {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-color: #28a745;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.25);
}

.feature-module-link-bukuteks {
    border-color: #ffc107;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.1);
}

.feature-module-link-bukuteks:hover {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border-color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.25);
}

.feature-module-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: white;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
    transition: transform 0.3s ease;
}

.feature-module-link-dskp .feature-module-icon-wrapper {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
}

.feature-module-link-bukuteks .feature-module-icon-wrapper {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.2);
}

.feature-module-icon-wrapper i {
    font-size: 1.25rem;
}

.feature-module-link:hover .feature-module-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.feature-module-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.feature-module-label {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.85rem;
    line-height: 1.2;
}

.feature-module-link-dskp .feature-module-label {
    color: #155724;
}

.feature-module-link-bukuteks .feature-module-label {
    color: #856404;
}

.feature-module-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.feature-module-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.1);
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-module-link-dskp .feature-module-arrow {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.feature-module-link-bukuteks .feature-module-arrow {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.feature-module-arrow i {
    font-size: 1.25rem;
}

.feature-module-link:hover .feature-module-arrow {
    background: var(--primary-color);
    color: white;
    transform: translateX(4px);
}

.feature-module-link-dskp:hover .feature-module-arrow {
    background: #28a745;
}

.feature-module-link-bukuteks:hover .feature-module-arrow {
    background: #ffc107;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.benefit-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--bg-white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

.btn-cta {
    min-width: 180px;
}

/* Footer */
.landing-footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

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

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

.footer-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-links a i {
    font-size: 1rem;
}

.footer-links li strong {
    color: var(--bg-white);
    font-weight: 600;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.25rem;
}

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

/* Mobile Responsive */
@media only screen and (max-width: 768px) {
    .landing-page-body {
        font-family: 'Roboto', sans-serif;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        gap: 1.5rem;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-toggle {
        display: block;
    }

    .hero-section {
        padding: 100px 0 60px;
        margin-top: 70px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 2rem;
    }

    .hero-logo {
        width: 80px;
        height: 80px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-hero {
        width: 100%;
        min-width: auto;
    }

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

    .section-subtitle {
        font-size: 16px;
    }

    .features-section,
    .benefits-section,
    .cta-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card,
    .benefit-item {
        padding: 1.5rem;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-highlights {
        gap: 0.5rem;
        margin-top: 0.875rem;
    }

    .feature-highlight-item {
        font-size: 0.7rem;
    }

    .feature-highlight-item i {
        font-size: 0.8rem;
    }

    .feature-description,
    .benefit-description {
        font-size: 16px;
    }

    .feature-demo {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .feature-demo-title {
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
    }

    .feature-demo-title i {
        font-size: 0.9rem;
    }

    .feature-demo-link {
        padding: 0.75rem;
        gap: 0.75rem;
        font-size: 0.75rem;
    }

    .feature-demo-icon-wrapper {
        width: 36px;
        height: 36px;
    }

    .feature-demo-icon-wrapper i {
        font-size: 1.1rem;
    }

    .feature-demo-school {
        font-size: 0.8rem;
    }

    .feature-demo-cred {
        font-size: 0.65rem;
        gap: 0.4rem;
    }

    .feature-demo-cred i {
        font-size: 0.7rem;
    }

    .feature-demo-arrow {
        width: 28px;
        height: 28px;
    }

    .feature-demo-arrow i {
        font-size: 1.1rem;
    }

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

    .benefit-title {
        font-size: 20px;
    }

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

    .cta-subtitle {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cta {
        width: 100%;
        min-width: auto;
    }

    .landing-footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .btn {
        min-height: 48px;
        font-size: 15px;
    }
}

@media only screen and (max-width: 480px) {

    .container,
    .container-nav {
        padding: 0 10px;
    }

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

    .hero-subtitle {
        font-size: 15px;
    }

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

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

    .feature-card,
    .benefit-item {
        padding: 1.25rem;
    }

    .feature-title,
    .benefit-title {
        font-size: 18px;
    }

    .feature-description,
    .benefit-description {
        font-size: 15px;
    }

    .feature-demo-title {
        font-size: 0.65rem;
        margin-bottom: 0.625rem;
    }

    .feature-demo-title i {
        font-size: 0.85rem;
    }

    .feature-demo-link {
        padding: 0.625rem;
        gap: 0.625rem;
        font-size: 0.7rem;
    }

    .feature-demo-icon-wrapper {
        width: 32px;
        height: 32px;
    }

    .feature-demo-icon-wrapper i {
        font-size: 1rem;
    }

    .feature-demo-school {
        font-size: 0.75rem;
    }

    .feature-demo-cred {
        font-size: 0.6rem;
        gap: 0.35rem;
    }

    .feature-demo-cred i {
        font-size: 0.65rem;
    }

    .feature-demo-arrow {
        width: 26px;
        height: 26px;
    }

    .feature-demo-arrow i {
        font-size: 1rem;
    }

    .feature-module-link {
        padding: 0.625rem;
        gap: 0.625rem;
        font-size: 0.7rem;
    }

    .feature-module-icon-wrapper {
        width: 32px;
        height: 32px;
    }

    .feature-module-icon-wrapper i {
        font-size: 1rem;
    }

    .feature-module-label {
        font-size: 0.75rem;
    }

    .feature-module-desc {
        font-size: 0.6rem;
    }

    .feature-module-arrow {
        width: 26px;
        height: 26px;
    }

    .feature-module-arrow i {
        font-size: 1rem;
    }

    .btn {
        min-height: 44px;
        font-size: 14px;
        padding: 0.75rem 1.5rem;
    }

    .nav-logo,
    .footer-logo {
        width: 32px;
        height: 32px;
    }

    .nav-brand-text {
        font-size: 1.25rem;
    }

    .hero-logo {
        width: 70px;
        height: 70px;
    }
}


/* --- Dynamic Hero Updates --- */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #4058c2 100%) !important;
    padding: 160px 0 120px !important;
    position: relative;
    overflow: hidden;
}

.text-gradient {
    background: linear-gradient(90deg, #fff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.badge-new {
    background: #fbbf24;
    color: #92400e;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.hero-shapes .shape {
    position: absolute;
    filter: blur(80px);
    z-index: 0;
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(99, 102, 241, 0.4);
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(167, 139, 250, 0.3);
    bottom: -150px;
    right: -100px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(244, 114, 182, 0.2);
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
}

.btn-glass {
    background: white;
    color: #4f46e5;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-glass:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.btn-outline-glass {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px);
}

/* --- Stats Styling --- */
.live-stats-container {
    margin-top: 4rem;
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 1.5rem 2.5rem;
    gap: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.stats-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-align: left;
}

.stats-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.stats-icon.active-users {
    color: #4ade80;
    animation: pulse 2s infinite;
}

.stats-icon.active-users i {
    font-size: 0.75rem;
}

.stats-info {
    display: flex;
    flex-direction: column;
}

.stats-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stats-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.stats-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    align-self: center;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .live-stats-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
        width: 100%;
        max-width: 350px;
    }

    .stats-divider {
        width: 100%;
        height: 1px;
    }

    .hero-content-left {
        display: none !important;
    }

    .hero-section {
        margin-top: -75px !important;
        padding-top: 40px !important;
    }

    .hero-login-card {
        margin: 0 auto !important;
    }

    .form-label {
        text-align: left !important;
    }

    .login-header-custom {
        text-align: left !important;
    }

    .login-brand-row {
        justify-content: flex-start !important;
    }
}

/* --- Interactive Feature Card Updates --- */
.feature-card {
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02) !important;
    border-color: #4f46e5 !important;
    box-shadow: 0 30px 60px -12px rgba(79, 70, 229, 0.15) !important;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-icon {
    transition: transform 0.4s ease;
}

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

/* Scroll Animation Delay */
.features-grid>*:nth-child(1) {
    animation-delay: 0.1s;
}

.features-grid>*:nth-child(2) {
    animation-delay: 0.2s;
}

.features-grid>*:nth-child(3) {
    animation-delay: 0.3s;
}

.features-grid>*:nth-child(4) {
    animation-delay: 0.4s;
}

.features-grid>*:nth-child(5) {
    animation-delay: 0.5s;
}

.features-grid>*:nth-child(6) {
    animation-delay: 0.6s;
}

/* --- Extended Premium Styling --- */
:root {
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
}

.landing-nav.glass-nav {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.hero-section {
    padding: 180px 0 100px !important;
    background: radial-gradient(circle at top right, #667eea, transparent),
        radial-gradient(circle at bottom left, #4058c2, #667eea) !important;
}

.hero-mockup-wrapper {
    margin-top: 5rem;
    position: relative;
    perspective: 1000px;
}

.hero-mockup-img {
    max-width: 90%;
    border-radius: 24px;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.3);
    transform: rotateX(5deg) scale(1.05);
    transition: transform 0.5s ease;
}

.hero-mockup-wrapper:hover .hero-mockup-img {
    transform: rotateX(0deg) scale(1.08);
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.badge-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 2s;
}

.section-padding {
    padding: 100px 0;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.text-gradient-gold {
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Responsive Adjustments & Finishing Touches --- */
.hero-mockup-img {
    animation: zoomIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8) rotateX(10deg);
    }

    to {
        opacity: 1;
        transform: scale(1.05) rotateX(5deg);
    }
}

.nav-links.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.reveal {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* --- New Sections Styles --- */

/* Hero Problems Box */
.hero-problems-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.problems-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.problems-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.25rem;
}

.problems-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.problems-list li i {
    color: #ef4444;
    font-size: 1.1rem;
    margin-top: 2px;
}

.problems-summary {
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.8;
    font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.btn-hero {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    border-radius: 0.75rem;
    font-weight: 700;
}

/* School Segments */
.school-segments {
    padding: 60px 0;
    background: #f1f5f9;
}

.segments-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.segment-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.segment-card:hover {
    transform: translateY(-5px);
}

.segment-icon {
    width: 60px;
    height: 60px;
    background: #eef2ff;
    color: #4f46e5;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.segment-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    line-height: 1.3;
}

.segment-text {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
}

.segments-cta {
    text-align: center;
}

.btn-cta-demo {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 1rem;
}

/* Features Compact */
.features-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #4f46e5;
    background: #f8faff;
}

.feature-icon-small {
    color: #10b981;
    font-size: 1.5rem;
    display: flex;
}

.feature-item span {
    font-weight: 600;
    color: #334155;
}

.features-cta {
    text-align: center;
}

/* Demo Section */
.demo-section {
    padding: 100px 0;
    background: #ffffff;
}

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

.demo-card {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    position: relative;
    cursor: zoom-in;
}

.demo-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    z-index: 2;
}

/* Browser-like dots for demo card */
.demo-card::after {
    content: "•••";
    position: absolute;
    top: 0px;
    left: 15px;
    color: #94a3b8;
    font-size: 20px;
    letter-spacing: 2px;
    z-index: 3;
    line-height: 30px;
}

.demo-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 80px -15px rgba(79, 70, 229, 0.2);
    border-color: #4f46e5;
}

.demo-img-box {
    position: relative;
    padding-top: 30px;
    /* Space for the browser bar */
    aspect-ratio: 16/10;
    overflow: hidden;
}

.demo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.demo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #1e293b;
    padding: 1.25rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    border-top: 1px solid #e2e8f0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.demo-card:hover .demo-caption {
    transform: translateY(0);
}

.video-demo-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    border-color: #4f46e5;
}

.play-button {
    width: 80px;
    height: 80px;
    background: #4f46e5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 0 0 10px rgba(79, 70, 229, 0.2);
}

.video-text h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.video-text p {
    color: #94a3b8;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
    color: #f59e0b;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-info strong {
    color: #1e293b;
    font-size: 1rem;
}

.testimonial-info span {
    color: #64748b;
    font-size: 0.875rem;
}

.users-count {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #4f46e5;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Onboarding */
.onboarding-section {
    padding: 80px 0;
}

.onboarding-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #4f46e5;
    color: white;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.4);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.step-text {
    color: #64748b;
    line-height: 1.6;
}

/* Support Info */
.support-info-section {
    padding: 60px 0;
    background: #1e293b;
    color: white;
}

.support-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.support-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.support-subtitle {
    color: #94a3b8;
    margin-bottom: 2.5rem;
}

.support-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.channel-item i {
    font-size: 2.5rem;
    color: #10b981;
}

.channel-text strong {
    display: block;
    font-size: 0.875rem;
    color: #94a3b8;
    text-transform: uppercase;
}

.channel-text a {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
}

.support-details {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-box {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.detail-box i {
    font-size: 1.75rem;
    color: #4f46e5;
}

.detail-box strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.detail-box p {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .segments-wrapper {
        grid-template-columns: 1fr;
    }

    .support-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-problems-box {
        margin: 2rem auto;
        text-align: left;
    }

    .video-placeholder {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

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

    .support-channels {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Demo Quick Buttons */
.demo-accounts-quick {
    background: #f8fafc;
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.demo-accounts-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.demo-accounts-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.demo-quick-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.demo-quick-primary {
    background: white;
    color: #10b981;
    border-color: #10b981;
}

.demo-quick-primary:hover {
    background: #10b981;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

.demo-quick-secondary {
    background: white;
    color: #4f46e5;
    border-color: #4f46e5;
}

.demo-quick-secondary:hover {
    background: #4f46e5;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
}

/* Registration Section (Attractive Form) */
.registration-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    position: relative;
    overflow: hidden;
}

.registration-glass-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2.5rem;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.registration-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.registration-subtitle {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 3rem;
    line-height: 1.8;
    opacity: 0.9;
}

.attractive-registration-form {
    max-width: 600px;
}

.registration-input-group {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 0.75rem;
    border-radius: 1.25rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.registration-input-group:focus-within {
    border-color: #4f46e5;
    box-shadow: 0 15px 35px -10px rgba(79, 70, 229, 0.2);
    transform: translateY(-2px);
}

.input-with-icon {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 1rem;
}

.input-with-icon i {
    font-size: 1.5rem;
    color: #4f46e5;
}

.input-with-icon input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e293b;
    background: transparent;
}

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

.btn-register-submit {
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: #ffffff !important;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-register-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px -5px rgba(124, 58, 237, 0.4);
}

.registration-hint {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Visual Components */
.registration-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icons {
    position: relative;
    width: 250px;
    height: 250px;
}

.f-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #4f46e5;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: float 4s ease-in-out infinite;
}

.f-icon-1 {
    top: 0;
    left: 20%;
    animation-delay: 0s;
}

.f-icon-2 {
    top: 40%;
    right: 0;
    animation-delay: 1s;
}

.f-icon-3 {
    bottom: 0;
    left: 30%;
    animation-delay: 2s;
}

.f-icon-4 {
    top: 60%;
    left: 0;
    animation-delay: 1.5s;
}

.registration-badge {
    position: absolute;
    background: #1e1b4b;
    color: white;
    padding: 1.5rem;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: rotate(10deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.badge-number {
    font-size: 2rem;
    font-weight: 800;
    color: #818cf8;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 992px) {
    .registration-glass-card {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        gap: 3rem;
    }

    .registration-visual {
        order: -1;
        height: 200px;
    }

    .demo-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .registration-input-group {
        flex-direction: column;
        padding: 1rem;
    }

    .btn-register-submit {
        width: 100%;
        justify-content: center;
    }

}

/* Enhanced Call-to-Action Styling */
.text-gradient {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    display: inline-block;
    font-weight: 900;
}

.btn-pulse {
    position: relative;
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(79, 70, 229, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    }
}

.btn-hero {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-hero i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.btn-hero:hover i {
    transform: translateX(5px);
}

.registration-title {
    color: #ffffff;
}

/* Base Button Styles to ensure white labels */
.btn-primary,
.btn-hero .btn-text,
.btn-cta,
.btn-register-submit span {
    color: #ffffff !important;
}