/* ===================================
   Gurukul Product Website - Styles
   =================================== */

/* CSS Variables */
:root {
    /* Primary Colors */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-start: #667eea;
    --primary-end: #764ba2;
    --primary-hover: #5a6fd6;

    /* Accent Colors */
    --accent-green: #10b981;
    --accent-blue: #3b82f6;
    --accent-orange: #f59e0b;
    --accent-pink: #ec4899;
    --accent-purple: #8b5cf6;

    /* Dark Theme Colors */
    --bg-dark: #0a0a1a;
    --bg-darker: #050510;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --bg-glass: rgba(255, 255, 255, 0.05);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;

    /* Borders */
    --border-color: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(102, 126, 234, 0.3);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.3);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 6rem 0;
    --container-padding: 0 2rem;

    /* Transitions */
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* Light Theme */
[data-theme="light"] {
    --bg-dark: #f8f9fc;
    --bg-darker: #ffffff;
    --bg-card: rgba(0, 0, 0, 0.02);
    --bg-card-hover: rgba(0, 0, 0, 0.04);
    --bg-glass: rgba(255, 255, 255, 0.8);

    --text-primary: #1a1a2e;
    --text-secondary: #52525b;
    --text-muted: #71717a;

    --border-color: rgba(0, 0, 0, 0.08);
    --border-glow: rgba(102, 126, 234, 0.2);

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.15);
}

/* Light theme specific overrides */
[data-theme="light"] .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .dashboard-preview,
[data-theme="light"] .feature-mockup,
[data-theme="light"] .floating-card {
    background: rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .preview-header {
    background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .table-row.header {
    background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .gradient-orb {
    opacity: 0.15;
}

/* Theme Toggle Button */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    color: var(--text-secondary);
}

.theme-toggle:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border-color: var(--primary-start);
}

.theme-toggle .sun-icon {
    display: none;
}

.theme-toggle .moon-icon {
    display: block;
}

[data-theme="light"] .theme-toggle .sun-icon {
    display: block;
}

[data-theme="light"] .theme-toggle .moon-icon {
    display: none;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Gradient Text */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid transparent;
}

.btn-ghost:hover {
    color: var(--text-primary);
}

.btn-glass {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--bg-glass);
    border-color: var(--primary-start);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-start);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-start);
    top: -200px;
    right: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-pink);
    bottom: 10%;
    left: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-blue);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(20px, 30px) scale(1.02);
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Dashboard Preview */
.hero-visual {
    position: relative;
}

.dashboard-preview {
    background: rgba(25, 25, 45, 0.8);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    backdrop-filter: blur(20px);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-color);
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
}

.preview-dots span:nth-child(1) {
    background: #ff5f57;
}

.preview-dots span:nth-child(2) {
    background: #ffbd2e;
}

.preview-dots span:nth-child(3) {
    background: #28c840;
}

