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

:root {
    /* Updated to sophisticated color palette with blue/orange as subtle accents */
    --background: #ffffff;
    --foreground: #1f2937;
    --card: #f8fafc;
    --card-foreground: #1f2937;
    --primary: #1e3a8a;
    --primary-foreground: #ffffff;
    --secondary: #f97316;
    --secondary-foreground: #ffffff;
    --muted: #f8fafc;
    --muted-foreground: #6b7280;
    --accent: #f97316;
    --accent-foreground: #ffffff;
    --border: #e5e7eb;
    --neutral-50: #f9fafb;
    --neutral-100: #f3f4f6;
    --neutral-200: #e5e7eb;
    --neutral-800: #1f2937;
    --neutral-900: #111827;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Redesigned header with minimal, professional styling */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.02em;
}

.fox-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent), #fb923c);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.2s ease;
}

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

/* Completely redesigned hero section with minimal, elegant approach */
.hero {
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--background) 100%);
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(30, 58, 138, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(249, 115, 22, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(30, 58, 138, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 80% 30%, rgba(249, 115, 22, 0.04) 0%, transparent 60%);
    animation: backgroundPulse 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(30, 58, 138, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(249, 115, 22, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 45% 85%, rgba(30, 58, 138, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 55% 15%, rgba(249, 115, 22, 0.03) 0%, transparent 50%);
    animation: float 30s ease-in-out infinite;
    z-index: 1;
}

/* Added more sophisticated floating elements */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-particles::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 15%;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(30, 58, 138, 0.12);
    border-radius: 50%;
    animation: floatSlow 25s ease-in-out infinite;
}

.hero-particles::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(249, 115, 22, 0.12);
    border-radius: 20px;
    animation: floatReverse 22s ease-in-out infinite;
    transform: rotate(45deg);
}

.hero-floating-dots {
    position: absolute;
    top: 30%;
    left: 20%;
    z-index: 1;
    animation: floatGentle 20s ease-in-out infinite;
}

.hero-floating-dots::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(30, 58, 138, 0.15);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    box-shadow: 
        40px 20px 0 rgba(249, 115, 22, 0.12),
        80px -10px 0 rgba(30, 58, 138, 0.10),
        120px 30px 0 rgba(249, 115, 22, 0.08),
        -30px 50px 0 rgba(30, 58, 138, 0.12),
        20px 80px 0 rgba(249, 115, 22, 0.10);
}

.hero-geometric {
    position: absolute;
    top: 15%;
    right: 15%;
    z-index: 1;
    animation: rotateFloat 30s linear infinite;
}

.hero-geometric::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid rgba(30, 58, 138, 0.08);
    border-left: 3px solid rgba(249, 115, 22, 0.12);
    border-radius: 50%;
}

.hero-lines {
    position: absolute;
    bottom: 20%;
    left: 10%;
    z-index: 1;
    animation: slideFloat 25s ease-in-out infinite;
}

.hero-lines::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, rgba(30, 58, 138, 0.15), rgba(249, 115, 22, 0.10), transparent);
    border-radius: 2px;
    box-shadow: 
        0 25px 0 0 rgba(249, 115, 22, 0.12),
        0 50px 0 0 rgba(30, 58, 138, 0.08);
}

/* Fixed 4-item grid layout to prevent 3+1 ugly layout */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 64px;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Redesigned products section with clean card layout */
.products {
    padding: 120px 0;
    background: var(--background);
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--neutral-900);
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--muted-foreground);
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: var(--background);
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.product-card h3 {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-card h4 {
    color: var(--accent);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-card p {
    margin-bottom: 24px;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.learn-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.learn-more:hover {
    color: var(--accent);
    gap: 12px;
}

/* Redesigned benefits section with modern icon styling */
.benefits {
    padding: 120px 0;
    background: var(--muted);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 64px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.benefit-item {
    text-align: center;
    padding: 32px 24px;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.benefit-item h3 {
    color: var(--neutral-900);
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
}

.benefit-item p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Redesigned contact section with professional styling */
.contact {
    padding: 120px 0;
    background: var(--neutral-900);
    color: var(--background);
    text-align: center;
}

.contact h2 {
    color: var(--background);
    margin-bottom: 24px;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.contact p {
    font-size: 18px;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--neutral-200);
    line-height: 1.6;
}

.contact .cta-button {
    background: var(--accent);
    color: var(--accent-foreground);
}

.contact .cta-button:hover {
    background: #ea580c;
}

.mission {
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mission h3 {
    color: var(--accent);
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 600;
}

.mission p {
    font-size: 16px;
    font-style: italic;
    color: var(--neutral-200);
}

/* More sophisticated footer design */
footer {
    background: linear-gradient(135deg, var(--neutral-900) 0%, #0f172a 100%);
    color: var(--neutral-200);
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.3), rgba(249, 115, 22, 0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand .fox-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent), #fb923c);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--background);
    margin: 0;
}

.footer-description {
    color: var(--neutral-300);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-links h4 {
    color: var(--background);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--neutral-300);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact h4 {
    color: var(--background);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-contact p {
    color: var(--neutral-300);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--neutral-400);
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
}

/* Enhanced animation keyframes for more dynamic movement */
@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-15px, -10px) rotate(0.5deg); }
    50% { transform: translate(10px, -20px) rotate(-0.5deg); }
    75% { transform: translate(20px, -5px) rotate(0.3deg); }
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-15px, -20px) scale(1.05); }
    50% { transform: translate(20px, -10px) scale(0.95); }
    75% { transform: translate(-10px, 15px) scale(1.02); }
}

@keyframes floatReverse {
    0%, 100% { transform: translate(0, 0) rotate(45deg); }
    25% { transform: translate(18px, 12px) rotate(48deg); }
    50% { transform: translate(-12px, 20px) rotate(42deg); }
    75% { transform: translate(15px, -8px) rotate(47deg); }
}

@keyframes floatGentle {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-12px, -18px); }
    66% { transform: translate(15px, -8px); }
}

@keyframes rotateFloat {
    0% { transform: rotate(0deg) translate(0, 0); }
    25% { transform: rotate(90deg) translate(5px, -5px); }
    50% { transform: rotate(180deg) translate(-5px, 5px); }
    75% { transform: rotate(270deg) translate(5px, 5px); }
    100% { transform: rotate(360deg) translate(0, 0); }
}

@keyframes slideFloat {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--neutral-900);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero .subtitle {
    font-size: 24px;
    font-weight: 400;
    color: var(--muted-foreground);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.hero .tagline {
    font-size: 18px;
    color: var(--muted-foreground);
    margin-bottom: 48px;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
}

.cta-button:hover {
    background: #1e40af;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.2);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--foreground);
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--border);
    transition: all 0.2s ease;
    margin-left: 16px;
}

.cta-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .hero .subtitle {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

html {
    scroll-behavior: smooth;
}

/* Added styles for collapsible product details */
.expand-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.expand-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.expand-icon {
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.expand-btn.expanded .expand-icon {
    transform: rotate(45deg);
}

.product-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    margin-top: 0;
}

.product-details.expanded {
    max-height: 300px;
    padding-top: 15px;
}

.product-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-details li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.4;
}

.product-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}
