body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

#inicio {
    position: relative;
    background-image: linear-gradient(rgba(0, 45, 84, 0.6), rgba(0, 45, 84, 0.6)), url('../img/bannerhero.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.nav-link { 
    position: relative;
    transition: color 0.3s;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2e9b00;
    transition: width 0.3s;
}
.nav-link.active, .nav-link:hover {
    color: #2e9b00;
}
.nav-link.active::after, .nav-link:hover::after {
    width: 100%;
}
.tab-btn.active {
    background-color: #2e9b00;
    color: white;
    border-color: #2e9b00;
}
.feature-card {
    background-color: white;
    border-left: 4px solid #2e9b00;
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.chart-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    height: 400px;
    max-height: 50vh;
}
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: box-shadow 0.3s;
}

.lada-item {
    padding: 8px 12px;
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.lada-item:hover {
    background-color: #002d54;
    color: white;
    border-color: #002d54;
    transform: scale(1.05);
} 

/* --- ESTILOS LANDING PAGE PLAN INICIAL --- */
:root {
    --primary-green: #2e9b00;
    --primary-blue: #002d54;
    --accent-orange: #FF6B35;
    --text-dark: #002d54;
    --text-light: #6b7280;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --success: #2e9b00;
    --error: #ef4444;
}

/* Progress Bar */
.progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    background-color: var(--bg-light);
    margin-top: 80px;
}
.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}
.progress-step i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
}
.progress-step.active i {
    background-color: var(--primary-green);
    color: white;
}
.progress-step.completed i {
    background-color: var(--success);
    color: white;
}
.progress-line {
    width: 60px;
    height: 2px;
    background-color: #e5e7eb;
    margin: 0 1rem;
}
.progress-step.completed + .progress-line {
    background-color: var(--success);
}

/* Form Styles */
.form-basico, .form-detallado {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: white;
}
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.form-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-group label {
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.form-group select option {
    background-color: var(--primary-blue);
    color: white;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.checkbox-item:hover {
    background: rgba(255, 255, 255, 0.1);
}
.checkbox-item.checked {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--accent-orange);
}
.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-orange);
}
.checkbox-item span {
    color: white;
    font-size: 0.9rem;
}
.form-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}
.benefit-item i {
    color: var(--accent-orange);
}
/* Thank You Page Styles */
.thank-you {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: white;
}
.thank-you-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.success-animation {
    margin-bottom: 2rem;
}
.success-animation i {
    font-size: 4rem;
    color: var(--success);
    animation: bounce 1s ease-in-out;
}
.success-animation.animate i {
    animation: checkmark 0.6s ease-in-out;
}
@keyframes checkmark {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
.thank-you-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}
.thank-you-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}
.next-steps {
    margin: 3rem 0;
}
.next-steps h2 {
    color: white;
    margin-bottom: 2rem;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.step-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.step-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.step-icon i {
    font-size: 1.5rem;
    color: white;
}
.step-item h3 {
    color: white;
    margin-bottom: 1rem;
}
.step-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}
.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.contact-info-card h3 {
    color: white;
    margin-bottom: 1rem;
}
.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.contact-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.additional-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.info-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.info-card i {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}
.info-card h4 {
    color: white;
    margin-bottom: 0.5rem;
}
.info-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}
/* Related Content Section */
.related-content {
    padding: 80px 0;
    background-color: var(--bg-light);
}
.related-content h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.content-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}
.content-card:hover {
    transform: translateY(-5px);
}
.content-card i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}
.content-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.content-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}
/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: white;
}
.contact-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}
.contact-item i {
    font-size: 2rem;
    color: var(--primary-green);
}
.contact-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.contact-item p {
    color: var(--text-light);
    margin: 0;
}
/* Button Overrides for Landing Page */
.btn-primary {
    background-color: var(--accent-orange);
    color: white;
    box-shadow: 0 4px 6px rgba(255, 107, 53, 0.25);
}
.btn-primary:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 107, 53, 0.35);
}
.btn-secondary {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}
.btn-secondary:hover {
    background-color: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}
