:root {
    /* Color Palette */
    --primary: #0056b3;
    --primary-light: #4d94ff;
    --primary-dark: #003d82;
    --accent: #25d366; /* WhatsApp Green */
    --accent-gold: #c5a059; /* Elegant Gold */
    --text-main: #2d3748;
    --text-muted: #526071; /* Optimized for WCAG contrast */
    --bg-main: #ffffff;
    --bg-light: #f7fafc;
    --bg-soft-blue: #ebf8ff;
    --bg-dark-hero: #0f172a;
    --white: #ffffff;
    --border: #e2e8f0;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    /* Effects */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Base */
h1, h2 { font-family: var(--font-serif); color: var(--text-main); font-weight: 700; line-height: 1.2; }
h3, h4 { font-family: var(--font-sans); color: var(--text-main); font-weight: 700; line-height: 1.2; }
p { margin-bottom: 1rem; color: var(--text-muted); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 28px; font-weight: 600; font-size: 1rem;
    border-radius: var(--radius-full); text-decoration: none;
    transition: var(--transition); cursor: pointer; border: none;
}
.btn-primary {
    background-color: var(--primary); color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(0, 86, 179, 0.39);
}
.btn-primary:hover {
    background-color: var(--primary-dark); transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
}
.btn-outline {
    background-color: transparent; color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background-color: var(--primary); color: var(--white);
}

/* --- Header --- */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    padding: 16px 0;
}
.header-container {
    display: flex; justify-content: space-between; align-items: center;
}
.logo a {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; color: var(--primary); font-size: 1.25rem; font-weight: 700;
}
.logo img { height: 40px; width: auto; }

.main-nav ul {
    list-style: none; display: flex; gap: 32px; align-items: center;
}
.main-nav a {
    text-decoration: none; color: var(--text-main); font-weight: 500;
    font-size: 1rem; transition: var(--transition); position: relative;
}
.main-nav a::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: -4px; left: 0; background-color: var(--primary); transition: var(--transition);
}
.main-nav a:hover { color: var(--primary); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--primary); }

.lang-selector {
    display: flex; align-items: center; gap: 8px; font-weight: 500; color: var(--border);
}
.lang-selector a {
    text-decoration: none; color: var(--text-muted); transition: var(--transition);
}
.lang-selector a:hover, .lang-selector a.active { color: var(--primary); }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
    margin-right: 16px;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 100px 0 140px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 85vh;
    color: var(--white);
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0; opacity: 0.2;
    filter: grayscale(100%) brightness(50%);
}
.hero::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 86, 179, 0.15) 0%, transparent 50%);
    z-index: 1;
}
.hero .container { position: relative; z-index: 2; display: flex; align-items: center; gap: 60px; }
.hero-content { 
    flex: 1; 
    max-width: 650px; 
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-motto {
    font-family: var(--font-serif);
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    margin-bottom: 24px;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
}
.hero-motto::after {
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    height: 2px; 
    background-color: var(--accent-gold);
}
.hero h1 {
    font-size: 3.8rem; letter-spacing: -0.01em; margin-bottom: 24px; color: var(--white);
}
.hero p {
    font-size: 1.2rem; margin-bottom: 40px; color: rgba(255, 255, 255, 0.8); line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; align-items: center; }

.hero-image {
    flex: 1;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(0,0,0,0.5);
    transform: perspective(1000px) rotateY(-8deg) translateY(20px);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-image:hover { transform: perspective(1000px) rotateY(0deg) translateY(0); }

/* --- Benefits Section --- */
.benefits {
    padding: 60px 0;
    background-color: var(--white);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}
.benefits-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px; background: var(--white); padding: 40px;
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.benefit-card {
    text-align: center; padding: 20px; transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-5px); }
.benefit-icon {
    width: 60px; height: 60px; background-color: var(--bg-soft-blue);
    color: var(--primary); display: flex; align-items: center; justify-content: center;
    border-radius: 50%; margin: 0 auto 20px; font-size: 1.5rem; font-weight: bold;
}
.benefit-card h2 { font-size: 1.1rem; margin-bottom: 10px; color: var(--primary-dark); }
.benefit-card p { font-size: 0.9rem; margin-bottom: 0; }

/* --- Services Section --- */
.services { padding: 100px 0; background-color: var(--bg-light); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 16px; color: var(--primary-dark); }
.section-header p { font-size: 1.1rem; }

.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px;
}
.service-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 40px;
    box-shadow: var(--shadow-md); transition: var(--transition);
    border: 1px solid var(--border); display: flex; flex-direction: column;
}
.service-card:hover {
    transform: translateY(-10px); box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}
.service-card h3 { font-size: 1.5rem; margin-bottom: 16px; color: var(--primary); }
.service-card p { flex-grow: 1; margin-bottom: 24px; }
.service-card .link {
    color: var(--primary); text-decoration: none; font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px; transition: var(--transition);
}
.service-card .link:hover { gap: 12px; }

