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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0d0d0d;
    color: #f2f2f2;
    line-height: 1.6;
    overflow-x: hidden;
}

/* CSS Variables */
:root {
    --primary: #70b280;
    --primary-foreground: #fafafa;
    --background: #0d0d0d;
    --foreground: #f2f2f2;
    --card: #1f1f1f;
    --card-foreground: #f2f2f2;
    --accent: #70b280;
    --accent-foreground: #fafafa;
    --border: #333333;
    --muted: #333333;
    --muted-foreground: #b3b3b3;
    --destructive: #ef4444;
}

/* Utility Classes */
.min-h-screen {
    min-height: 100vh;
}

.relative {
    position: relative;
}

.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.pointer-events-none {
    pointer-events: none;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.z-50 {
    z-index: 50;
}

.z-10 {
    z-index: 10;
}

/* Container */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
        max-width: 1280px;
    }
}

/* Flexbox */
.flex {
    display: flex;
    min-width: 0;
    min-height: 0;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.justify-between {
    justify-content: space-between;
}

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

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

/* Grid */
.grid {
    display: grid;
}

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

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Desktop: md: classes (min-width: 768px) */
@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .md\:flex {
        display: flex;
    }
    
    .md\:hidden {
        display: none;
    }
    
    .md\:px-0 {
        padding-left: 0;
        padding-right: 0;
    }
    
    .md\:gap-12 {
        gap: 3rem;
    }
    
    .md\:gap-16 {
        gap: 4rem;
    }
    
    .md\:mt-8 {
        margin-top: 2rem;
    }
    
    .md\:text-lg {
        font-size: 1.125rem;
    }
    
    .md\:text-4xl {
        font-size: 2.25rem;
    }
    
    .md\:text-6xl {
        font-size: 3.75rem;
    }
}

/* Mobile: override md: classes (max-width: 767px) */
@media (max-width: 767px) {
    .md\:grid-cols-2,
    .md\:grid-cols-3,
    .md\:grid-cols-4 {
        grid-template-columns: 1fr;
    }
}

/* Spacing */
.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-1\.5 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.pt-4 {
    padding-top: 1rem;
}

.pt-8 {
    padding-top: 2rem;
}

.pt-32 {
    padding-top: 8rem;
}

.pb-6 {
    padding-bottom: 1.5rem;
}

.pb-20 {
    padding-bottom: 5rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-16 {
    margin-top: 4rem;
}

/* Sizing */
.w-full {
    width: 100%;
}

.w-12 {
    width: 3rem;
}

.w-16 {
    width: 4rem;
}

.w-32 {
    width: 8rem;
}

.w-64 {
    width: 16rem;
}

.h-6 {
    height: 1.5rem;
}

.h-10 {
    height: 2.5rem;
}

.h-12 {
    height: 3rem;
}

.h-16 {
    height: 4rem;
}

.h-96 {
    height: 24rem;
}

.h-\[100px\] {
    height: 100px;
}

.h-\[120px\] {
    height: 120px;
}

.h-\[150px\] {
    height: 150px;
}

.h-\[160px\] {
    height: 160px;
}

.h-\[200px\] {
    height: 200px;
}

.max-w-sm {
    max-width: 24rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-6xl {
    max-width: 72rem;
}

.max-w-xs {
    max-width: 20rem;
}

.max-w-\[80px\] {
    max-width: 80px;
}

.max-w-\[100px\] {
    max-width: 100px;
}

.max-w-\[120px\] {
    max-width: 120px;
}

.max-w-\[150px\] {
    max-width: 150px;
}

.max-w-\[200px\] {
    max-width: 200px;
}

.max-w-\[280px\] {
    max-width: 280px;
}

.aspect-video {
    aspect-ratio: 16 / 9;
}

.aspect-\[9\/19\.5\] {
    aspect-ratio: 9 / 19.5;
}

/* Typography */
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

/* Colors */
.text-foreground {
    color: var(--foreground);
}

.text-foreground\/50 {
    color: rgba(242, 242, 242, 0.5);
}

.text-foreground\/60 {
    color: rgba(242, 242, 242, 0.6);
}

.text-foreground\/70 {
    color: rgba(242, 242, 242, 0.7);
}

.text-foreground\/80 {
    color: rgba(242, 242, 242, 0.8);
}

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

.text-accent\/80 {
    color: rgba(112, 178, 128, 0.8);
}

.text-red-500 {
    color: #ef4444;
}

.bg-background {
    background-color: var(--background);
}

.bg-background\/80 {
    background-color: rgba(13, 13, 13, 0.8);
}

.bg-card {
    background-color: var(--card);
}

.bg-card\/80 {
    background-color: rgba(31, 31, 31, 0.8);
}

.bg-accent {
    background-color: var(--accent);
}

.bg-accent\/5 {
    background-color: rgba(112, 178, 128, 0.05);
}

.bg-accent\/10 {
    background-color: rgba(112, 178, 128, 0.1);
}

.bg-accent\/20 {
    background-color: rgba(112, 178, 128, 0.2);
}

.bg-accent\/30 {
    background-color: rgba(112, 178, 128, 0.3);
}

.bg-accent\/50 {
    background-color: rgba(112, 178, 128, 0.5);
}

.bg-blue-500\/10 {
    background-color: rgba(59, 130, 246, 0.1);
}

.bg-blue-500\/20 {
    background-color: rgba(59, 130, 246, 0.2);
}

.bg-green-500\/5 {
    background-color: rgba(34, 197, 94, 0.05);
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-tl {
    background-image: linear-gradient(to top left, var(--tw-gradient-stops));
}

.bg-gradient-to-l {
    background-image: linear-gradient(to left, var(--tw-gradient-stops));
}

.from-accent\/20 {
    --tw-gradient-from: rgba(112, 178, 128, 0.2);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(112, 178, 128, 0));
}

.from-accent\/50 {
    --tw-gradient-from: rgba(112, 178, 128, 0.5);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(112, 178, 128, 0));
}

.from-blue-500\/50 {
    --tw-gradient-from: rgba(59, 130, 246, 0.5);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0));
}

