/* 
 * Miguelangie: Topiko Capilar Ancestral
 * Design System - Premium Corporate
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    /* Color Palette */
    --primary-dark: #0A2F1F;    /* Verde Bosque Profundo */
    --primary-light: #1B4D3E;   /* Verde Esmeralda Suave */
    --accent-gold: #C5A059;     /* Oro Mate */
    --accent-gold-light: #E2C68E;
    --bg-cream: #F9F5F0;        /* Blanco Crema */
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --text-muted: #666666;
    
    /* Layout */
    --container-width: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 100px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

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

.loader-logo {
    width: 100px;
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.loader-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    animation: fadeIn 1s ease forwards;
}

.spinner-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(197, 160, 89, 0.1);
    border-top: 3px solid var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 700;
    animation: pulse 2s infinite ease-in-out;
}

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

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

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* --- Header & Navigation --- */
header {
    height: var(--header-height);
    background: rgba(10, 47, 31, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.logo img {
    height: 80px;
    transition: var(--transition-smooth);
}



nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

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

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

/* --- Hero Section --- */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg, 
        rgba(10, 47, 31, 0.8) 0%, 
        rgba(10, 47, 31, 0.4) 50%, 
        transparent 100%
    );
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--bg-cream);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* --- Sections --- */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-title .divider {
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
    margin: 0 auto;
}

/* --- Buttons Extended --- */
.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
}
.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}
.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--primary-dark);
    color: var(--primary-dark);
}
.btn-outline-dark:hover {
    background: var(--primary-dark);
    color: var(--bg-cream);
}
.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* --- Section Utilities --- */
.section-dark {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-dark h2 {
    color: var(--accent-gold);
}

.signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-top: 30px;
    display: block;
    opacity: 0.9;
}

/* --- Elevated Founder Section --- */
.founder-story-v2 {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #051a11 100%);
    color: var(--text-light);
    position: relative;
}

.founder-story-v2::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('../../images/pattern-gold.png') repeat;
    opacity: 0.03;
    pointer-events: none;
}

.founder-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.founder-v2-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.comparison-card {
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 8px;
    background: rgba(197, 160, 89, 0.05);
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.comparison-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

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

.comparison-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(10, 47, 31, 0.85);
    backdrop-filter: blur(8px);
    color: var(--accent-gold);
    padding: 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

@media (max-width: 768px) {
    .comparison-card img {
        height: 300px;
    }
}

.founder-v2-small-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.img-label {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    background: rgba(10, 47, 31, 0.8);
    backdrop-filter: blur(5px);
    color: var(--accent-gold);
    font-size: 0.7rem;
    padding: 5px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
}

/* --- Formula Section --- */
.formula-section {
    padding: 120px 0;
    background-color: #fff;
}

.formula-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}

.formula-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    padding: 25px;
    background: var(--bg-cream);
    border-radius: 15px;
    border: 1px solid rgba(10, 47, 31, 0.05);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(10, 47, 31, 0.08);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.feature-item h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-item p {
    font-size: 0.85rem;
    color: #666;
}