.preview-title {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.preview-content {
    display: flex;
    padding: 1.5rem;
    gap: 1.5rem;
}

.preview-sidebar {
    width: 60px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-item {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.sidebar-item.active {
    background: var(--primary-gradient);
}

.preview-main {
    flex: 1;
}

.preview-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mini-card {
    padding: 1rem;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.mini-card .card-icon {
    font-size: 1.25rem;
    display: block;
    margin-bottom: 0.5rem;
}

.mini-card .card-value {
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
}

.mini-card .card-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.card-purple {
    border-left: 3px solid var(--primary-start);
}

.card-green {
    border-left: 3px solid var(--accent-green);
}

.card-orange {
    border-left: 3px solid var(--accent-orange);
}

.card-pink {
    border-left: 3px solid var(--accent-pink);
}

.preview-chart {
    height: 80px;
    background: linear-gradient(to right,
            rgba(102, 126, 234, 0.2) 0%,
            rgba(102, 126, 234, 0.4) 30%,
            rgba(102, 126, 234, 0.2) 50%,
            rgba(102, 126, 234, 0.5) 70%,
            rgba(102, 126, 234, 0.3) 100%);
    border-radius: var(--radius-md);
    position: relative;
}

.preview-chart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--primary-start), transparent);
    opacity: 0.3;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(25, 25, 45, 0.9);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    animation: floatCard 6s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: -40px;
    animation-delay: -2s;
}

.card-2 {
    bottom: 15%;
    right: -30px;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-icon {
    font-size: 1.5rem;
}

.floating-text strong {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.125rem;
}

.floating-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===================================
   Section Styles
   =================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--primary-start);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* ===================================
   Features Section
   =================================== */
.features {
    padding: var(--section-padding);
    position: relative;
}

/* Main Feature Showcases */
.main-features {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-bottom: 6rem;
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-showcase.reverse {
    grid-template-columns: 1fr 1.1fr;
}

.feature-showcase.reverse .feature-image {
    order: 2;
}

.feature-showcase.reverse .feature-content {
    order: 1;
}

.feature-image {
    position: relative;
}

.feature-mockup {
    background: rgba(25, 25, 45, 0.8);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.mockup-title {
    font-weight: 600;
    font-size: 1rem;
}

.mockup-btn {
    padding: 0.5rem 1rem;
    background: var(--primary-gradient);
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
}

.mockup-filters {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.filter-pill {
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

/* Student Mockup Table */
.mockup-table {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 0.8fr;
    gap: 1rem;
    padding: 0.875rem 1rem;
    font-size: 0.8125rem;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row.header {
    background: rgba(0, 0, 0, 0.2);
    font-weight: 600;
    color: var(--text-secondary);
}

.with-avatar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.avatar {
    width: 28px;
    height: 28px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 600;
}

.actions {
    font-size: 0.875rem;
}

/* Fee Mockup */
.fee-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fee-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.fee-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.fee-title {
    font-weight: 600;
    font-size: 0.9375rem;
}

.fee-badge {
    padding: 0.25rem 0.5rem;
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-green);
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 500;
}

.fee-amount {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.fee-meta {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.fee-actions {
    display: flex;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

/* Attendance Mockup */
.attendance-selector {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.selector-item {
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
}

.attendance-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.att-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
}

.att-stat.present {
    color: var(--accent-green);
}

.att-stat.absent {
    color: #ef4444;
}

.att-stat.late {
    color: var(--accent-orange);
}

.attendance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.student-att {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
}

.student-att.present {
    border-color: rgba(16, 185, 129, 0.3);
}

.student-att.absent {
    border-color: rgba(239, 68, 68, 0.3);
}

.student-att.late {
    border-color: rgba(245, 158, 11, 0.3);
}

.att-avatar {
    width: 28px;
    height: 28px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 600;
}

.att-status {
    margin-left: auto;
}

/* Dashboard Mockup */
.mockup-date {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.dash-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.dash-stat.purple {
    border-left: 3px solid var(--primary-start);
}

.dash-stat.green {
    border-left: 3px solid var(--accent-green);
}

.dash-stat.orange {
    border-left: 3px solid var(--accent-orange);
}

.dash-stat.pink {
    border-left: 3px solid var(--accent-pink);
}

.dash-icon {
    font-size: 1.25rem;
}

.dash-info {
    display: flex;
    flex-direction: column;
}

.dash-value {
    font-size: 1.125rem;
    font-weight: 700;
}

.dash-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.dashboard-chart {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.chart-period {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 80px;
}

.chart-bar {
    flex: 1;
    background: var(--primary-gradient);
    border-radius: 4px 4px 0 0;
    height: var(--height);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0.25rem;
    min-height: 4px;
}

.chart-bar span {
    font-size: 0.625rem;
    color: white;
    font-weight: 500;
}

/* Notices Mockup */
.filter-pill.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

.notices-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.notice-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.notice-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 600;
    flex-shrink: 0;
}

.notice-badge.high {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.notice-badge.medium {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-orange);
}

.notice-badge.low {
    background: rgba(102, 126, 234, 0.15);
    color: var(--primary-start);
}

.notice-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.notice-title {
    font-size: 0.875rem;
    font-weight: 500;
}

.notice-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Student Profile Mockup */
.student-profile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-avatar {
    width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.profile-info {
    display: flex;
    flex-direction: column;
}

.profile-name {
    font-size: 1.125rem;
    font-weight: 600;
}

.profile-class {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.profile-status {
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.profile-status.active {
    color: var(--accent-green);
}

.profile-stats {
    display: flex;
    gap: 1rem;
}

.profile-stat {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.pstat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-start);
}

.pstat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.profile-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.8125rem;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-muted);
}

.detail-value {
    color: var(--text-primary);
}

/* Feature Content */
.feature-content {
    max-width: 480px;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-wrapper.purple {
    background: rgba(102, 126, 234, 0.15);
}

.feature-icon-wrapper.pink {
    background: rgba(236, 72, 153, 0.15);
}

.feature-icon-wrapper.green {
    background: rgba(16, 185, 129, 0.15);
}

.feature-icon-wrapper.orange {
    background: rgba(245, 158, 11, 0.15);
}

.feature-icon-wrapper.blue {
    background: rgba(59, 130, 246, 0.15);
}

.feature-icon {
    font-size: 1.75rem;
}

.feature-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    fill: none;
    stroke: var(--accent-green);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-top: 2px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateY(-4px);
}

.feature-card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.feature-card-icon.purple {
    background: rgba(102, 126, 234, 0.15);
}

.feature-card-icon.pink {
    background: rgba(236, 72, 153, 0.15);
}

.feature-card-icon.green {
    background: rgba(16, 185, 129, 0.15);
}

.feature-card-icon.orange {
    background: rgba(245, 158, 11, 0.15);
}

.feature-card-icon.blue {
    background: rgba(59, 130, 246, 0.15);
}

.feature-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================
   How It Works
   =================================== */
.how-it-works {
    padding: var(--section-padding);
    background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.03) 50%, transparent 100%);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
}

.step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all var(--transition);
}

.step:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 0.75rem;
    background: var(--primary-gradient);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.step-connector {
    width: 60px;
    height: 2px;
    background: var(--border-color);
    margin-top: 4rem;
    position: relative;
}

.step-connector::after {
    content: '→';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-dark);
    padding: 0 0.5rem;
    color: var(--text-muted);
}

/* ===================================
   Testimonials
   =================================== */
.testimonials {
    padding: var(--section-padding);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.testimonial-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.quote-icon {
    font-size: 3rem;
    line-height: 1;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.author-info strong {
    display: block;
    font-size: 0.9375rem;
    margin-bottom: 0.125rem;
}

.author-info span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ===================================
   Pricing
   =================================== */
.pricing {
    padding: var(--section-padding);
    background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.03) 50%, transparent 100%);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    font-size: 0.9375rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.toggle-label.active {
    color: var(--text-primary);
}

.save-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-green);
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 600;
    margin-left: 0.25rem;
}

.toggle-switch {
    width: 50px;
    height: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    position: relative;
    cursor: pointer;
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--primary-gradient);
    border-radius: 50%;
    transition: var(--transition);
}

.toggle-switch.active .toggle-slider {
    left: 25px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    position: relative;
    transition: all var(--transition);
}

.pricing-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.pricing-card.popular {
    border-color: var(--primary-start);
    box-shadow: var(--shadow-glow);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: var(--primary-gradient);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.pricing-header p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.pricing-amount {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    vertical-align: top;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    color: var(--accent-green);
    font-weight: 600;
}

.pricing-features .cross {
    color: var(--text-muted);
}

.pricing-features li.disabled {
    color: var(--text-muted);
}

/* ===================================
   CTA Section
   =================================== */
.cta {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg .orb-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -100px;
}

.cta-bg .orb-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -100px;
    background: var(--accent-pink);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-content>p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.cta-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cta-form input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition);
}

.cta-form input::placeholder {
    color: var(--text-muted);
}

.cta-form input:focus {
    outline: none;
    border-color: var(--primary-start);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.cta-note {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* ===================================
   Footer
   =================================== */
.footer {
    padding: 4rem 0 2rem;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand>p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--primary-start);
    border-color: var(--primary-start);
    color: white;
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-links h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===================================
   Animations
   =================================== */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .feature-showcase,
    .feature-showcase.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-showcase.reverse .feature-image,
    .feature-showcase.reverse .feature-content {
        order: unset;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    /* Mobile Navigation Container */
    .navbar .container {
        flex-wrap: wrap;
        position: relative;
    }

    /* Nav Links - Mobile Dropdown */
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        order: 3;
        padding: 0;
        gap: 0;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid var(--border-color);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        margin-top: 1rem;
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--text-secondary);
        border-bottom: 1px solid var(--border-color);
        transition: all 0.2s ease;
        position: relative;
    }

    .nav-links a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--primary-gradient);
        transform: scaleY(0);
        transition: transform 0.2s ease;
    }

    .nav-links a:hover {
        background: rgba(102, 126, 234, 0.1);
        color: var(--text-primary);
        padding-left: 2rem;
    }

    .nav-links a:hover::before {
        transform: scaleY(1);
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    /* Nav Actions - Mobile */
    .nav-actions {
        display: none;
        flex-direction: column;
        width: 100%;
        order: 4;
        gap: 0.75rem;
        padding: 1.25rem 1.5rem;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid var(--border-color);
        animation: slideDown 0.3s ease-out 0.1s both;
    }

    .nav-actions.show {
        display: flex;
    }

    .nav-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1rem;
    }

    .nav-actions .btn-ghost {
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
    }

    .nav-actions .theme-toggle {
        align-self: center;
        margin-bottom: 0.5rem;
        width: 48px;
        height: 48px;
    }

    /* Mobile Menu Button */
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius-sm);
        background: var(--bg-glass);
        border: 1px solid var(--border-color);
        transition: all 0.3s ease;
    }

    .mobile-menu-btn:hover {
        background: var(--bg-card-hover);
        border-color: var(--primary-start);
    }

    .mobile-menu-btn span {
        transition: all 0.3s ease;
    }

    /* Hamburger to X Animation */
    .mobile-menu-btn.active {
        background: rgba(102, 126, 234, 0.2);
        border-color: var(--primary-start);
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Scrolled navbar mobile adjustments */
    .navbar.scrolled .nav-links,
    .navbar.scrolled .nav-actions {
        background: rgba(10, 10, 26, 0.98);
    }

    /* Light theme mobile menu */
    [data-theme="light"] .nav-links,
    [data-theme="light"] .nav-actions {
        background: rgba(255, 255, 255, 0.98);
    }

    [data-theme="light"] .nav-links a:hover {
        background: rgba(102, 126, 234, 0.08);
    }

    /* Mobile Overflow Fixes */
    .hero-visual {
        overflow: hidden;
        max-width: 100%;
    }

    .floating-card {
        display: none;
    }

    .gradient-orb {
        opacity: 0.2;
    }

    .orb-1 {
        width: 300px;
        height: 300px;
        right: -50px;
        top: -50px;
    }

    .orb-2 {
        width: 200px;
        height: 200px;
        left: -50px;
    }

    .orb-3 {
        width: 150px;
        height: 150px;
    }

    .feature-mockup {
        max-width: 100%;
        overflow: hidden;
        padding: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.0625rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: row;
        gap: 2rem;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

    .step-connector::after {
        content: '↓';
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    /* Dashboard preview – hide sidebar, stack content */
    .preview-sidebar {
        display: none;
    }

    .preview-content {
        padding: 1rem;
    }

    .preview-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .mini-card {
        padding: 0.75rem;
    }

    .mini-card .card-value {
        font-size: 1rem;
    }

    .mini-card .card-icon {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    /* Feature mockup table – collapse columns */
    .table-row {
        grid-template-columns: 1fr auto;
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .table-row span:nth-child(3) {
        display: none;
    }

    .table-row.header span:nth-child(3) {
        display: none;
    }

    .table-row span:nth-child(4) {
        display: none;
    }

    .table-row.header span:nth-child(4) {
        display: none;
    }

    /* Filters & selectors – wrap */
    .mockup-filters {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .filter-pill {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }

    .attendance-selector {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .selector-item {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }

    /* Attendance stats – wrap */
    .attendance-stats {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .att-stat {
        padding: 0.375rem 0.5rem;
        font-size: 0.75rem;
    }

    .attendance-grid {
        grid-template-columns: 1fr;
    }

    /* Dashboard mockup stats */
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .dash-stat {
        padding: 0.625rem;
        gap: 0.5rem;
    }

    .dash-value {
        font-size: 0.9375rem;
    }

    .dash-icon {
        font-size: 1rem;
    }

    /* CTA section */
    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-form {
        padding: 1.25rem;
    }

    /* Profile mockup */
    .profile-avatar {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .profile-stats {
        gap: 0.5rem;
    }

    .profile-stat {
        padding: 0.5rem;
    }

    .pstat-value {
        font-size: 1rem;
    }

    /* Notice items */
    .notice-item {
        padding: 0.625rem;
    }

    .notice-title {
        font-size: 0.8125rem;
    }

    /* Fee mockup */
    .fee-amount {
        font-size: 1.25rem;
    }

    /* Feature content */
    .feature-content {
        max-width: 100%;
    }

    .feature-title {
        font-size: 1.5rem;
    }

    /* Chart bars on mobile */
    .chart-bars {
        height: 60px;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 0 1rem;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .preview-cards {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .mini-card {
        padding: 0.5rem;
    }

    .mini-card .card-value {
        font-size: 0.875rem;
    }

    .mini-card .card-icon {
        font-size: 0.875rem;
    }

    .mini-card .card-label {
        font-size: 0.625rem;
    }

    .floating-card {
        display: none;
    }

    .dashboard-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.375rem;
    }

    .dash-stat {
        padding: 0.5rem;
        gap: 0.375rem;
    }

    .dash-value {
        font-size: 0.8125rem;
    }

    .dash-label {
        font-size: 0.625rem;
    }

    .dash-icon {
        font-size: 0.875rem;
    }

    .section-title {
        font-size: 1.625rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .main-features {
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .feature-title {
        font-size: 1.25rem;
    }

    .feature-description {
        font-size: 0.9375rem;
    }

    .feature-list li {
        font-size: 0.8125rem;
    }

    .mockup-header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .mockup-title {
        font-size: 0.875rem;
    }

    .mockup-btn {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .step {
        padding: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .price {
        font-size: 2.25rem;
    }

    .cta-content h2 {
        font-size: 1.625rem;
    }

    .chart-bars {
        height: 50px;
        gap: 0.25rem;
    }

    .chart-bar span {
        font-size: 0.5rem;
    }

    .preview-chart {
        height: 50px;
    }
}