.via-transparent {
    --tw-gradient-to: transparent;
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, transparent);
}

.via-green-400 {
    --tw-gradient-to: #4ade80;
    --tw-gradient-stops: var(--tw-gradient-from), #4ade80, var(--tw-gradient-to, transparent);
}

.to-transparent {
    --tw-gradient-to: transparent;
}

.to-blue-400 {
    --tw-gradient-to: #60a5fa;
}

.to-blue-500\/20 {
    --tw-gradient-to: rgba(59, 130, 246, 0.2);
}

.from-white {
    --tw-gradient-from: #ffffff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.from-white\/15 {
    --tw-gradient-from: rgba(255, 255, 255, 0.15);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.to-gray-100 {
    --tw-gradient-to: #f3f4f6;
}

/* Borders */
.border {
    border: 1px solid var(--border);
}

.border-b {
    border-bottom: 1px solid var(--border);
}

.border-t {
    border-top: 1px solid var(--border);
}

.border-l {
    border-left: 1px solid var(--border);
}

.border-l-4 {
    border-left: 4px solid;
}

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

.border-accent\/30 {
    border-color: rgba(112, 178, 128, 0.3);
}

.border-border\/50 {
    border-color: rgba(51, 51, 51, 0.5);
}

.border-red-500 {
    border-color: #ef4444;
}

.border-gray-800 {
    border-color: #1f2937;
}

.border-8 {
    border-width: 8px;
}

.rounded {
    border-radius: 0.375rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-b-3xl {
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
}

/* Shadow and Effects */
.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-3xl {
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
}

.shadow-accent\/60 {
    box-shadow: 0 0 30px rgba(112, 178, 128, 0.6);
}

.shadow-accent\/80 {
    box-shadow: 0 0 40px rgba(112, 178, 128, 0.8);
}

.shadow-blue-500\/60 {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.shadow-lg\/50 {
    box-shadow: 0 10px 15px -3px rgba(112, 178, 128, 0.5);
}

.blur-2xl {
    filter: blur(40px);
}

.blur-3xl {
    filter: blur(64px);
}

/* Transitions */
.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

/* Hover Effects */
.hover\:text-foreground:hover {
    color: var(--foreground);
}

.hover\:text-accent\/80:hover {
    color: rgba(112, 178, 128, 0.8);
}

.hover\:bg-accent\/90:hover {
    background-color: rgba(112, 178, 128, 0.9);
}

.hover\:bg-card\/80:hover {
    background-color: rgba(31, 31, 31, 0.8);
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:scale-110:hover {
    transform: scale(1.1);
}

.hover\:shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hover\:shadow-accent\/50:hover {
    box-shadow: 0 0 30px rgba(112, 178, 128, 0.5);
}

.hover\:shadow-3xl:hover {
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
}

.hover\:shadow-accent\/80:hover {
    box-shadow: 0 0 40px rgba(112, 178, 128, 0.8);
}

.hover\:shadow-blue-500\/80:hover {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.8);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(112, 178, 128, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(112, 178, 128, 0.6);
    }
}

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

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

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

.animate-slide-up {
    animation: slideInUp 0.6s ease-out;
}

.animate-slide-down {
    animation: slideInDown 0.6s ease-out;
}

/* Cards */
.card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
}

/* FAQ Styles */
.faq-button {
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    width: 100%;
    color: var(--foreground);
    transition: background-color 0.2s ease;
    outline: none;
}

.faq-button:hover {
    background-color: rgba(31, 31, 31, 0.8);
}

.faq-button:focus {
    outline: 2px solid var(--accent);
    outline-offset: -2px;
}

.faq-button h3 {
    color: #f2f2f2;
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
}

.faq-button svg {
    color: var(--accent);
    flex-shrink: 0;
}

.faq-content {
    color: rgba(242, 242, 242, 0.75);
    line-height: 1.7;
    transition: all 0.3s ease;
    animation: slideDown 0.3s ease-out;
}

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

.faq-content.hidden {
    display: none;
}

.faq-content p {
    color: rgba(242, 242, 242, 0.75);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* FAQ Card specific styling */
#faq .card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    transition: border-color 0.2s ease;
}

#faq .card:hover {
    border-color: rgba(112, 178, 128, 0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-accent {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.btn-accent:hover {
    background-color: rgba(112, 178, 128, 0.9);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(112, 178, 128, 0.5);
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #70b280 0%, #4db8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .hidden {
        display: none;
    }
    
    .sm\:text-4xl {
        font-size: 2.25rem;
    }
    
    .sm\:text-sm {
        font-size: 0.875rem;
    }
    
    .sm\:h-\[120px\] {
        height: 120px;
    }
    
    .sm\:h-\[160px\] {
        height: 160px;
    }
    
    .sm\:max-w-\[100px\] {
        max-width: 100px;
    }
    
    .sm\:max-w-\[200px\] {
        max-width: 200px;
    }
}

/* Small screens (sm:) - min-width: 640px */
@media (min-width: 640px) {
    .sm\:text-4xl {
        font-size: 2.25rem;
    }
    
    .sm\:text-sm {
        font-size: 0.875rem;
    }
    
    .sm\:h-\[120px\] {
        height: 120px;
    }
    
    .sm\:h-\[160px\] {
        height: 160px;
    }
    
    .sm\:max-w-\[100px\] {
        max-width: 100px;
    }
    
    .sm\:max-w-\[200px\] {
        max-width: 200px;
    }
}

/* Navigation */
nav {
    backdrop-filter: blur(12px);
}

/* Flex Shrink */
.flex-shrink-0 {
    flex-shrink: 0;
}

/* Text Align */
.text-center {
    text-align: center;
}

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

/* Inline Block */
.inline-block {
    display: inline-block;
}

.inline-flex {
    display: inline-flex;
}

/* Whitespace */
.whitespace-nowrap {
    white-space: nowrap;
}

/* Opacity */
.opacity-70 {
    opacity: 0.7;
}

/* Object Fit */
.object-contain {
    object-fit: contain;
}

.object-cover {
    object-fit: cover;
}

/* Cursor */
.cursor-pointer {
    cursor: pointer;
}

/* Animation Delay */
[style*="animation-delay"] {
    animation-delay: inherit;
}

/* Additional Spacing Utilities */
.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

/* Margin Utilities */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-4 {
    margin-right: 1rem;
}

/* Translate Utilities */
.-translate-x-1\/2 {
    transform: translateX(-50%);
}

.left-1\/2 {
    left: 50%;
}

.left-1\/4 {
    left: 25%;
}

.right-1\/4 {
    right: 25%;
}

.top-1\/2 {
    top: 50%;
}

.-inset-6 {
    top: -1.5rem;
    right: -1.5rem;
    bottom: -1.5rem;
    left: -1.5rem;
}

.-top-4 {
    top: -1rem;
}

.right-6 {
    right: 1.5rem;
}

/* Backdrop Blur */
.backdrop-blur-md {
    backdrop-filter: blur(12px);
}

/* Additional Width/Height */
.w-4 {
    width: 1rem;
}

.w-5 {
    width: 1.25rem;
}

.w-6 {
    width: 1.5rem;
}

.h-1 {
    height: 0.25rem;
}

/* Additional Utilities */
.text-accent-foreground {
    color: var(--accent-foreground);
}

/* Position Utilities */
.top-0 {
    top: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

/* Color Utilities */
.bg-black {
    background-color: #000000;
}

.bg-white {
    background-color: #ffffff;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

.bg-gray-700 {
    background-color: #374151;
}

.bg-gray-800 {
    background-color: #1f2937;
}

.bg-gray-900 {
    background-color: #111827;
}

/* Margin Utilities */
.m-2 {
    margin: 0.5rem;
}
