/* Modern CSS Design - Inspired by Kit Samples */

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root Variables */
:root {
    /* Colors - Dark Theme */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: #1c1c1c;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a1a1a1;
    --text-muted: #6b7280;
    
    /* Accent Colors */
    --accent-primary: #84cc16;
    --accent-secondary: #22c55e;
    --accent-tertiary: #06b6d4;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #84cc16 0%, #22c55e 100%);
    --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
}

/* Base Styles */
html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    padding-top: 80px;
}

body.menu-open {
    overflow: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

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

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

.brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

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

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

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

.nav-toggle {
    display: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

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

.btn-gradient {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(132, 204, 22, 0.2);
}

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

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(132, 204, 22, 0.4);
    background: linear-gradient(135deg, 
        var(--accent-secondary) 0%, 
        var(--accent-primary) 50%, 
        var(--accent-tertiary) 100%);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-text {
    background: transparent;
    color: var(--text-secondary);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.btn-text:hover {
    color: var(--text-primary);
}

.full-width {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 60% 30% at 20% 80%, rgba(132, 204, 22, 0.12), transparent),
        radial-gradient(ellipse 40% 20% at 80% 20%, rgba(34, 197, 94, 0.08), transparent),
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(132, 204, 22, 0.15), transparent);
    animation: gradientShift 8s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(132, 204, 22, 0.05) 0%, transparent 50%),
        linear-gradient(225deg, rgba(34, 197, 94, 0.03) 0%, transparent 50%);
    animation: gradientFloat 12s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 2;
}

.hero-container::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.1), rgba(34, 197, 94, 0.05));
    border-radius: 50%;
    filter: blur(40px);
    animation: particles 8s ease-in-out infinite;
    z-index: -1;
}

.hero-container::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -5%;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(6, 182, 212, 0.08), rgba(132, 204, 22, 0.06));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(30px);
    animation: particles 10s ease-in-out infinite reverse;
    z-index: -1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(132, 204, 22, 0.3);
    border-radius: var(--radius-2xl);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: var(--space-lg);
    box-shadow: 0 8px 32px rgba(132, 204, 22, 0.1);
    animation: float 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(132, 204, 22, 0.2), transparent);
    animation: shimmer 3s infinite;
}

.hero-badge span {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.gradient-text {
    background: linear-gradient(135deg, 
        var(--accent-primary) 0%, 
        var(--accent-secondary) 50%, 
        var(--accent-tertiary) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientAnimation 4s ease-in-out infinite;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(132, 204, 22, 0.2) 0%, 
        rgba(34, 197, 94, 0.15) 50%, 
        rgba(6, 182, 212, 0.1) 100%);
    filter: blur(20px);
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    animation: fadeInUp 1s ease-out 0.6s both;
    line-height: 1.7;
}

.email-signup {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 1s ease-out 0.9s both;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.email-input {
    flex: 1;
    background: transparent;
    border: none;
    border-radius: var(--radius-lg);
    padding: 0.875rem 1rem;
    color: var(--text-primary);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
}

.email-input::placeholder {
    color: var(--text-muted);
}

.hero-stats {
    display: flex;
    gap: var(--space-xl);
    animation: fadeInUp 1s ease-out 1.2s both;
}

.stat-item {
    text-align: left;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(132, 204, 22, 0.3);
    box-shadow: 0 20px 40px rgba(132, 204, 22, 0.1);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mobile Showcase */
.mobile-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    animation: fadeInUp 1s ease-out 1.5s both;
}

.mobile-showcase::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(60px);
    animation: glowPulse 6s ease-in-out infinite;
    z-index: -1;
}

.phone-mockup {
    width: 240px;
    height: 480px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 0.5rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    animation: phoneFloat 8s ease-in-out infinite;
    transition: all 0.3s ease;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent,
        rgba(132, 204, 22, 0.1),
        transparent,
        rgba(34, 197, 94, 0.1),
        transparent
    );
    animation: phoneGlow 4s linear infinite;
    border-radius: inherit;
    z-index: -1;
}

.phone-mockup.primary {
    animation-delay: 0s;
}

.phone-mockup.secondary {
    width: 200px;
    height: 400px;
    transform: rotate(10deg) translateY(20px);
    opacity: 0.9;
    animation-delay: -2s;
}

