/* ===================================
   CSS RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===================================
   CUSTOM SCROLLBAR
   =================================== */
/* Webkit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 10, 10, 0.95);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    border: 2px solid rgba(10, 10, 10, 0.95);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #7b8ef8 0%, #8b5fbf 100%);
}

::-webkit-scrollbar-corner {
    background: rgba(10, 10, 10, 0.95);
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #764ba2 rgba(10, 10, 10, 0.95);
}


:root {
    /* Colors */
    --primary: #2196F3;
    --primary-dark: #1976D2;
    --primary-light: #BBDEFB;
    --secondary: #4CAF50;
    --accent: #FF6B6B;
    --success: #4CAF50;
    --warning: #FFC107;
    --danger: #F44336;

    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    --black: #000000;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    /* Transitions */
    --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;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background: var(--gray-50);
    color: var(--gray-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: var(--transition);
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    font-size: 1.75rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav-links a.btn-primary {
    color: #FFFFFF !important;
}

.nav-links a {
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--primary);
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm);
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--gray-900);
    transition: var(--transition-fast);
}

/* ===================================
   BUTTONS
   =================================== */
.btn-primary, .btn-secondary, .btn-hero, .btn-outline, .btn-checkout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-900);
    border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    box-shadow: var(--shadow-lg);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-checkout {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.25rem;
    font-size: 1.125rem;
    box-shadow: var(--shadow-lg);
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-checkout:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    padding: 150px 0 100px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: blob 20s ease-in-out infinite;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    top: -100px;
    right: -150px;
    animation-delay: 2s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

@keyframes blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
    animation: slideDown 0.6s ease-out;
}

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

