:root {
    /* Colors */
    --clr-slate-900: #0F172A;
    --clr-slate-800: #1E293B;
    --clr-slate-100: #F1F5F9;
    --clr-white: #FFFFFF;
    --clr-coral: #E63946;
    --clr-coral-hover: #D92532;
    --clr-glass-bg: rgba(255, 255, 255, 0.7);
    --clr-glass-border: rgba(255, 255, 255, 0.18);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Effects */
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--clr-slate-100);
    color: var(--clr-slate-900);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

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

/* Navbar */
.navbar {
    background-color: var(--clr-white);
    padding: 1rem 2rem;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--clr-slate-900);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo svg {
    color: var(--clr-coral);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--clr-slate-900) 0%, var(--clr-slate-800) 100%);
    color: var(--clr-white);
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230,57,70,0.15) 0%, rgba(15,23,42,0) 50%);
    z-index: 1;
    animation: pulse 15s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, -2%); }
}

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

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--clr-coral);
    position: relative;
    display: inline-block;
}

.hero p {
    font-size: 1.25rem;
    color: #CBD5E1;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-inline: auto;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--clr-coral);
    color: var(--clr-white);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 4px 14px 0 rgba(230, 57, 70, 0.39);
}

.btn-primary:hover {
    background-color: var(--clr-coral-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.5);
}

.w-100 {
    width: 100%;
}

/* Categories Section */
.categories {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--clr-slate-900);
}

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

.category-card {
    background-color: var(--clr-white);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(230, 57, 70, 0.2);
}

.card-image {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
    background-color: var(--clr-white);
}

.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.category-card:hover .card-image img {
    transform: scale(1.05);
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.category-card p {
    color: #475569;
}

/* Report Section & Glassmorphism */
.report-section {
    padding: 5rem 0 8rem;
    background: linear-gradient(45deg, #F1F5F9 0%, #E2E8F0 100%);
    position: relative;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 1.5rem;
}

.glass-effect {
    background: var(--clr-glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--clr-glass-border);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.form-subtitle {
    text-align: center;
    color: #475569;
    margin-bottom: 2rem;
}

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

label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--clr-slate-900);
}

input, select, textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #CBD5E1;
    border-radius: 0.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.9);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--clr-coral);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 500;
    min-height: 24px;
}

.success-text {
    color: #10B981;
}

/* Footer */
footer {
    background-color: var(--clr-slate-900);
    color: var(--clr-white);
    text-align: center;
    padding: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 5rem 1rem;
    }
    .form-wrapper {
        padding: 2rem;
    }
}