.phone-mockup:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(132, 204, 22, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.phone-mockup.secondary:hover {
    transform: rotate(10deg) translateY(10px) scale(1.02);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
}

.app-interface {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #1a1a1a;
}

.interface-header {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.signal-icons {
    display: flex;
    gap: 0.25rem;
}

.app-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-nav h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.interface-content {
    padding: 1rem;
}

.metric-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.metric-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.metric-card.featured {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem 1rem;
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
}

.growth {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.625rem;
    font-weight: 600;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metric-value.small {
    font-size: 1rem;
    margin-bottom: 0;
}

.metric-chart {
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.metric-chart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    height: 60%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.feature-preview {
    text-align: center;
    padding: 2rem 1rem;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.feature-preview h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-preview p {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
}

/* Sections */
section {
    padding: var(--space-3xl) 0;
}

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

.section-badge {
    display: inline-block;
    background: rgba(132, 204, 22, 0.1);
    border: 1px solid rgba(132, 204, 22, 0.2);
    border-radius: var(--radius-2xl);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent-primary);
    margin-bottom: var(--space-sm);
}

.section-header h2 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Solutions Section */
.solutions {
    background: var(--bg-secondary);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.solution-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all 0.3s ease;
    position: relative;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(132, 204, 22, 0.3);
}

.solution-card.featured {
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
    border-color: rgba(132, 204, 22, 0.3);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    font-size: 1.5rem;
    color: white;
}

.solution-card h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.solution-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.card-features {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(132, 204, 22, 0.1);
    color: var(--accent-primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 500;
}

.solutions-cta {
    text-align: center;
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* Feature Showcase */
.feature-showcase {
    background: var(--bg-primary);
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.showcase-info h2 {
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.showcase-info p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.feature-item {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature-text h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.feature-text p {
    color: var(--text-secondary);
    margin: 0;
}

.showcase-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.visual-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    align-items: center;
}

.platform-icons {
    display: flex;
    gap: var(--space-lg);
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-lg);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-item i {
    font-size: 2rem;
    color: var(--text-primary);
}

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

.deployment-flow {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

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

.flow-step span {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--text-muted);
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-text h2 {
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.company-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.value-item {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.value-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.value-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.value-content p {
    color: var(--text-secondary);
    margin: 0;
}

.metrics-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.metric-item {
    text-align: center;
    padding: var(--space-xl);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-4px);
    border-color: rgba(132, 204, 22, 0.3);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 0.25rem;
}

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

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact-info h2 {
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.contact-info > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-method {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: rgba(132, 204, 22, 0.3);
}

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

.method-details h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.method-details p {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.method-details span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Forms */
.modern-form {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 0.875rem 1rem;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(132, 204, 22, 0.1);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.office-hours {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.office-hours h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
}

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

.hours-item span:first-child {
    color: var(--text-secondary);
}

.hours-item span:last-child {
    color: var(--text-primary);
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-3xl) 0 var(--space-lg);
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-bottom: var(--space-sm);
    display: block;
}

.footer-brand p {
    color: var(--text-secondary);
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.link-group h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.link-group a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.link-group a:hover {
    color: var(--text-primary);
}

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

.footer-bottom p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.875rem;
}

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

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

@keyframes gradientShift {
    0%, 100% {
        transform: translateX(0%) translateY(0%);
    }
    25% {
        transform: translateX(10%) translateY(-5%);
    }
    50% {
        transform: translateX(-5%) translateY(10%);
    }
    75% {
        transform: translateX(5%) translateY(-10%);
    }
}

@keyframes gradientFloat {
    0%, 100% {
        transform: translateX(0%) translateY(0%) scale(1);
    }
    33% {
        transform: translateX(-10%) translateY(5%) scale(1.05);
    }
    66% {
        transform: translateX(10%) translateY(-5%) scale(0.95);
    }
}

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

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

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

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(1deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

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

@keyframes particles {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-40px) translateX(-5px);
        opacity: 1;
    }
    75% {
        transform: translateY(-20px) translateX(-10px);
        opacity: 0.7;
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .showcase-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .mobile-showcase {
        justify-content: center;
        margin-top: var(--space-xl);
    }
    
    .phone-mockup.secondary {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }
    
    body {
        padding-top: 70px;
    }
    
    .hero {
        margin-top: 0;
        padding-top: var(--space-3xl);
        min-height: calc(100vh - 70px);
    }
    
    .page-hero {
        padding: var(--space-3xl) 0;
        margin-top: 0;
    }
    
    .support-hero {
        padding: var(--space-3xl) 0;
        margin-top: 0;
    }
    
    .thank-you-hero {
        margin-top: 0;
        padding-top: 0;
        min-height: calc(100vh - 70px);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 999;
        gap: var(--space-xl);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        font-size: 1.25rem;
        color: var(--text-primary);
    }
    
    .nav-toggle {
        display: block;
        z-index: 1000;
        position: relative;
    }
    
    .nav-actions {
        display: none;
    }
    
    .hero-title {
        font-size: 2.25rem;
        margin-bottom: var(--space-lg);
    }
    
    .hero-description {
        font-size: 1.125rem;
        margin-bottom: var(--space-lg);
    }
    
    .hero-badge {
        margin-bottom: var(--space-lg);
    }
    
    .hero-stats {
        justify-content: center;
        gap: var(--space-lg);
        margin-top: var(--space-lg);
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .support-main {
        padding: var(--space-xl) 0;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .category-card {
        padding: var(--space-lg);
    }
    
    .support-hero h1 {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .support-hero p {
        font-size: 1.125rem;
        margin-bottom: var(--space-xl);
    }
    
    .stat-card {
        min-width: 100px;
        padding: var(--space-lg);
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .email-signup {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .email-input {
        margin-bottom: 0;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .support-contact .contact-info {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .support-contact {
        padding: var(--space-lg);
    }
    
    .support-contact .form-field input,
    .support-contact .form-field textarea {
        padding: var(--space-lg);
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: var(--space-lg) var(--space-xl);
        font-size: 1rem;
    }
    
    .kb-grid {
        grid-template-columns: 1fr;
    }
    
    /* Support page specific mobile styles */
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .stat-card {
        padding: var(--space-sm);
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .category-card h3 {
        font-size: 1rem;
    }
    
    .category-card p {
        font-size: 0.875rem;
    }
    
    .category-badge {
        font-size: 0.625rem;
        padding: 0.25rem 0.5rem;
    }
    
    .solutions-cta,
    .showcase-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .platform-icons {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .deployment-flow {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
}

/* Mobile First - Small devices */
@media (max-width: 576px) {
    :root {
        --space-sm: 0.75rem;
        --space-lg: 1rem;
        --space-xl: 1.5rem;
        --space-2xl: 2rem;
        --space-3xl: 3rem;
    }
    
    .navbar {
        height: 60px;
    }
    
    body {
        padding-top: 60px;
    }
    
    .hero {
        margin-top: 0;
        padding-top: var(--space-2xl);
        min-height: calc(100vh - 60px);
    }
    
    .page-hero {
        padding: var(--space-2xl) 0 var(--space-xl);
        margin-top: 0;
    }
    
    .support-hero {
        padding: var(--space-2xl) 0;
        margin-top: 0;
    }
    
    .thank-you-hero {
        margin-top: 0;
        padding-top: 0;
        min-height: calc(100vh - 60px);
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    .nav-container {
        padding: 1rem var(--space-sm);
    }
    
    section {
        padding: var(--space-2xl) 0;
    }
    
    .hero-title {
        font-size: 1.875rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .phone-mockup {
        width: 180px;
        height: 360px;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Better touch targets */
    .btn-primary,
    .btn-gradient,
    .submit-btn {
        min-height: 48px;
        padding: var(--space-lg) var(--space-xl);
        font-size: 1rem;
    }
    
    /* Form improvements */
    .form-group input,
    .form-group select,
    .form-group textarea,
    .support-contact .form-field input,
    .support-contact .form-field textarea {
        min-height: 48px;
        padding: var(--space-lg);
        font-size: 1rem;
    }
    
    /* Grid optimizations */
    .solutions-grid,
    .category-grid,
    .kb-grid {
        gap: var(--space-lg);
    }
    
    .solution-card,
    .category-card {
        padding: var(--space-lg);
    }
    
    /* Contact method cards */
    .contact-method {
        padding: var(--space-lg);
        gap: var(--space-lg);
    }
    
    .method-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
    
    /* Support page specifics */
    .support-hero {
        padding: var(--space-2xl) 0;
    }
    
    .support-hero h1 {
        font-size: 1.875rem;
    }
    
    .support-contact {
        padding: var(--space-lg);
        margin: var(--space-lg);
        border-radius: var(--radius-lg);
    }
    
    /* Better mobile readability */
    p {
        line-height: 1.7;
    }
    
    .hero-description,
    .section-header p {
        line-height: 1.6;
    }
    
    /* Mobile spacing adjustments */
    .hero {
        min-height: auto;
        padding: var(--space-3xl) 0 var(--space-xl);
    }
    
    .mobile-showcase {
        margin-top: var(--space-xl);
    }
    
    /* Page hero mobile */
    .page-hero {
        padding: var(--space-3xl) 0 var(--space-xl);
    }
    
    /* Footer mobile */
    .footer {
        padding: var(--space-2xl) 0 var(--space-lg);
    }
    
    .footer-content {
        gap: var(--space-lg);
    }
    
    /* Contact page mobile */
    .contact {
        padding: var(--space-xl) 0;
    }
    
    .contact-content {
        gap: var(--space-xl);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

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

/* Print styles */
@media print {
    .navbar,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Page-specific styles */
.page-hero {
    padding: var(--space-5xl) 0 var(--space-3xl);
    background: var(--bg-primary);
    color: var(--text-primary);
    text-align: center;
    position: relative;
    margin-top: 0;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(132, 204, 22, 0.1), transparent);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.page-hero-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.legal-meta {
    margin-top: var(--space-lg);
}

.legal-meta span {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-style: italic;
}

.legal-content {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
}

.legal-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: var(--space-3xl);
    max-width: 1200px;
    margin: 0 auto;
}

.legal-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-nav {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
}

.sidebar-nav h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    font-size: 1rem;
}

.sidebar-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.sidebar-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.5rem 0;
    border-left: 2px solid transparent;
    padding-left: var(--space-sm);
    transition: all 0.3s ease;
}

.sidebar-nav a:hover {
    color: var(--accent-primary);
    border-left-color: var(--accent-primary);
}

.legal-main {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
}

.legal-section {
    margin-bottom: var(--space-3xl);
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.legal-section h4 {
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.legal-section p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.legal-section ul {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    padding-left: var(--space-lg);
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.subsection {
    margin-bottom: var(--space-xl);
}

.info-box, .warning-box {
    background: rgba(132, 204, 22, 0.1);
    border: 1px solid rgba(132, 204, 22, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    display: flex;
    gap: var(--space-sm);
}

.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
}

.info-icon, .warning-icon {
    font-size: 1.5rem;
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.warning-icon {
    color: #ef4444;
}

.info-content, .warning-content {
    flex: 1;
}

.info-content h4, .warning-content h4 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.info-content p, .warning-content p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.info-content ul {
    margin-bottom: 0;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
}

.security-item {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.security-icon {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: var(--space-sm);
}

.security-item h4 {
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.security-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
}

.right-item {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.right-item:hover {
    border-color: rgba(132, 204, 22, 0.3);
    transform: translateY(-2px);
}

.right-item i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-bottom: var(--space-sm);
}

.right-item h4 {
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.right-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
}

.contact-item {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
    font-size: 1.25rem;
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.contact-details h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.875rem;
}

/* Responsive for legal pages */
@media (max-width: 1024px) {
    .legal-container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .legal-sidebar {
        position: static;
    }
    
    .sidebar-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .legal-main {
        padding: var(--space-lg);
    }
    
    .security-grid,
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Office hours styles */
.office-hours {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.office-hours h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
}

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

.hours-item span:first-child {
    color: var(--text-secondary);
}

.hours-item span:last-child {
    color: var(--text-primary);
    font-weight: 500;
}

/* Thank You Page Styles */
.thank-you-hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    color: var(--text-primary);
    position: relative;
    margin-top: 0;
    padding-top: 0;
}

.thank-you-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(132, 204, 22, 0.15), transparent);
    pointer-events: none;
}

.thank-you-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    font-size: 5rem;
    color: var(--accent-primary);
    margin-bottom: var(--space-lg);
}

.thank-you-content h1 {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.thank-you-content .lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-3xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps {
    margin: var(--space-3xl) 0;
    text-align: center;
}

.next-steps h2 {
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.step-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: var(--space-lg);
}

.step-item h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.step-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.contact-info-brief {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin: var(--space-3xl) 0;
}

.contact-info-brief h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.contact-quick {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.contact-method-brief {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-primary);
    font-weight: 500;
}

.contact-method-brief i {
    font-size: 1.25rem;
    color: var(--accent-primary);
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
    flex-wrap: wrap;
}

/* Responsive for thank you page */
@media (max-width: 768px) {
    .thank-you-content h1 {
        font-size: 2.5rem;
    }
    
    .success-icon {
        font-size: 4rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .contact-quick {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Support Page Styles */
.support-hero {
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
    padding: var(--space-5xl) 0;
    text-align: center;
    margin-top: 0;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(132, 204, 22, 0.2);
    border: 1px solid rgba(132, 204, 22, 0.3);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: var(--space-xl);
}

.support-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.support-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-3xl);
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    min-width: 120px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1;
}

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

.support-main {
    padding: var(--space-5xl) 0;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5xl);
    align-items: start;
}

.support-categories h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: var(--space-xl);
}

.category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.category-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    font-size: 1.75rem;
    color: var(--bg-primary);
    margin: 0 auto var(--space-lg);
}

.category-card h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    font-size: 1.125rem;
}

.category-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: var(--space-lg);
}

.category-badge {
    background: rgba(132, 204, 22, 0.2);
    border: 1px solid rgba(132, 204, 22, 0.3);
    color: var(--accent-primary);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.support-contact {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    backdrop-filter: blur(10px);
}

.contact-header {
    margin-bottom: var(--space-2xl);
}

.contact-header h2 {
    color: var(--text-primary);
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
}

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

.support-contact .support-form {
    margin-bottom: var(--space-2xl);
}

.support-contact .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.support-contact .form-field {
    margin-bottom: var(--space-lg);
}

.support-contact .form-field:last-child {
    margin-bottom: 0;
}

.support-contact .form-field label {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.support-contact .form-field input,
.support-contact .form-field textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.support-contact .form-field input:focus,
.support-contact .form-field textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(132, 204, 22, 0.1);
}

.support-contact .form-field input::placeholder,
.support-contact .form-field textarea::placeholder {
    color: var(--text-secondary);
}

.submit-btn {
    width: 100%;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-xl);
    color: var(--bg-primary);
    font-weight: 600;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(132, 204, 22, 0.3);
}

.support-contact .contact-info {
    display: flex;
    gap: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex: 1;
}

.info-item i {
    color: var(--accent-primary);
    font-size: 1.25rem;
}

.info-item div {
    display: flex;
    flex-direction: column;
}

.info-item strong {
    color: var(--text-primary);
    font-size: 0.875rem;
    margin-bottom: 2px;
}

.info-item span {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

/* Knowledge Base */
.knowledge-base {
    padding: var(--space-4xl) 0;
    background: rgba(255, 255, 255, 0.02);
}

.kb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.kb-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
}

.kb-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    font-size: 2rem;
    color: var(--bg-primary);
    margin: 0 auto var(--space-lg);
}

.kb-item h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.kb-item p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.kb-item ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.kb-item li {
    color: var(--text-secondary);
    padding: var(--space-xs) 0;
    position: relative;
    padding-left: var(--space-lg);
}

.kb-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}

/* Support Thank You Page */
.response-times {
    display: grid;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.response-time-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-lg);
    align-items: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-primary);
}

.response-time-item.critical {
    border-left-color: #dc2626;
}

.response-time-item.high {
    border-left-color: #ea580c;
}

.response-time-item.medium {
    border-left-color: #d97706;
}

.response-time-item.low {
    border-left-color: #059669;
}

.priority-badge {
    padding: var(--space-xs) var(--space-sm);
    background: var(--accent-primary);
    color: var(--bg-primary);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.response-time-item.critical .priority-badge {
    background: #dc2626;
}

.response-time-item.high .priority-badge {
    background: #ea580c;
}

.response-time-item.medium .priority-badge {
    background: #d97706;
}

.response-time-item.low .priority-badge {
    background: #059669;
}

.time {
    color: var(--text-primary);
    font-weight: 600;
    text-align: center;
}

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

.response-expectations {
    margin: var(--space-3xl) 0;
}

.response-expectations h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    text-align: center;
}

/* Note: Support page responsive styles are handled in main @media queries above */

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --bg-primary: #000000;
        --bg-secondary: #1a1a1a;
        --text-primary: #ffffff;
        --text-secondary: #cccccc;
    }
}