* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

:root {
    --primary: #0066ff;
    --primary-dark: #0052cc;
    --secondary: #1a1a1a;
    --accent: #ff3d00;
    --text: #333333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
}

body {
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 20px 0;
    background: transparent;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--secondary);
}

.logo span {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    text-align: center;
    background: radial-gradient(circle at top right, rgba(0, 102, 255, 0.05), transparent);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--secondary);
}

.hero h1 .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p.subheadline {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 40px;
}

.scarcity {
    background: #fff4f2;
    color: var(--accent);
    padding: 12px 24px;
    border-radius: 40px;
    display: inline-block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 61, 0, 0.1);
}

/* Form Section */
.audit-form-container {
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    margin-bottom: 80px;
}

.form-group {
    margin-bottom: 24px;
    text-align: left;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

input, select {
    width: 100%;
    padding: 18px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
}

input:focus, select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

/* AI Section */
.ai-section {
    background: #111;
    color: white;
    padding: 80px 0;
    border-radius: 40px;
    margin: 40px 0;
}

.ai-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.ai-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Button */
.cta-button {
    background: var(--gradient);
    color: white;
    padding: 24px 48px;
    font-size: 1.25rem;
    font-weight: 800;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    width: 100%;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
}

.button-note {
    font-size: 0.9rem;
    color: #999;
    margin-top: 15px;
}

/* Trust Proof */
.social-proof {
    padding: 80px 0;
}

.testimonial {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 24px;
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.testimonial p {
    margin-bottom: 20px;
}

.testimonial .author {
    font-weight: 800;
    font-style: normal;
    font-size: 1rem;
    color: var(--secondary);
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p.subheadline { font-size: 1.2rem; }
}
