/* CSS Variables for consistent theming */
:root {
    /* Dark Theme Colors */
    --primary-color: #fbbf24; /* Golden yellow */
    --secondary-color: #3b82f6; /* Blue */
    --accent-color: #10b981; /* Green */
    --accent-purple: #8b5cf6; /* Purple */
    --accent-cyan: #06b6d4; /* Cyan */
    
    /* Text Colors */
    --text-primary: #ffffff; /* White for headings */
    --text-secondary: #d1d5db; /* Light gray for body text */
    --text-light: #9ca3af; /* Lighter gray for secondary text */
    --text-muted: #6b7280; /* Muted text */
    
    /* Background Colors */
    --background-primary: #0f0f0f; /* Very dark background */
    --background-secondary: #1a1a1a; /* Slightly lighter dark */
    --background-card: #1f1f1f; /* Card background */
    --background-accent: #2a2a2a; /* Accent background */
    
    /* Border and Shadow */
    --border-color: #374151;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-golden: 0 4px 15px rgba(251, 191, 36, 0.3);
    
    /* Golden Gradient */
    --golden-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --golden-gradient-hover: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    
    /* Border Radius */
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 20px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* 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', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-secondary);
    background-color: var(--background-primary);
    min-height: 100vh;
}

/* Enhanced Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 1.75rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.015em;
    margin-bottom: 1.25rem;
}

h5 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.005em;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 1.0625rem;
    letter-spacing: 0.01em;
}

/* Enhanced text utilities */
.text-large {
    font-size: 1.25rem;
    line-height: 1.6;
    letter-spacing: 0.015em;
}

.text-medium {
    font-size: 1.0625rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.text-small {
    font-size: 0.9375rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

.text-xs {
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: 0.025em;
}

/* Font weight utilities */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* Text color utilities */
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-light { color: var(--text-light); }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--primary-color); }

/* Enhanced typography spacing utilities */
.leading-tight { line-height: 1.1; }
.leading-snug { line-height: 1.3; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.7; }
.leading-loose { line-height: 2; }

/* Text alignment utilities */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Text decoration utilities */
.underline { text-decoration: underline; }
.no-underline { text-decoration: none; }

/* Enhanced heading styles for better hierarchy */
.heading-xl {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
}

.heading-lg {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.75rem;
}

