/* TrimmGo Modern Landing Page Styles */

/* CSS Variables - Light & Dark Mode Support */
:root {
    /* Brand Colors */
    --primary-color: #652410;
    --secondary-color: #FAC697;
    --accent-color: #ff6b6b;
    --accent-secondary: #4ecdc4;
    
    /* Light Mode Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border-color: rgba(226, 232, 240, 0.8);
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 40px 80px rgba(0, 0, 0, 0.12);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    
    /* Animations */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    --border-color: rgba(51, 65, 85, 0.6);
    --glass-bg: rgba(15, 23, 42, 0.3);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory; /* Apple Vision Pro scroll snap */
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    transition: var(--transition-smooth);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2rem);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-pretitle {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: var(--spacing-lg);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--spacing-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Paw Print Features */
.paw-features {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    padding: 1rem 0 2rem 0;
}

.paw-icon {
    width: 100%;
    max-width: 700px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(101, 36, 16, 0.2));
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.paw-icon:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 12px 30px rgba(101, 36, 16, 0.3));
}

.paw-icon .toe {
    transition: all 0.3s ease;
    cursor: pointer;
    animation: toeFloat 3s ease-in-out infinite;
}

.paw-icon .toe:nth-child(3) {
    animation-delay: 0.3s;
}

.paw-icon .toe:nth-child(4) {
    animation-delay: 0.6s;
}

.paw-icon .toe:nth-child(5) {
    animation-delay: 0.9s;
}

.paw-icon .toe:nth-child(6) {
    animation-delay: 1.2s;
}

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

