/* WF SecurityCloud - Main Stylesheet */

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

:root {
    /* WFS Brand Colors */
    --wfs-yellow: #e5c738;
    --wfs-gold: #f4d03f;
    --wfs-dark: #0a0a0a;
    --wfs-darker: #050505;
    --wfs-card-bg: #1a1a1a;
    --wfs-white: #ffffff;
    --wfs-gray: #8a8a8a;
    --wfs-light-gray: #B8BCC8;
    --wfs-success: #00CC88;
    --wfs-danger: #FF3366;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #e5c738 0%, #f4d03f 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

body {
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--wfs-white);
    background: var(--wfs-dark);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--wfs-white);
    margin-bottom: 20px;
}

.section-title .highlight {
    color: var(--wfs-yellow);
}

.section-subtitle {
    text-align: center;
    color: var(--wfs-light-gray);
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--wfs-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(229, 199, 56, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--wfs-yellow);
    border: 2px solid var(--wfs-yellow);
}

.btn-secondary:hover {
    background: var(--wfs-yellow);
    color: var(--wfs-dark);
}

/* Cards */
.card {
    background: rgba(229, 199, 56, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(229, 199, 56, 0.1);
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--wfs-yellow);
    background: rgba(229, 199, 56, 0.05);
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

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

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Fixed grid for stats to prevent wrapping */
@media (min-width: 1200px) {
    .stats-grid-fixed {
        grid-template-columns: repeat(6, 1fr) !important;
    }
}

@media (max-width: 1199px) {
    .stats-grid-fixed {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid-fixed {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Sections */
section {
    padding: 100px 20px;
}

section:nth-child(even) {
    background: var(--wfs-darker);
}

/* Responsive */
@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}