.heading-md {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.heading-sm {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.015em;
    margin-bottom: 1.25rem;
}

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

a:hover {
    color: #f59e0b;
    text-decoration: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header and Navigation */
.header {
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--golden-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.tagline {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 400;
}

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

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background-color: rgba(251, 191, 36, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
}

/* Enhanced navigation states for multi-page */
.nav-link {
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-link.active::before {
    width: 100%;
}

.cta-button {
    background: var(--golden-gradient);
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-golden);
}

.cta-button:hover {
    background: var(--golden-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Multi-page Navigation Enhancements */
.nav-link[href^="#"] {
    /* Style for same-page anchor links */
    cursor: pointer;
}

.nav-link[href^="http"] {
    /* Style for external links */
    position: relative;
}

.nav-link[href^="http"]::after {
    content: '↗';
    font-size: 0.75rem;
    margin-left: 0.25rem;
    opacity: 0.7;
}

/* Page-specific navigation states */
.nav-link.active {
    font-weight: 600;
}

/* Ensure navigation works on all page types */
.nav-menu.active {
    display: flex;
}

/* Page header styles for multi-page structure */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 0;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content */
main {
    margin-top: 80px; /* Adjust based on header height */
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -0.03em;
    position: relative;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--golden-gradient);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 5rem;
    color: var(--text-secondary);
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.01em;
    opacity: 0.9;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--background-primary) 0%, var(--background-secondary) 100%);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-weight: 900;
    line-height: 1.05;
    position: relative;
    z-index: 1;
    letter-spacing: -0.04em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.01em;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: var(--golden-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-button,
.secondary-button {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.primary-button {
    background: var(--golden-gradient);
    color: #000;
    box-shadow: var(--shadow-golden);
}

.primary-button:hover {
    background: var(--golden-gradient-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.primary-button:active {
    transform: translateY(-1px);
}

.secondary-button {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
}

.secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--golden-gradient);
    transition: var(--transition);
    z-index: -1;
}

.secondary-button:hover {
    color: #000;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.secondary-button:hover::before {
    left: 0;
}

.secondary-button:active {
    transform: translateY(-1px);
}

/* Problem Section */
.problem-section {
    background-color: var(--background-primary);
}

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

.problem-card {
    background-color: var(--background-card);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--golden-gradient);
}

.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(251, 191, 36, 0.3);
}

.problem-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 700;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Features Overview Section (Features Page) */
.features-overview {
    background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background-accent) 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Features Overview Section (Homepage) */
.features-overview-section {
    background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background-accent) 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.features-overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features-overview-section .container {
    position: relative;
    z-index: 1;
}

.features-overview-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-overview-section .section-title {
    color: var(--text-primary);
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-overview-section .section-subtitle {
    color: var(--text-secondary);
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.9;
    letter-spacing: 0.01em;
}

.features-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.features-overview .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-overview .section-title {
    color: var(--text-primary);
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-overview .section-subtitle {
    color: var(--text-secondary);
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.9;
    letter-spacing: 0.01em;
}

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

/* Enhanced Feature Cards */
.feature-card.enhanced-card {
    background: linear-gradient(145deg, var(--background-card) 0%, rgba(31, 31, 31, 0.9) 100%);
    padding: 3rem;
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(251, 191, 36, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 16px 64px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card.enhanced-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--golden-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.feature-card.enhanced-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 40px 120px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.3);
}

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

.feature-card.enhanced-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card.enhanced-card:hover::after {
    opacity: 1;
}

/* Feature Card Header */
.feature-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(251, 191, 36, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-card.enhanced-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.25) 0%, rgba(251, 191, 36, 0.1) 100%);
    border-color: rgba(251, 191, 36, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.feature-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.feature-card-header h3 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: clamp(1.5rem, 2.5vw, 1.75rem);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
    flex: 1;
}

/* Feature Description */
.feature-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.125rem;
    letter-spacing: 0.01em;
    opacity: 0.9;
}

/* Feature Highlights */
.feature-highlights {
    margin-bottom: 2.5rem;
    flex: 1;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(8px);
}

.highlight-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--golden-gradient);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.highlight-item span:last-child {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Feature Card Footer */
.feature-card-footer {
    border-top: 1px solid rgba(251, 191, 36, 0.1);
    padding-top: 2rem;
    margin-top: auto;
}

.feature-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    padding: 0.75rem 0;
}

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

.feature-link:hover {
    color: #f59e0b;
    transform: translateX(8px);
}

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

/* Responsive Design for Features Overview */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .features-overview {
        padding: 6rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .feature-card.enhanced-card {
        padding: 2.5rem;
    }
    
    .feature-card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon {
        font-size: 1.75rem;
    }
    
    .feature-card-header h3 {
        font-size: 1.5rem;
    }
    
    .feature-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .features-overview {
        padding: 4rem 0;
    }
    
    .feature-card.enhanced-card {
        padding: 2rem;
    }
    
    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
}

/* Target Market Section */
.target-market-section {
    background-color: var(--background-primary);
    padding: 6rem 0;
}

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

.persona-card {
    background-color: var(--background-card);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.persona-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--golden-gradient);
}

.persona-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(251, 191, 36, 0.3);
}

.persona-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.persona-title {
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    letter-spacing: 0.01em;
}

.persona-pain {
    background-color: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.persona-goal {
    background-color: rgba(16, 185, 129, 0.1);
    border-left: 4px solid #10b981;
    padding: 1.25rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.target-market-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Success Stories Section */
.success-stories-section {
    background-color: var(--background-primary);
    padding: 6rem 0;
}

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

.success-story-card {
    background-color: var(--background-card);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.success-story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--golden-gradient);
}

.success-story-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(251, 191, 36, 0.3);
}

.story-stats {
    margin-bottom: 1.5rem;
}

.story-stats .stat-number {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    background: var(--golden-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.story-stats .stat-label {
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    opacity: 0.8;
}

.success-story-card p {
    font-style: italic;
    margin-bottom: 1.75rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.0625rem;
    letter-spacing: 0.01em;
    opacity: 0.9;
}

.story-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.story-author strong {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.01em;
}

.story-author span {
    color: var(--text-light);
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    opacity: 0.8;
}

.success-stories-cta {
    text-align: center;
    margin-top: 3rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background-accent) 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-content h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    letter-spacing: 0.01em;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, var(--background-primary) 0%, var(--background-secondary) 100%);
    color: var(--text-secondary);
    padding: 6rem 0 2rem;
    border-top: 1px solid rgba(251, 191, 36, 0.1);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--golden-gradient);
    transition: height 0.3s ease;
}