.paw-icon .toe:hover ellipse {
    filter: brightness(1.15) url(#innerShadow);
}

.paw-icon .toe:hover text {
    fill: #4a1a08;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(250, 198, 151, 0.6);
}

/* Glow effect on hover */
.paw-icon path {
    transition: all 0.4s ease;
}

.paw-icon:hover path {
    filter: brightness(1.1) url(#innerShadow) drop-shadow(0 0 15px rgba(250, 198, 151, 0.5));
}

/* Responsive Paw */
@media (max-width: 768px) {
    .paw-icon {
        max-width: 550px;
    }

    .paw-icon text {
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    .paw-icon {
        max-width: 420px;
    }

    .paw-icon text {
        font-size: 11px !important;
    }
}

/* Navigation - Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}

[data-theme="dark"] .navbar.scrolled {
    background: rgba(15, 23, 42, 0.9);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) clamp(1rem, 5vw, 2rem);
    min-height: 80px;
}

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

.nav-logo {
    height: 50px;
    width: auto;
    transition: var(--transition-smooth);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.nav-link-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover .nav-link-underline,
.nav-link.active .nav-link-underline {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(101, 36, 16, 0.05);
}

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

.theme-toggle {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    background: var(--gradient-accent);
    color: white;
    transform: rotate(180deg);
}

.btn-cta {
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Hero Section - Modern Gradient Background */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 60px;
    scroll-snap-align: start; /* Snap to hero section */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(250, 198, 151, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(101, 36, 16, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(76, 236, 196, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    animation: gradientShift 20s ease infinite;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-accent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    top: 60%;
    right: 10%;
    animation-delay: -10s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    bottom: 20%;
    left: 60%;
    animation-delay: -5s;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-md);
}

.hero-title {
    font-size: clamp(3rem, 10vw, 10rem); /* 48px → 160px Apple Vision Pro style */
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    line-height: 0.95;
    letter-spacing: -0.05em; /* Tight spacing like Apple */
}

.title-gradient {
    background: linear-gradient(135deg, #FAC697, #652410, #FAC697, #652410);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 8s ease infinite;
}

.title-accent {
    color: var(--text-primary);
    font-weight: 400;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

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

.btn {
    position: relative;
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    text-align: center;
}

.magnetic-btn {
    transition: transform 0.1s ease;
}

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

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

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

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-text {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    position: relative;
    z-index: 2;
}

.hero-features {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: nowrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.hero-feature .feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Hero Visual - Modern Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mockup {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.mockup-window {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
    transition: var(--transition-smooth);
}

.mockup-window:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
}

.window-header {
    background: var(--bg-secondary);
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.window-controls {
    display: flex;
    gap: var(--spacing-xs);
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-close { background: #ff5f57; }
.control-minimize { background: #ffbd2e; }
.control-maximize { background: #28ca42; }

.window-content {
    padding: var(--spacing-md);
}

.demo-calendar {
    background: var(--bg-primary);
    border-radius: var(--radius-md);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--border-color);
}

.calendar-header h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
}

.calendar-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.calendar-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

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

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
}

.calendar-day {
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    background: var(--bg-secondary);
    transition: var(--transition-fast);
}

.calendar-day.active {
    background: rgba(101, 36, 16, 0.1);
    border: 1px solid var(--primary-color);
}

.day-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
    display: block;
}

.appointment {
    background: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    margin-bottom: 4px;
    opacity: 0.9;
}

.appointment.confirmed {
    background: var(--accent-secondary);
}

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

.floating-stats {
    position: absolute;
    top: 20%;
    left: -20%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.stat-card.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(40px) saturate(180%); /* Enhanced glassmorphism */
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.25); /* Inner glow */
    min-width: 200px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

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

/* Features Overview */
.features-overview {
    min-height: 100vh; /* Full height section */
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
    scroll-snap-align: start; /* Snap to section */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.feature-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(101, 36, 16, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: rgba(101, 36, 16, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.375rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) 0;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.feature-list i {
    color: var(--accent-secondary);
    font-size: 0.875rem;
}

/* Not Wasting Time Section */
.not-wasting-section {
    margin: var(--spacing-2xl) 0;
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
    border-radius: var(--radius-2xl);
    border: 2px dashed rgba(231, 76, 60, 0.2);
}

.not-wasting-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, #e74c3c 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.not-wasting-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.not-wasting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.not-wasting-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 2px solid rgba(231, 76, 60, 0.2);
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.not-wasting-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #e74c3c 0%, #ff6b6b 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.not-wasting-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.15);
    border-color: rgba(231, 76, 60, 0.4);
}

.not-wasting-card:hover::before {
    opacity: 1;
}

.not-wasting-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e74c3c 0%, #ff6b6b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 2rem;
    color: white;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.not-wasting-card:hover .not-wasting-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.not-wasting-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.not-wasting-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Responsive Not Wasting Section */
@media (max-width: 768px) {
    .not-wasting-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .not-wasting-section {
        padding: var(--spacing-lg);
    }

    .philosophy-panel {
        padding: var(--spacing-lg) var(--spacing-xl);
    }

    .philosophy-panel p {
        font-size: 1.05rem;
        line-height: 1.8;
    }

    .not-wasting-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Philosophy Panel */
.philosophy-panel {
    margin: var(--spacing-2xl) 0;
    padding: 3rem 4rem;
    background: linear-gradient(135deg,
        rgba(250, 198, 151, 0.25) 0%,
        rgba(212, 149, 106, 0.35) 50%,
        rgba(101, 36, 16, 0.25) 100%);
    border-radius: var(--radius-2xl);
    border: 3px solid var(--primary-color);
    box-shadow: 0 15px 50px rgba(101, 36, 16, 0.3),
                0 0 0 2px rgba(250, 198, 151, 0.5),
                inset 0 4px 10px rgba(255, 255, 255, 0.15),
                inset 0 -4px 10px rgba(101, 36, 16, 0.1);
    position: relative;
    overflow: hidden;
}

.philosophy-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent);
    animation: shimmer 5s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.philosophy-panel p {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-primary);
    margin: 0;
    text-align: center;
    font-style: italic;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* Advanced Features - Bento Grid Layout */
.advanced-features {
    padding: var(--spacing-2xl) 0;
}

/* Bento Grid Container */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: auto;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

/* Bento Grid Items */
.bento-item {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease-out;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* 3D Perspective Setup */
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform;
    align-items: center;
    text-align: center;
    min-height: 220px;
}

.bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-smooth);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.bento-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(101, 36, 16, 0.2), 0 0 0 1px rgba(250, 198, 151, 0.3);
    border-color: rgba(250, 198, 151, 0.5);
    z-index: 1000;
}

.bento-item:hover::before {
    opacity: 1;
}

/* Bento Grid Sizes */
.bento-hero {
    grid-column: span 6;
    grid-row: span 2;
    min-height: 280px;
}

.bento-large {
    grid-column: span 4;
    grid-row: span 2;
    min-height: 260px;
}

.bento-medium {
    grid-column: span 3;
    grid-row: span 1;
    min-height: 200px;
}

/* Bento Item Content Styling */
.bento-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    font-size: 2rem;
    color: white;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(101, 36, 16, 0.2);
}

.bento-hero .bento-icon {
    width: 100px;
    height: 100px;
    font-size: 2.8rem;
}

.bento-large .bento-icon {
    width: 90px;
    height: 90px;
    font-size: 2.4rem;
}

.bento-item:hover .bento-icon {
    background: linear-gradient(135deg, #FFE4CC 0%, #FAC697 50%, #D4956A 100%);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(101, 36, 16, 0.35);
}

.bento-item h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.bento-hero h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.bento-large h3 {
    font-size: 1.5rem;
}

.bento-item:hover h3 {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Tooltip System */
.bento-item::after {
    content: attr(data-description);
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.98);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    line-height: 1.5;
    white-space: normal;
    max-width: 280px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 10000;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.bento-item:hover::after {
    opacity: 1;
    bottom: -80px;
}

/* Tooltip arrow */
.bento-tooltip {
    display: none;
}

/* Bento Special Effects */
.bento-gradient {
    background: var(--gradient-primary);
    color: white;
}

.bento-gradient .bento-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.bento-gradient h3,
.bento-gradient p {
    color: white;
}

.bento-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

/* Responsive Bento Grid */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(8, 1fr);
        gap: var(--spacing-md);
    }

    .bento-hero {
        grid-column: span 8;
        grid-row: span 1;
        min-height: 240px;
    }

    .bento-large {
        grid-column: span 4;
        grid-row: span 1;
        min-height: 220px;
    }

    .bento-medium {
        grid-column: span 4;
        grid-row: span 1;
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .bento-hero,
    .bento-large,
    .bento-medium {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 200px;
    }

    .bento-item {
        padding: var(--spacing-md);
    }

    .bento-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .bento-hero .bento-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .bento-large .bento-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .bento-item h3 {
        font-size: 1.1rem;
    }

    .bento-hero h3 {
        font-size: 1.4rem;
    }

    .bento-large h3 {
        font-size: 1.25rem;
    }

    .bento-item::after {
        max-width: 200px;
        font-size: 0.8rem;
    }
}

/* Advanced Grid (Support Features) */
.advanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.advanced-item {
    background: var(--bg-primary);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    text-align: center;
}

.advanced-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.advanced-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.advanced-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.advanced-item p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.security-info-btn {
    margin-top: var(--spacing-sm);
}

/* Security Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xl);
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.modal-body {
    padding: var(--spacing-xl);
}

.modal-body h4 {
    font-size: 1.25rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-lg);
}

.modal-body ul li {
    padding: var(--spacing-xs) 0 var(--spacing-xs) var(--spacing-lg);
    position: relative;
    color: var(--text-primary);
    line-height: 1.6;
}

.modal-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-secondary);
    font-weight: bold;
}

.modal-footer {
    padding: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: var(--spacing-md);
}

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

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

/* Responsive Advanced Grid */
@media (max-width: 768px) {
    .advanced-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: var(--spacing-md);
    }
}

/* Benefits */
.benefits {
    min-height: 100vh; /* Full height section */
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
    scroll-snap-align: start; /* Snap to section */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.benefit-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-2xl) 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: var(--spacing-md);
    color: white;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

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

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

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* Pricing */
.pricing {
    min-height: 100vh; /* Full height section */
    padding: var(--spacing-2xl) 0;
    scroll-snap-align: start; /* Snap to section */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.pricing-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    position: relative;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease-out;
    text-align: center;
    /* 3D Perspective Setup */
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform;
}

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

.pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-2xl);
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.pricing-price {
    margin-bottom: var(--spacing-xl);
}

.pricing-price .currency {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-secondary);
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features i {
    color: var(--accent-secondary);
}

.pricing-features li.feature-missing {
    opacity: 0.5;
}

.pricing-features li.feature-missing i {
    color: #e74c3c;
}

/* Contact */
.contact {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
}

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

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    background: rgba(101, 36, 16, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.contact-item p {
    color: var(--text-secondary);
}

.contact-form {
    background: var(--bg-primary);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

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

/* Footer */
.footer {
    background: var(--text-primary);
    color: var(--text-muted);
    padding: var(--spacing-2xl) 0 var(--spacing-md);
}

[data-theme="dark"] .footer {
    background: var(--bg-tertiary);
}

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

.footer-logo {
    height: 60px;
    margin-bottom: var(--spacing-md);
}

.footer-section h4 {
    color: white;
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.newsletter-form input {
    flex: 1;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form .btn {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    z-index: 999;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.back-to-top.show {
    display: flex;
}

/* Animations & Keyframes */
@keyframes gradientShift {
    0%, 100% { transform: rotate(0deg) scale(1); }
    33% { transform: rotate(120deg) scale(1.1); }
    66% { transform: rotate(240deg) scale(0.9); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(15px) rotate(240deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

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

@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

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

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(40px) saturate(180%); /* Enhanced blur & saturation */
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid var(--glass-border);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.2); /* Inner glow */
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --spacing-xs: 0.25rem;
        --spacing-sm: 0.75rem;
        --spacing-md: 1rem;
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-primary);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: var(--spacing-xl);
        transition: left 0.3s ease;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xl);
    }

    .hero-visual {
        order: -1;
    }

    .floating-stats {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: var(--spacing-md);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: var(--spacing-xs);
        font-size: 0.7rem;
    }

    .hero-feature .feature-icon {
        width: 28px;
        height: 28px;
        font-size: 0.875rem;
    }

    .features-grid,
    .pricing-grid,
    .contact-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .mockup-window {
        transform: none;
    }

    .advanced-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 4rem); /* Smaller on mobile but still large */
        font-weight: 800; /* Slightly lighter on mobile */
    }

    .btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-shape,
    .hero-gradient {
        animation: none;
    }
}

/* High Contrast Support */
@media (prefers-contrast: high) {
    :root {
        --border-color: #000;
        --text-secondary: #000;
    }

    [data-theme="dark"] {
        --border-color: #fff;
        --text-secondary: #fff;
    }
}

/* ===== APPLE VISION PRO STYLE ADDITIONS ===== */

/* Particle Canvas Background */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #FAC697, #652410);
    transform-origin: 0 0;
    transform: scaleX(0);
    transition: transform 0.1s ease-out;
}

/* ScrollSmoother Wrapper */
#smooth-wrapper {
    overflow: visible;
}

#smooth-content {
    overflow: visible;
}

/* Split Text Characters (for hero title animation) */
.hero-title .char {
    display: inline-block;
    transform-origin: bottom;
    will-change: transform, opacity;
}