/* --- Consulting Section --- */
.consulting {
    padding: 100px 0; background-color: var(--primary-dark); color: var(--white);
    position: relative; overflow: hidden;
}
.consulting .container { display: flex; align-items: center; gap: 60px; position: relative; z-index: 2; }
.consulting-content { flex: 1; }
.consulting h2, .consulting p { color: var(--white); }
.consulting h2 { font-size: 2.5rem; margin-bottom: 20px; }
.consulting p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 30px; }
.consulting-image {
    flex: 1; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-hover);
}

/* --- Work Process Section --- */
.process { padding: 100px 0; background-color: var(--white); }
.process-steps {
    display: flex; justify-content: space-between; gap: 20px; margin-top: 60px;
    position: relative;
}
.process-step { flex: 1; text-align: center; position: relative; }
.step-number {
    width: 50px; height: 50px; background-color: var(--primary); color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 700; margin: 0 auto 20px; z-index: 2; position: relative;
    box-shadow: 0 0 0 8px var(--white);
}
.process-step h3 { font-size: 1.2rem; margin-bottom: 12px; }

/* --- FAQ Section --- */
.faq { padding: 100px 0; background-color: var(--bg-light); }
.faq-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.faq-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 36px;
    box-shadow: var(--shadow-md); border: 1px solid var(--border);
    transition: var(--transition);
}
.faq-card:hover {
    transform: translateY(-5px); box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}
.faq-card h3 {
    font-size: 1.1rem; margin-bottom: 14px; color: var(--primary-dark);
    padding-bottom: 12px; border-bottom: 2px solid var(--border);
}
.faq-card p { font-size: 0.95rem; margin-bottom: 0; line-height: 1.7; }

/* --- Financing CTA --- */
.financing-cta {
    padding: 80px 0; background: linear-gradient(135deg, var(--bg-soft-blue) 0%, var(--bg-light) 100%);
    text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.financing-cta h2 { font-size: 2.5rem; margin-bottom: 20px; color: var(--primary-dark); }
.financing-cta p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 30px; }

/* --- Footer --- */
.main-footer {
    background-color: #1a202c; color: var(--white); padding: 80px 0 30px;
}
.footer-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 60px;
}
.footer-info h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 20px; }
.footer-info p, .footer-contact p { color: #a0aec0; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid #2d3748; color: #718096; }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; background-color: var(--accent);
    color: var(--white); padding: 14px 24px; border-radius: var(--radius-full);
    text-decoration: none; font-weight: 600; display: flex; align-items: center; gap: 10px;
    box-shadow: var(--shadow-lg); transition: var(--transition); z-index: 1000;
}
.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05); box-shadow: var(--shadow-hover);
}
.whatsapp-float svg { width: 24px; height: 24px; fill: currentColor; }

/* --- Service Details Page --- */
.page-header {
    padding: 80px 0 40px; background-color: var(--bg-light); text-align: center;
}
.page-header h1 { font-size: 3rem; color: var(--primary-dark); margin-bottom: 20px; }
.page-header p { font-size: 1.2rem; max-width: 800px; margin: 0 auto; }

.service-detail-section {
    padding: 80px 0; background-color: var(--white);
}
.service-detail-section:nth-child(even) {
    background-color: var(--bg-soft-blue);
}
.service-content {
    display: flex; align-items: center; gap: 60px;
}
.service-content.reverse {
    flex-direction: row-reverse;
}
.service-text { flex: 1; }
.service-text h2 { font-size: 2.2rem; color: var(--primary); margin-bottom: 20px; }
.service-text h3 { font-size: 1.5rem; margin-top: 30px; margin-bottom: 15px; color: var(--text-main); }
.service-text ul { list-style-type: none; margin-bottom: 20px; }
.service-text ul li { position: relative; padding-left: 25px; margin-bottom: 10px; }
.service-text ul li::before {
    content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: bold;
}
.service-image {
    flex: 1; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container, .consulting .container, .service-content, .service-content.reverse { flex-direction: column; text-align: center; }
    .hero-content, .consulting-content, .service-text { max-width: 100%; }
    .hero-ctas { justify-content: center; }
    .hero h1 { font-size: 2.8rem; }
    .process-steps { flex-direction: column; gap: 40px; }
    .service-text ul li { text-align: left; }
}
@media (max-width: 768px) {
    .mobile-menu-btn { display: block; }
    
    .header-container { flex-wrap: wrap; }
    
    .main-nav {
        display: none;
        width: 100%;
        padding: 20px 0;
        border-top: 1px solid var(--border);
        margin-top: 16px;
        min-height: 160px;
    }
    .main-nav.active {
        display: block;
    }
    .main-nav ul { 
        flex-direction: column; 
        gap: 16px; 
        align-items: flex-start;
    }
    .main-nav a {
        display: block;
        width: 100%;
        padding: 8px 0;
    }
    
    .lang-selector {
        margin-left: 0;
    }
    
    .hero { padding: 80px 0 100px; }
    .hero h1 { font-size: 2.2rem; }
    .page-header h1 { font-size: 2.2rem; }
}

