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

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #10b981;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #111827;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    cursor: none;
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

/* Custom Cursor */
.cursor {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    mix-blend-mode: difference;
}

.cursor.active,
.cursor-follower.active {
    transform: translate(-50%, -50%) scale(1.5);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Main Container */
.main-container {
    width: 100%;
    position: relative;
}

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
}

.hero-text {
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.title-line {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    animation: fadeInLeft 0.8s ease;
}

.title-main {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInRight 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease 0.7s both;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.hero-section .btn-primary {
    background: white;
    color: var(--primary-color);
}

.hero-section .btn-primary:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.community-section .btn-primary {
    background: white;
    color: var(--primary-color);
}

.community-section .btn-primary:hover {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

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

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeIn 1s ease 0.5s both;
}

.investment-animation {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Chart Animation */
.chart-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 400px;
    height: 250px;
    z-index: 2;
}

.investment-chart {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.3));
}

.chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawChart 2s ease-out forwards;
    animation-delay: 0.5s;
}

.chart-area {
    opacity: 0;
    animation: fadeInArea 0.5s ease-out forwards;
    animation-delay: 2s;
}

.chart-point {
    opacity: 0;
    animation: pulsePoint 1s ease-out forwards;
    animation-delay: 2.5s;
}

@keyframes drawChart {
    to {
        stroke-dashoffset: 0;
    }
}

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

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

/* Floating Money Symbols */
.money-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.money-coin {
    position: absolute;
    font-size: 2.5rem;
    animation: floatMoney 6s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
    z-index: 1;
}

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

.coin-2 {
    top: 15%;
    left: 15%;
    animation-delay: 1s;
}

.coin-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.coin-4 {
    top: 60%;
    right: 10%;
    animation-delay: 1.5s;
}

.coin-5 {
    bottom: 15%;
    right: 30%;
    animation-delay: 0.5s;
}

@keyframes floatMoney {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 1;
    }
}

/* Growth Indicator */
.growth-indicator {
    position: absolute;
    top: 15%;
    right: 10%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 3;
    animation: slideInRight 1s ease-out 0.8s both;
}

.growth-arrow {
    font-size: 2rem;
    animation: bounceGrowth 2s ease-in-out infinite;
    animation-delay: 2s;
}

.growth-text {
    display: flex;
    flex-direction: column;
    color: white;
}

.growth-percent {
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1;
}

.growth-label {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Investment Circles */
.investment-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    z-index: 1;
}

