/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: hsl(214, 100%, 35%);
    --primary-light: hsl(214, 85%, 51%);
    --primary-dark: hsl(214, 100%, 25%);
    --accent-color: hsl(31, 100%, 48%);
    --accent-light: hsl(31, 100%, 58%);
    --accent-dark: hsl(31, 100%, 44%);
    --white: hsl(0, 0%, 100%);
    --gray-50: hsl(210, 20%, 98%);
    --gray-100: hsl(220, 14%, 96%);
    --gray-200: hsl(220, 13%, 91%);
    --gray-300: hsl(212, 10%, 83%);
    --gray-400: hsl(218, 11%, 65%);
    --gray-500: hsl(220, 9%, 46%);
    --gray-600: hsl(215, 14%, 34%);
    --gray-700: hsl(215, 19%, 25%);
    --gray-800: hsl(222, 22%, 18%);
    --gray-900: hsl(222, 39%, 11%);
    --light-blue: hsl(214, 100%, 95%);
    --light-orange: hsl(36, 100%, 95%);
    --purple-light: hsl(252, 100%, 97%);
    --purple-medium: hsl(252, 100%, 92%);
    --blue-light: hsl(204, 100%, 97%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--gray-900);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

.text-accent {
    color: var(--accent-color);
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    border: 1px solid transparent;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.025em;
}

.btn--primary {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(242, 133, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--primary:hover {
    background: var(--accent-dark);
    box-shadow: 0 8px 32px rgba(242, 133, 0, 0.4);
    transform: translateY(-2px);
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn--primary:hover::before {
    left: 100%;
}

.btn--outline {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    border: 1px solid rgba(0, 86, 179, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn--outline:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(242, 133, 0, 0.3);
    border-color: var(--accent-color);
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

/* Frosted Glass Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.02);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 86, 179, 0.05);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    color: var(--gray-900);
    font-weight: 700;
    font-size: 1.25rem;
    transition: var(--transition);
}

.nav__logo:hover {
    transform: scale(1.05);
}

.nav__logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-right: 0.25rem;
    flex-shrink: 0;
}

.footer__logo-img {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
    overflow: hidden;
}

.footer__logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius);
}

.nav__logo-text, .footer__logo-text {
    font-size: 1.75rem;
    font-weight: 700;
}

.nav__logo-text .logo-your {
    color: var(--primary-color);
}

.nav__logo-text .logo-edugator {
    color: var(--accent-color);
}

.footer__logo-text {
    color: var(--white);
}



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

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav__link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav__link:hover,
.nav__link--active {
    color: var(--primary-color);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 1px;
    transition: var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--active::after {
    width: 100%;
    background: var(--accent-color);
}

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

.nav__toggle,
.nav__close {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    border: none;
    background: none;
    color: var(--gray-700);
}

/* Main Content */
.main {
    padding-top: 120px;
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 120px;
    right: 1rem;
    z-index: 1001;
    max-width: 400px;
}

.flash {
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: slideInRight 0.3s ease;
}

.flash--success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.flash--error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

.flash__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    margin-left: 1rem;
    color: inherit;
    opacity: 0.7;
}

.flash__close:hover {
    opacity: 1;
}

/* Premium Hero Section */
.hero {
    position: relative;
    padding: 4rem 0 6rem;
    overflow: hidden;
    background: var(--white);
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230056b3' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(0, 86, 179, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(242, 133, 0, 0.08) 0%, transparent 50%);
}

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

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.hero__description {
    font-size: 1.375rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__visual {
    position: relative;
}

.hero__dashboard {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
    transition: var(--transition);
}

.hero__dashboard:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
}

.dashboard-mockup {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.dashboard-header {
    background: var(--gray-50);
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dashboard-logo {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
}

.dashboard-nav {
    height: 8px;
    background: var(--gray-300);
    border-radius: 4px;
    flex: 1;
}

.dashboard-content {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.dashboard-card,
.dashboard-chart,
.dashboard-stats {
    background: var(--gray-100);
    border-radius: var(--border-radius);
    height: 80px;
}

.dashboard-chart {
    grid-column: span 2;
    height: 120px;
}

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

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

.section-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Page Hero */
.page-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-color), #003d82);
    color: var(--white);
    text-align: center;
}

.page-hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-hero__description {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}



/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--light-blue);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: translateX(-100%);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(31, 38, 135, 0.2);
    border-color: rgba(0, 86, 179, 0.3);
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.feature-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.feature-card__description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.feature-card__link:hover {
    color: var(--accent-color);
    gap: 0.75rem;
}

/* Modules Section */
.modules {
    padding: 6rem 0;
    background: var(--gray-50);
}

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

.module-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.module-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(31, 38, 135, 0.15);
    border-color: rgba(0, 86, 179, 0.2);
}

.module-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #e07400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.module-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.module-card__description {
    color: var(--gray-600);
    font-size: 0.875rem;
}



/* Feature Overview Section */
.feature-overview-section {
    padding: 6rem 0;
    background: var(--light-orange);
}

.feature-overview-container {
    margin-top: 3rem;
}

.feature-overview-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: stretch;
    height: 500px;
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    justify-content: space-between;
}

.feature-overview-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-height: 80px;
}