.footer-section:hover::before {
    height: 100%;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
    font-size: clamp(1.5rem, 2.5vw, 1.75rem);
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-color) 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.0625rem;
    letter-spacing: 0.01em;
    opacity: 0.9;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
    position: relative;
}

.footer-section ul li::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    transition: transform 0.3s ease;
}

.footer-section ul li:hover::before {
    transform: translateY(-50%) scale(1);
}

.footer-section ul li a {
    color: var(--text-light);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    display: inline-block;
    position: relative;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--golden-gradient);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(8px);
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--text-light);
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(31, 31, 31, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    border: 1px solid rgba(251, 191, 36, 0.1);
    backdrop-filter: blur(10px);
    min-width: 44px;
    min-height: 44px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.social-links a:hover {
    color: var(--primary-color);
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.15) 0%, rgba(251, 191, 36, 0.05) 100%);
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(251, 191, 36, 0.2),
        0 4px 10px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(251, 191, 36, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-light);
    margin-top: 3rem;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--golden-gradient);
    border-radius: 1px;
}

.footer-bottom p {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    opacity: 0.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-color);
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-link {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .page-header {
        padding: 6rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 2.5rem);
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.1rem);
        line-height: 1.6;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        max-width: 300px;
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 3.5vw, 1.75rem);
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: clamp(0.95rem, 2vw, 1rem);
        margin-bottom: 3rem;
        line-height: 1.6;
    }

    .problem-grid,
    .personas-grid,
    .success-stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .problem-card,
    .enhanced-card,
    .persona-card,
    .success-story-card {
        padding: 1.5rem;
    }

    .feature-card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
    }

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

    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-section {
        padding: 0 1rem;
    }

    .footer-section::before {
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        top: -1rem;
    }

    .footer-section:hover::before {
        width: 100px;
    }

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

    .footer-bottom::before {
        width: 80px;
    }
}

/* Large screen optimizations */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }

    .hero-title {
        font-size: clamp(3.5rem, 6vw, 4.5rem);
        line-height: 1.05;
    }

    .hero-subtitle {
        font-size: clamp(1.25rem, 3vw, 1.5rem);
        line-height: 1.7;
    }

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

    .section-subtitle {
        font-size: 1.25rem;
    }

    .problem-grid,
    .personas-grid,
    .success-stories-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

