/* Rule Investing - Landing Page Styles */

:root {
    --primary: #1DB954;
    --primary-dark: #169c46;
    --bg-dark: #070b09;
    --bg-card: #0f1512;
    --bg-card-light: #151d19;
    --text-primary: #ffffff;
    --text-secondary: #A9A6A6;
    --text-muted: #6b7280;
    --border-color: #1f2d26;
    --danger: #ef4444;
    --success: #1DB954;
    --radius: 12px;
    --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

.container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }
.hidden { display: none !important; }


/* Loading Screen */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lottie-loader {
    width: 200px;
    height: 200px;
}

.loader {
    width: 48px;
    height: 48px;
    display: inline-block;
    position: relative;
}

.loader::after,
.loader::before {
    content: '';
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFF;
    position: absolute;
    left: 0;
    top: 0;
    box-sizing: border-box;
    transform: scale(0);
    opacity: 1;
    animation: animloader 2s ease-in-out infinite;
}

.loader::after {
    animation-delay: 1s;
}

@keyframes animloader {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    50% {
        transform: scale(1);
        opacity: 0;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

.loader-text {
    margin-top: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    z-index: 9999;
}
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(90deg, #30C083 0%, #175A3D 100%);
    color: white;
    box-shadow: 0 0 25px rgba(29, 185, 84, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(29, 185, 84, 0.45);
}

.btn-glow {
    background: linear-gradient(90deg, #30C083 0%, #175A3D 100%);
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    border: none;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 0 35px rgba(29, 185, 84, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-white {
    background: white;
    color: #333;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


/* Header */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 40px 0;
    background: transparent;
    transition: all 0.3s ease;
}

.landing-header.scrolled {
    background: rgba(7, 11, 9, 0.95);
    backdrop-filter: blur(20px);
    padding: 25px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.landing-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    position: relative;
}

.logo { display: flex; align-items: center; text-decoration: none; z-index: 1002; }
.logo img { height: 18px; width: auto; }

.nav { 
    display: flex; 
    align-items: center; 
    gap: 65px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s;
    white-space: nowrap;
}
.nav a:hover { color: var(--text-primary); }

.nav-login-wrapper {
    display: flex;
    align-items: center;
}

.nav-login { 
    color: var(--text-primary);
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}
.nav-login:hover { color: var(--primary); }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(10, 20, 15, 0.98) 0%, rgba(5, 12, 8, 0.98) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 80px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active { 
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu.active a {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.active a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.3s; }

.mobile-menu a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.mobile-menu a:last-child {
    margin-top: 20px;
    background: var(--primary);
    color: #000;
    text-align: center;
    border-radius: 50px;
    padding: 14px 20px;
    border: none;
    font-weight: 600;
}

.mobile-menu a:last-child:hover {
    background: #1ed760;
    padding-left: 20px;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}


/* Hero Section */
.hero {
    padding-top: 90px;
    background: transparent;
    position: relative; 
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -201px;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(ellipse at center, rgb(0 54 128 / 37%) 0%, rgba(20, 60, 120, 0.2) 45%, transparent 95%);
    pointer-events: none;
    filter: blur(80px);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(29, 185, 84, 0.08) 0%, transparent 65%);
    pointer-events: none;
    filter: blur(60px);
    z-index: 0;
}

.hero-glow {
    position: absolute;
    top: 15%;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(29, 185, 84, 0.08) 0%, transparent 55%);
    pointer-events: none;
    filter: blur(80px);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 10;
    padding-top: 80px;
    padding-bottom: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    padding-left: 0;
    max-width: 712px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-text h1.animate {
    animation: heroTextRise 0.8s ease-out forwards;
}

.hero-text .highlight { 
    background: linear-gradient(90deg, #FFFFFF 0%, #247553 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 450px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
}

.hero-text p.animate {
    animation: heroTextRise 0.8s ease-out 0.2s forwards;
}

.hero-buttons { 
    display: flex; 
    align-items: center; 
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-buttons.animate {
    animation: heroTextRise 0.8s ease-out 0.4s forwards;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 50px;
    border: 1px solid rgba(31, 45, 38, 0.8);
    background: rgba(15, 21, 18, 0.6);
}
.google-rating img { width: 20px; height: 20px; }
.google-rating .rating-number { font-weight: 600; font-size: 14px; }
.google-rating .stars { color: #fbbf24; font-size: 11px; display: flex; gap: 2px; }

.hero-image { 
    position: relative; 
    display: flex; 
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
}

.hero-image.animate {
    animation: heroImageFade 1s ease-out forwards;
}

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

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

/* Hero image gradient background */
.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(29, 185, 84, 0.12) 0%, rgba(29, 185, 84, 0.06) 35%, transparent 65%);
    filter: blur(30px);
    z-index: 0;
    pointer-events: none;
}

.hero-image img { 
    width: 100%; 
    max-width: 852px; 
    height: auto;
    max-height: 504px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}


/* Ticker Section */
.ticker-section {
    position: relative;
    margin-top: 10px;
    z-index: 4;
    padding: 0;
}

.ticker-black-shadow {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ticker-black-shadow img { 
    width: 100%; 
    height: auto;
    min-height: 100px;
    object-fit: cover;
}

.stock-ticker-wrapper {
    overflow: hidden;
    position: relative;
    z-index: 2;
    padding: 12px 0;
}

.ticker-fade-left, .ticker-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}
.ticker-fade-left {
    left: 0;
    background: linear-gradient(to right, rgba(7, 11, 9, 1) 0%, transparent 100%);
}
.ticker-fade-right {
    right: 0;
    background: linear-gradient(to left, rgba(7, 11, 9, 1) 0%, transparent 100%);
}

.stock-ticker-track {
    display: flex;
    animation: tickerScroll 50s linear infinite;
    width: fit-content;
}

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

.stock-ticker { display: flex; gap: 10px; padding: 0 5px; }

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 180px;
    height: 63px;
    padding: 12px 14px;
    background: rgba(15, 21, 18, 0.95);
    border-radius: 12px;
    border: 1px solid rgba(31, 45, 38, 0.6);
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.ticker-icon-box {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}
.ticker-icon-box img { width: 22px; height: 22px; object-fit: contain; }

.ticker-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.ticker-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.ticker-name { 
    font-size: 13px; 
    color: var(--text-primary); 
    font-weight: 600; 
    white-space: nowrap; 
}

.ticker-change { 
    font-size: 12px; 
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}
.ticker-change.up { color: var(--primary); }
.ticker-change.down { color: #ef4444; }

.ticker-change .arrow {
    font-size: 8px;
}

.ticker-price { 
    font-size: 14px; 
    font-weight: 600; 
    white-space: nowrap; 
    color: var(--text-primary);
}

/* Legacy classes for compatibility */
.ticker-info { 
    display: flex; 
    flex-direction: column; 
    gap: 2px;
    flex: 1;
}
.ticker-price-small { font-size: 12px; color: var(--text-secondary); font-weight: 500; }

/* Skeleton Loader for Ticker */
.ticker-item.skeleton {
    animation: none;
}

.skeleton-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    flex-shrink: 0;
}

.skeleton-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.skeleton-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skeleton-line {
    height: 12px;
    width: 55px;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-line.short {
    width: 40px;
    height: 10px;
}

.skeleton-price {
    width: 50px;
    height: 12px;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Landing Page Body Background */
#landing-page {
    background: url('/assets/images/landing/landing.webp') no-repeat center top;
    background-size: cover;
     min-height: 100vh;
}

/* Wave + Strategy Wrapper */
.wave-strategy-wrapper {
    position: relative;
    overflow: hidden;
    background: transparent;
}

/* Wave Section - positioned behind strategy section */
.wave-section {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
    pointer-events: none; 
    overflow: hidden;
}
.wave-svg-img { 
    width: 100%;  
    object-fit: cover; 
    object-position: top center; 
    display: block;
}


/* Strategy Section - overlaps wave */
.strategy-section {
    padding: 280px 0 80px;
    position: relative;
    z-index: 2;
    background: transparent;
}

.section-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 54px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
    background: linear-gradient(180deg, #FFFFFF 0%, #247553 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.strategy-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
}

.strategy-image {
    width: 100%;
    border-radius: 16px; 
    display: block;
}

.lock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 40px;
    z-index: 2;
    width: 100%;
    max-width: 600px;
}

.lock-icon { 
    width: 90px; 
    height: auto; 
    margin: 0 auto 20px; 
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Multiple pulsing rings behind lock */
.lock-icon::before,
.lock-icon::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(29, 185, 84, 0.6);
    animation: lockRingPulse 3s ease-out infinite;
    z-index: 0;
}

.lock-icon::before {
    width: 120px;
    height: 120px;
    animation-delay: 0s;
}

.lock-icon::after {
    width: 120px;
    height: 120px;
    animation-delay: 1s;
}

/* Third ring using box-shadow */
.lock-icon img {
    position: relative;
    z-index: 1;
}

.lock-icon img::before {
    content: '';
    position: absolute;
}

@keyframes lockRingPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
        border-width: 3px;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
        border-width: 1px;
    }
}

.lock-icon img { 
    width: 100%; 
    filter: drop-shadow(0 0 25px rgba(29, 185, 84, 0.5)); 
    position: relative;
    z-index: 1;
}
.lock-overlay h3 { font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.lock-overlay p { color: var(--text-secondary); margin-bottom: 24px; font-size: 14px; line-height: 1.6; }

/* About Section */
.about-section {
    padding: 0 30px;
    background: transparent;
}

.about-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img { 
    width: 100%; 
    max-width: 800px;
    mask-image: linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
}
.about-text { padding-right: 40px; }
 
.about-text p { color: #b8c0bc; margin-bottom: 28px; font-size: 15px; line-height: 1.7; }


/* Features Section */
.features-section {
    padding: 0 30px 20px 30px;
        background: transparent;
}

.features-card {
        background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
box-shadow: inset 1px 2px 20px 0px rgb(242 237 237 / 20%);
    padding: 40px 45px;
    border: 1px solid rgba(29, 185, 84, 0.25); 
    position: relative;
    overflow: hidden;
}

 
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    align-items: start; /* Align items to start */
}

.feature-item {
    padding: 0 35px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    height: 100%; /* Make all items same height */
}

.feature-item:first-child {
    padding-left: 0;
}

.feature-item:last-child {
    border-right: none;
    padding-right: 0;
}

.feature-item h3 { 
    font-family: 'Poppins', sans-serif;
    font-size: 35px; 
    font-weight: 600; 
    margin-bottom: 16px;   
    line-height: 1.2;
    background: linear-gradient(90deg, #FFFFFF 0%, #A0FFD7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Remove fixed height - let it be natural but consistent across grid */
}
.feature-item p { 
    font-family: 'Poppins', sans-serif;
    font-size: 15px; 
    color: #FFFFFF; 
    line-height: 1.6; 
    font-weight: 400;
}
.features-cta { text-align: center; padding-top: 20px; position: relative; z-index: 1; }

/* Knowledge Section */
.knowledge-section {
    padding: 60px 0 40px;
    background: transparent;
    text-align: center;
}

.knowledge-title { 
    font-family: 'Poppins', sans-serif;
    font-size: 40px; 
    font-weight: 600; 
    margin-bottom: 16px; 
    line-height: 1.3;
    color: #FFFFFF;
}

.knowledge-title .highlight {
    display: block;
    background: linear-gradient(90deg, #FFFFFF 0%, #A0FFD7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.knowledge-desc { 
    font-family: 'Poppins', sans-serif;
    font-size: 18px; 
    color: #FFFFFF; 
    max-width: 600px; 
    margin: 0 auto; 
    line-height: 1.6; 
    font-weight: 400;
}

/* Tutorials Section */
.tutorials-section { 
    padding: 40px 0 20px; 
    background: transparent; 
}

.tutorials-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 24px; }

.tutorial-card {
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    min-height: 320px;
}

/* First card - Green gradient, COLUMN layout (text top, image below) */
.tutorial-green { 
    background: linear-gradient(160deg, #016a25 0%, #0d7a3a 50%, #065426 100%); 
    box-shadow: inset 1px 2px 20px 0px rgba(248, 248, 248, 0.436);
     backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.tutorial-green .tutorial-text {
    flex: 0 0 auto;

    padding: 32px;
}

.tutorial-green img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 12px;
    margin-top: auto;
    align-self: center;
}

/* Second card - Dark with border, ROW layout (text left, phone right) */
.tutorial-dark { 
    box-shadow: inset 1px 2px 20px 0px rgb(242 237 237 / 20%);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: visible;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 380px;
}

/* Gradient border for tutorial-dark */
.tutorial-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.tutorial-dark .tutorial-text {
    flex: 1;
    max-width: 45%;

    padding: 32px; 
    position: relative;
    z-index: 2;
}

.tutorial-dark img {
       position: absolute;
    right: 0px;
    top: -90px;
    width: auto;
    max-width: 450px;
    height: calc(100% + 180px);
    border-radius: 24px;
    object-fit: contain;
    z-index: 1;
}

.tutorial-text h3 { 
    font-size: 26px; 
    margin-bottom: 12px;   
    line-height: 1.3;
    background: linear-gradient(90deg, #FFFFFF 0%, #A0FFD7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tutorial-text p { 
    font-size: 14px; 
    color: rgba(255,255,255,0.8); 
    margin-bottom: 20px; 
    line-height: 1.6; 
}


/* Team Section */
.team-section { padding: 60px 0; background: transparent; }
.section-desc { text-align: center; color: var(--text-secondary); max-width: 600px; margin: 0 auto 50px; font-size: 14px; line-height: 1.7; }

.team-slider-wrapper { position: relative; max-width: 1000px; margin: 0 auto; }

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

.team-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

.team-member {
    background: transparent;
    border-radius: 0;
    padding: 0;
    text-align: left;
    border: none;
}

.team-member img { 
    width: 100%; 
    max-width: 280px;
    aspect-ratio: 1;
    border-radius: 35px; 
    margin-bottom: 20px; 
    object-fit: cover;
    border: none;
}

.team-member h4 { 
    font-family: 'Poppins', sans-serif;
    font-size: 28px; 
    margin-bottom: 6px;
    background: linear-gradient(90deg, #A0FFD7 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    line-height: 1.2;
}

.team-role { 
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF; 
    font-size: 16px; 
    margin-bottom: 12px;
    font-weight: 400;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.team-bio { 
    font-family: 'Poppins', sans-serif;
    font-size: 13px; 
    color: #FFFFFF; 
    line-height: 1.6;
    font-weight: 400;
}

/* Team slider mode for tablet/mobile */
@media (max-width: 992px) {
    .team-grid {
        display: flex;
        overflow: hidden;
    }
    
    .team-member {
        min-width: 100%;
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.4s ease;
        display: none;
    }
    
    .team-member.active {
        display: block;
        opacity: 1;
        transform: translateX(0);
    }
    
    .team-dots {
        display: flex;
    }
}

/* Testimonials Section */
.testimonials-section { padding: 60px 0; background: transparent; }

.testimonials-section .section-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
    background: linear-gradient(180deg, #FFFFFF 0%, #A0FFD7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    padding: 30px 40px;
    max-width: 900px;
    margin: 0 auto;
}

/* Gradient border for testimonial card */
.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-content { 
    display: flex; 
    gap: 25px; 
    align-items: flex-start; 
}

.testimonial-avatar { 
    width: 140px; 
    height: 140px; 
    min-width: 140px;
    border-radius: 20px; 
    object-fit: cover; 
}

.testimonial-text h4 { 
    font-family: 'Poppins', sans-serif;
    font-size: 28px; 
    margin-bottom: 4px;
    background: linear-gradient(90deg, #A0FFD7 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    line-height: 1.2;
}

.testimonial-role { 
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF; 
    font-size: 14px; 
    margin-bottom: 12px;
    font-weight: 400;
}

.testimonial-quote { 
    font-family: 'Poppins', sans-serif;
    font-size: 14px; 
    color: rgba(255, 255, 255, 0.8); 
    line-height: 1.6;
    font-weight: 400;
}

.testimonial-dots { 
    display: flex; 
    justify-content: center; 
    align-items: center;
    gap: 10px; 
    margin-top: 25px; 
}

.testimonial-dots::before,
.testimonial-dots::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
}

.testimonial-dots::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
}

.dot { 
    width: 10px; 
    height: 10px; 
    border-radius: 50%; 
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.dot.active { 
    background: var(--primary);
    width: 24px;
    border-radius: 5px;
}

/* Insights Section */
.insights-section {
  padding: 60px 0 0 0;
  background: transparent;
}

.insights-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.insights-text h3 { font-size: 20px; margin-bottom: 12px; }
.insights-text p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.insights-image img { width: 100%; border-radius: 12px; }


/* Contact Section */
.contact-section {  
    background: transparent; 
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    position: relative;
box-shadow: inset 1px 2px 20px 0px rgb(242 237 237 / 20%);}

/* Gradient border effect using pseudo-element */
.contact-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px 24px 0 0;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13) 0%, rgba(0, 0, 0, 0.13) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.contact-form-side {
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.02);
}

.landing-contact-form input,
.landing-contact-form select {
    width: 100%;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 14px;
    margin-bottom: 16px;
    font-family: inherit;
    transition: all 0.3s;
}

.landing-contact-form input::placeholder {
    color: var(--text-muted);
}

.landing-contact-form input:focus,
.landing-contact-form select:focus {
    outline: none;
    border-color: rgba(29, 185, 84, 0.5);
    box-shadow: 0 0 20px rgba(29, 185, 84, 0.1);
}

.landing-contact-form select {
    cursor: pointer;
    appearance: none;
    color: var(--text-muted);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 24px center;
}

.landing-contact-form select option {
    background: var(--bg-dark);
    color: var(--text-primary);
}

.landing-contact-form button { 
    width: auto;
    padding: 14px 40px;
    margin-top: 8px;
}

.contact-info-side {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-side h2 { 
    font-size: 36px; 
    margin-bottom: 16px;
    background: linear-gradient(180deg, #FFFFFF 0%, #A0FFD7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.contact-subtitle { 
    color: var(--text-secondary); 
    margin-bottom: 16px; 
    font-size: 15px; 
    line-height: 1.7; 
}

.contact-desc { 
    color: var(--text-muted); 
    margin-bottom: 28px; 
    font-size: 14px;
    line-height: 1.6;
}

.contact-features { list-style: none; }
.contact-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
}
.contact-features i { 
    color: var(--primary); 
    font-size: 16px;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
   background: linear-gradient(180deg, #010302 0%, #000306 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand .logo { display: inline-block; margin-bottom: 12px; }
.footer-brand p { color: var(--text-secondary); font-size: 13px; margin-bottom: 24px; line-height: 1.6; }
.footer-brand .follow-title { font-size: 14px; font-weight: 600; margin-bottom: 12px; color: var(--text-primary); }

.footer-links h4 { font-size: 14px; font-weight: 600; margin-bottom: 20px; color: var(--text-primary); }
.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    padding: 6px 0;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--primary); }

.social-icons { display: flex; gap: 12px; }
.social-icons a {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}
.social-icons a:hover { 
    background: var(--primary); 
    border-color: var(--primary);
    color: white; 
}

.footer-bottom { 
    text-align: center; 
    padding-top: 30px; 
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
}
.footer-bottom p { color: var(--text-muted); font-size: 12px; }


/* Responsive */
@media (max-width: 1400px) {
    .hero-content { gap: 30px; }
    .hero-image img { max-width: 700px; }
    .hero-text h1 { font-size: 42px; }
}

@media (max-width: 1200px) {
    .hero-content { grid-template-columns: 1fr 1fr; gap: 30px; }
    .hero-text h1 { font-size: 36px; }
    .hero-image img { max-width: 500px; }
    .section-title { font-size: 36px; }
    .section-desc { font-size: 14px; }
    
    .ticker-item { width: 150px; height: 52px; padding: 8px 10px; }
    .ticker-icon-box { width: 26px; height: 26px; }
    .ticker-name { font-size: 11px; }
    .ticker-price { font-size: 12px; }
    .ticker-change { font-size: 10px; }
    
    .team-member h4 { font-size: 24px; }
    .team-role { font-size: 14px; }
    .team-bio { font-size: 12px; }
}

@media (max-width: 992px) {
    .container { padding: 0 20px; }
    .nav { gap: 25px; }
    
    /* Hero pseudo-elements - scale down */
    .hero::before {
        width: 600px;
        height: 600px;
        top: -100px;
        left: -150px;
        filter: blur(60px);
    }
    .hero::after {
        width: 300px;
        height: 300px;
        filter: blur(40px);
    }
    .hero-glow {
        width: 300px;
        height: 300px;
        filter: blur(60px);
    }
    
    /* Hero */
    .hero { padding-top: 80px; }
    .hero-content { grid-template-columns: 1fr; text-align: center; padding-top: 60px; }
    .hero-text { padding-left: 0; max-width: 100%; }
    .hero-text h1 { font-size: 32px; }
    .hero-text p { margin: 0 auto 24px; max-width: 500px; font-size: 14px; }
    .hero-buttons { justify-content: center; flex-wrap: wrap; gap: 12px; }
    .hero-buttons .btn { padding: 14px 40px; font-size: 14px; }
    .google-rating { padding: 12px 24px; }
    .hero-image { justify-content: center; margin-top: 30px; }
    .hero-image img { max-width: 100%; }
    
    /* Sections */
    .section-title { font-size: 28px; }
    .section-desc { font-size: 13px; max-width: 100%; }
    
    /* Ticker */
    .ticker-item { width: 140px; height: 48px; padding: 6px 8px; gap: 6px; }
    .ticker-icon-box { width: 24px; height: 24px; }
    .ticker-name { font-size: 10px; }
    .ticker-price { font-size: 11px; }
    .ticker-change { font-size: 9px; }
    .stock-ticker { gap: 6px; }
    
    /* Strategy */
    .strategy-section { padding: 80px 0 50px; }
    .strategy-content { padding: 0 20px; }
    .strategy-image { border-radius: 12px; }
    .lock-overlay { padding: 30px 20px; max-width: 90%; }
    .lock-icon { width: 70px; margin-bottom: 15px; }
    .lock-icon::before, .lock-icon::after { width: 90px; height: 90px; }
    .lock-overlay h3 { font-size: 16px; margin-bottom: 10px; }
    .lock-overlay p { font-size: 13px; padding: 0 10px; margin-bottom: 20px; }
    .lock-overlay .btn { padding: 12px 30px; font-size: 13px; }
    
    /* About */
    .about-section { padding: 30px 20px; }
    .about-content { grid-template-columns: 1fr; gap: 30px; }
    .about-text { padding-right: 0; text-align: center; }
    .about-text .section-title { text-align: center !important; }
    .about-text p { font-size: 14px; }
    
    /* Features */
    .features-section { padding: 20px 20px; }
    .features-card { padding: 30px 25px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 25px 0; }
    .feature-item { padding: 0 20px; }
    .feature-item:nth-child(2) { border-right: none; }
    .feature-item:nth-child(3) { border-right: 1px solid rgba(255, 255, 255, 0.15); }
    .feature-item h3 { font-size: 28px; }
    .feature-item p { font-size: 14px; }
    .ps-0 {
        padding: 0 !important;
    }
    /* Knowledge */
    .knowledge-section { padding: 40px 0 20px; }
    .knowledge-title { font-size: 28px; }
    .knowledge-desc { font-size: 14px; }
    
    /* Tutorials */
    .tutorials-section { padding: 20px 0 40px; }
    .tutorials-grid { 
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 0 20px 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .tutorials-grid::-webkit-scrollbar { display: none; }
    
    .tutorial-card { 
        flex: 0 0 85%;
        min-width: 85%;
        max-width: 85%;
        scroll-snap-align: center;
        padding: 20px 20px 0 20px; 
        min-height: auto;
        height: auto;
    }
    .tutorial-green, .tutorial-dark { 
        flex-direction: column; 
        align-items: center;
        text-align: center;
        min-height: auto;
    }
    .tutorial-green .tutorial-text { padding: 15px 15px 0 15px; }
      .tutorial-green img {
        max-width: 350px;
        margin: 20px auto 0;
    }
    .tutorial-dark { min-height: auto; overflow: hidden; }
    .tutorial-dark .tutorial-text { max-width: 100%; padding: 15px 15px 0 15px; }
    .tutorial-dark img { 
        position: relative;
        top: auto;
        right: auto;
        height: auto;
        max-width: 280px;  
    }
    .tutorial-text h3 { font-size: 32px; }
    .tutorial-text p { font-size: 19px; }
     .tutorial-dark img { 
        position: relative; 
        right: auto; 
        top: auto; 
        max-width: 280px; 
        height: auto;
        margin: 0 auto 0; 
    }
    
    /* Team */
    .team-section { padding: 40px 0; }
    .team-slider-wrapper { max-width: 100%; }
    .team-grid { grid-template-columns: 1fr; gap: 0; }
    .team-member { padding: 20px; text-align: center; }
    .team-member img { 
        border-radius: 24px; 
        max-width: 180px; 
        margin: 0 auto 16px; 
        display: block; 
    }
    .team-member h4 { font-size: 22px; text-align: center; }
    .team-role { font-size: 13px; text-align: center; }
    .team-bio { font-size: 12px; text-align: center; }
    
    /* Team Slider for tablet/mobile */
    .team-slider-wrapper { position: relative; }
    .team-dots { display: flex; }
    
    /* Testimonials */
    .testimonials-section { padding: 40px 0; }
    .testimonial-card { padding: 25px 20px; border-radius: 16px; }
    .testimonial-content { 
        flex-direction: row; 
        text-align: left; 
        align-items: flex-start; 
        gap: 20px; 
    }
    .testimonial-avatar { width: 80px; height: 80px; min-width: 80px; border-radius: 16px; }
    .testimonial-text h4 { font-size: 20px; }
    .testimonial-role { font-size: 12px; margin-bottom: 8px; }
    .testimonial-quote { font-size: 12px; line-height: 1.5; }
    .testimonial-dots { margin-top: 20px; gap: 8px; }
    .testimonial-dots::before, .testimonial-dots::after { width: 40px; }
    
    /* Insights */
    .insights-section { padding: 40px 0; }
    .insights-content { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .insights-text h3 { font-size: 18px; }
    .insights-text p { font-size: 13px; }
    
    /* Contact */
    .contact-section { padding: 40px 0 60px; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-form-side, .contact-info-side { padding: 30px 25px; }
    .contact-info-side h2 { font-size: 28px; text-align: center !important; }
    .contact-subtitle, .contact-desc { font-size: 13px; text-align: center; }
    .contact-features { text-align: left; }
    .contact-features li { font-size: 13px; }
    
    /* Footer */
    .footer { padding: 40px 0 20px; }
    .footer-content { 
        grid-template-columns: 1fr 1fr; 
        gap: 30px 20px; 
        text-align: left; 
    }
    .footer-brand { grid-column: 1 / -1; text-align: center; }
    .social-icons { justify-content: center; }
    .footer-brand p { font-size: 12px; }
    .footer-links h4 { font-size: 13px; margin-bottom: 15px; }
    .footer-links a { font-size: 12px; padding: 5px 0; }
}

@media (max-width: 900px) {
    .nav { display: none; }
    .nav-login-wrapper { display: none; }
    .mobile-menu-btn { display: block; }
    
    /* Hide wave on mobile */
    .wave-section { display: none; }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    
    /* Hero pseudo-elements - smaller on mobile */
    .hero::before {
        width: 400px;
        height: 400px;
        top: -50px;
        left: -100px;
        filter: blur(50px);
    }
    .hero::after {
        width: 200px;
        height: 200px;
        top: 5%;
        left: 10%;
        filter: blur(30px);
    }
    .hero-glow {
        width: 200px;
        height: 200px;
        filter: blur(50px);
    }
    .hero-image::before {
        filter: blur(20px);
    }
    
    /* Hero */
    .hero { padding-top: 75px; }
    .hero-content { padding-top: 50px; gap: 20px; }
    .hero-text h1 { font-size: 26px; line-height: 1.3; }
    .hero-text p { font-size: 13px; margin-bottom: 20px; }
    .hero-buttons { gap: 10px; flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; padding: 14px 30px; font-size: 14px; }
    .google-rating { width: 100%; justify-content: center; padding: 12px 20px; }
    .google-rating .rating-number { font-size: 14px; }
    .google-rating .stars { font-size: 11px; }
    
    /* Section titles */
    .section-title { font-size: 24px; margin-bottom: 12px; }
    .section-desc { font-size: 12px; margin-bottom: 25px; }
    
    /* Ticker */
    .ticker-item { width: 120px; height: 44px; padding: 5px 7px; gap: 5px; border-radius: 8px; }
    .ticker-icon-box { width: 22px; height: 22px; border-radius: 4px; }
    .ticker-icon-box span { font-size: 7px !important; }
    .ticker-name { font-size: 9px; }
    .ticker-price { font-size: 10px; }
    .ticker-change { font-size: 8px; }
    .ticker-change .arrow { font-size: 5px; }
    .ticker-content { gap: 1px; }
    .ticker-row { gap: 3px; }
    .stock-ticker { gap: 5px; }
    .ticker-fade-left, .ticker-fade-right { width: 40px; }
    
    /* Strategy */
    .strategy-section { padding: 60px 0 40px; }
    .strategy-content { padding: 0 16px; }
    .lock-overlay { padding: 25px 15px; max-width: 95%; }
    .lock-icon { width: 55px; margin-bottom: 12px; }
    .lock-icon::before, .lock-icon::after { width: 70px; height: 70px; }
    .lock-overlay h3 { font-size: 14px; margin-bottom: 8px; }
    .lock-overlay p { font-size: 12px; padding: 0 5px; margin-bottom: 16px; line-height: 1.5; }
    .lock-overlay .btn { padding: 10px 25px; font-size: 12px; }
    
    /* About */
    .about-section { padding: 20px 16px; }
    .about-text p { font-size: 13px; }
    .btn-glow { padding: 12px 28px; font-size: 13px; }
    
    /* Features */
    .features-section { padding: 15px 16px; }
    .features-card { padding: 25px 20px; border-radius: 16px; }
    .features-grid { grid-template-columns: 1fr; gap: 20px; }
    .feature-item { padding: 0; border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.15); padding-bottom: 20px; }
    .feature-item:last-child { border-bottom: none; padding-bottom: 0; }
    .feature-item h3 { font-size: 24px; margin-bottom: 10px; }
    .feature-item p { font-size: 13px; line-height: 1.5; }
    .features-cta { margin-top: 20px; }
    
    /* Knowledge */
    .knowledge-section { padding: 30px 0 15px; }
    .knowledge-title { font-size: 24px; }
    .knowledge-desc { font-size: 13px; }
    
    /* Tutorials */
    .tutorials-section { padding: 15px 0 30px; }
    .tutorials-grid { padding: 0 16px 15px; gap: 12px; }
    .tutorial-card { 
        flex: 0 0 85%;
        min-width: 85%;
        max-width: 85%;
        padding: 16px 16px 0 16px; 
        border-radius: 16px;
        min-height: auto;
    }
    .tutorial-green .tutorial-text { padding: 10px 10px 0 10px; }
    .tutorial-dark .tutorial-text { padding: 10px 10px 0 10px; }
    .tutorial-text h3 { font-size: 20px; margin-bottom: 10px; }
    .tutorial-text p { font-size: 12px; margin-bottom: 15px; }
    .btn-white { padding: 10px 20px; font-size: 12px; }
    .tutorial-green img { max-width: 290px; }
    .tutorial-dark img { max-width: 250px; }
    
    /* Team */
    .team-section { padding: 30px 0; }
    .team-member { padding: 15px; text-align: center; }
    .team-member img { 
        border-radius: 20px; 
        max-width: 160px; 
        margin: 0 auto 12px; 
        display: block; 
    }
    .team-member h4 { font-size: 20px; text-align: center; }
    .team-role { font-size: 12px; text-align: center; }
    .team-bio { font-size: 11px; text-align: center; }
    .team-dots .dot { width: 8px; height: 8px; }
    .team-dots .dot.active { width: 20px; }
    
    /* Testimonials */
    .testimonials-section { padding: 30px 0; }
    .testimonial-card { padding: 20px 16px; }
    .testimonial-content { 
        flex-direction: row; 
        text-align: left; 
        align-items: flex-start;
        gap: 15px;
    }
    .testimonial-avatar { width: 70px; height: 70px; min-width: 70px; border-radius: 14px; }
    .testimonial-text h4 { font-size: 18px; }
    .testimonial-role { font-size: 11px; }
    .testimonial-quote { font-size: 11px; }
    .testimonial-dots::before, .testimonial-dots::after { width: 25px; }
    .dot { width: 8px; height: 8px; }
    .dot.active { width: 18px; }
    
    /* Insights */
    .insights-section { padding: 30px 0; }
    .insights-text h3 { font-size: 16px; }
    .insights-text p { font-size: 12px; }
    .insights-image img { border-radius: 10px; }
    
    /* Contact */
    .contact-section { padding: 30px 0 50px; }
    .contact-wrapper { border-radius: 16px 16px 0 0; }
    .contact-form-side, .contact-info-side { padding: 25px 20px; }
    .contact-info-side h2 { font-size: 24px; }
    .contact-subtitle { font-size: 12px; }
    .contact-desc { font-size: 12px; }
    .contact-features li { font-size: 12px; padding: 8px 0; }
    .landing-contact-form input, .landing-contact-form select { padding: 14px 18px; font-size: 13px; }
    .landing-contact-form button { padding: 12px 30px; font-size: 13px; }
    
    /* Footer */
    .footer { padding: 30px 0 15px; }
    .footer-content { 
        grid-template-columns: 1fr 1fr; 
        gap: 25px 15px; 
        text-align: left;
    }
    .footer-brand { grid-column: 1 / -1; text-align: center; margin-bottom: 10px; }
    .footer-brand p { font-size: 11px; margin-bottom: 16px; }
    .footer-brand .follow-title { font-size: 12px; }
    .social-icons { justify-content: center; }
    .social-icons a { width: 32px; height: 32px; font-size: 14px; }
    .footer-links h4 { font-size: 12px; margin-bottom: 12px; }
    .footer-links a { font-size: 11px; }
    .footer-bottom { padding-top: 20px; }
    .footer-bottom p { font-size: 11px; }
}

@media (max-width: 480px) {
    .container { padding: 0 12px; }
    
    /* Hero pseudo-elements - minimal on small mobile */
    .hero::before {
        width: 250px;
        height: 250px;
        top: -30px;
        left: -50px;
        filter: blur(40px);
        opacity: 0.7;
    }
    .hero::after {
        width: 150px;
        height: 150px;
        filter: blur(25px);
        opacity: 0.5;
    }
    .hero-glow {
        width: 150px;
        height: 150px;
        filter: blur(40px);
        opacity: 0.5;
    }
    .hero-image::before {
        filter: blur(15px);
        opacity: 0.8;
    }
    
    /* Strategy */
    .strategy-section { padding: 50px 0 30px; }
    .strategy-content { padding: 0 12px; }
    .lock-overlay { padding: 20px 12px; max-width: 98%; }
    .lock-icon { width: 45px; margin-bottom: 10px; }
    .lock-icon::before, .lock-icon::after { width: 60px; height: 60px; }
    .lock-overlay h3 { font-size: 13px; margin-bottom: 6px; }
    .lock-overlay p { font-size: 11px; padding: 0; margin-bottom: 14px; line-height: 1.4; }
    .lock-overlay .btn { padding: 10px 20px; font-size: 11px; }
    
    .hero-content { padding-top: 45px; }
    .hero-text h1 { font-size: 22px; }
    .hero-text p { font-size: 12px; }
    .hero-buttons { flex-direction: column; gap: 10px; width: 100%; }
    .hero-buttons .btn { width: 100%; text-align: center; padding: 14px 24px; font-size: 14px; }
    .google-rating { width: 100%; justify-content: center; }
    
    .section-title { font-size: 20px; }
    .section-desc { font-size: 11px; }
    
    .ticker-item { width: 105px; height: 40px; padding: 4px 6px; }
    .ticker-icon-box { width: 20px; height: 20px; }
    .ticker-name { font-size: 8px; }
    .ticker-price { font-size: 9px; }
    .ticker-change { font-size: 7px; }
    
    .features-card { padding: 20px 16px; }
    .feature-item h3 { font-size: 20px; }
    .feature-item p { font-size: 12px; }
    
    /* Tutorials - smaller cards on small mobile */
    .tutorials-grid { padding: 0 12px 15px; gap: 10px; }
    .tutorial-card { 
        flex: 0 0 90%;
        min-width: 90%;
        max-width: 90%;
        padding: 16px 16px 0 16px; 
    }
    .tutorial-green .tutorial-text { padding: 8px 8px 0 8px; }
    .tutorial-dark .tutorial-text { padding: 8px 8px 0 8px; }
    .tutorial-text h3 { font-size: 18px; }
    .tutorial-text p { font-size: 11px; }
    .tutorial-green img { max-width: 290px; }
    .tutorial-dark img {
        max-width: 190px;
    }
    
    /* Team */
    .team-member img { max-width: 140px; border-radius: 18px; }
    .team-member h4 { font-size: 18px; }
    .team-role { font-size: 11px; }
    .team-bio { font-size: 10px; }
    
    /* Testimonials */
    .testimonial-content { gap: 12px; }
    .testimonial-avatar { width: 60px; height: 60px; min-width: 60px; border-radius: 12px; }
    .testimonial-text h4 { font-size: 16px; }
    .testimonial-role, .testimonial-quote { font-size: 10px; }
    
    /* Contact */
    .contact-section { padding: 25px 0 40px; }
    .contact-form-side, .contact-info-side { padding: 20px 16px; }
    .contact-info-side h2 { font-size: 20px; }
    .landing-contact-form input, .landing-contact-form select { padding: 12px 16px; font-size: 12px; }
    
    /* Footer */
    .footer { padding: 25px 0 15px; }
    .footer-content { gap: 20px 12px; }
    .footer-links h4 { font-size: 11px; margin-bottom: 10px; }
    .footer-links a { font-size: 10px; padding: 4px 0; }
}

/* Large screens / TV */
@media (min-width: 1600px) {
    .container { max-width: 1500px; }
    .hero-text h1 { font-size: 58px; }
    .hero-text p { font-size: 20px; }
    .section-title { font-size: 52px; }
    .hero-image img { max-width: 900px; }
}

@media (min-width: 1920px) {
    .container { max-width: 1700px; }
    .hero-text h1 { font-size: 64px; }
    .section-title { font-size: 58px; }
}

/* ===== MODERN ANIMATIONS ===== */

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Scale In Animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Slide In Left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide In Right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animate on scroll classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.animate-left {
    transform: translateX(-50px);
}

.animate-on-scroll.animate-left.animated {
    transform: translateX(0);
}

.animate-on-scroll.animate-right {
    transform: translateX(50px);
}

.animate-on-scroll.animate-right.animated {
    transform: translateX(0);
}

.animate-on-scroll.animate-scale {
    transform: scale(0.9);
}

.animate-on-scroll.animate-scale.animated {
    transform: scale(1);
}

/* Stagger animation delays */
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* Button hover effects */
.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(29, 185, 84, 0.3);
}

.btn:active {
    transform: translateY(0);
}

.btn-glow {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(29, 185, 84, 0.4);
}

/* Card hover effects */
.feature-item {
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.team-member {
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
}

.team-member img {
    transition: all 0.4s ease;
}

.team-member:hover img {
    transform: scale(1.03);
}

/* Tutorial card hover */
.tutorial-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tutorial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Testimonial card animation */
.testimonial-slide {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-slide.active {
    animation: fadeIn 0.5s ease forwards;
}

/* Social icons hover */
.social-icons a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
}

/* Nav link hover effect */
.nav a {
    position: relative;
    transition: color 0.3s ease;
}

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

.nav a:hover::after {
    width: 100%;
}

/* Header scroll animation */
.landing-header {
    transition: all 0.3s ease;
}

.landing-header.scrolled {
    background: rgba(5, 15, 10, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Input focus animation */
.landing-contact-form input,
.landing-contact-form select {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-contact-form input:focus,
.landing-contact-form select:focus {
    transform: translateY(-2px);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading screen fade out */
.loading-screen {
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

/* About card hover */
.about-card {
    transition: all 0.4s ease;
}

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

/* Features card hover */
.features-card {
    transition: all 0.4s ease;
}

.features-card:hover {
    box-shadow: inset 1px 2px 30px 0px rgb(242 237 237 / 25%);
}

/* Contact wrapper hover */
.contact-wrapper {
    transition: all 0.4s ease;
}

.contact-wrapper:hover {
    box-shadow: inset 1px 2px 30px 0px rgb(242 237 237 / 25%);
}

/* Pulse animation for dots */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.dot.active {
    animation: pulse 2s ease-in-out infinite;
}

/* Gradient text shimmer effect */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.highlight {
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}
