/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #374151;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors (Purple/Violet) */
    --primary-50: #F5F3FF;
    --primary-100: #EDE9FE;
    --primary-200: #DDD6FE;
    --primary-300: #C4B5FD;
    --primary-400: #A78BFA;
    --primary-500: #8B5CF6;
    --primary-600: #7C3AED;
    --primary-700: #6D28D9;
    --primary-800: #5B21B6;
    --primary-900: #4C1D95;
    
    /* Accent Colors (Cyan/Light Blue) */
    --accent-50: #E8FAFF;
    --accent-100: #CFFAFE;
    --accent-400: #22D3EE;
    --accent-500: #06B6D4;
    --accent-600: #0891B2;
    
    /* Gradient Colors */
    --gradient-start: #F5F3FF;
    --gradient-end: #E8FAFF;
    
    /* Gray Colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Green (WhatsApp) */
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-100: #dcfce7;
}

/* ===== UTILITY CLASSES ===== */
.min-h-screen {
    min-height: 100vh;
}

.bg-white {
    background-color: #ffffff;
}

.bg-gray-50 {
    background-color: var(--gray-50);
}

.bg-gray-900 {
    background-color: var(--gray-900);
}

.text-white {
    color: #ffffff;
}

.text-gray-300 {
    color: var(--gray-300);
}

.text-gray-400 {
    color: var(--gray-400);
}

.text-gray-500 {
    color: var(--gray-500);
}

.text-gray-600 {
    color: var(--gray-600);
}

.text-gray-700 {
    color: var(--gray-700);
}

.text-gray-900 {
    color: var(--gray-900);
}

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

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

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

.text-accent-500 {
    color: var(--accent-500);
}