/* Medium screen optimizations */
@media (min-width: 768px) and (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }

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

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

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

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .section-subtitle {
        font-size: 0.95rem;
    }

    .problem-grid,
    .personas-grid,
    .success-stories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .primary-button,
    .secondary-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .nav-link {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .problem-card,
    .feature-overview-card,
    .persona-card,
    .success-story-card {
        padding: 1.25rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Enhanced Card Animations */
@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

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

.enhanced-card {
    animation: cardFloat 6s ease-in-out infinite;
}

.enhanced-card:nth-child(2) {
    animation-delay: 0.5s;
}

.enhanced-card:nth-child(3) {
    animation-delay: 1s;
}

.enhanced-card:nth-child(4) {
    animation-delay: 1.5s;
}

.enhanced-card:nth-child(5) {
    animation-delay: 2s;
}

.enhanced-card:nth-child(6) {
    animation-delay: 2.5s;
}

.feature-icon-wrapper {
    animation: iconPulse 3s ease-in-out infinite;
}

/* Staggered animation for highlight items */
.highlight-item {
    animation: fadeInLeft 0.6s ease-out forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.highlight-item:nth-child(1) { animation-delay: 0.1s; }
.highlight-item:nth-child(2) { animation-delay: 0.2s; }
.highlight-item:nth-child(3) { animation-delay: 0.3s; }
.highlight-item:nth-child(4) { animation-delay: 0.4s; }

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

/* Enhanced animations for feature details */
.feature-detail-text {
    animation: slideInRight 0.8s ease-out;
}

.feature-detail-visual {
    animation: slideInLeft 0.8s ease-out;
}

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

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

/* Benefit items staggered animation */
.benefit-item {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.benefit-item:nth-child(1) { animation-delay: 0.2s; }
.benefit-item:nth-child(2) { animation-delay: 0.4s; }
.benefit-item:nth-child(3) { animation-delay: 0.6s; }

/* Template examples hover effect */
.template-example {
    position: relative;
    overflow: hidden;
}

.template-example::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
    transition: left 0.5s ease;
}

.template-example:hover::before {
    left: 100%;
}

/* Channel items pulse animation */
.channel-item {
    animation: channelPulse 4s ease-in-out infinite;
}

.channel-item:nth-child(1) { animation-delay: 0s; }
.channel-item:nth-child(2) { animation-delay: 0.5s; }
.channel-item:nth-child(3) { animation-delay: 1s; }
.channel-item:nth-child(4) { animation-delay: 1.5s; }
.channel-item:nth-child(5) { animation-delay: 2s; }

@keyframes channelPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(251, 191, 36, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 16px rgba(251, 191, 36, 0.2);
    }
}

/* Chart bars animation */
.chart-bar {
    animation: chartGrow 1.5s ease-out forwards;
    transform: scaleY(0);
    transform-origin: bottom;
}

.chart-bar:nth-child(1) { animation-delay: 0.2s; }
.chart-bar:nth-child(2) { animation-delay: 0.4s; }
.chart-bar:nth-child(3) { animation-delay: 0.6s; }
.chart-bar:nth-child(4) { animation-delay: 0.8s; }

@keyframes chartGrow {
    to {
        transform: scaleY(1);
    }
}

/* Integration cards staggered animation */
.integration-card {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(40px);
}

.integration-card:nth-child(1) { animation-delay: 0.1s; }
.integration-card:nth-child(2) { animation-delay: 0.2s; }
.integration-card:nth-child(3) { animation-delay: 0.3s; }
.integration-card:nth-child(4) { animation-delay: 0.4s; }
.integration-card:nth-child(5) { animation-delay: 0.5s; }
.integration-card:nth-child(6) { animation-delay: 0.6s; }

/* Flow step animations */
.flow-step {
    animation: flowStepIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.flow-step:nth-child(1) { animation-delay: 0.2s; }
.flow-step:nth-child(3) { animation-delay: 0.4s; }
.flow-step:nth-child(5) { animation-delay: 0.6s; }
.flow-step:nth-child(7) { animation-delay: 0.8s; }

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

/* Rule items slide animation */
.rule-item {
    animation: slideInRight 0.6s ease-out forwards;
    opacity: 0;
    transform: translateX(30px);
}

.rule-item:nth-child(1) { animation-delay: 0.1s; }
.rule-item:nth-child(2) { animation-delay: 0.2s; }
.rule-item:nth-child(3) { animation-delay: 0.3s; }

/* Enhanced hover effects for all interactive elements */
.feature-detail-text h2:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--text-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.benefit-icon {
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3) 0%, rgba(251, 191, 36, 0.2) 100%);
}

/* Smooth scroll reveal animations */
.feature-detail-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.feature-detail-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Loading states for interactive elements */
.feature-link.loading {
    position: relative;
    pointer-events: none;
}

.feature-link.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid transparent;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Enhanced hover effects */
.card-hover {
    transition: var(--transition);
}

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

/* Golden glow effect */
.golden-glow {
    position: relative;
}

.golden-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    border-radius: inherit;
}

