:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: rgba(37, 99, 235, 0.1);
    --secondary: #0f172a;
    --accent: #f59e0b;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #0f172a;
    --light: #f8fafc;
    --slate: #64748b;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-top: 90px; /* Altura do header fixo */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    height: 100px; /* Um pouco mais alto para acomodar o logo destaque */
    display: flex;
    align-items: center;
}

header.scrolled {
    height: 70px;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    z-index: 1001;
}

.logo img {
    height: 120px; /* Logo em destaque */
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
    margin-top: 10px; /* Faz o logo descer um pouco para fora do header */
}

header.scrolled .logo img {
    height: 60px; /* Reduz ao scroll para não atrapalhar a leitura */
    margin-top: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 991px) {
    header {
        height: 80px;
    }
    
    .logo img {
        height: 90px;
        margin-top: 5px;
    }
    
    header.scrolled .logo img {
        height: 55px;
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 3px;
    transition: var(--transition);
}

/* Nav Styles */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

nav ul li a:hover::after { width: 100%; }

/* Mobile Menu Active State */
.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        padding: 100px 40px;
        transition: var(--transition);
        z-index: 1000;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 25px;
    }

    nav ul li a {
        font-size: 1.2rem;
    }

    .hide-mobile {
        display: none !important;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 20px -5px rgba(37, 99, 235, 0.4);
}

.btn:active { transform: translateY(-1px); }

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-whatsapp {
    background-color: var(--success);
    animation: pulse-green 2s infinite;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    animation: none;
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.6);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 60px 0 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.2) 0%, transparent 50%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i { color: var(--accent); }

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--accent) 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #cbd5e1;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 5px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Trust Bar */
.trust-bar {
    background: var(--white);
    padding: 25px 0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
}

.trust-text h4 {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 2px;
}

.trust-text p {
    font-size: 0.8rem;
    color: var(--slate);
}

.trust-badges {
    display: flex;
    gap: 20px;
    align-items: center;
}

.badge-crc {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Services */
.services {
    padding: 60px 0 80px;
    background-color: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header span {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--slate);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

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

.service-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}

.service-card.featured::after {
    content: 'MAIS POPULAR';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent);
    color: white;
    padding: 5px 40px;
    font-size: 0.7rem;
    font-weight: 800;
    transform: rotate(45deg);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    background: var(--primary-light);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(-5deg) scale(1.1);
    background: var(--primary);
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
    color: var(--secondary);
}