.feature-overview-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(242, 133, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.feature-overview-card.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 86, 179, 0.25);
}

.feature-overview-card.active .feature-overview-card__icon {
    background: var(--white);
    color: var(--primary-color);
}

.feature-overview-card.active .feature-overview-card__content h3 {
    color: var(--white);
}

.feature-overview-card.active .feature-overview-card__content p {
    color: rgba(255, 255, 255, 0.9);
}

.feature-overview-card__icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 0.25rem;
}

.feature-overview-card__content {
    flex: 1;
}

.feature-overview-card__content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    transition: color 0.3s ease;
    line-height: 1.2;
}

.feature-overview-card__content p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.4;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

/* Progress indicator for auto-cycling */
.feature-overview-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--accent-color);
    transition: width 0.1s linear;
    opacity: 0;
}

.feature-overview-card.active.cycling::before {
    opacity: 1;
    animation: progressBar 5s linear;
}

.feature-overview-display {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.feature-overview-image-container {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: none;
    transition: all 0.5s ease;
    width: 100%;
    height: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.feature-overview-image-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.feature-overview-image {
    width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Responsive design for feature overview section */
@media (max-width: 968px) {
    .feature-overview-content {
        grid-template-columns: 280px 1fr;
        gap: 2rem;
    }

    .feature-overview-card {
        padding: 1rem 0.75rem;
        min-height: 70px;
    }

    .feature-overview-card__icon {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 768px) {
    .feature-overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-overview-image-container {
        transform: none;
        min-height: 300px;
    }

    .feature-overview-image {
        min-height: 300px;
    }

    .feature-overview-card {
        padding: 1.5rem;
        gap: 1rem;
        min-height: 100px;
    }

    .feature-overview-card__icon {
        width: 60px;
        height: 60px;
    }

    .feature-overview-card__content h3 {
        font-size: 1.25rem;
    }
}

/* Simple Module Selection Section */
.simple-modules-section {
    padding: 6rem 0;
    background: var(--light-blue);
}

.simple-modules-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.simple-module-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.simple-module-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.simple-module-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 86, 179, 0.15);
}

.simple-module-button.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(0, 86, 179, 0.25);
}

.simple-module-button__icon {
    width: 50px;
    height: 50px;
    background: var(--light-blue);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.simple-module-button.active .simple-module-button__icon {
    background: var(--white);
    color: var(--primary-color);
}

.simple-module-button__content {
    flex: 1;
}

.simple-module-button__content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--gray-900);
    transition: color 0.3s ease;
}

.simple-module-button.active .simple-module-button__content h3 {
    color: var(--white);
}

.simple-module-button__content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.simple-module-button.active .simple-module-button__content p {
    color: rgba(255, 255, 255, 0.9);
}