.golden-glow:hover::after {
    opacity: 1;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Dark theme specific optimizations */
@media (prefers-color-scheme: dark) {
    :root {
        /* Ensure dark theme is properly applied */
        --background-primary: #0f0f0f;
        --background-secondary: #1a1a1a;
        --background-card: #1f1f1f;
    }
}

/* Performance optimizations */
* {
    /* Optimize for animations */
    will-change: auto;
}

.card-hover,
.primary-button,
.secondary-button,
.nav-link {
    will-change: transform;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Feature Detail Sections */
.feature-detail-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.feature-detail-section.alt-bg {
    background: linear-gradient(135deg, var(--background-secondary) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.feature-detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.feature-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.feature-detail-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.feature-detail-content.reverse .feature-detail-visual {
    order: -1;
}

.feature-detail-text h2 {
    color: var(--text-primary);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-detail-text h3 {
    color: var(--primary-color);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.feature-detail-text p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Feature Benefits */
.feature-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(31, 31, 31, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-item:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.benefit-item h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    letter-spacing: 0.01em;
    margin: 0;
    opacity: 0.8;
}

/* Feature Demo Visuals */
.feature-detail-visual {
    position: relative;
}

.feature-demo {
    background: linear-gradient(145deg, var(--background-card) 0%, rgba(31, 31, 31, 0.9) 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(251, 191, 36, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 16px 64px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--golden-gradient);
}

.feature-demo h4 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.01em;
}

/* Template Examples */
.template-examples {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.template-example {
    background: rgba(251, 191, 36, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.template-example:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.4);
    transform: translateX(4px);
}

.template-example h5 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.template-example p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    opacity: 0.9;
}

/* Campaign Channels */
.campaign-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.channel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(251, 191, 36, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.channel-item:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.4);
    transform: translateY(-2px);
}

.channel-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.channel-item span:last-child {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.01em;
}

/* Campaign Stats */
.campaign-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.stat-item .stat-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.stat-item .stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    opacity: 0.8;
}

/* Analytics Widgets */
.analytics-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.widget {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.widget:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.widget h5 {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

/* Performance Chart */
.performance-chart {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 100px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--accent-color) 0%, rgba(16, 185, 129, 0.6) 100%);
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.chart-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chart-bar:hover::before {
    opacity: 1;
}

.chart-bar:hover {
    transform: scaleY(1.05);
}

/* Demographics */
.demographics {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.demo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.demo-item:last-child {
    border-bottom: none;
}

.demo-item span:first-child {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.demo-item span:last-child {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 700;
}

/* Automation Flow */
.automation-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--border-radius);
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.step-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 50%;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.flow-step:hover .step-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0.2) 100%);
    border-color: rgba(139, 92, 246, 0.5);
    transform: scale(1.1);
}

.flow-step span:last-child {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.01em;
}

.flow-arrow {
    color: var(--accent-purple);
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 1rem;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Automation Rules */
.automation-rules {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
}

.automation-rules h5 {
    color: var(--accent-purple);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.rule-item {
    padding: 0.75rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--border-radius);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.rule-item:last-child {
    margin-bottom: 0;
}

.rule-item:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateX(4px);
}

.rule-item span {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Integrations Section */
.integrations-section {
    background: linear-gradient(135deg, var(--background-primary) 0%, var(--background-secondary) 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.integrations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.integration-card {
    background: linear-gradient(145deg, var(--background-card) 0%, rgba(31, 31, 31, 0.8) 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius-xl);
    text-align: center;
    border: 1px solid rgba(251, 191, 36, 0.1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 8px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--golden-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.integration-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(251, 191, 36, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(251, 191, 36, 0.3);
}

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

.integration-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(251, 191, 36, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.integration-card:hover::after {
    opacity: 1;
}

.integration-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.integration-card:hover .integration-icon {
    transform: scale(1.1) rotate(5deg);
}

.integration-card h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.integration-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Responsive Design for Feature Details */
@media (max-width: 768px) {
    .feature-detail-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .feature-detail-content.reverse .feature-detail-visual {
        order: 0;
    }

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

    .benefit-item {
        padding: 1.25rem;
    }

    .feature-demo {
        padding: 2rem;
    }

    .campaign-channels {
        grid-template-columns: repeat(2, 1fr);
    }

    .campaign-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .analytics-widgets {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .automation-flow {
        flex-direction: column;
        gap: 1rem;
    }

    .flow-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .integrations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .integration-card {
        padding: 2rem;
    }
}

/* Enhanced Pricing Page Styles */
.pricing-plans {
    background: linear-gradient(135deg, var(--background-primary) 0%, var(--background-secondary) 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.pricing-plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(31, 31, 31, 0.8);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.pricing-toggle span {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1rem;
}

.discount {
    background: var(--golden-gradient);
    color: #000;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(251, 191, 36, 0.2);
    transition: 0.4s;
    border-radius: 34px;
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 2px;
    bottom: 2px;
    background: var(--golden-gradient);
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
}

input:checked + .slider {
    background-color: rgba(251, 191, 36, 0.3);
    border-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: linear-gradient(145deg, var(--background-card) 0%, rgba(31, 31, 31, 0.9) 100%);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(251, 191, 36, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 16px 64px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--golden-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 40px 120px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(251, 191, 36, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(251, 191, 36, 0.3);
}

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

.pricing-card.featured {
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 20px 80px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(251, 191, 36, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

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

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--golden-gradient);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
    z-index: 2;
}

.plan-header {
    margin-bottom: 2.5rem;
}

.plan-header h3 {
    color: var(--text-primary);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.currency {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.amount {
    color: var(--text-primary);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
}

.period {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.plan-header p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.plan-features {
    margin-bottom: 2.5rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
    transition: all 0.3s ease;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

.plan-cta {
    margin-top: auto;
}

.plan-cta .primary-button {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.trial-text {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.8;
}

/* Feature Comparison Table */
.feature-comparison {
    background-color: var(--background-primary);
    padding: 8rem 0;
}

.comparison-table {
    margin-top: 3rem;
    background: linear-gradient(145deg, var(--background-card) 0%, rgba(31, 31, 31, 0.9) 100%);
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(251, 191, 36, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 16px 64px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
    color: var(--text-primary);
    font-weight: 700;
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 2px solid rgba(251, 191, 36, 0.2);
    font-size: 1.125rem;
    letter-spacing: -0.01em;
}

.comparison-table th:first-child {
    text-align: left;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.comparison-table td {
    padding: 1.25rem 1rem;
    text-align: center;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
    transition: all 0.3s ease;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(59, 130, 246, 0.05);
}

.comparison-table tr:hover td {
    background: rgba(251, 191, 36, 0.05);
    color: var(--text-primary);
}

/* Pricing Calculator */
.pricing-calculator {
    background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background-accent) 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.pricing-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.calculator-inputs {
    background: linear-gradient(145deg, var(--background-card) 0%, rgba(31, 31, 31, 0.9) 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(251, 191, 36, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 16px 64px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.input-group {
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(31, 31, 31, 0.8);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
    background: rgba(31, 31, 31, 0.9);
}

.calculator-results {
    background: linear-gradient(145deg, var(--background-card) 0%, rgba(31, 31, 31, 0.9) 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(251, 191, 36, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 16px 64px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.calculator-results h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.01em;
}

.savings-breakdown {
    margin-bottom: 2rem;
}

.savings-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(251, 191, 36, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.savings-item:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.4);
    transform: translateY(-2px);
}

.savings-label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
}

.savings-value {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.savings-description {
    color: var(--text-light);
    font-size: 0.875rem;
    opacity: 0.8;
}

.total-savings {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.total-label {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.125rem;
}

.total-value {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.roi-calculation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--border-radius);
}

.roi-label {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.125rem;
}

.roi-value {
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

/* FAQ Section */
.faq-section {
    background-color: var(--background-primary);
    padding: 8rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: linear-gradient(145deg, var(--background-card) 0%, rgba(31, 31, 31, 0.9) 100%);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 8px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.4),
        0 16px 60px rgba(0, 0, 0, 0.3);
}

.faq-question {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.faq-item:hover .faq-question {
    color: var(--primary-color);
}

.faq-answer {
    display: none;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(251, 191, 36, 0.1);
}

.faq-answer p {
    margin: 0;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background-accent) 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: linear-gradient(145deg, var(--background-card) 0%, rgba(31, 31, 31, 0.9) 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(251, 191, 36, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 16px 64px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--golden-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.3);
}

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

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
}

.author-info h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.875rem;
    opacity: 0.8;
}

.testimonial-metrics {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: var(--border-radius);
    padding: 0.5rem 1rem;
}

.testimonial-metrics span {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Enhanced About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--background-primary) 0%, var(--background-secondary) 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-content h1 {
    color: var(--text-primary);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.about-content p {
    color: var(--text-secondary);
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    opacity: 0.9;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.about-stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(31, 31, 31, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.about-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.about-stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    background: var(--golden-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.about-stat-label {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    opacity: 0.8;
}

/* Mission & Vision Section */
.mission-vision {
    background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background-accent) 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.mission-card,
.vision-card {
    background: linear-gradient(145deg, var(--background-card) 0%, rgba(31, 31, 31, 0.9) 100%);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(251, 191, 36, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 16px 64px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--golden-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 40px 120px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.3);
}

.mission-card:hover::before,
.vision-card:hover::before {
    transform: scaleX(1);
}

.mission-icon,
.vision-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon,
.vision-card:hover .vision-icon {
    transform: scale(1.1) rotate(5deg);
}

.mission-card h2,
.vision-card h2 {
    color: var(--text-primary);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.mission-card p,
.vision-card p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.mission-card p:last-child,
.vision-card p:last-child {
    margin-bottom: 0;
}

/* Company Story Section */
.company-story {
    background-color: var(--background-primary);
    padding: 8rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    color: var(--text-primary);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-text h3 {
    color: var(--primary-color);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 2rem;
    letter-spacing: -0.02em;
}

.story-text p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.story-visual {
    position: relative;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--golden-gradient);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: var(--golden-gradient);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.2);
    transition: all 0.3s ease;
}

.timeline-item:hover::before {
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(251, 191, 36, 0.3);
}

.timeline-date {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.timeline-content {
    background: linear-gradient(145deg, rgba(31, 31, 31, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.timeline-item:hover .timeline-content {
    transform: translateX(8px);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.timeline-content h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background-accent) 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.value-card {
    background: linear-gradient(145deg, var(--background-card) 0%, rgba(31, 31, 31, 0.9) 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(251, 191, 36, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 16px 64px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--golden-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.3);
}

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

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Team Section */
.team-section {
    background-color: var(--background-primary);
    padding: 8rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.team-member {
    background: linear-gradient(145deg, var(--background-card) 0%, rgba(31, 31, 31, 0.9) 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(251, 191, 36, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 16px 64px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--golden-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.team-member:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.3);
}

.team-member:hover::before {
    transform: scaleX(1);
}

.member-photo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.photo-placeholder {
    width: 80px;
    height: 80px;
    background: var(--golden-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.team-member:hover .photo-placeholder {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.member-info {
    text-align: center;
}

.member-info h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.member-role {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
    letter-spacing: 0.01em;
}

.member-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.expertise-tag {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.team-member:hover .expertise-tag {
    background: rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.4);
    transform: translateY(-2px);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background-accent) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(31, 31, 31, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    background: var(--golden-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    opacity: 0.8;
}

/* Culture Section */
.culture-section {
    background-color: var(--background-primary);
    padding: 8rem 0;
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.culture-text h2 {
    color: var(--text-primary);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.culture-text h3 {
    color: var(--primary-color);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 2rem;
    letter-spacing: -0.02em;
}

.culture-text p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.culture-text ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.culture-text li {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.9;
}

.culture-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.125rem;
}

.culture-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

.culture-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(31, 31, 31, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.highlight-item:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3) 0%, rgba(251, 191, 36, 0.2) 100%);
}

.highlight-item h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.highlight-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.8;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .culture-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }
}

/* Enhanced Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--background-primary) 0%, var(--background-secondary) 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact-content h1 {
    color: var(--text-primary);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.contact-content p {
    color: var(--text-secondary);
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Contact Methods Section */
.contact-methods {
    background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background-accent) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact-methods::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: linear-gradient(145deg, var(--background-card) 0%, rgba(31, 31, 31, 0.9) 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(251, 191, 36, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 16px 64px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--golden-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.3);
}

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

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.contact-details a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.contact-details a:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.chat-button {
    background: var(--golden-gradient);
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.chat-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    background: var(--golden-gradient-hover);
}

.response-time {
    color: var(--text-light);
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Contact Form Section */
.contact-form-section {
    background-color: var(--background-primary);
    padding: 8rem 0;
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-info h2 {
    color: var(--text-primary);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-info p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(31, 31, 31, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-item:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3) 0%, rgba(251, 191, 36, 0.2) 100%);
}

.benefit-item h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.8;
}

.contact-form {
    background: linear-gradient(145deg, var(--background-card) 0%, rgba(31, 31, 31, 0.9) 100%);
    padding: 3rem;
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(251, 191, 36, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 16px 64px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
    background: rgba(26, 26, 26, 0.9);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.25rem;
}

.submit-button {
    width: 100%;
    background: var(--golden-gradient);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
    letter-spacing: 0.01em;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
    background: var(--golden-gradient-hover);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Office Locations Section */
.office-locations {
    background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background-accent) 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.office-locations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.location-card {
    background: linear-gradient(145deg, var(--background-card) 0%, rgba(31, 31, 31, 0.9) 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(251, 191, 36, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 16px 64px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--golden-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.location-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.3);
}

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

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.location-header h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.location-type {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.address {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.address-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.address p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    font-size: 1rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.contact-item span:last-child {
    color: var(--text-secondary);
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Support Resources Section */
.support-resources {
    background-color: var(--background-primary);
    padding: 8rem 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.resource-card {
    background: linear-gradient(145deg, var(--background-card) 0%, rgba(31, 31, 31, 0.9) 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(251, 191, 36, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 16px 64px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--golden-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.resource-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.3);
}

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

.resource-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.resource-card:hover .resource-icon {
    transform: scale(1.1) rotate(5deg);
}

.resource-card h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.resource-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.resource-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.resource-link:hover {
    color: var(--text-primary);
    transform: translateX(8px);
}

/* Contact FAQ Section */
.contact-faq {
    background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background-accent) 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.contact-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: linear-gradient(145deg, var(--background-card) 0%, rgba(31, 31, 31, 0.9) 100%);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.faq-question {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-answer {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    display: none;
}

.faq-answer p {
    margin: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .form-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .resources-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .location-card {
        padding: 2rem;
    }

    .resource-card {
        padding: 2rem;
    }
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.contact-method {
    background: linear-gradient(145deg, var(--background-card) 0%, rgba(31, 31, 31, 0.9) 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(251, 191, 36, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 16px 64px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
}

.contact-method:hover {
    transform: translateY(-6px);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 
        0 15px 45px rgba(0, 0, 0, 0.4),
        0 25px 75px rgba(0, 0, 0, 0.3);
}

.contact-method-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.contact-method h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.contact-method p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Enhanced Resources Page Styles */
.resources-hero {
    background: linear-gradient(135deg, var(--background-primary) 0%, var(--background-secondary) 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.resources-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.resources-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.resources-content h1 {
    color: var(--text-primary);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.resources-content p {
    color: var(--text-secondary);
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    opacity: 0.9;
}

.resource-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.resource-category {
    background: rgba(31, 31, 31, 0.8);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.resource-category:hover,
.resource-category.active {
    background: rgba(251, 191, 36, 0.1);
    border-color: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.resource-card {
    background: linear-gradient(145deg, var(--background-card) 0%, rgba(31, 31, 31, 0.9) 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(251, 191, 36, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 16px 64px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--golden-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.resource-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.3);
}

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

.resource-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.resource-card h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.resource-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.resource-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Responsive Design for Enhanced Pages */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .pricing-card.featured {
        transform: none;
    }

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

    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .resources-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .resource-categories {
        flex-direction: column;
        align-items: center;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-table table {
        min-width: 600px;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cta-button,
    .pricing-button,
    .submit-button {
        display: none;
    }

    main {
        margin-top: 0;
    }

    section {
        padding: 2rem 0;
        page-break-inside: avoid;
    }
}

/* Homepage Features Overview Grid */
.features-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.feature-overview-card {
    background: linear-gradient(145deg, var(--background-card) 0%, rgba(31, 31, 31, 0.9) 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(251, 191, 36, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 16px 64px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
}

.feature-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--golden-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.feature-overview-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.3);
}

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

.feature-overview-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-overview-card:hover::after {
    opacity: 1;
}

/* Homepage Feature Icon */
.feature-overview-card .feature-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(251, 191, 36, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: all 0.3s ease;
    margin: 0 auto 1.5rem;
}

.feature-overview-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.25) 0%, rgba(251, 191, 36, 0.1) 100%);
    border-color: rgba(251, 191, 36, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.feature-overview-card .feature-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Homepage Feature Card Content */
.feature-overview-card h3 {
    color: var(--primary-color);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.feature-overview-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
    opacity: 0.9;
    flex: 1;
}

/* Homepage Feature Highlights */
.feature-overview-card .feature-highlights {
    margin-bottom: 2rem;
    flex: 1;
}

.feature-overview-card .highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    justify-content: center;
}

.feature-overview-card .highlight-item:hover {
    transform: translateX(4px);
}

.feature-overview-card .highlight-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--golden-gradient);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.feature-overview-card .highlight-item:hover .highlight-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.feature-overview-card .highlight-item span:last-child {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Homepage Feature Link */
.feature-overview-card .learn-more-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    margin-top: auto;
}

.feature-overview-card .learn-more-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--golden-gradient);
    transition: width 0.3s ease;
}

.feature-overview-card .learn-more-link:hover {
    color: #f59e0b;
    transform: translateX(4px);
}

.feature-overview-card .learn-more-link:hover::after {
    width: 100%;
}

/* Homepage Features CTA */
.features-cta {
    text-align: center;
    margin-top: 3rem;
}

.features-cta .primary-button {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 
        0 8px 25px rgba(251, 191, 36, 0.3),
        0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.features-cta .primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(251, 191, 36, 0.4),
        0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Homepage Features Overview */
@media (max-width: 1200px) {
    .features-overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .features-overview-section {
        padding: 6rem 0;
    }
    
    .features-overview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 3rem 0;
    }
    
    .feature-overview-card {
        padding: 2rem;
    }
    
    .feature-overview-card .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .feature-overview-card .feature-icon {
        font-size: 1.75rem;
    }
    
    .feature-overview-card h3 {
        font-size: 1.25rem;
    }
    
    .feature-overview-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .features-overview-section {
        padding: 4rem 0;
    }
    
    .feature-overview-card {
        padding: 1.5rem;
    }
    
    .feature-overview-card .feature-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .feature-overview-card .feature-icon {
        font-size: 1.5rem;
    }
    
    .features-cta .primary-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