@media (max-width: 992px) {
    .founder-v2-grid, .formula-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* --- Products Section --- */
.products-preview {
    background-color: var(--bg-cream);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    border: 1px solid rgba(197, 160, 89, 0.1);
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.product-img {
    position: relative;
    height: 250px;
    background: #f0f0f0;
    overflow: hidden;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.product-card:hover .product-img img {
    transform: scale(1.05);
}
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-dark);
    color: #fff;
    padding: 5px 12px;
    font-size: 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.product-badge.gold {
    background: var(--accent-gold);
    color: var(--primary-dark);
}
.product-info {
    padding: 25px;
    text-align: center;
}
.product-info h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}
.product-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    min-height: 45px;
}
.price {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

/* --- AI Estimator Section --- */
.estimator-section {
    background: var(--primary-dark);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.estimator-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}
.estimator-info {
    flex: 1;
}
.badge-chip {
    display: inline-block;
    background: rgba(197, 160, 89, 0.2);
    color: var(--accent-gold);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.estimator-info h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}
.estimator-info h2 em {
    color: var(--accent-gold);
    font-style: italic;
}
.estimator-info p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}
.estimator-features {
    margin-bottom: 40px;
}
.estimator-features li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
}
.estimator-features li i {
    color: var(--accent-gold);
    margin-right: 12px;
}
.estimator-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}
.ai-mockup {
    width: 300px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: relative;
}
.ai-screen {
    background: var(--primary-light);
    border-radius: 12px;
    overflow: hidden;
}
.ai-header {
    background: rgba(0,0,0,0.2);
    padding: 10px 15px;
    display: flex;
    gap: 6px;
}
.ai-header span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
}
.ai-body {
    padding: 30px 20px;
    text-align: center;
    position: relative;
}
.ai-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gold);
    box-shadow: 0 0 10px var(--accent-gold);
    animation: scan 2s infinite linear;
}
@keyframes scan {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}
.ai-text {
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 15px;
}
.ai-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(0,0,0,0.3);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 15px;
}
.ai-progress-fill {
    width: 60%;
    height: 100%;
    background: var(--accent-gold);
    animation: progress 2s infinite;
}
@keyframes progress {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* --- Testimonials Section --- */
.testimonials-section {
    background: #fff;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: var(--bg-cream);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}
.featured-testimonial {
    background: var(--primary-dark);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(10,47,31,0.2);
}
.stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.testimonial-card p {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}
.featured-testimonial p {
    color: rgba(255,255,255,0.9);
}
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-gold-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.client-info strong {
    display: block;
    font-size: 1rem;
    color: var(--primary-dark);
}
.featured-testimonial .client-info strong {
    color: #fff;
}
.client-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.featured-testimonial .client-info span {
    color: rgba(255,255,255,0.6);
}

/* --- Why Us Section --- */
.why-us {
    background: var(--bg-cream);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}
.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
}
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}
.feature-item h3 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}
.feature-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --- Floating Action Buttons (FAB) --- */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}
.fab-btn {
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}
.fab-btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.fab-estimator {
    background: var(--primary-dark);
    color: var(--accent-gold);
    padding: 15px 25px;
    font-size: 1rem;
}
.fab-chat {
    background: var(--accent-gold);
    color: var(--primary-dark);
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    align-self: flex-end;
}

/* --- Modals (Estimator & Chat) --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal {
    background: #fff;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: var(--transition-smooth);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    max-height: 90vh;
    overflow-y: auto;
}
.modal-overlay.active .modal {
    transform: translateY(0);
    opacity: 1;
}
.modal-close {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(0,0,0,0.05);
    border: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}
.modal-close:hover {
    background: var(--primary-dark);
    color: #fff;
}
.modal-header {
    text-align: center;
    margin-bottom: 30px;
}
.modal-header h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}
.modal-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.estimator-step {
    display: none;
}
.estimator-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Form Styles Inside Modal */
.upload-area {
    border: 2px dashed rgba(197, 160, 89, 0.5);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    background: var(--bg-cream);
    transition: var(--transition-smooth);
}
.upload-area:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--accent-gold);
}
.form-group {
    margin-bottom: 20px;
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-dark);
}
.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: #fff;
}
.form-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

/* Analyzing Animation */
.analyzing-animation {
    text-align: center;
    padding: 40px 0;
}
.scan-circle {
    width: 80px; height: 80px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--accent-gold);
    border-bottom-color: var(--primary-dark);
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}
.analyzing-text {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

/* Chat Modal Variations */
.chat-modal-inner {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 400px;
    height: 500px;
}
.chat-header {
    background: var(--primary-dark);
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 20px 20px 0 0;
}
.chat-avatar {
    width: 40px; height: 40px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.chat-messages {
    flex: 1;
    padding: 20px;
    background: var(--bg-cream);
    overflow-y: auto;
}
.chat-bubble {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.4;
}
.chat-bubble.bot {
    background: #fff;
    color: var(--text-dark);
    border-bottom-left-radius: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.chat-bubble.user {
    background: var(--primary-dark);
    color: #fff;
    margin-left: auto;
    border-bottom-right-radius: 0;
}
.chat-input-area {
    padding: 15px;
    background: #fff;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

/* --- Mobile Menu --- */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--accent-gold);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1100;
    transition: var(--transition-smooth);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }

    nav {
        display: flex !important;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 47, 31, 0.98);
        backdrop-filter: blur(15px);
        z-index: 1050;
        align-items: center;
        justify-content: center;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        visibility: hidden;
    }

    body.mobile-nav-active nav {
        left: 0;
        opacity: 1;
        visibility: visible;
    }

    body.mobile-nav-active {
        overflow: hidden;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    nav ul li a {
        font-size: 1.5rem;
        font-weight: 600;
        color: #fff;
    }

    .header-actions {
        display: none;
    }

    .hero h1, h1, h2, .section-title h2 {
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
    }
    
    h3 {
        font-size: 1.5rem !important;
    }

    .estimator-inner {
        flex-direction: column;
        text-align: center;
    }

    .ai-mockup {
        width: 100%;
        max-width: 280px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-links ul {
        align-items: center;
    }

    .logo img {
        height: 60px;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .fab-container {
        bottom: 20px;
        right: 20px;
    }
    
    .fab-estimator {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