.simple-module-display {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.simple-module-preview {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.simple-module-preview:hover {
    transform: translateY(-8px);
}

.simple-preview-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Responsive Design for Simple Module Section */
@media (max-width: 768px) {
    .simple-modules-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .simple-module-button {
        padding: 1rem;
    }

    .simple-module-button__icon {
        width: 40px;
        height: 40px;
    }

    .simple-module-button__content h3 {
        font-size: 1.1rem;
    }

    .simple-module-button__content p {
        font-size: 0.85rem;
    }

    .simple-module-display {
        height: 300px;
    }
}

/* Video Section */
.video-section {
    padding: 6rem 0;
    background: var(--light-blue);
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230056b3' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.video-description {
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.video-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.video-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
}

.video-feature i {
    color: var(--primary-color);
}

.video-player {
    position: relative;
}

.video-placeholder {
    background: var(--gray-900);
    border-radius: var(--border-radius-lg);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: var(--transition);
}

.video-placeholder:hover::before {
    transform: translateX(100%);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    background: #e07400;
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: var(--light-orange);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-300);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    margin: 0 2rem;
    border: 1px solid var(--gray-200);
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.timeline-description {
    color: var(--gray-600);
}

/* Premium CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
    background: linear-gradient(135deg, var(--primary-color), #003d82);
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    text-align: center;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-section .btn--outline {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.cta-section .btn--outline:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Feature Tabs */
.feature-tabs {
    padding: 4rem 0;
}

.tabs__nav {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 3rem;
    background: var(--gray-100);
    padding: 0.5rem;
    border-radius: var(--border-radius-lg);
    overflow-x: auto;
}

.tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition);
    white-space: nowrap;
}