.badge-icon {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    animation: slideUp 0.8s ease-out 0.2s both;
}

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

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.7;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
    animation: slideUp 0.8s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-3xl);
    animation: slideUp 0.8s ease-out 0.8s both;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-visual {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    animation: fadeIn 1s ease-out 1s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.dashboard-preview {
    position: relative;
}

.preview-window {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.window-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md);
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.window-dots {
    display: flex;
    gap: 6px;
}

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

.window-dots span:nth-child(1) { background: #FF5F56; }
.window-dots span:nth-child(2) { background: #FFBD2E; }
.window-dots span:nth-child(3) { background: #27C93F; }

.window-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
}

.window-content {
    padding: var(--spacing-lg);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.preview-card {
    background: var(--gray-50);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: var(--transition);
}

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

.card-icon {
    font-size: 2rem;
}

.card-title {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
}

.card-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.card-1 { animation: slideInCard 0.6s ease-out 1.2s both; }
.card-2 { animation: slideInCard 0.6s ease-out 1.4s both; }
.card-3 { animation: slideInCard 0.6s ease-out 1.6s both; }
.card-4 { animation: slideInCard 0.6s ease-out 1.8s both; }

@keyframes slideInCard {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-element {
    position: absolute;
    animation: floatElement 4s ease-in-out infinite;
}

.element-1 {
    top: -30px;
    right: -50px;
    animation-delay: 0s;
}

.element-2 {
    bottom: -30px;
    left: -50px;
    animation-delay: 2s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.notification-card {
    background: var(--white);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.notif-icon {
    font-size: 1.25rem;
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-3xl);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features-section {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    background: var(--gray-50);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card[data-aos="fade-up"] {
    animation: fadeUpAOS 0.6s ease-out forwards;
}

@keyframes fadeUpAOS {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.feature-card:hover .feature-icon {
    animation: rotateIcon 0.6s ease-in-out;
}

@keyframes rotateIcon {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(10deg) scale(1.1);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.feature-tags {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.tag {
    padding: 0.25rem 0.75rem;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */
.how-it-works {
    padding: 100px 0;
    background: var(--gray-50);
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-xl);
    opacity: 0;
    transform: translateX(-50px);
}

.step-item[data-aos="fade-right"] {
    animation: fadeRight 0.8s ease-out forwards;
}

.step-item[data-aos="fade-left"] {
    animation: fadeLeft 0.8s ease-out forwards;
}

@keyframes fadeRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.step-description {
    color: var(--gray-600);
    line-height: 1.7;
}

.step-visual {
    flex-shrink: 0;
}

.step-icon {
    font-size: 4rem;
}

.step-arrow {
    text-align: center;
    margin: var(--spacing-lg) 0;
    opacity: 0;
}

.step-arrow[data-aos="fade-up"] {
    animation: fadeUpArrow 0.6s ease-out forwards;
}

@keyframes fadeUpArrow {
    to {
        opacity: 1;
    }
}

.step-arrow svg {
    color: var(--primary);
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* ===================================
   PRODUCT TOUR SECTION
   =================================== */
.product-tour {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.tour-eyebrow {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
    animation: slideDown 0.6s ease-out;
}

.tour-feature {
    padding: 80px 0;
    position: relative;
}

.tour-feature:nth-child(even) {
    background: var(--gray-50);
}

.tour-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.tour-content.reverse {
    direction: rtl;
}

.tour-content.reverse > * {
    direction: ltr;
}

.tour-text {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-feature.active .tour-text {
    opacity: 1;
    transform: translateX(0);
}

.tour-content.reverse .tour-text {
    transform: translateX(50px);
}

.tour-content.reverse.active .tour-text {
    transform: translateX(0);
}

.tour-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.tour-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.tour-motivation {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.tour-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

.tour-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.tour-features-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: 1rem;
    color: var(--gray-700);
}

.tour-features-list .check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.tour-visual {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-feature.active .tour-visual {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* App Mockup Styles */
.app-mockup {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    transition: var(--transition);
}

.app-mockup:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #FF5F56; }
.mockup-dots span:nth-child(2) { background: #FFBD2E; }
.mockup-dots span:nth-child(3) { background: #27C93F; }

.mockup-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
}

.mockup-content {
    padding: var(--spacing-xl);
    background: var(--gray-50);
    min-height: 400px;
}

/* Dashboard Mockup */
.mockup-quote {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    box-shadow: var(--shadow-md);
}

.quote-icon {
    font-size: 2rem;
}

.quote-text {
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.6;
}

.mockup-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.stat-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.stat-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

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

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
}

.stat-progress {
    height: 6px;
    background: var(--gray-300);
    border-radius: 3px;
    overflow: hidden;
}

.stat-progress div {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: width 1s ease-out;
}

/* Habits Mockup */
.habit-list {
    margin-bottom: var(--spacing-xl);
}

.habit-item {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.habit-check {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.habit-item.completed .habit-check {
    background: var(--success);
    border-color: var(--success);
}

.habit-name {
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

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

.habit-chart {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.chart-title {
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: var(--spacing-sm);
    height: 120px;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: var(--radius) var(--radius) 0 0;
    position: relative;
    transition: height 0.6s ease-out;
    min-height: 20px;
}

.chart-bar span {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* Knowledge Mockup */
.knowledge-sidebar {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-md);
}

.knowledge-folder {
    padding: var(--spacing-md);
    border-radius: var(--radius);
    margin-bottom: var(--spacing-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.knowledge-folder:hover {
    background: var(--gray-100);
}

.knowledge-folder.active {
    background: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 600;
}

.knowledge-main {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.knowledge-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.knowledge-tags {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.knowledge-content {
    margin-bottom: var(--spacing-lg);
}

.knowledge-line {
    height: 8px;
    background: var(--gray-300);
    border-radius: 4px;
    margin-bottom: var(--spacing-sm);
}

.knowledge-line.short {
    width: 60%;
}

.knowledge-line.medium {
    width: 80%;
}

.knowledge-links {
    display: flex;
    gap: var(--spacing-md);
}

.linked-note {
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--gray-100);
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.linked-note:hover {
    background: var(--primary-light);
}

/* Learning Mockup */
.flashcard {
    background: var(--white);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-xl);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.flashcard:hover {
    transform: rotateY(5deg);
    box-shadow: var(--shadow-2xl);
}

.flashcard-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.flashcard-text {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
}

.flashcard-counter {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-align: center;
    margin-top: var(--spacing-lg);
}

.flashcard-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.flashcard-btn {
    flex: 1;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-300);
    background: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.flashcard-btn.hard {
    border-color: var(--danger);
    color: var(--danger);
}

.flashcard-btn.good {
    border-color: var(--warning);
    color: var(--warning);
}

.flashcard-btn.easy {
    border-color: var(--success);
    color: var(--success);
}

.flashcard-btn:hover {
    transform: translateY(-2px);
}

.flashcard-btn.hard:hover {
    background: var(--danger);
    color: var(--white);
}

.flashcard-btn.good:hover {
    background: var(--warning);
    color: var(--white);
}

.flashcard-btn.easy:hover {
    background: var(--success);
    color: var(--white);
}

.learning-stats {
    display: flex;
    justify-content: space-around;
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

.learning-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

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

/* Finance Mockup */
.finance-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.finance-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.finance-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-sm);
}

.finance-amount {
    font-size: 1.75rem;
    font-weight: 800;
}

.finance-card.income .finance-amount {
    color: var(--success);
}

.finance-card.expense .finance-amount {
    color: var(--danger);
}

.finance-card.balance .finance-amount {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.finance-chart {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.chart-svg {
    width: 100%;
    height: 100px;
}

/* Scroll Progress Indicator */
.tour-progress {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    z-index: 100;
}

.tour-progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    transition: var(--transition);
    cursor: pointer;
}

.tour-progress-dot.active {
    background: var(--primary);
    transform: scale(1.5);
}

.tour-progress-dot:hover {
    background: var(--primary-light);
    transform: scale(1.3);
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing-section {
    padding: 100px 0;
    background: var(--white);
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--gray-50);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    position: relative;
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.9);
}

.pricing-card[data-aos="fade-up"] {
    animation: scaleUp 0.6s ease-out forwards;
}

@keyframes scaleUp {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.pricing-card.featured {
    background: var(--white);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--gray-200);
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--spacing-sm);
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    color: var(--gray-600);
    font-size: 1rem;
}

.pricing-save {
    margin-top: var(--spacing-sm);
    color: var(--success);
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
}

.feature-item.disabled {
    opacity: 0.4;
}

.check-icon {
    flex-shrink: 0;
    color: var(--success);
}

.feature-item.disabled .check-icon {
    color: var(--gray-400);
}

.pricing-button {
    width: 100%;
}

.pricing-note {
    text-align: center;
    margin-top: var(--spacing-md);
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-2xl);
}

.testimonial-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card[data-aos="fade-up"] {
    animation: fadeUpTestimonial 0.8s ease-out forwards;
}

@keyframes fadeUpTestimonial {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.testimonial-rating {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-text {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-name {
    font-weight: 700;
    color: var(--gray-900);
}

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

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

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

.faq-item {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.faq-item[data-aos="fade-up"] {
    animation: fadeUpFAQ 0.6s ease-out forwards;
}

@keyframes fadeUpFAQ {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-icon {
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--gray-700);
    line-height: 1.7;
}

/* ===================================
   LOGIN PORTAL SECTION
   =================================== */
.login-portal-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.login-portal-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-3xl);
    box-shadow: var(--shadow-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    transition: var(--transition);
}

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

.login-portal-content {
    text-align: center;
}

.login-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-lg);
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(20deg);
    }
    75% {
        transform: rotate(-20deg);
    }
}

.login-portal-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--gray-900);
}

.login-portal-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.btn-login-portal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.btn-login-portal:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

.login-portal-stats {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.portal-stat {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    transition: var(--transition-fast);
}

.portal-stat:hover {
    background: var(--primary-light);
    transform: translateX(5px);
}

.portal-stat-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.portal-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--spacing-xs);
}

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

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

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.9);
}

.cta-content[data-aos="zoom-in"] {
    animation: zoomIn 0.8s ease-out forwards;
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

.cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-2xl);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.cta-note {
    opacity: 0.9;
    font-size: 0.875rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-brand .logo-wrapper {
    margin-bottom: var(--spacing-md);
}

.footer-tagline {
    color: var(--gray-400);
    margin-bottom: var(--spacing-lg);
}

.footer-social {
    display: flex;
    gap: var(--spacing-lg);
}

.social-link {
    color: var(--gray-400);
    transition: var(--transition-fast);
}

.social-link:hover {
    color: var(--white);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-2xl);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

.footer-column a {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--gray-800);
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ===================================
   CHECKOUT PAGE
   =================================== */
.checkout-steps {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.step {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    opacity: 0.4;
}

.step.active {
    opacity: 1;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-300);
    color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.step.active .step-num {
    background: var(--gradient-primary);
    color: var(--white);
}

.step-label {
    font-size: 0.875rem;
    font-weight: 600;
}

.step-line {
    width: 40px;
    height: 2px;
    background: var(--gray-300);
}

.checkout-section {
    padding: 120px 0 60px;
    background: var(--gray-50);
    min-height: 100vh;
}

.checkout-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.checkout-form-wrapper {
    background: var(--white);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.checkout-header {
    margin-bottom: var(--spacing-3xl);
}

.checkout-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
}

.checkout-subtitle {
    color: var(--gray-600);
    font-size: 1.125rem;
}

.form-section {
    margin-bottom: var(--spacing-3xl);
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--gray-200);
}

.section-icon {
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--gray-700);
    font-size: 0.875rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: var(--transition-fast);
}

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

.form-hint {
    display: block;
    margin-top: var(--spacing-xs);
    font-size: 0.75rem;
    color: var(--gray-500);
}

.form-error {
    color: var(--danger);
    font-size: 0.875rem;
    margin-top: var(--spacing-sm);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.payment-method-option {
    cursor: pointer;
}

.payment-method-option input[type="radio"] {
    display: none;
}

.payment-method-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    transition: var(--transition-fast);
}

.payment-method-option input[type="radio"]:checked + .payment-method-card {
    border-color: var(--primary);
    background: rgba(33, 150, 243, 0.05);
}

.payment-method-icon {
    font-size: 2rem;
}

.payment-method-name {
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.payment-method-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.card-element-wrapper, .sepa-element-wrapper {
    background: var(--gray-50);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-lg);
}

.stripe-element {
    padding: 0.875rem 1rem;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-text {
    color: var(--gray-700);
    font-size: 0.875rem;
    line-height: 1.6;
}

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

.security-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--gray-200);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--gray-600);
    font-size: 0.75rem;
}

.order-summary {
    position: sticky;
    top: 100px;
}

.summary-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.summary-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
}

.plan-details {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-xl);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
}

.plan-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--spacing-sm);
}

.summary-features {
    margin-bottom: var(--spacing-xl);
}

.summary-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    font-size: 0.875rem;
}

.summary-divider {
    height: 1px;
    background: var(--gray-200);
    margin: var(--spacing-lg) 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.summary-label {
    color: var(--gray-600);
}

.summary-value {
    font-weight: 600;
}

.summary-total {
    font-size: 1.25rem;
}

.summary-total .summary-label {
    color: var(--gray-900);
    font-weight: 700;
}

.summary-total .summary-value {
    font-size: 1.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-note {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--gray-50);
    border-radius: var(--radius);
    font-size: 0.75rem;
    color: var(--gray-600);
    margin: var(--spacing-lg) 0;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    border-radius: var(--radius-lg);
    border: 2px solid var(--success);
}

.guarantee-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--success);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
}

.guarantee-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.guarantee-text strong {
    color: var(--gray-900);
    font-size: 0.875rem;
}

.guarantee-text span {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.trust-signals {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--gray-200);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.trust-icon {
    font-size: 1.25rem;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }

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

    .order-summary {
        position: static;
    }

    /* Product Tour Responsive */
    .tour-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .tour-content.reverse {
        direction: ltr;
    }

    .tour-text {
        order: 1;
    }

    .tour-visual {
        order: 2;
    }

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

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

    .finance-summary {
        grid-template-columns: 1fr;
    }
}


/* ===================================
   PROFESSIONAL MOBILE STYLES
   =================================== */

/* Smooth scrolling and touch optimization */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Mobile Drawer Styles */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    visibility: hidden;
}

.mobile-drawer.active {
    visibility: visible;
}

.mobile-drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-drawer.active .mobile-drawer-overlay {
    opacity: 1;
}

.mobile-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}

.mobile-drawer.active .mobile-drawer-content {
    transform: translateX(0);
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.mobile-drawer-close {
    width: 44px;
    height: 44px;
    border: none;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s;
}

.mobile-drawer-close:active {
    transform: scale(0.95);
    background: #e2e8f0;
}

.mobile-drawer-nav {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    border-radius: 12px;
    transition: all 0.2s;
}

.mobile-nav-link:active {
    background: #f1f5f9;
    transform: scale(0.98);
}

.mobile-drawer-cta {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f8fafc;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.btn-mobile-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.2s;
}

.btn-mobile-primary:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.btn-mobile-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    background: #ffffff;
    color: #475569 !important;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    transition: all 0.2s;
}

.btn-mobile-secondary:active {
    transform: scale(0.98);
    background: #f8fafc;
}

.mobile-drawer-social {
    padding: 16px 20px;
    display: flex;
    justify-content: center;
    gap: 32px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.mobile-social-link {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 500;
}

body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* ===================================
   MOBILE MEDIA QUERY - PROFESSIONAL
   =================================== */
@media (max-width: 768px) {
    /* Enable mobile elements */
    .mobile-drawer {
        display: block;
    }
    
    .mobile-menu-btn {
        display: flex !important;
        width: 44px;
        height: 44px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.2s;
    }
    
    .mobile-menu-btn:active {
        transform: scale(0.95);
        background: #f1f5f9;
    }
    
    .mobile-menu-btn span {
        width: 18px;
        height: 2px;
        background: #475569;
        border-radius: 2px;
        transition: all 0.3s;
    }
    
    .nav-links {
        display: none !important;
    }
    
    /* Navigation Bar */
    .navbar {
        padding: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    
    .nav-content {
        height: 64px;
        padding: 0 16px;
    }
    
    .logo-wrapper {
        font-size: 1.1rem;
        gap: 8px;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
    
    /* Global Container */
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    /* ===== HERO SECTION ===== */
    .hero {
        padding: 88px 0 48px;
        min-height: auto;
        overflow: hidden;
    }
    
    .hero-background {
        opacity: 0.6;
    }
    
    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content {
        width: 100%;
        text-align: center;
        order: 1;
        padding: 0;
    }
    
    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        margin: 0 auto 20px;
        font-size: 0.8rem;
        background: rgba(255,255,255,0.95);
        border: 1px solid rgba(102, 126, 234, 0.2);
        box-shadow: 0 2px 12px rgba(102, 126, 234, 0.15);
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.15;
        margin-bottom: 16px;
        letter-spacing: -0.02em;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 28px;
        color: #64748b;
        padding: 0 8px;
    }
    
    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
        padding: 0 8px;
    }
    
    .hero-cta .btn-hero {
        width: 100%;
        padding: 18px 24px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 14px;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.35);
    }
    
    .hero-cta .btn-secondary {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 14px;
        justify-content: center;
        background: #ffffff;
        border: 2px solid #e2e8f0;
    }
    
    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 32px;
        padding: 24px 16px;
        background: rgba(255,255,255,0.8);
        border-radius: 20px;
        border: 1px solid rgba(0,0,0,0.05);
        margin: 0 8px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
        font-weight: 800;
    }
    
    .stat-label {
        font-size: 0.7rem;
        color: #64748b;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .hero-visual {
        order: 2;
        margin-top: 40px;
        width: 100%;
        padding: 0 8px;
    }
    
    .dashboard-preview {
        transform: scale(0.9);
        transform-origin: center top;
    }
    
    .floating-element {
        display: none !important;
    }
    
    .preview-window {
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    }
    
    /* ===== FEATURES SECTION ===== */
    .features-section {
        padding: 56px 0;
        background: #f8fafc;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 32px;
        padding: 0 8px;
    }
    
    .section-title {
        font-size: 1.625rem;
        line-height: 1.25;
        margin-bottom: 12px;
        letter-spacing: -0.02em;
    }
    
    .section-title br {
        display: none;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        color: #64748b;
        line-height: 1.5;
    }
    
    .features-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        padding: 0 4px;
    }
    
    .feature-card {
        padding: 20px 16px;
        text-align: center;
        border-radius: 16px;
        background: #ffffff;
        border: 1px solid rgba(0,0,0,0.05);
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        transition: transform 0.2s, box-shadow 0.2s;
    }
    
    .feature-card:active {
        transform: scale(0.98);
    }
    
    .feature-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .feature-title {
        font-size: 0.9rem;
        font-weight: 700;
        margin-bottom: 6px;
        color: #1e293b;
    }
    
    .feature-description {
        font-size: 0.75rem;
        line-height: 1.4;
        color: #64748b;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .feature-tags {
        display: none;
    }
    
    /* ===== PRODUCT TOUR SECTIONS ===== */
    .product-tour {
        padding: 48px 0;
    }
    
    .tour-eyebrow {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .tour-feature {
        padding: 40px 0;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .tour-feature:last-child {
        border-bottom: none;
    }
    
    .tour-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px;
    }
    
    .tour-content.reverse {
        flex-direction: column !important;
    }
    
    .tour-text {
        text-align: center;
        order: 1;
        padding: 0 8px;
    }
    
    .tour-visual {
        order: 2;
        width: 100%;
        padding: 0;
    }
    
    .tour-badge {
        display: inline-flex;
        padding: 6px 14px;
        font-size: 0.75rem;
        font-weight: 600;
        margin-bottom: 12px;
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
        color: #667eea;
    }
    
    .tour-title {
        font-size: 1.375rem;
        line-height: 1.25;
        margin-bottom: 8px;
        letter-spacing: -0.02em;
    }
    
    .tour-motivation {
        font-size: 0.9rem;
        color: #667eea;
        font-weight: 500;
        margin-bottom: 12px;
    }
    
    .tour-description {
        font-size: 0.875rem;
        line-height: 1.6;
        color: #64748b;
        margin-bottom: 16px;
    }
    
    .tour-features-list {
        text-align: left;
        padding: 0;
        list-style: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .tour-features-list li {
        font-size: 0.8rem;
        padding: 10px 12px;
        background: #f8fafc;
        border-radius: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .tour-features-list .check {
        color: #22c55e;
        font-weight: bold;
    }
    
    .app-mockup {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }
    
    .mockup-header {
        padding: 10px 14px;
    }
    
    .mockup-title {
        font-size: 0.8rem;
    }
    
    .mockup-content {
        padding: 12px;
    }
    
    /* ===== TESTIMONIALS SECTION ===== */
    .testimonials-section {
        padding: 56px 0;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    }
    
    .testimonials-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        padding: 0 4px;
    }
    
    .testimonial-card {
        padding: 24px 20px;
        background: #ffffff;
        border-radius: 20px;
        border: 1px solid rgba(0,0,0,0.05);
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    }
    
    .testimonial-stars {
        font-size: 1.1rem;
        margin-bottom: 14px;
        letter-spacing: 2px;
    }
    
    .testimonial-text {
        font-size: 0.925rem;
        line-height: 1.6;
        color: #475569;
        margin-bottom: 16px;
    }
    
    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .testimonial-author img,
    .author-avatar {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }
    
    .author-name {
        font-size: 0.9rem;
        font-weight: 600;
        color: #1e293b;
    }
    
    .author-role {
        font-size: 0.75rem;
        color: #94a3b8;
    }
    
    /* ===== FAQ SECTION ===== */
    .faq-section {
        padding: 56px 0;
        background: #ffffff;
    }
    
    .faq-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        padding: 0 4px;
    }
    
    .faq-item {
        background: #f8fafc;
        border-radius: 14px;
        border: 1px solid rgba(0,0,0,0.04);
        overflow: hidden;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 0.925rem;
        font-weight: 600;
        color: #1e293b;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }
    
    .faq-question::after {
        font-size: 1.25rem;
        color: #94a3b8;
        transition: transform 0.3s;
    }
    
    .faq-answer {
        padding: 0 20px 18px;
        font-size: 0.875rem;
        line-height: 1.6;
        color: #64748b;
    }
    
    /* ===== CTA SECTIONS ===== */
    .cta-section {
        padding: 56px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    }
    
    .cta-content {
        text-align: center;
        padding: 0 8px;
    }
    
    .cta-title {
        font-size: 1.625rem;
        line-height: 1.25;
        margin-bottom: 12px;
        letter-spacing: -0.02em;
    }
    
    .cta-subtitle {
        font-size: 0.9rem;
        color: #64748b;
        margin-bottom: 24px;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
    }
    
    .cta-buttons .btn-hero,
    .cta-buttons .btn-secondary {
        width: 100%;
        padding: 18px 24px;
        font-size: 1rem;
        border-radius: 14px;
        justify-content: center;
    }
    
    .cta-stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .cta-stat-card {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 18px 20px;
        background: #ffffff;
        border-radius: 16px;
        border: 1px solid rgba(0,0,0,0.05);
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    
    .cta-stat-card .stat-icon {
        font-size: 2rem;
    }
    
    .cta-stat-card .stat-info {
        text-align: left;
    }
    
    .cta-stat-card .stat-value {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1e293b;
    }
    
    .cta-stat-card .stat-label {
        font-size: 0.8rem;
        color: #64748b;
    }
    
    /* Final CTA Gradient Section */
    .final-cta {
        padding: 56px 20px;
        text-align: center;
    }
    
    .final-cta h2 {
        font-size: 1.625rem;
        line-height: 1.25;
        margin-bottom: 12px;
    }
    
    .final-cta p {
        font-size: 0.925rem;
        margin-bottom: 28px;
        opacity: 0.9;
    }
    
    .final-cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .final-cta-buttons a {
        width: 100%;
        padding: 18px 24px;
        font-size: 1rem;
        border-radius: 14px;
        text-align: center;
        font-weight: 600;
    }
    
    /* ===== FOOTER ===== */
    .footer {
        padding: 48px 0 32px;
        background: #0f172a;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-brand {
        text-align: center;
        padding-bottom: 32px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .footer-brand .logo-wrapper {
        justify-content: center;
        margin-bottom: 12px;
    }
    
    .footer-tagline {
        font-size: 0.875rem;
        color: #94a3b8;
        margin-bottom: 20px;
    }
    
    .footer-social {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    
    .footer-social .social-link {
        padding: 10px 16px;
        background: rgba(255,255,255,0.05);
        border-radius: 10px;
        font-size: 0.8rem;
        color: #cbd5e1;
        transition: all 0.2s;
    }
    
    .footer-social .social-link:active {
        background: rgba(255,255,255,0.1);
    }
    
    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-heading {
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #f8fafc;
        margin-bottom: 16px;
    }
    
    .footer-column a {
        display: block;
        padding: 8px 0;
        font-size: 0.875rem;
        color: #94a3b8;
    }
    
    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-top: 32px;
        margin-top: 32px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .footer-copyright {
        font-size: 0.8rem;
        color: #64748b;
    }
    
    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .footer-legal a {
        font-size: 0.8rem;
        color: #94a3b8;
    }
    
    /* ===== MOCKUP ADJUSTMENTS ===== */
    .mockup-stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .stat-card {
        padding: 12px;
        border-radius: 10px;
    }
    
    .stat-card .stat-icon {
        font-size: 1.25rem;
    }
    
    .stat-card .stat-value {
        font-size: 0.95rem;
    }
    
    .stat-card .stat-label {
        font-size: 0.65rem;
    }
    
    .habit-list {
        gap: 6px;
    }
    
    .habit-item {
        padding: 10px 12px;
        border-radius: 10px;
    }
    
    .habit-name {
        font-size: 0.8rem;
    }
    
    .habit-streak {
        font-size: 0.65rem;
    }
    
    .chart-bars {
        height: 60px;
        gap: 4px;
    }
    
    .knowledge-mockup .mockup-content {
        flex-direction: column;
    }
    
    .knowledge-sidebar {
        flex-direction: row;
        overflow-x: auto;
        gap: 6px;
        padding-bottom: 10px;
        border-bottom: 1px solid #e2e8f0;
        margin-bottom: 10px;
    }
    
    .knowledge-folder {
        flex-shrink: 0;
        font-size: 0.75rem;
        padding: 8px 12px;
    }
    
    .flashcard {
        padding: 20px;
    }
    
    .flashcard-text {
        font-size: 0.95rem;
    }
    
    .flashcard-buttons {
        gap: 6px;
    }
    
    .flashcard-btn {
        padding: 10px 14px;
        font-size: 0.8rem;
        border-radius: 8px;
    }
    
    .learning-stats {
        gap: 12px;
    }
    
    .learning-stat-value {
        font-size: 1.125rem;
    }
    
    .learning-stat-label {
        font-size: 0.65rem;
    }
    
    /* ===== ANIMATIONS & PERFORMANCE ===== */
    .gradient-blob {
        display: none;
    }
    
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    a, button {
        touch-action: manipulation;
    }
}

/* ===== EXTRA SMALL DEVICES ===== */
@media (max-width: 374px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr !important;
    }
    
    .tour-features-list {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
}

/* ===== FIX HORIZONTAL SCROLL ===== */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .container {
        max-width: 100% !important;
        overflow-x: hidden !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .hero,
    .hero .container,
    .hero-content,
    .hero-visual,
    .features-section,
    .product-tour,
    .tour-feature,
    .tour-content,
    .testimonials-section,
    .faq-section,
    .cta-section,
    .footer,
    section {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    .hero-title,
    .section-title,
    .tour-title,
    .cta-title {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .dashboard-preview {
        max-width: 100% !important;
        transform: scale(0.8) !important;
        transform-origin: center top !important;
    }
    
    .preview-window {
        max-width: 100% !important;
    }
    
    .app-mockup {
        max-width: 100% !important;
    }
    
    * {
        max-width: 100vw;
    }
}

/* ===== FIX TEXT CUTOFF ===== */
@media (max-width: 768px) {
    .tour-text {
        padding: 0 16px !important;
        text-align: center !important;
    }
    
    .tour-title {
        font-size: 1.25rem !important;
        padding: 0 !important;
        margin: 0 auto 8px !important;
    }
    
    .tour-motivation {
        font-size: 0.85rem !important;
        padding: 0 !important;
    }
    
    .tour-description {
        font-size: 0.85rem !important;
        padding: 0 !important;
    }
    
    .tour-badge {
        font-size: 0.7rem !important;
        padding: 5px 12px !important;
    }
    
    .tour-features-list {
        padding: 0 8px !important;
        gap: 6px !important;
    }
    
    .tour-features-list li {
        font-size: 0.75rem !important;
        padding: 8px 10px !important;
    }
    
    .tour-content {
        padding: 0 !important;
    }
    
    .tour-feature .container {
        padding: 0 16px !important;
    }
}

/* ===== FIX ALL SECTION TEXT CUTOFF ===== */
@media (max-width: 768px) {
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
        box-sizing: border-box !important;
    }
    
    .section-header,
    .tour-text,
    .cta-content,
    .testimonial-card,
    .faq-item {
        padding-left: 8px !important;
        padding-right: 8px !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }
    
    h2, h3, p {
        max-width: 100% !important;
        word-wrap: break-word !important;
    }
    
    .section-title,
    .tour-title,
    .cta-title,
    .feature-title {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
        padding: 0 4px !important;
    }
    
    .section-subtitle,
    .tour-description,
    .tour-motivation,
    .feature-description {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        padding: 0 4px !important;
    }
    
    .hero-title {
        font-size: 1.75rem !important;
        padding: 0 8px !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        padding: 0 8px !important;
    }
}

/* ===== AGGRESSIVE OVERFLOW FIX ===== */
@media (max-width: 768px) {
    *, *::before, *::after {
        box-sizing: border-box !important;
        max-width: 100% !important;
    }
    
    html {
        overflow-x: hidden !important;
    }
    
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative !important;
    }
    
    .tour-features-list {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: unset !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .tour-features-list li {
        width: 100% !important;
        margin: 0 0 6px 0 !important;
    }
    
    .tour-content,
    .tour-text,
    .tour-visual {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .tour-feature {
        padding: 32px 0 !important;
    }
    
    .tour-feature .container {
        padding: 0 20px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .tour-title {
        font-size: 1.15rem !important;
    }
    
    .tour-motivation,
    .tour-description {
        font-size: 0.8rem !important;
    }
}

/* ===== FIX RTL AND TRANSFORM ISSUES ===== */
@media (max-width: 768px) {
    .tour-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: unset !important;
        direction: ltr !important;
        gap: 24px !important;
        width: 100% !important;
    }
    
    .tour-content.reverse {
        direction: ltr !important;
        flex-direction: column !important;
    }
    
    .tour-content.reverse > * {
        direction: ltr !important;
    }
    
    .tour-text {
        opacity: 1 !important;
        transform: none !important;
        width: 100% !important;
        text-align: center !important;
        padding: 0 4px !important;
    }
    
    .tour-content.reverse .tour-text {
        transform: none !important;
    }
    
    .tour-visual {
        width: 100% !important;
        order: 2 !important;
    }
    
    .tour-text {
        order: 1 !important;
    }
    
    .tour-feature.active .tour-text {
        transform: none !important;
    }
}

/* ===== ENABLE ANIMATIONS & BACKGROUND ON MOBILE ===== */
@media (max-width: 768px) {
    .gradient-blob {
        display: block !important;
        opacity: 0.25 !important;
    }
    
    .blob-1 {
        width: 300px !important;
        height: 300px !important;
        top: -100px !important;
        left: -100px !important;
    }
    
    .blob-2 {
        width: 250px !important;
        height: 250px !important;
        top: -50px !important;
        right: -100px !important;
    }
    
    .blob-3 {
        width: 200px !important;
        height: 200px !important;
        bottom: -100px !important;
    }
    
    .hero-background {
        display: block !important;
        opacity: 1 !important;
    }
    
    /* Enable animations */
    .hero-badge {
        animation: slideDown 0.6s ease-out !important;
    }
    
    .hero-title {
        animation: slideUp 0.8s ease-out 0.2s both !important;
    }
    
    .hero-subtitle {
        animation: slideUp 0.8s ease-out 0.4s both !important;
    }
    
    .hero-cta {
        animation: slideUp 0.8s ease-out 0.6s both !important;
    }
    
    .hero-stats {
        animation: slideUp 0.8s ease-out 0.8s both !important;
    }
    
    .logo-icon {
        animation: float 3s ease-in-out infinite !important;
    }
    
    .badge-icon {
        animation: pulse 2s ease-in-out infinite !important;
    }
    
    .feature-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    }
    
    .feature-card:active {
        transform: scale(0.98) !important;
    }
}

/* ===== FORCE BLOB ANIMATION ON ALL DEVICES ===== */
.gradient-blob {
    display: block !important;
    opacity: 0.3 !important;
    animation: blob 20s ease-in-out infinite !important;
}

.blob-1 {
    animation-delay: 0s !important;
}

.blob-2 {
    animation-delay: 2s !important;
}

.blob-3 {
    animation-delay: 4s !important;
}

@media (max-width: 768px) {
    .gradient-blob {
        display: block !important;
        opacity: 0.35 !important;
        animation: blob 20s ease-in-out infinite !important;
    }
    
    .hero-background {
        display: block !important;
        opacity: 1 !important;
        overflow: visible !important;
    }
}

/* ===== FLOWING RAYS ANIMATION ===== */
.hero-background::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(102, 126, 234, 0.08) 60deg,
        transparent 120deg,
        rgba(118, 75, 162, 0.08) 180deg,
        transparent 240deg,
        rgba(79, 172, 254, 0.08) 300deg,
        transparent 360deg
    );
    animation: rotateRays 30s linear infinite;
    z-index: 0;
}

.hero-background::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 180deg at 50% 50%,
        transparent 0deg,
        rgba(240, 147, 251, 0.06) 45deg,
        transparent 90deg,
        rgba(245, 87, 108, 0.06) 135deg,
        transparent 180deg,
        rgba(102, 126, 234, 0.06) 225deg,
        transparent 270deg,
        rgba(0, 242, 254, 0.06) 315deg,
        transparent 360deg
    );
    animation: rotateRays 25s linear infinite reverse;
    z-index: 0;
}

@keyframes rotateRays {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Ensure blobs are above rays */
.gradient-blob {
    z-index: 1 !important;
}

@media (max-width: 768px) {
    .hero-background::before,
    .hero-background::after {
        opacity: 0.8;
    }
}

/* ===== REMOVE ROTATING RAYS ===== */
.hero-background::before,
.hero-background::after {
    display: none !important;
}

/* ===== HORIZONTAL FLOWING STREAMS ===== */
.hero-background {
    overflow: hidden !important;
}

.hero-background .stream {
    position: absolute;
    width: 200%;
    height: 60px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(102, 126, 234, 0.4) 20%,
        rgba(118, 75, 162, 0.5) 50%,
        rgba(102, 126, 234, 0.4) 80%,
        transparent 100%
    );
    filter: blur(30px);
    animation: flowStream 8s ease-in-out infinite;
}

.hero-background .stream-1 {
    top: 15%;
    animation-delay: 0s;
    height: 80px;
}

.hero-background .stream-2 {
    top: 40%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(240, 147, 251, 0.3) 20%,
        rgba(245, 87, 108, 0.4) 50%,
        rgba(240, 147, 251, 0.3) 80%,
        transparent 100%
    );
    animation-delay: -3s;
    animation-duration: 10s;
    height: 70px;
}

.hero-background .stream-3 {
    top: 70%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(79, 172, 254, 0.3) 20%,
        rgba(0, 242, 254, 0.4) 50%,
        rgba(79, 172, 254, 0.3) 80%,
        transparent 100%
    );
    animation-delay: -5s;
    animation-duration: 12s;
    height: 60px;
}

@keyframes flowStream {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

@media (max-width: 768px) {
    .hero-background .stream {
        height: 40px;
        filter: blur(20px);
    }
    
    .hero-background .stream-1 {
        height: 50px;
    }
    
    .hero-background .stream-2 {
        height: 45px;
    }
    
    .hero-background .stream-3 {
        height: 40px;
    }
}

/* ===== MOBILE: HOW IT WORKS SECTION ===== */
@media (max-width: 768px) {
    /* So einfach gehts Section */
    .how-it-works,
    [id="how-it-works"] {
        padding: 48px 0 !important;
    }
    
    .steps-container,
    .steps-grid,
    .steps {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
        padding: 0 16px !important;
    }
    
    .step-card,
    .step {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 28px 24px !important;
        background: #ffffff !important;
        border-radius: 20px !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
        border: 1px solid rgba(0,0,0,0.05) !important;
    }
    
    .step-number,
    .step-icon {
        width: 56px !important;
        height: 56px !important;
        font-size: 1.25rem !important;
        margin-bottom: 16px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 16px !important;
    }
    
    .step-content {
        text-align: center !important;
    }
    
    .step-title,
    .step-card h3 {
        font-size: 1.125rem !important;
        font-weight: 700 !important;
        margin-bottom: 8px !important;
        color: #1e293b !important;
    }
    
    .step-description,
    .step-card p {
        font-size: 0.875rem !important;
        line-height: 1.6 !important;
        color: #64748b !important;
    }
    
    .step-arrow,
    .arrow-down {
        display: flex !important;
        justify-content: center !important;
        padding: 8px 0 !important;
        color: #cbd5e1 !important;
        font-size: 1.5rem !important;
    }
    
    /* Testimonials Section Mobile */
    .testimonials-section,
    .testimonials {
        padding: 48px 0 !important;
        background: #f8fafc !important;
    }
    
    .testimonials-grid,
    .testimonial-cards {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        padding: 0 16px !important;
    }
    
    .testimonial-card {
        padding: 24px !important;
        background: #ffffff !important;
        border-radius: 20px !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
        border: 1px solid rgba(0,0,0,0.05) !important;
    }
    
    .testimonial-card .stars,
    .testimonial-stars {
        font-size: 1.125rem !important;
        margin-bottom: 16px !important;
        display: block !important;
        text-align: center !important;
    }
    
    .testimonial-card .text,
    .testimonial-text {
        font-size: 0.925rem !important;
        line-height: 1.7 !important;
        color: #475569 !important;
        text-align: center !important;
        margin-bottom: 20px !important;
        font-style: italic !important;
    }
    
    .testimonial-author {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
    }
    
    .author-avatar,
    .testimonial-avatar {
        width: 52px !important;
        height: 52px !important;
        border-radius: 50% !important;
    }
    
    .author-info {
        text-align: center !important;
    }
    
    .author-name {
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        color: #1e293b !important;
    }
    
    .author-role {
        font-size: 0.8rem !important;
        color: #94a3b8 !important;
    }
    
    /* FAQ Section Mobile */
    .faq-section,
    #faq {
        padding: 48px 0 !important;
        background: #ffffff !important;
    }
    
    .faq-grid,
    .faq-list,
    .faq-items {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        padding: 0 16px !important;
    }
    
    .faq-item {
        background: #f8fafc !important;
        border-radius: 16px !important;
        border: 1px solid rgba(0,0,0,0.04) !important;
        overflow: hidden !important;
    }
    
    .faq-question {
        padding: 18px 20px !important;
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        color: #1e293b !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 12px !important;
        cursor: pointer !important;
        text-align: left !important;
    }
    
    .faq-question svg,
    .faq-question .icon,
    .faq-toggle {
        flex-shrink: 0 !important;
        width: 20px !important;
        height: 20px !important;
        color: #94a3b8 !important;
    }
    
    .faq-answer {
        padding: 0 20px 18px !important;
        font-size: 0.875rem !important;
        line-height: 1.7 !important;
        color: #64748b !important;
    }
    
    /* CTA Section Mobile */
    .cta-section,
    .cta-banner {
        padding: 56px 20px !important;
        text-align: center !important;
    }
    
    .cta-icon,
    .cta-emoji {
        font-size: 3rem !important;
        margin-bottom: 20px !important;
        display: block !important;
    }
    
    .cta-title,
    .cta-section h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
        color: #1e293b !important;
    }
    
    .cta-subtitle,
    .cta-section p {
        font-size: 0.925rem !important;
        line-height: 1.6 !important;
        color: #64748b !important;
        margin-bottom: 28px !important;
    }
    
    .cta-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        margin-bottom: 32px !important;
    }
    
    .cta-buttons a,
    .cta-buttons button {
        width: 100% !important;
        padding: 18px 24px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        border-radius: 14px !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .cta-stats {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    .cta-stat-card,
    .stat-card-cta {
        display: flex !important;
        align-items: center !important;
        gap: 16px !important;
        padding: 16px 20px !important;
        background: #ffffff !important;
        border-radius: 16px !important;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
    }
    
    .cta-stat-card .stat-icon {
        font-size: 2rem !important;
    }
    
    .cta-stat-card .stat-value {
        font-size: 1.375rem !important;
        font-weight: 700 !important;
    }
    
    .cta-stat-card .stat-label {
        font-size: 0.8rem !important;
        color: #64748b !important;
    }
    
    /* Final CTA Gradient Section */
    .final-cta,
    .gradient-cta {
        padding: 56px 20px !important;
        text-align: center !important;
    }
    
    .final-cta h2 {
        font-size: 1.5rem !important;
        margin-bottom: 12px !important;
    }
    
    .final-cta p {
        font-size: 0.925rem !important;
        margin-bottom: 28px !important;
    }
    
    .final-cta-buttons,
    .final-cta .buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    .final-cta-buttons a,
    .final-cta a {
        width: 100% !important;
        padding: 18px 24px !important;
        border-radius: 14px !important;
        font-weight: 600 !important;
        text-align: center !important;
    }
}

/* ===== FIX: TESTIMONIALS CAROUSEL ===== */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 48px 0 !important;
        overflow: hidden !important;
    }
    
    .testimonials-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 16px !important;
        padding: 0 20px 20px 20px !important;
        margin: 0 !important;
    }
    
    .testimonials-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    .testimonial-card {
        flex: 0 0 85% !important;
        scroll-snap-align: center !important;
        min-width: 280px !important;
        max-width: 320px !important;
    }
    
    /* ===== FIX: FAQ COLLAPSED & SMALLER ===== */
    .faq-section {
        padding: 40px 0 !important;
    }
    
    .faq-grid {
        gap: 8px !important;
    }
    
    .faq-item {
        border-radius: 12px !important;
    }
    
    .faq-question {
        padding: 14px 16px !important;
        font-size: 0.875rem !important;
    }
    
    .faq-answer {
        display: none !important;
        padding: 0 16px 14px !important;
        font-size: 0.8rem !important;
        line-height: 1.6 !important;
    }
    
    .faq-item.active .faq-answer,
    .faq-item[open] .faq-answer {
        display: block !important;
    }
    
    /* ===== FIX: CTA SECTION (Waving Hand) ===== */
    .cta-section {
        padding: 48px 20px !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .cta-section .floating-icons,
    .cta-section .decorative-icons,
    .cta-section .side-icons,
    .cta-stats {
        display: none !important;
    }
    
    .cta-content {
        position: relative !important;
        z-index: 10 !important;
    }
    
    .cta-icon,
    .cta-emoji {
        font-size: 2.5rem !important;
        margin-bottom: 16px !important;
    }
    
    .cta-title {
        font-size: 1.375rem !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }
    
    .cta-subtitle,
    .cta-description {
        font-size: 0.875rem !important;
        margin-bottom: 24px !important;
        color: #64748b !important;
    }
    
    .cta-buttons {
        margin-bottom: 0 !important;
    }
    
    .cta-buttons a {
        padding: 16px 24px !important;
        font-size: 0.95rem !important;
    }
}

/* ===== FIX: FINAL CTA READABLE ===== */
@media (max-width: 768px) {
    .final-cta {
        padding: 48px 24px !important;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    }
    
    .final-cta h2 {
        font-size: 1.375rem !important;
        line-height: 1.35 !important;
        margin-bottom: 12px !important;
        color: #ffffff !important;
    }
    
    .final-cta p {
        font-size: 0.875rem !important;
        line-height: 1.6 !important;
        margin-bottom: 24px !important;
        color: rgba(255,255,255,0.9) !important;
    }
    
    .final-cta-buttons {
        gap: 10px !important;
    }
    
    .final-cta-buttons a:first-child {
        background: #ffffff !important;
        color: #667eea !important;
    }
    
    .final-cta-buttons a:last-child {
        background: transparent !important;
        border: 2px solid rgba(255,255,255,0.5) !important;
        color: #ffffff !important;
    }
    
    /* ===== FIX: FOOTER MOBILE ===== */
    .footer {
        padding: 40px 20px 24px !important;
    }
    
    .footer-brand {
        margin-bottom: 32px !important;
        padding-bottom: 24px !important;
    }
    
    .footer-brand .logo-wrapper {
        margin-bottom: 8px !important;
    }
    
    .footer-tagline {
        font-size: 0.8rem !important;
        margin-bottom: 16px !important;
    }
    
    .footer-social {
        gap: 12px !important;
    }
    
    .footer-social .social-link,
    .footer-social a {
        padding: 8px 14px !important;
        font-size: 0.75rem !important;
        border-radius: 8px !important;
        background: rgba(255,255,255,0.1) !important;
    }
    
    .footer-links {
        gap: 24px !important;
    }
    
    .footer-heading {
        font-size: 0.7rem !important;
        margin-bottom: 12px !important;
    }
    
    .footer-column a {
        padding: 6px 0 !important;
        font-size: 0.8rem !important;
    }
    
    .footer-bottom {
        padding-top: 24px !important;
        margin-top: 24px !important;
        gap: 12px !important;
    }
    
    .footer-copyright {
        font-size: 0.7rem !important;
    }
    
    .footer-legal {
        gap: 12px !important;
    }
    
    .footer-legal a {
        font-size: 0.7rem !important;
    }
}

/* ===== SO EINFACH GEHTS - MOBILE REDESIGN ===== */
@media (max-width: 768px) {
    .how-it-works {
        padding: 48px 0 !important;
        background: #f8fafc !important;
    }
    
    .how-it-works .section-header {
        margin-bottom: 32px !important;
    }
    
    .how-it-works .section-title {
        font-size: 1.5rem !important;
    }
    
    .how-it-works .section-subtitle {
        font-size: 0.875rem !important;
        color: #667eea !important;
    }
    
    .steps-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 20px !important;
        position: relative !important;
    }
    
    /* Timeline line */
    .steps-container::before {
        content: "" !important;
        position: absolute !important;
        left: 47px !important;
        top: 40px !important;
        bottom: 40px !important;
        width: 3px !important;
        background: linear-gradient(180deg, #667eea 0%, #764ba2 100%) !important;
        border-radius: 3px !important;
    }
    
    .step-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 20px !important;
        padding: 24px 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        position: relative !important;
    }
    
    .step-number {
        width: 56px !important;
        height: 56px !important;
        min-width: 56px !important;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        color: #ffffff !important;
        font-size: 1.25rem !important;
        font-weight: 700 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        z-index: 2 !important;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4) !important;
    }
    
    .step-content {
        flex: 1 !important;
        text-align: left !important;
        padding-top: 4px !important;
    }
    
    .step-title {
        font-size: 1.125rem !important;
        font-weight: 700 !important;
        color: #1e293b !important;
        margin-bottom: 6px !important;
    }
    
    .step-description {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
        color: #64748b !important;
        margin: 0 !important;
    }
    
    .step-visual {
        display: none !important;
    }
    
    .step-arrow {
        display: none !important;
    }
    
    /* Add icon next to title */
    .step-item[data-aos="fade-right"] .step-title::after,
    .step-item[data-aos="fade-left"] .step-title::after {
        content: none !important;
    }
    
    .step-item:nth-child(1) .step-title::before {
        content: "👤 " !important;
    }
    
    .step-item:nth-child(3) .step-title::before {
        content: "🎨 " !important;
    }
    
    .step-item:nth-child(5) .step-title::before {
        content: "🚀 " !important;
    }
}