.text-accent-600 {
    color: var(--accent-600);
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

.text-center {
    text-align: center;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

/* Layout */
.relative {
    position: relative;
}

.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-50 {
    z-index: 50;
}

.w-full {
    width: 100%;
}

.max-w-7xl {
    max-width: 80rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.pt-8 {
    padding-top: 2rem;
}

.pt-16 {
    padding-top: 4rem;
}

.pt-24 {
    padding-top: 6rem;
}

.pb-20 {
    padding-bottom: 5rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.mt-16 {
    margin-top: 4rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

.mr-4 {
    margin-right: 1rem;
}

.mr-5 {
    margin-right: 1.25rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.ml-auto {
    margin-left: auto;
}

.mt-0-5 {
    margin-top: 0.125rem;
}

/* Flexbox */
.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.space-x-2 > * + * {
    margin-left: 0.5rem;
}

.space-x-8 > * + * {
    margin-left: 2rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-5 > * + * {
    margin-top: 1.25rem;
}

.space-y-8 > * + * {
    margin-top: 2rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

/* Grid */
.grid {
    display: grid;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Borders */
.border-t {
    border-top: 1px solid var(--gray-200);
}

.border-gray-200 {
    border-color: var(--gray-200);
}

.border-gray-800 {
    border-color: var(--gray-800);
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

/* Shadows */
.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Transitions */
.transition-all {
    transition: all 0.3s ease;
}

.transition-colors {
    transition: color 0.2s ease;
}

.transition-transform {
    transition: transform 0.2s ease;
}

/* Hidden */
.hidden {
    display: none;
}

.overflow-hidden {
    overflow: hidden;
}

/* ===== HEADER ===== */
.bg-white-95 {
    background-color: rgba(255, 255, 255, 0.95);
}

.backdrop-blur {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.h-16 {
    height: 4rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--primary-600), var(--accent-500));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon-img {
    width: 70%;
    height: 70%;
    display: block;
    object-fit: contain;
}

.logo-icon-footer {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-600);
}

.nav-link-mobile {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
}

.nav-link-mobile.active {
    color: var(--primary-600);
}

.btn-primary-sm {
    background: linear-gradient(to right, var(--primary-600), var(--primary-700));
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary-sm:hover {
    box-shadow: 0 10px 25px -5px rgba(124, 58, 237, 0.25);
}

.btn-primary-mobile {
    background-color: var(--primary-600);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #F5F3FF, #E8FAFF);
}

.hero-bg-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(232, 250, 255, 0.5), transparent);
}

.hero-blob {
    position: absolute;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(48px);
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
}

.hero-blob-left {
    top: 5rem;
    left: 2.5rem;
    background-color: #DDD6FE;
}

.hero-blob-right {
    bottom: 5rem;
    right: 2.5rem;
    background-color: #CFFAFE;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: var(--primary-100);
    border-radius: 9999px;
    color: var(--primary-700);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary-600), var(--accent-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.btn-primary {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--primary-600), var(--primary-700));
    color: white;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 20px 25px -5px rgba(124, 58, 237, 0.3);
}

.group:hover .group-hover-translate-x {
    transform: translateX(4px);
}

.btn-secondary {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    background-color: white;
    color: var(--gray-700);
    border-radius: 9999px;
    font-weight: 600;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--primary-300);
    background-color: var(--primary-50);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background-color: white;
    color: var(--primary-700);
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-white:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--gray-200);
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.stat-icon-primary {
    background-color: var(--primary-100);
    color: var(--primary-600);
}

.stat-icon-accent {
    background-color: var(--accent-100);
    color: var(--accent-600);
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===== SECTION STYLES ===== */
.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-label {
    color: var(--primary-600);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 0.75rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    padding: 2rem;
    background-color: var(--gray-50);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background-color: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-primary {
    background-color: var(--primary-100);
    color: var(--primary-600);
}

.feature-icon-accent {
    background-color: var(--accent-100);
    color: var(--accent-600);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.625;
}

/* ===== BENEFITS ===== */
.benefits-section {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
    border-radius: 1.5rem;
    padding: 2rem;
}

.benefits-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.benefits-subtitle {
    color: var(--primary-100);
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list > * + * {
    margin-top: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    color: white;
}

.benefit-check {
    color: var(--accent-400);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.benefits-cta {
    display: flex;
    justify-content: center;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    gap: 3rem;
}

.contact-grid.contact-grid-single {
    grid-template-columns: 1fr;
    justify-items: center;
}

.contact-grid.contact-grid-single .contact-info {
    width: 100%;
    max-width: 48rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.whatsapp-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(to right, var(--green-500), var(--green-600));
    border-radius: 1rem;
    color: white;
    transition: all 0.3s ease;
}

.whatsapp-card:hover {
    box-shadow: 0 20px 25px -5px rgba(34, 197, 94, 0.3);
}

.whatsapp-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
}

.whatsapp-title {
    font-weight: 600;
    font-size: 1.125rem;
}

.whatsapp-number {
    color: var(--green-100);
}

.whatsapp-arrow {
    margin-left: auto;
    transition: transform 0.2s ease;
}

.whatsapp-card:hover .whatsapp-arrow {
    transform: translateX(4px);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.contact-card {
    padding: 1.5rem;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.contact-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-card-icon-primary {
    background-color: var(--primary-100);
    color: var(--primary-600);
}

.contact-card-icon-accent {
    background-color: var(--accent-100);
    color: var(--accent-600);
}

.contact-card-title {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.contact-card-value {
    color: var(--gray-600);
}

.address-card {
    padding: 1.5rem;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
}

.address-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-100);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    color: var(--primary-600);
}

.address-title {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.address-value {
    color: var(--gray-600);
}

/* ===== CONTACT FORM ===== */
.contact-form-container {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.contact-form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.contact-form > * + * {
    margin-top: 1.25rem;
}

.form-group {
    width: 100%;
}

.form-row {
    display: grid;
    gap: 1.25rem;
}

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

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: transparent;
    box-shadow: 0 0 0 2px var(--primary-500);
}

.form-textarea {
    resize: none;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to right, var(--primary-600), var(--primary-700));
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    box-shadow: 0 10px 25px -5px rgba(124, 58, 237, 0.3);
}

.hp-field {
    display: none !important;
}

.form-status {
    display: none;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.95rem;
}

.form-status.is-success {
    display: block;
    background-color: rgba(16, 185, 129, 0.12);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.form-status.is-error {
    display: block;
    background-color: rgba(239, 68, 68, 0.10);
    color: #7f1d1d;
    border: 1px solid rgba(239, 68, 68, 0.20);
}

/* ===== SOBRE NOS PAGE ===== */
.sobre-hero {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: linear-gradient(135deg, #F5F3FF, #E8FAFF);
}

.sobre-hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.sobre-hero-text {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.mission-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.mission-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.mission-label {
    color: var(--primary-600);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mission-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
}

.mission-text {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.mission-list {
    list-style: none;
}

.mission-list > * + * {
    margin-top: 0.75rem;
}

.mission-item {
    display: flex;
    align-items: center;
    color: var(--gray-700);
}

.mission-check {
    color: var(--accent-500);
    margin-right: 0.75rem;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    padding: 1.5rem;
    border-radius: 1rem;
}

.stat-card-primary {
    background-color: var(--primary-50);
}

.stat-card-accent {
    background-color: var(--accent-50);
}

.stat-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1rem;
}

.stat-card-icon-primary {
    color: var(--primary-600);
}

.stat-card-icon-accent {
    color: var(--accent-600);
}

.stat-card-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
}

.stat-card-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.cta-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: linear-gradient(to right, var(--primary-600), var(--primary-800));
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-text {
    color: var(--primary-100);
    margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
.hover-text-primary-400:hover {
    color: var(--primary-400);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
    .sm-px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .sm-text-xl {
        font-size: 1.25rem;
    }
    
    .sm-text-4xl {
        font-size: 2.25rem;
    }
    
    .sm-text-5xl {
        font-size: 3rem;
    }
    
    .sm-grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .md-flex {
        display: flex;
    }
    
    .md-hidden {
        display: none;
    }
    
    .md-grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .lg-px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .lg-pt-32 {
        padding-top: 8rem;
    }
    
    .lg-pb-28 {
        padding-bottom: 7rem;
    }
    
    .lg-py-28 {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
    
    .lg-text-6xl {
        font-size: 3.75rem;
    }
    
    .lg-text-3xl {
        font-size: 1.875rem;
    }
    
    .lg-grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-section {
        padding-top: 8rem;
        padding-bottom: 7rem;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .section-padding {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
    
    .benefits-section {
        padding: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-title {
        font-size: 1.875rem;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid.contact-grid-single {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile menu responsive */
@media (max-width: 767px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}