.service-benefit {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    color: var(--success);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.service-card p {
    color: var(--slate);
    margin-bottom: 15px;
    font-size: 0.95rem;
    flex-grow: 1;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    padding: 6px 0;
    color: var(--slate);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.service-features li:last-child { border-bottom: none; }

.service-features li i {
    color: var(--success);
    font-size: 0.8rem;
}

.service-cta {
    margin-top: auto;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 10px 18px;
    background: var(--primary-light);
    border-radius: 8px;
    justify-content: center;
}

.service-link:hover {
    background: var(--primary);
    color: var(--white);
    gap: 12px;
}

/* Calculator Section */
.calculator-section {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.calc-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.calc-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #e2e8f0;
}

.calc-group input, .calc-group select {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.calc-group input:focus, .calc-group select:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

.calc-group select option {
    background-color: var(--white);
    color: var(--secondary);
    padding: 10px;
}

.calc-group input::placeholder { color: #94a3b8; }

.calc-result {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    margin-top: 25px;
    position: relative;
    overflow: hidden;
}

.calc-result::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.calc-result h4 { 
    font-size: 1.1rem; 
    margin-bottom: 8px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.calc-result .amount { 
    font-size: 3rem; 
    font-weight: 800; 
    display: block;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.calc-savings {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 2;
}

.calc-savings span {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.calc-cta {
    text-align: center;
    margin-top: 25px;
}

/* Why Choose Us */
.features {
    padding: 50px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.feature-card {
    text-align: center;
    padding: 30px 25px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    border-color: #e2e8f0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(37, 99, 235, 0.2) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 28px;
    border: 2px dashed var(--primary);
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--slate);
    line-height: 1.7;
}

/* Process Section */
.process {
    padding: 50px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--primary);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px dashed var(--primary);
    opacity: 0.3;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.process-step h3 {
    margin-bottom: 12px;
    color: var(--secondary);
    font-size: 1.3rem;
}

.process-step p {
    color: var(--slate);
    line-height: 1.7;
}

/* Social Proof Section */
.social-proof {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 35px;
    text-align: center;
}

.proof-item {
    padding: 15px;
}

.proof-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.proof-label {
    color: var(--slate);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
    padding: 50px 0;
    background-color: var(--light);
    position: relative;
}

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

.testimonial-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--success);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.8;
    position: relative;
    padding-top: 25px;
}

.testimonial-text::before {
    content: '\201C';
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

.testimonial-result {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid var(--success);
    padding: 12px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--success);
    font-weight: 600;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 1.1rem;
    border: 3px solid var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 2px;
}

.author-info p {
    color: var(--slate);
    font-size: 0.85rem;
}

.author-info .company {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8rem;
}

/* About Section */
.about {
    padding: 30px 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--secondary);
    line-height: 1.2;
}

.about-text .subtitle {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: block;
}

.about-text p {
    color: var(--slate);
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.7;
}

.credentials {
    display: flex;
    gap: 12px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: var(--light);
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.credential-badge i {
    color: var(--primary);
    font-size: 1.1rem;
}

.credential-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.stat-item {
    background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
    padding: 15px 10px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    display: block;
}

.stat-label {
    color: var(--slate);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    min-width: 140px;
}

.experience-badge .years {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    color: var(--slate);
    font-weight: 600;
    margin-top: 5px;
}

/* Team Section */
.team {
    padding: 60px 0;
    background: var(--light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.team-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.team-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(37, 99, 235, 0.8) 100%);
    opacity: 0;
    transition: var(--transition);
}

.team-member:hover .team-img::after { opacity: 1; }

.team-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .team-img img { transform: scale(1.1); }

.team-member h4 {
    font-size: 1.2rem;
    margin-bottom: 3px;
    color: var(--secondary);
}

.team-member .role {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.team-member .crc {
    color: var(--slate);
    font-size: 0.8rem;
    font-family: monospace;
    background: var(--light);
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
}

/* Lead Magnet */
.lead-magnet {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lead-magnet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.magnet-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.magnet-content h2 { 
    font-size: 2.8rem; 
    margin-bottom: 15px;
    line-height: 1.2;
}

.magnet-content p { 
    font-size: 1.2rem; 
    margin-bottom: 30px; 
    opacity: 0.95;
    line-height: 1.7;
}

.magnet-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.magnet-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.magnet-feature i {
    color: var(--accent);
}

/* Contact Section */
.contact {
    padding: 50px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.contact-form > p {
    color: var(--slate);
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary);
}

.form-group label span {
    color: var(--danger);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--danger);
}

.error-message {
    color: var(--danger);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.error-message.show { display: block; }

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-select-wrapper {
    position: relative;
}

.form-select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate);
    pointer-events: none;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 15px;
}

.form-security {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--slate);
}

.form-security i {
    color: var(--success);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-info h3 {
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--secondary);
}

.info-card {
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-details h4 {
    margin-bottom: 3px;
    font-size: 1.1rem;
    color: var(--secondary);
}

.contact-details p {
    color: var(--slate);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.contact-cta {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    color: white;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    margin-top: 15px;
}

.contact-cta h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-cta p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 12px;
}

.contact-cta .btn {
    background: white;
    color: var(--success);
    width: 100%;
    justify-content: center;
}

.contact-cta .btn:hover {
    background: #f0fdf4;
}

/* Trust Badge Floating */
.trust-badge-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 998;
    max-width: 280px;
    border: 1px solid #e2e8f0;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.trust-badge-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.trust-badge-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.trust-badge-header div h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.trust-badge-header div .stars {
    color: var(--accent);
    font-size: 0.8rem;
}

.trust-badge-content {
    font-size: 0.9rem;
    color: var(--slate);
    margin-bottom: 15px;
    line-height: 1.5;
}

.trust-badge-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: var(--slate);
    cursor: pointer;
    font-size: 1.2rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: var(--dark);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

/* Footer */
footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 700;
}

.footer-col p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-col ul li a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    opacity: 0;
    transition: var(--transition);
}

.footer-col ul li a:hover::before {
    opacity: 1;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--primary);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.05);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #64748b;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.8rem; }
    .about-content { gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .trust-badge-float { display: none; }
}

@media (max-width: 768px) {
    .header-content { padding: 15px 0; }
    .btn-container .btn-outline { display: none; }
    .hero { padding: 100px 0 60px; text-align: center; }
    .hero h1 { font-size: 2.2rem; }
    .hero-stats { justify-content: center; flex-wrap: wrap; gap: 20px; }
    .hero-btns { justify-content: center; }
    .section-header h2 { font-size: 1.8rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .about-content { grid-template-columns: 1fr; }
    .about-image { order: -1; }
    .experience-badge { left: 50%; transform: translateX(-50%); }
    .calc-grid { grid-template-columns: 1fr; }
    .btn-large {
        width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
        display: inline-flex;
    }
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .trust-content { 
        flex-direction: column; 
        text-align: center;
        gap: 20px;
    }
    .trust-item {
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }
    .trust-icon {
        margin: 0 auto 10px;
    }
    .process-steps::before { display: none; }
    .magnet-content h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; }
    .proof-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr; }
}

/* Loading State */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.8s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid var(--success);
    color: var(--success);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    display: none;
}

.success-message.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* New Clean Classes for Blog Section */
.blog-card {
    padding: 0;
    overflow: hidden;
    border: none;
    background: var(--white);
}

.blog-card-img-wrapper {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
}

.blog-card-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

.blog-card-body {
    padding: 25px;
}

.blog-card-date {
    font-size: 0.85rem;
    color: var(--slate);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-card-title {
    font-size: 1.3rem;
    margin: 12px 0 15px;
    color: var(--secondary);
    line-height: 1.4;
}

.blog-card-text {
    font-size: 0.95rem;
    color: var(--slate);
    margin-bottom: 20px;
}

.blog-card-link {
    padding: 0;
    background: none;
    color: var(--primary);
    justify-content: flex-start;
    gap: 5px;
    font-size: 1rem;
    font-weight: 700;
}