/* Hero Section Updates */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    color: white;
}
.hero-title {
    color: white;
}
.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}
.highlight {
    color: var(--accent-orange);
}
.hero-savings {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-savings i {
    color: var(--accent-orange);
}
.social-proof {
    color: rgba(255, 255, 255, 0.8);
}
.social-proof i {
    color: var(--accent-orange);
}
/* Pricing Section Updates */
.pricing-header {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
}
.recommended-badge {
    background-color: var(--accent-orange);
}
.savings {
    color: var(--primary-green);
}
.features-included i {
    color: var(--primary-green);
}
/* Feature Cards Updates */
.feature-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
}
/* Problem Items Updates */
.problem-item i {
    color: var(--accent-orange);
}
/* Section Titles */
.section-title {
    color: var(--text-dark);
}
/* FAQ Updates */
.faq-question h3 {
    color: var(--text-dark);
}
.faq-question i {
    color: var(--text-light);
}
/* Testimonial Updates */
.testimonial-card {
    border-left: 4px solid var(--primary-green);
}
/* Trust Items */
.trust-item i {
    color: var(--primary-green);
}
/* Final CTA Updates */
.final-cta {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
}
.final-cta .btn-secondary {
    color: white;
    border-color: white;
}
.final-cta .btn-secondary:hover {
    background-color: white;
    color: var(--primary-green);
}
/* Responsive Design */
@media (max-width: 768px) {
    .form-container {
        margin: 0 1rem;
        padding: 2rem;
    }
    .form-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    .benefit-item {
        justify-content: center;
    }
    .progress-bar {
        padding: 1rem 0;
    }
    .progress-step {
        font-size: 0.8rem;
    }
    .progress-line {
        width: 30px;
    }
    .thank-you-title {
        font-size: 2rem;
    }
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .content-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* Animation for form submission */
.form-submitting {
    opacity: 0.7;
    pointer-events: none;
}
.form-submitting::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--accent-orange);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Success/Error Messages */
.message {
  display: block;
  margin: 0.5em 0 1em 0;
  padding: 0.9em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.2s;
}
.success {
  background: linear-gradient(90deg, #2e9b00 60%, #90ee90 100%);
  color: #fff;
  border: 1.5px solid #2e9b00;
}
.error {
  background: linear-gradient(90deg, #FF6B35 60%, #ffb199 100%);
  color: #fff;
  border: 1.5px solid #FF6B35;
}
.btn, .btn-primary, .btn-large {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.btn-primary, .btn-large {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
  color: #fff;
  border: none;
}
.btn-primary:hover, .btn-large:hover {
  background: linear-gradient(135deg, #257a00 0%, #002d54 100%);
  color: #fff;
}
/* Fade in animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/* --- FIN ESTILOS LANDING PAGE PLAN INICIAL --- */ 

/* Ajustes visuales para landing ultra vendedora */
.header .logo {
    max-height: 54px;
    margin: 12px 0 12px 0;
}
.header {
    padding-bottom: 0.5rem;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.nav-link, .btn {
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.btn {
    padding: 0.7em 1.5em;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: inline-block;
    margin: 0 0.2em;
}
.btn-primary {
    background: var(--accent-orange);
    color: #fff;
    border: none;
}
.btn-primary:hover {
    background: #e55a2b;
}
.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}
.btn-secondary:hover {
    background: var(--primary-green);
    color: #fff;
}
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    color: #fff;
    padding: 64px 0 48px 0;
    min-height: 420px;
    display: flex;
    align-items: center;
}
.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}
.hero-text {
    flex: 1 1 350px;
    min-width: 300px;
    padding-right: 2rem;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #e0fbe0;
}
.hero-savings {
    background: rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 0.5em 1em;
    margin-bottom: 1em;
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-weight: 600;
    color: #fff;
}
.hero-cta {
    margin-bottom: 1.2em;
}
.social-proof {
    font-size: 1rem;
    color: #e0fbe0;
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.hero-image {
    flex: 1 1 250px;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-illustration .device i {
    font-size: 2.5rem;
    color: #fff;
    margin: 0 0.5em;
}
.problem-solution {
    background: #fff;
    padding: 56px 0 32px 0;
}
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}
.problems-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
}
.problem-item {
    flex: 1 1 200px;
    min-width: 180px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.2em 1em;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.problem-item i {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 0.5em;
}
.problem-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3em;
    color: var(--primary-blue);
}
.problem-item p {
    color: var(--text-light);
    font-size: 1rem;
}
.solution-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--primary-green);
    margin-top: 1.5em;
    font-weight: 600;
}
@media (max-width: 900px) {
    .hero-content { flex-direction: column; }
    .hero-text { padding-right: 0; }
    .problems-grid { flex-direction: column; gap: 1.5rem; }
}
/* Mejorar separación entre secciones */
.features, .pricing, .testimonials, .form-basico, .trust, .footer {
    margin-top: 48px;
}
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.feature-card {
    background: #fff;
    border-left: 4px solid var(--primary-green);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    padding: 1.5em 1em;
    min-width: 180px;
    flex: 1 1 220px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 20px -5px rgba(46,155,0,0.10);
}
.feature-icon i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 0.5em;
}
.pricing {
    background: #f8f9fa;
    padding: 48px 0 32px 0;
}
.pricing-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2em 1.5em;
    max-width: 600px;
    margin: 0 auto;
}
.pricing-header h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-weight: 700;
}
.pricing-header p {
    color: var(--text-light);
    margin-bottom: 1em;
}
.pricing-options {
    display: flex;
    gap: 2em;
    margin-bottom: 1em;
    flex-wrap: wrap;
}
.pricing-option {
    background: #f3f4f6;
    border-radius: 8px;
    padding: 1em 1.5em;
    text-align: center;
    min-width: 140px;
}
.pricing-option.recommended {
    border: 2px solid var(--accent-orange);
    background: #fff7f2;
    position: relative;
}
.recommended-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: #fff;
    font-size: 0.9em;
    padding: 0.2em 0.8em;
    border-radius: 6px;
    font-weight: 700;
}
.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}
.savings {
    color: var(--primary-green);
    font-weight: 600;
    margin-top: 0.5em;
}
.features-included {
    margin: 1.5em 0;
}
.features-included h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 0.5em;
}
.features-included ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.features-included li {
    margin-bottom: 0.4em;
    color: var(--text-dark);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.features-included i {
    color: var(--primary-green);
}
.pricing-cta {
    text-align: center;
    margin: 1.5em 0 0.5em 0;
}
.scalability-note {
    text-align: center;
    color: var(--primary-blue);
    font-size: 0.95em;
    margin-top: 0.5em;
}
.testimonials {
    background: #fff;
    padding: 48px 0 32px 0;
}
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.testimonial-card {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-green);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    padding: 1.5em 1em;
    min-width: 220px;
    flex: 1 1 300px;
    text-align: left;
}
.testimonial-content {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 0.7em;
}
.testimonial-author strong {
    color: var(--primary-green);
}
.form-basico {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    color: #fff;
    padding: 56px 0 32px 0;
}
.form-container {
    max-width: 420px;
    margin: 0 auto;
    background: rgba(255,255,255,0.10);
    border-radius: 16px;
    padding: 2.5em 1.5em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.form-subtitle {
    text-align: center;
    margin-bottom: 1.5em;
    font-size: 1.1rem;
    opacity: 0.95;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
}
.form-group label {
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
}
.form-group input {
    padding: 12px 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    background: rgba(255,255,255,0.13);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
}
.form-group input:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: rgba(255,255,255,0.18);
}
.btn-large {
    font-size: 1.1rem;
    padding: 0.9em 2em;
}
.form-benefits {
    display: flex;
    justify-content: center;
    gap: 1.5em;
    margin-top: 1.5em;
    flex-wrap: wrap;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 0.95rem;
    opacity: 0.9;
}
.benefit-item i {
    color: var(--accent-orange);
}
.trust {
    background: #fff;
    padding: 48px 0 32px 0;
}
.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.trust-item {
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    padding: 1.5em 1em;
    min-width: 180px;
    flex: 1 1 220px;
    text-align: center;
}
.trust-item i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 0.5em;
}
.trust-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3em;
    color: var(--primary-blue);
}
.trust-item p {
    color: var(--text-light);
    font-size: 1rem;
}
.footer {
    background: #002d54;
    color: #fff;
    padding: 32px 0 0 0;
    margin-top: 0;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5em;
}
.footer-brand .logo {
    max-height: 40px;
    margin-bottom: 0.5em;
}
.footer-links {
    display: flex;
    gap: 2.5em;
}
.footer-column h4 {
    color: var(--accent-orange);
    font-size: 1.1rem;
    margin-bottom: 0.5em;
}
.footer-column a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 0.3em;
    font-size: 0.98rem;
    opacity: 0.85;
    transition: color 0.2s;
}
.footer-column a:hover {
    color: var(--accent-orange);
    opacity: 1;
}
.footer-bottom {
    text-align: center;
    padding: 1em 0 0.5em 0;
    font-size: 0.95rem;
    color: #e0fbe0;
}
@media (max-width: 700px) {
    .footer-content { flex-direction: column; gap: 1.5em; }
    .footer-links { flex-direction: column; gap: 1em; }
} 