/* ============================================================
   NUEVOS ESTILOS — Fase 4: Reflexiones (Home + Servicios + Financiación + Contacto)
   ============================================================ */

/* Badge "Financiable" */
.badge-financiable {
    display: inline-block;
    padding: 0.2em 0.6em;
    border-radius: 4px;
    background: var(--accent);
    color: #ffffff;
    font-size: 0.75em;
    font-weight: 700;
    vertical-align: middle;
    margin-left: 0.5em;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Hero context text */
.hero-context {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Hero financing note */
.hero-financing-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    margin-bottom: 0;
    font-style: italic;
}

/* About mini section */
.about-mini {
    padding: 80px 0;
    text-align: center;
    background-color: var(--bg-light);
}
.about-mini h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}
.about-mini p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}
.about-mini .btn {
    margin-top: 1.5rem;
}

/* Service financing note */
.service-financing-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-light);
}

/* Page header highlight */
.page-header-highlight {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Comparison table */
.comparison-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.comparison-table thead {
    background-color: var(--primary);
    color: var(--white);
}
.comparison-table th {
    padding: 1.25rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}
.comparison-table td {
    padding: 1.25rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}
.comparison-table td:first-child {
    font-weight: 600;
    text-align: left;
    color: var(--text-main);
}
.comparison-table tbody tr:hover {
    background-color: var(--bg-soft-blue);
}
.check, .partial, .no-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.95rem;
}
.check { color: var(--accent); }
.partial { color: #f0ad4e; }
.no-check { color: var(--text-muted); font-weight: 400; }

/* Combo cards */
.combos-section {
    padding: 80px 0;
    background-color: var(--white);
}
.combo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.combo-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.combo-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.combo-icon {
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.combo-card h3 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}
.combo-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.combo-card ul li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.combo-card ul li svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Services closing */
.services-closing {
    padding: 80px 0;
    background-color: var(--bg-soft-blue);
    text-align: center;
}
.services-closing h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}
.services-closing p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ========== FINANCIACIÓN ========== */
.financing-what {
    padding: 60px 0;
    background-color: var(--white);
}
.financing-what h2 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}
.financing-list {
    list-style: none;
    padding: 0;
    max-width: 400px;
    margin: 0 auto;
}
.financing-list li {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    color: var(--text-main);
}
.financing-list svg {
    color: var(--accent);
    vertical-align: middle;
    margin-right: 8px;
    margin-bottom: 2px;
}

.financing-how {
    padding: 80px 0;
    background-color: var(--bg-light);
}
.financing-how h2 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 3rem;
}
.financing-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}
.financing-step {
    flex: 1;
    text-align: center;
}
.financing-step .step-number {
    margin-bottom: 1rem;
}
.financing-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.financing-faq {
    padding: 80px 0;
    background-color: var(--white);
}
.financing-faq h2 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}
.financing-faq dl {
    max-width: 800px;
    margin: 0 auto;
}
.financing-faq dt {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-main);
    margin-top: 1.5rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid var(--border);
}
.financing-faq dd {
    margin-left: 0;
    margin-top: 0.5rem;
    padding-bottom: 1rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.financing-cta {
    padding: 80px 0;
    background-color: var(--bg-soft-blue);
    text-align: center;
}
.financing-cta h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}
.financing-cta p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}
.financing-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== CONTACTO ========== */
.contact-ways {
    padding: 80px 0;
    background-color: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.contact-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.contact-item:hover {
    box-shadow: var(--shadow-md);
}
.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}
.contact-item p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.contact-item .btn {
    width: 100%;
}

.contact-expectation {
    padding: 40px 0;
    background-color: var(--bg-light);
    text-align: center;
}
.contact-expectation p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

.contact-form {
    padding: 80px 0;
    background-color: var(--white);
}
.contact-form h2 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}
.contact-form-field {
    max-width: 600px;
    margin: 0 auto;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}
.form-group .optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-sans);
    color: var(--text-main);
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.15);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success,
.form-error {
    max-width: 600px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
}
.form-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.form-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-info {
    padding: 60px 0;
    background-color: var(--bg-light);
}
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.contact-info h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}
.contact-financing-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.contact-financing-note a {
    color: var(--primary);
    font-weight: 600;
}

/* Responsive additions */
@media (max-width: 992px) {
    .financing-steps {
        flex-direction: column;
        gap: 2rem;
    }
    .comparison-table th,
    .comparison-table td {
        padding: 0.6rem 0.4rem;
        font-size: 0.85rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .hero-context {
        font-size: 0.9rem;
    }
    .comparison-table {
        font-size: 0.8rem;
    }
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem 0.3rem;
    }
}