/* ===== BEREITS LEVELYOURS NUTZER - MOBILE ===== */
@media (max-width: 768px) {
    .login-portal-section {
        padding: 48px 0 !important;
        background: #f8fafc !important;
        overflow: hidden !important;
    }
    
    .login-portal-card {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
        padding: 32px 24px !important;
        background: #ffffff !important;
        border-radius: 24px !important;
        box-shadow: 0 4px 24px rgba(0,0,0,0.06) !important;
        border: 1px solid rgba(0,0,0,0.05) !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .login-portal-content {
        text-align: center !important;
        position: relative !important;
        z-index: 2 !important;
    }
    
    .login-icon {
        font-size: 3rem !important;
        margin-bottom: 16px !important;
        display: block !important;
        animation: wave 1.5s ease-in-out infinite !important;
    }
    
    @keyframes wave {
        0%, 100% { transform: rotate(0deg); }
        25% { transform: rotate(20deg); }
        75% { transform: rotate(-10deg); }
    }
    
    .login-portal-title {
        font-size: 1.375rem !important;
        font-weight: 700 !important;
        color: #1e293b !important;
        margin-bottom: 8px !important;
        line-height: 1.3 !important;
    }
    
    .login-portal-text {
        font-size: 0.9rem !important;
        color: #64748b !important;
        margin-bottom: 24px !important;
        line-height: 1.6 !important;
    }
    
    .btn-login-portal {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 220px !important;
        padding: 16px 32px !important;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        color: #ffffff !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        border-radius: 14px !important;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4) !important;
        transition: all 0.3s ease !important;
    }
    
    .btn-login-portal:active {
        transform: scale(0.98) !important;
    }
    
    .login-portal-stats {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
        padding-top: 24px !important;
        border-top: 1px solid #f1f5f9 !important;
    }
    
    .portal-stat {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 12px 8px !important;
        background: #f8fafc !important;
        border-radius: 12px !important;
    }
    
    .portal-stat-icon {
        font-size: 1.5rem !important;
        margin-bottom: 8px !important;
    }
    
    .portal-stat-text {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .portal-stat-value {
        font-size: 1rem !important;
        font-weight: 700 !important;
        color: #1e293b !important;
        line-height: 1.2 !important;
    }
    
    .portal-stat-label {
        font-size: 0.65rem !important;
        color: #94a3b8 !important;
        margin-top: 2px !important;
    }
    
    /* Hide any floating decorative elements */
    .login-portal-section .floating-icons,
    .login-portal-section .decorative,
    .login-portal-card::before,
    .login-portal-card::after {
        display: none !important;
    }
}

/* ===== FOOTER MOBILE REDESIGN ===== */
@media (max-width: 768px) {
    .footer {
        padding: 48px 20px 32px !important;
        background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%) !important;
    }
    
    .footer .container {
        padding: 0 !important;
    }
    
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }
    
    /* Brand Section */
    .footer-brand {
        text-align: center !important;
        padding-bottom: 32px !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
        margin-bottom: 0 !important;
    }
    
    .footer-brand .logo-wrapper {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        margin-bottom: 12px !important;
    }
    
    .footer-brand .logo-icon {
        font-size: 1.75rem !important;
    }
    
    .footer-brand .logo-text {
        font-size: 1.25rem !important;
        font-weight: 700 !important;
    }
    
    .footer-tagline {
        font-size: 0.85rem !important;
        color: #94a3b8 !important;
        margin-bottom: 20px !important;
    }
    
    /* Social Links */
    .footer-social {
        display: flex !important;
        justify-content: center !important;
        gap: 10px !important;
    }
    
    .footer-social a,
    .footer-social .social-link {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 10px 18px !important;
        background: rgba(255,255,255,0.08) !important;
        border: 1px solid rgba(255,255,255,0.1) !important;
        border-radius: 10px !important;
        font-size: 0.8rem !important;
        font-weight: 500 !important;
        color: #e2e8f0 !important;
        transition: all 0.2s !important;
    }
    
    .footer-social a:active {
        background: rgba(255,255,255,0.15) !important;
        transform: scale(0.98) !important;
    }
    
    /* Links Grid */
    .footer-links {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 32px 20px !important;
    }
    
    .footer-column {
        text-align: left !important;
    }
    
    .footer-column:nth-child(3) {
        grid-column: 1 / -1 !important;
        text-align: center !important;
        padding-top: 16px !important;
        border-top: 1px solid rgba(255,255,255,0.08) !important;
    }
    
    .footer-column:nth-child(3) ul,
    .footer-column:nth-child(3) div {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px 20px !important;
    }
    
    .footer-heading {
        font-size: 0.7rem !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.1em !important;
        color: #f8fafc !important;
        margin-bottom: 16px !important;
    }
    
    .footer-column a {
        display: block !important;
        padding: 8px 0 !important;
        font-size: 0.875rem !important;
        color: #94a3b8 !important;
        transition: color 0.2s !important;
    }
    
    .footer-column:nth-child(3) a {
        display: inline-block !important;
        padding: 6px 0 !important;
    }
    
    .footer-column a:active {
        color: #ffffff !important;
    }
    
    /* Bottom Bar */
    .footer-bottom {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 16px !important;
        padding-top: 32px !important;
        margin-top: 32px !important;
        border-top: 1px solid rgba(255,255,255,0.1) !important;
    }
    
    .footer-copyright {
        font-size: 0.75rem !important;
        color: #64748b !important;
        text-align: center !important;
    }
    
    .footer-legal {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 16px !important;
    }
    
    .footer-legal a {
        font-size: 0.75rem !important;
        color: #64748b !important;
    }
    
    .footer-legal a:active {
        color: #94a3b8 !important;
    }
}