.tab-btn--active {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.tab-content {
    display: none;
}

.tab-content--active {
    display: block;
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-showcase__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.feature-showcase__description {
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.feature-list__item i {
    color: var(--primary-color);
}

/* Screenshot Mockup */
.screenshot-mockup {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.mockup-header {
    background: var(--gray-100);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-400);
}

.mockup-dots span:first-child { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:last-child { background: #10b981; }

.mockup-title {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.875rem;
}

.mockup-content {
    padding: 2rem;
    min-height: 300px;
}

/* Dashboard Mockups */
.student-dashboard,
.teacher-dashboard,
.exam-interface,
.ai-feedback {
    display: grid;
    gap: 1rem;
    height: 100%;
}

.dashboard-sidebar {
    background: var(--gray-50);
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
}

.sidebar-item {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.sidebar-item.active {
    background: var(--primary-color);
    color: var(--white);
}

.dashboard-main {
    display: grid;
    gap: 1rem;
}

.progress-card {
    background: var(--gray-50);
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
}

.progress-bar {
    background: var(--gray-200);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress-fill {
    background: var(--primary-color);
    height: 100%;
    border-radius: 4px;
}

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

.module-item {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 0.875rem;
    border: 1px solid var(--gray-200);
}

/* Additional Features */
.additional-features {
    padding: 6rem 0;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-item__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.feature-item__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.feature-item__description {
    color: var(--gray-600);
}

/* Forms */
.demo-form-section,
.contact-section {
    padding: 4rem 0;
    background: var(--light-blue);
}

.demo-content,
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-container {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

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

.form-subtitle {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

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

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

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

.optional {
    color: var(--gray-500);
    font-weight: 400;
    font-size: 0.875rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

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

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Demo Info */
.demo-info {
    padding: 2rem 0;
}

.demo-info__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--gray-900);
}

.demo-features {
    margin-bottom: 3rem;
}

.demo-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.demo-feature__icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.demo-feature__content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.demo-feature__content p {
    color: var(--gray-600);
    margin: 0;
}

.demo-stats {
    display: flex;
    gap: 2rem;
}

.demo-stat {
    text-align: center;
}

.demo-stat h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.demo-stat p {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin: 0;
}

/* Contact Info */
.contact-info {
    padding: 2rem 0;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.contact-details p {
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

.contact-details small {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.quick-actions {
    margin-top: 3rem;
}

.quick-actions h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--gray-700);
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials-grid {
    padding: 4rem 0;
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

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

.star-filled {
    color: #fbbf24;
}

.testimonial-quote {
    color: var(--gray-700);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.author-name {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.author-role,
.author-institute {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin: 0;
}

/* Featured Testimonial */
.featured-testimonial {
    padding: 4rem 0;
    background: var(--gray-50);
}

.featured-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.featured-quote {
    position: relative;
    margin-bottom: 3rem;
}

.featured-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.6;
}

.featured-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.author-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Success Stats */
.success-stats {
    padding: 4rem 0;
    background: var(--primary-color);
    color: var(--white);
}

.success-stats .section-title,
.success-stats .section-description {
    color: var(--white);
}

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

.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--white);
    opacity: 0.9;
}

/* Video Testimonials */
.video-testimonials {
    padding: 4rem 0;
}

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

.video-testimonial {
    position: relative;
}

.video-testimonial .video-placeholder {
    background: var(--gray-800);
    aspect-ratio: 16/9;
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.video-testimonial .video-placeholder:hover {
    transform: scale(1.05);
}

.video-testimonial .play-button {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.video-info h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
}

.video-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
}

/* FAQ Hero */
.faq-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-color), #003d82);
    color: var(--white);
    text-align: center;
}

.faq-hero__content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.faq-hero__description {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Categories */
.faq-categories {
    padding: 3rem 0;
    background: var(--white);
}

.category-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.category-btn {
    padding: 1rem 2rem;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--gray-600);
    transition: var(--transition);
    min-width: 120px;
    text-align: center;
}

.category-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.15);
}

.category-btn--active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.25);
}

/* FAQ Content */
.faq-content {
    padding: 4rem 0 6rem;
    background: var(--gray-50);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.faq-item--open {
    box-shadow: 0 8px 32px rgba(0, 86, 179, 0.15);
    border-color: var(--primary-color);
}

.faq-question {
    padding: 2rem 2.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
    position: relative;
}

.faq-question:hover {
    background: var(--light-blue);
}

.faq-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    flex: 1;
    text-align: left;
}

.faq-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon i {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.faq-item--open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: var(--gray-50);
    opacity: 0;
    transform: translateY(-10px);
}

.faq-item--open .faq-answer {
    padding: 1rem 2.5rem 2rem;
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
    padding-left: 3.5rem;
}

/* Contact CTA */
.contact-cta {
    padding: 6rem 0;
    background: var(--gray-50);
    text-align: center;
}

.contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    line-height: 1.2;
    text-align: center;
}

.contact-description {
    color: var(--gray-600);
    margin-bottom: 3rem;
    max-width: 600px;
    font-size: 1.125rem;
    line-height: 1.6;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.contact-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: var(--light-blue);
}

.map-container {
    margin-top: 2rem;
}

.map-placeholder {
    background: var(--gray-100);
    border: 2px dashed var(--gray-300);
    border-radius: var(--border-radius-lg);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    color: var(--gray-600);
}

.map-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-content h3 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

/* Partnership CTA */
.partnership-cta {
    padding: 4rem 0;
    background: var(--accent-color);
    color: var(--white);
}

.partnership-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.partnership-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.partnership-description {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.partnership-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.partnership-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.partnership-feature i {
    color: var(--white);
}

/* Support Options */
.support-options {
    padding: 4rem 0;
    background: var(--gray-50);
}

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

.support-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

.support-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

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

.support-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.support-link:hover {
    color: var(--accent-color);
}

/* About Page Styles */
.mission-vision {
    padding: 4rem 0;
}

.mission-content {
    display: grid;
    gap: 4rem;
}

.mission-item {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.mission-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.mission-text p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Our Story */
.our-story {
    padding: 6rem 0;
    background: var(--gray-50);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--gray-900);
}

.story-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-timeline {
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.story-timeline .timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-direction: row;
}

.story-timeline .timeline-year {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.story-timeline .timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    margin: 0;
}

.story-timeline .timeline-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.story-timeline .timeline-description {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.875rem;
}

/* Values */
.our-values {
    padding: 6rem 0;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

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

.value-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

.member-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.member-title {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Company Stats */
.company-stats {
    padding: 6rem 0;
    background: var(--primary-color);
    color: var(--white);
}

.company-stats .section-title,
.company-stats .section-description {
    color: var(--white);
}

/* Awards */
.awards-section {
    padding: 6rem 0;
    background: var(--light-blue);
}

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

.award-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

.award-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.award-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.award-description {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer__logo {
    margin-bottom: 1rem;
}

.footer__logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer__logo-img {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
    overflow: hidden;
}

.footer__logo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.footer__description {
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.75rem;
}

.footer__link {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer__link:hover {
    color: var(--accent-color);
}

.footer__text {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.footer__copyright {
    color: var(--gray-400);
    margin: 0;
    font-size: 0.9rem;
}

/* Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero__content,
    .feature-showcase,
    .story-content,
    .video-content,
    .demo-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .testimonials-container {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: start;
        padding: 4rem 2rem;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
    }

    .nav__menu.show {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 1rem;
    }

    .nav__toggle,
    .nav__close {
        display: block;
    }

    .nav__close {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .page-hero__title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .features-grid,
    .values-grid,
    .awards-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero__actions,
    .cta-actions,
    .contact-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .partnership-content {
        flex-direction: column;
        text-align: center;
    }

    .partnership-features {
        justify-content: center;
    }

    .demo-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .tabs__nav {
        flex-wrap: wrap;
    }

    .category-nav {
        flex-wrap: wrap;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        padding-left: 4rem;
    }

    .timeline-number {
        position: absolute;
        left: 0;
    }


}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 2rem 0 4rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .page-hero {
        padding: 4rem 0 2rem;
    }

    .page-hero__title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

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



    .flash-messages {
        right: 0.5rem;
        left: 0.5rem;
        max-width: none;
    }
}

/* Screenshot containers */
.screenshot-container {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.screenshot-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.feature-screenshot {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-item__image {
    margin-top: 1rem;
}

/* Feature and Module Preview Images */
.feature-card__preview, .module-card__preview {
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-preview, .module-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.feature-card:hover .feature-preview,
.module-card:hover .module-preview {
    transform: scale(1.05);
}

.feature-card__icon {
    display: none;
}

.module-card__icon {
    display: none;
}

/* Ensure cards with previews maintain proper spacing */
.feature-card__preview + .feature-card__content,
.module-card__preview + h3 {
    margin-top: 1rem;
}

/* Apple iPhone 16 Pro Style Full-Width Carousel */
.modules-carousel-section {
    padding: 4rem 0;
    background: var(--white);
    overflow: hidden;
}

.modules-carousel {
    position: relative;
    width: 100%;
    margin-top: 3rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 2rem;
}

/* Module Headers */
.module-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--background-light);
}

.module-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.module-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.modules-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    width: max-content;
    /* Remove transform transition for native scroll */
}

.carousel-slide {
    width: calc(100vw - 4rem);
    max-width: 1200px;
    flex-shrink: 0;
    padding: 4rem 2rem;
    background: var(--light-orange);
    min-height: 500px;
    display: flex;
    align-items: center;
    scroll-snap-align: start;
    border-radius: 20px;
    margin: 0 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-slide:nth-child(even) {
    background: var(--light-blue);
}

.slide-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: stretch;
    width: 100%;
    margin: 0 auto;
    height: 500px;
}

/* Module Buttons Stack */
.module-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    justify-content: space-between;
}

.module-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-height: 75px;
}

.module-button:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.1);
}

.module-button.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 86, 179, 0.25);
}

.module-button__icon {
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.module-button.active .module-button__icon {
    background: var(--white);
    color: var(--primary-color);
}

.module-button__content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--gray-900);
    transition: color 0.3s ease;
}

.module-button.active .module-button__content h3 {
    color: var(--white);
}

.module-button__content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.module-button.active .module-button__content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Progress indicator for auto-cycling */
.module-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--accent-color);
    transition: width 0.1s linear;
    opacity: 0;
}

.module-button.active.cycling::before {
    opacity: 1;
    animation: progressBar 5s linear;
}

@keyframes progressBar {
    from { width: 0%; }
    to { width: 100%; }
}

/* Module Preview */
.module-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.preview-container {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.preview-container:hover {
    transform: translateY(-8px);
}

.preview-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Carousel Controls - visible navigation arrows */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    z-index: 10;
    position: relative;
    padding: 0 2rem;
}

.carousel-arrow {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    outline: none;
}

.carousel-arrow:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.2);
}