.circle {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-1 {
    width: 200px;
    height: 200px;
    animation: pulseCircle 3s ease-in-out infinite;
}

.circle-2 {
    width: 250px;
    height: 250px;
    animation: pulseCircle 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.circle-3 {
    width: 300px;
    height: 300px;
    animation: pulseCircle 3s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes pulseCircle {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

/* Percentage Badges */
.percentage-badges {
    position: absolute;
    bottom: 10%;
    left: 10%;
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.badge-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    animation: slideInUp 1s ease-out 1.2s both;
}

.badge-2 {
    animation-delay: 1.4s;
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.badge-label {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 500;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 3;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(45deg);
}

/* Hero Section Divider */
.hero-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
    overflow: hidden;
    line-height: 0;
}

.hero-divider svg {
    width: 100%;
    height: 100%;
    display: block;
    color: var(--bg-secondary);
    vertical-align: bottom;
}

.hero-divider path {
    animation: waveAnimation 10s ease-in-out infinite;
    shape-rendering: geometricPrecision;
}

@keyframes waveAnimation {
    0%, 100% {
        d: path("M0,120 L48,105 C96,90 192,60 288,50 C384,40 480,50 576,55 C672,60 768,60 864,50 C960,40 1056,20 1152,15 C1248,10 1344,20 1392,25 L1440,30 L1440,120 L0,120 Z");
    }
    50% {
        d: path("M0,120 L48,115 C96,110 192,100 288,95 C384,90 480,90 576,95 C672,100 768,110 864,105 C960,100 1056,85 1152,80 C1248,75 1344,80 1392,85 L1440,90 L1440,120 L0,120 Z");
    }
}

/* About Section */
.about-section {
    background: var(--bg-secondary);
}

.about-content {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.about-intro strong {
    color: var(--text-primary);
    font-weight: 600;
}

.vision-mission-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 4rem 0;
}

.vision-box,
.mission-box {
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.vision-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
}

.mission-box {
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    border-left: 4px solid #764ba2;
}

.vm-number {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.vm-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.vm-content {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.vm-detail {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.brand-story {
    max-width: 900px;
    margin: 4rem auto 0;
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.brand-story-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-story-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    text-align: left;
}

.section-container {
    max-width: 1400px;
    width: 100%;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
    stroke-width: 2;
}

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

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

/* Features Section */
.features-section {
    background: var(--bg-primary);
}

/* What Makes IamSMART Unique Section */
.unique-section {
    background: var(--bg-secondary);
}

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

.unique-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.unique-feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.unique-icon-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.unique-icon-wrapper svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 2;
}

.unique-content {
    flex: 1;
}

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

.unique-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* How to Use Section */
.how-to-use-section {
    background: var(--bg-secondary);
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 24px;
    position: relative;
    background: var(--gradient-1);
    padding: 4px;
    box-shadow: 
        0 20px 60px rgba(102, 126, 234, 0.3),
        0 10px 30px rgba(118, 75, 162, 0.2);
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-primary);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.video-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.how-to-use-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    background: #000;
    transition: transform 0.3s ease;
}

.video-container:hover .how-to-use-video {
    transform: scale(1.01);
}

/* Custom video controls styling */
.how-to-use-video::-webkit-media-controls-panel {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.how-to-use-video::-webkit-media-controls-play-button {
    background: var(--gradient-1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.how-to-use-video::-webkit-media-controls-current-time-display,
.how-to-use-video::-webkit-media-controls-time-remaining-display {
    color: white;
    font-weight: 600;
}

.how-to-use-video::-webkit-media-controls-timeline {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    height: 4px;
}

.how-to-use-video::-webkit-media-controls-timeline::-webkit-slider-thumb {
    background: var(--primary-color);
    border-radius: 50%;
    width: 12px;
    height: 12px;
}

.how-to-use-video::-webkit-media-controls-volume-slider {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
}

.how-to-use-video::-webkit-media-controls-mute-button {
    color: white;
}

.how-to-use-video::-webkit-media-controls-fullscreen-button {
    color: white;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-primary);
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item.active {
    box-shadow: var(--shadow-md);
}

.faq-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-header:hover {
    background: var(--bg-secondary);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    line-height: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer-wrapper {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Contact Section Updates */
.contact-info-centered {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Community Section */
.community-section {
    background: var(--gradient-1);
    color: white;
    text-align: center;
}

.community-section .section-title {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.community-content {
    max-width: 800px;
    margin: 0 auto;
}

.community-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.95;
    color: white;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-subtext {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 600px;
    color: white;
}

/* Contact Section */
.contact-section {
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

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

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

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

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-details a,
.contact-details p {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

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

.contact-form .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.download-app {
    text-align: center;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid #e5e7eb;
}

.download-app h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

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

.store-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: #000000;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    min-width: 180px;
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.app-store-btn {
    background: #000000;
}

.play-store-btn {
    background: #000000;
}

/* Glossy Hero Store Buttons */
.hero-store-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}

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

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

.hero-store-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 100%
    );
    pointer-events: none;
    border-radius: 12px 12px 0 0;
}

.hero-store-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(255, 255, 255, 0.3);
}

.hero-store-btn.app-store-btn.available-soon {
    opacity: 0.8;
    cursor: not-allowed;
}

.hero-store-btn .store-icon,
.hero-store-btn .store-text {
    position: relative;
    z-index: 1;
}

.store-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-label {
    font-size: 0.7rem;
    line-height: 1;
    opacity: 0.8;
    margin-bottom: 2px;
}

.store-name {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.app-btn {
    padding: 0.75rem 2rem;
    background: var(--gradient-1);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-1);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    pointer-events: none;
    max-width: 300px;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast-message {
    font-weight: 600;
    font-size: 0.95rem;
}

.store-btn.available-soon {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.store-btn.available-soon .store-name {
    font-size: 0.9rem;
}

/* Responsive Toast */
@media (max-width: 767px) {
    .toast {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .toast {
        bottom: 15px;
        right: 15px;
        left: 15px;
        padding: 0.875rem 1.25rem;
    }
    
    .toast-message {
        font-size: 0.875rem;
    }
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

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

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

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

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

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

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

/* Responsive Design */

/* TV and Large Screens (1920px+) */
@media (min-width: 1920px) {
    .section-container,
    .nav-container {
        max-width: 1600px;
    }
    
    .hero-title {
        font-size: 5.5rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
}

/* Desktop (1200px - 1919px) */
@media (max-width: 1919px) and (min-width: 1200px) {
    .section-container,
    .nav-container {
        max-width: 1400px;
    }
}

/* Laptop (992px - 1199px) */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .title-line {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .chart-container {
        max-width: 250px;
        height: 180px;
    }
    
    .money-coin {
        font-size: 1.75rem;
    }
    
    .growth-indicator {
        top: 5%;
        right: 5%;
        padding: 0.75rem 1rem;
    }
    
    .growth-arrow {
        font-size: 1.5rem;
    }
    
    .growth-percent {
        font-size: 1.25rem;
    }
    
    .badge-item {
        padding: 0.75rem 1rem;
    }
    
    .badge-number {
        font-size: 1.25rem;
    }
    
    .percentage-badges {
        bottom: 5%;
        left: 5%;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Mobile (481px - 767px) */
@media (max-width: 767px) {
    .section {
        padding: 6rem 1.5rem 3rem;
    }
    
    .vision-mission-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vision-box,
    .mission-box {
        padding: 2rem;
    }
    
    .vm-number {
        font-size: 3rem;
    }
    
    .vm-title {
        font-size: 1.5rem;
    }
    
    .unique-features-grid {
        grid-template-columns: 1fr;
    }
    
    .unique-feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .unique-icon-wrapper {
        margin: 0 auto 1rem;
    }
    
    .brand-story {
        padding: 2rem 1.5rem;
    }
    
    .brand-story-title {
        font-size: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
    
    .faq-header {
        padding: 1.25rem;
    }
    
    .contact-info-centered {
        flex-direction: column;
        gap: 2rem;
    }
    
    .navbar {
        padding: 1rem 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-line {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-store-btn {
        width: 100%;
        justify-content: center;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .app-buttons {
        flex-direction: column;
    }
    
    .video-container {
        margin: 0 1rem;
        padding: 6px;
    }
    
    .video-wrapper {
        border-radius: 18px;
    }
    
    .how-to-use-video {
        border-radius: 18px;
    }
}

/* Small Mobile (400px - 480px) */
@media (max-width: 480px) {
    .section {
        padding: 5rem 1rem 2rem;
    }
    
    .navbar {
        padding: 0.75rem 1rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .title-line {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .community-description {
        font-size: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-form-container {
        padding: 1.25rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 0.75rem;
        font-size: 0.9rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Extra Small Mobile (<400px) */
@media (max-width: 399px) {
    .section {
        padding: 4.5rem 0.75rem 1.5rem;
    }
    
    .navbar {
        padding: 0.5rem 0.75rem;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .title-line {
        font-size: 0.9rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    .community-description {
        font-size: 0.95rem;
    }
    
    .contact-form-container {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .footer-content {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }
    
    .shape-1 {
        width: 120px;
        height: 120px;
    }
    
    .shape-2,
    .shape-4 {
        width: 80px;
        height: 80px;
    }
    
    .shape-3 {
        width: 60px;
        height: 60px;
    }
    
    .chart-container {
        max-width: 200px;
        height: 150px;
    }
    
    .money-coin {
        font-size: 1.5rem;
    }
    
    .growth-indicator {
        position: relative;
        top: auto;
        right: auto;
        margin: 1rem auto;
        width: fit-content;
    }
    
    .percentage-badges {
        position: relative;
        bottom: auto;
        left: auto;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .investment-circles {
        width: 200px;
        height: 200px;
    }
    
    .circle-1 {
        width: 120px;
        height: 120px;
    }
    
    .circle-2 {
        width: 150px;
        height: 150px;
    }
    
    .circle-3 {
        width: 180px;
        height: 180px;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .store-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .video-container {
        margin: 0 0.5rem;
        padding: 4px;
        border-radius: 15px;
    }
    
    .video-wrapper {
        border-radius: 13px;
    }
    
    .how-to-use-video {
        border-radius: 13px;
    }
}

/* Smooth Scrolling Physics */
.smooth-scroll {
    overflow: hidden;
    height: 100vh;
}

.smooth-scroll .main-container {
    will-change: transform;
}
