:root {
    --primary-color: #0073aa;
    --secondary-color: #2c3e50;
    --accent-color: #00d2ff;
    --highlight-color: #00c6ff;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --whatsapp-color: #25d366;
}

body { 
    font-family: 'Poppins', sans-serif; 
    margin: 0; 
    color: #444; 
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3, h4 { 
    font-family: 'Inter', sans-serif; 
    font-weight: 700;
    color: var(--secondary-color);
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.text-center { text-align: center; }
.bg-light { background: var(--light-color); }
.highlight { color: var(--primary-color); }

/* Header */
.site-header { 
    background: var(--white); 
    padding: 15px 0; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary-color);
    text-decoration: none;
}

.logo-text .highlight {
    color: var(--primary-color);
}

.main-navigation ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-navigation li {
    margin-left: 30px;
}

.main-navigation a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    transition: 0.3s;
}

.main-navigation a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 50px;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.badge {
    background: rgba(0, 115, 170, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
}

.btn-whatsapp {
    background: var(--whatsapp-color);
    color: var(--white);
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-card i {
    font-size: 30px;
    color: var(--primary-color);
}

.stat-card span {
    font-weight: 700;
    font-size: 18px;
}

/* Info Section */
.info-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
}

.underline {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.check-list {
    margin-top: 30px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
}

.check-item i {
    color: var(--whatsapp-color);
}

.quote-card {
    background: var(--secondary-color);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    font-style: italic;
    font-size: 20px;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.process-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    position: relative;
    transition: 0.3s;
}

.process-card:hover {
    transform: translateY(-10px);
    background: var(--primary-color);
    color: var(--white);
}

.process-card:hover h3 { color: var(--white); }

.process-card .number {
    font-size: 40px;
    font-weight: 800;
    color: rgba(0,0,0,0.05);
    position: absolute;
    top: 10px;
    right: 20px;
}

/* FAQ */
.faq-section { padding: 80px 0; }
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.faq-item {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Contact */
.contact-section { 
    padding: 80px 0; 
    background: var(--secondary-color);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 { color: var(--white); }

.contact-details {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.contact-details li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    color: #444;
}

.form-group { margin-bottom: 20px; }
input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.btn.block { width: 100%; border: none; cursor: pointer; }

/* Footer */
.site-footer { 
    padding: 60px 0 20px; 
    background: var(--dark-color); 
    color: #bbb;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.site-footer h3 { color: var(--white); margin-bottom: 20px; }

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .grid-2, .hero-content, .process-grid, .faq-grid, .contact-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .main-navigation { display: none; }
    .hero-text h1 { font-size: 32px; }
}