.carousel-arrow:active:not(:disabled) {
    transform: translateY(0);
}

.carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
    background: var(--gray-200);
    color: var(--gray-400);
}

.carousel-pagination {
```text
display: flex;
    gap: 0.75rem;
    align-items: center;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 86, 179, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.carousel-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.carousel-dot.active::before {
    transform: scale(1);
}

.carousel-dot:hover {
    background: rgba(0, 86, 179, 0.5);
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .modules-carousel-section {
        padding: 2rem 0;
    }

    .carousel-slide {
        padding: 2rem 0;
        min-height: auto;
    }

    .slide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .module-buttons {
        order: 2;
        gap: 0.75rem;
    }

    .module-button {
        padding: 1rem;
        gap: 0.75rem;
    }

    .module-button__icon {
        width: 50px;
        height: 50px;
    }

    .module-button__content h3 {
        font-size: 1.1rem;
    }

    .module-button__content p {
        font-size: 0.85rem;
    }

    .module-preview {
        order: 1;
    }

    .preview-container {
        max-width: 100%;
    }

    .carousel-controls {
        display: flex;
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 2rem;
        background: var(--white);
        padding: 1rem;
        border-radius: var(--border-radius-lg);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .carousel-arrow {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding: 0 0.5rem;
    }

    .carousel-controls {
        display: flex;
        margin: 1rem;
        gap: 1rem;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

.module-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    justify-content: space-between;
}

.module-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-height: 80px;
}

.module-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 86, 179, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.module-card.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 86, 179, 0.25);
}

.module-card.active .module-card__icon {
    background: var(--white);
    color: var(--primary-color);
}

.module-card.active .module-card__title {
    color: var(--white);
}

.module-card.active .module-card__description {
    color: rgba(255, 255, 255, 0.9);
}

.module-card__icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 0.25rem;
}

.module-card__content {
    flex: 1;
}

.module-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    transition: color 0.3s ease;
    line-height: 1.2;
}

.module-card__description {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.4;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.module-display {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.module-image-container {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
    width: 100%;
    min-height: 500px;
}

.module-image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.module-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
    object-fit: cover;
    transition: all 0.5s ease;
}

/* Auto-rotation animation */
.module-card {
    position: relative;
}

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

.module-card.active::before {
    width: 100%;
}

/* Responsive design for module showcase */
@media (max-width: 768px) {
    .module-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .module-image-container {
        transform: none;
        min-height: 300px;
    }

    .module-image {
        min-height: 300px;
    }

    .module-card {
        padding: 1.5rem;
        gap: 1rem;
        min-height: 100px;
    }

    .module-card__icon {
        width: 60px;
        height: 60px;
    }

    .module-card__title {
        font-size: 1.25rem;
    }
}

/* Module image transition effect */
.module-image {
    transition: opacity 0.3s ease-in-out;
}

/* Updated Module Image Container */
.module-image-container {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
    width: 100%;
    height: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.module-image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.module-image {
    width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Module display improvements */
.module-display {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Responsive adjustments for module showcase */
@media (max-width: 968px) {
    .module-showcase {
        grid-template-columns: 280px 1fr;
        gap: 2rem;
    }

    .module-card {
        padding: 1rem 0.75rem;
        min-height: 70px;
    }

    .module-card__icon {
        width: 36px;
        height: 36px;
    }
}

/* Legacy carousel styles removed - using new full-width carousel system */

/* Old mobile carousel styles removed - using new full-width system */

/* Hero Image Wrapper - Desktop Hover Effect */
.hero-image-wrapper {
    display: inline-block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;
    perspective: 1000px;
    cursor: pointer;
}

/* Desktop-only hover effect */
@media (min-width: 769px) {
    .hero-image-wrapper:hover {
        transform: scale(1.4);
        z-index: 5;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }
}

/* Disable effect on mobile/tablet */
@media (max-width: 768pxpx) {
    .hero-image-wrapper:hover {
        transform: none;
        box-shadow: none;
    }
}

/* Hero Dashboard Image */
.hero-image-container {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: inherit;
    overflow: hidden;
    width: 100%;
    max-width: 700px;
}

.hero-image-container:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.2);
}

.hero-dashboard-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    display: block;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.hero-dashboard-image:hover {
    transform: scale(1.02);
}

/* Navigation Improvements */
.nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__item {
    position: relative;
}

.nav__link {
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

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

.nav__link--active {
    color: var(--primary-color);
}

/* Navigation Dropdown */
.nav__dropdown {
    position: relative;
}

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

.nav__dropdown-toggle i {
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
}

.nav__dropdown:hover .nav__dropdown-toggle i {
    transform: rotate(180deg);
}

.nav__dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav__dropdown-link:hover {
    color: var(--primary-color);
    background: rgba(0, 86, 179, 0.05);
}

.nav__dropdown-link--active {
    color: var(--primary-color);
    background: rgba(0, 86, 179, 0.1);
}

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



.nav__logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Adjust header height */
.header {
    height: 120px;
    padding: 1rem 0;
}

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

.nav__logo {
    display: flex;
    align-items: center;
}

.main {
    padding-top: 120px;
}

.flash-messages {
    top: 120px;
}

/* Hero Tagline */
.hero__tagline {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Button Animations */
.btn--animated {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.btn--animated:hover::before {
    left: 100%;
}

.btn--animated:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.3);
}

.btn--outline.btn--animated:hover {
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.15);
}

/* Animated Background */
.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230056b3' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-10px); }
    50% { transform: translateX(10px) translateY(-20px); }
    75% { transform: translateX(-5px) translateY(-15px); }
    100% { transform: translateX(0) translateY(0); }
}

.hero__bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(0, 86, 179, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(242, 133, 0, 0.08) 0%, transparent 50%);
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Hero Image Parallax */
.hero-image-container {
    transition: transform 0.3s ease;
}

.hero-image-container:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) scale(1.02);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.25);
}


/* Hero Dashboard Container - Ensure space for hover effect */
.hero__dashboard {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    overflow: visible;
}

.hero__visual {
    position: relative;
    overflow: visible;
}

/* Ensure the hero dashboard image maintains rounded corners */
.hero-dashboard-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    transition: inherit;
    display: block;
}


/* Enhanced Footer Styling */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer__section h4,
.footer__title {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li {
    margin-bottom: 0.75rem;
}

.footer__links a,
.footer__link {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer__links a:hover,
.footer__link:hover {
    color: var(--accent-color);
}

/* Footer Logo - Same as Navbar */
.footer__logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer__logo-img {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
    overflow: hidden;
}

.footer__logo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.footer__description {
    color: var(--gray-300);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.footer__text {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer__bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 2rem;
    text-align: center;
}

.footer__copyright {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin: 0;
}

/* Footer Button */
.btn--footer {
    margin-top: 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.contact-section-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--light-blue);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-section-group:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-icon-wrapper svg,
.contact-icon-wrapper i,
.contact-icon-wrapper [data-feather] {
    color: var(--white) !important;
    width: 24px !important;
    height: 24px !important;
    stroke: var(--white) !important;
    stroke-width: 2 !important;
    fill: none !important;
}

.contact-section-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.contact-section-description {
    color: var(--gray-700);
    line-height: 1.5;
    margin: 0;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1rem 0;
}

.contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--primary-color);
}

.contact-details h3 {
    margin-bottom: 0.75rem;
    color: var(--gray-900);
    font-size: 1.2rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: var(--gray-700);
    font-size: 1rem;
}

.contact-details small {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Quick Actions */
.quick-actions {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light-blue);
    border-radius: var(--border-radius-lg);
}

.quick-actions h3 {
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--gray-700);
    transition: all 0.2s ease;
}

.action-btn:hover {
    background: var(--gray-50);
    color: var(--primary-color);
}

.action-btn i {
    color: var(--primary-color);
}

/* Contact Details Section */
.contact-details-section {
    margin-bottom: 4rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.form-container {
    max-width: 100%;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.form-subtitle {
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 500;
    font-size: 1.1rem;
}

.contact-form-element {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.phone-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    grid-column: 1 / -1;
}

.phone-prefix {
    padding: 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: var(--white);
    cursor: pointer;
    flex-shrink: 0;
    width: 90px;
}

.phone-input {
    flex: 1;
}

.form-label {
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-input {
    padding: 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.2s ease;
    background: var(--gray-50);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
    background: var(--white);
}

.form-textarea {
    padding: 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 1rem;
    resize: vertical;
    min-height: 140px;
    transition: border-color 0.2s ease;
    font-family: inherit;
    background: var(--gray-50);
}

.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
    background: var(--white);
}

.form-terms {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-align: center;
    margin: 1.5rem 0 1rem 0;
}

.submit-btn {
    background: var(--accent-color);
    border: none;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 1.25rem 2.5rem;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.submit-btn:hover {
    background: #e07400;
    transform: translateY(-1px);
}

.form-error {
    color: #dc3545;
    font-size: 0.875rem;
}

.btn--full {
    width: 100%;
}

/* Contact Details Section - Bottom */
.contact-details-section {
    padding: 4rem 0;
    background: var(--light-orange);
}

.contact-details-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.contact-details-grid .contact-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

.contact-details-grid .contact-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-details-grid .contact-icon i {
    color: var(--white);
    width: 24px;
    height: 24px;
}

.contact-details-grid .contact-details h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.contact-details-grid .contact-details p {
    margin: 0;
}

.contact-details-grid .contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-details-grid .contact-link:hover {
    color: var(--accent-color);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .phone-group {
        grid-column: 1;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-section-group {
        padding: 1.5rem;
    }
}