﻿/* ========================================
   MODERN RECONTRATO LANDING - UX/UI PROFESSIONAL
   ======================================== */

:root {
    /* Colors */
    --primary: #44C8F5;
    --primary-dark: #0177C1;
    --primary-light: #4DB8FF;
    --secondary: #00F52D;
    --accent: #FFB800;
    --dark: #0A1628;
    --dark-secondary: #1A2838;
    --gray-900: #1E293B;
    --gray-800: #334155;
    --gray-700: #475569;
    --gray-600: #64748B;
    --gray-500: #94A3B8;
    --gray-400: #CBD5E1;
    --gray-300: #E2E8F0;
    --gray-200: #F1F5F9;
    --gray-100: #F8FAFC;
    --white: #FFFFFF;

    /*estilos tigo*/
    --color-primary: #001EB4;
    --color-primary-bright: #44C8F5;
    --color-secondary: #0b2739;
    --color-dark-blue: #00005A;
    --color-yellow: #FFBE00;
    --color-text: #1f2937;
    --color-text-light: #64748b;
    --color-border: #e5e9f0;
    --color-bg-light: #f8fafc;
    
    /* Gray Scale */
    --color-gray-1: #f5f5f5;
    --color-gray-2: #d3d4d3;
    --color-gray-3: #b6b7b7;
    --color-gray-4: #86888c;
    --color-gray-5: #50535a;
    --color-gray-6: #313235;

    /* Footer Specific */
    --primary-white: #ffffff;
    --primary-blue: #001eb4;
    --gray-500: #50535a;
    --gray-400: #86888c;

    --font-main: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #44C8F5 0%, #4DB8FF 100%);
    --gradient-dark: linear-gradient(135deg, #0A1628 0%, #1A2838 100%);
    --gradient-light: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 8px 24px rgba(1, 157, 244, 0.25);
    
    /* Typography */
    --font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --section-padding-mobile: 60px;
    
    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   BASE STYLES
   ======================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background: var(--white);
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 0;
    transition: var(--transition-base);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 42px;
    transition: var(--transition-base);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.client-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--color-primary-bright);
    color: var(--white);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.btn-nav-cta {
    padding: 12px 28px;
    background: var(--dark);
    color: var(--white);
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-base);
}

.btn-nav-cta:hover {
    background: var(--gray-900);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--gradient-light);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(1, 157, 244, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(77, 184, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Mobile hero background */
@media (max-width: 768px) {
    .hero-bg-pattern {
        width: 100%;
        background: 
            radial-gradient(circle at 50% 20%, rgba(1, 157, 244, 0.06) 0%, transparent 40%),
            radial-gradient(circle at 50% 80%, rgba(77, 184, 255, 0.04) 0%, transparent 40%);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Mobile-specific hero content spacing */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 8px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: var(--color-accent-yellow-light);
    color: var(--color-accent-yellow);
    border-radius: 10px;
    border: 1px solid var(--color-accent-yellow);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent-yellow);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    /*font-weight: 800;*/
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.gradient-text {
    background: var(--color-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-800);
}

.feature-item i {
    color: var(--color-primary-bright);
    font-size: 20px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--color-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: var(--shadow-primary);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(1, 157, 244, 0.35);
    color: var(--white);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-300);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.visual-card {
    position: absolute;
    background: var(--white);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition-smooth);
    animation: float 6s ease-in-out infinite;
}

.visual-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.card-1 {
    top: 10%;
    left: 0;
    max-width: 280px;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    right: 10%;
    max-width: 260px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    left: 5%;
    max-width: 280px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon i {
    font-size: 28px;
    color: var(--white);
}

.card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.card-content p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

.hero-image-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.1;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: var(--gradient-dark);
    border-radius: 48px;
    padding: 20px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SECTION STYLES
   ======================================== */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--color-accent-yellow-light);
    color: var(--color-accent-yellow);
    border-radius: 10px;
    border: 1px solid var(--color-accent-yellow);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--gray-700);
    line-height: 1.7;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.benefits-section {
    padding: 30px;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.benefit-card-modern {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 24px;
    padding: 40px 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.benefit-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.benefit-card-modern:hover {
    border-color: var(--color-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

.benefit-icon-wrapper {
    position: relative;
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
}

.icon-bg {
    position: absolute;
    inset: 0;
    background: var(--color-primary-bright);
    border-radius: 20px;
    opacity: 0.1;
}

.benefit-icon-wrapper i {
    position: relative;
    font-size: 36px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.benefit-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.benefit-description {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 20px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-800);
    margin-bottom: 12px;
    font-weight: 500;
}

.benefit-list li i {
    color: var(--color-primary-bright);
    font-size: 18px;
    flex-shrink: 0;
}

/* ========================================
   PROCESS SECTION
   ======================================== */

.process-section {
    padding: 30px;
    background: var(--gray-100);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
    position: relative;
}

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

.step-number {
    width: 64px;
    height: 64px;
    background: var(--color-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    color: var(--gray-600);
    margin: 0;
}

.step-line {
    position: absolute;
    top: 32px;
    left: calc(50% + 32px);
    width: calc(100% - 32px);
    height: 3px;
    background: var(--color-primary-bright);
    opacity: 0.3;
    display: none;
}

.process-cta {
    text-align: center;
}

.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    background: var(--dark);
    color: var(--white);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 17px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.btn-secondary-large:hover {
    background: var(--gray-900);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-modern {
    padding: var(--section-padding) 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.cta-bg-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(1, 157, 244, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 184, 0, 0.15);
    color: var(--accent);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-features-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cta-feature i {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-light);
    flex-shrink: 0;
}

.cta-feature div {
    flex: 1;
}

.cta-feature strong {
    display: block;
    color: var(--white);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cta-feature span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.cta-action-box {
    background: var(--white);
    border-radius: 32px;
    padding: 48px 40px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    position: relative;
    z-index: 2;
}

.action-icon {
    width: 80px;
    height: 80px;
    background: var(--color-primary-bright);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-primary);
}

.action-icon i {
    font-size: 36px;
    color: var(--white);
}

.cta-action-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.cta-action-box p {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.btn-action-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--color-primary-bright);
    color: var(--white);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: var(--shadow-primary);
    transition: var(--transition-base);
}

.btn-action-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(1, 157, 244, 0.35);
    color: var(--white);
}

/* ========================================
   FORM SECTION
   ======================================== */

.form-section {
    padding-top: 10px !important;
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.form-wrapper {
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.form-info-side {
    background: var(--color-dark-blue);
    color: var(--white);
    padding: 56px 40px;
    display: flex;
    align-items: center;
}

.form-info-content {
    width: 100%;
}

.form-info-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    margin-top: 12px;
}

.form-info-icon i {
    font-size: 40px;
    color: var(--color-primary-bright);
}

.form-info-content h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.form-info-content > p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    /*margin-bottom: 40px;*/
}

.info-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 20px;
}

.info-stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 800;
}

.stat-number i {
    font-size: 24px;
    color: var(--color-primary-bright);
}

.stat-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
}

.info-feature i {
    font-size: 20px;
    color: var(--primary-light);
}

.form-input-side {
    padding: 56px 48px;
}

.form-control-modern,
.form-select {
    border: 2px solid var(--gray-300);
    border-radius: 16px;
    padding: 16px 20px;
    font-size: 16px;
    transition: var(--transition-base);
    background: var(--white);
    min-height: 58px;
}

.form-floating > .form-control-modern,
.form-floating > .form-select {
    padding-top: 24px;
    padding-bottom: 8px;
}

.form-floating > label {
    padding: 16px 20px;
    color: var(--gray-600);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-floating > label i {
    color: var(--primary);
    font-size: 18px;
}

.form-control-modern:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(1, 157, 244, 0.10);
    outline: none;
}

.form-hint {
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 8px;
    padding-left: 20px;
}

.form-control-modern.is-invalid,
.form-select.is-invalid {
    border-color: #DC2626;
}

.form-control-modern.is-valid,
.form-select.is-valid {
    border-color: var(--secondary);
}

.invalid-feedback,
.valid-feedback {
    display: none;
    font-size: 13px;
    margin-top: 6px;
    padding-left: 4px;
    font-weight: 500;
}

.invalid-feedback {
    color: #DC2626;
}

.valid-feedback {
    color: var(--secondary);
}

/* Show feedback when parent .mb-3 contains invalid/valid input */
.mb-3:has(.is-invalid) > .invalid-feedback {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mb-3:has(.is-valid) > .valid-feedback {
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-check-modern {
    padding-left: 0;
}

.form-check-modern .form-check-input {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-400);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-base);
    flex-shrink: 0;
    margin: 0;
}

.form-check-modern .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-modern .form-check-label {
    font-size: 14px;
    color: var(--gray-700);
    cursor: pointer;
    line-height: 1.5;
}

.form-check-modern .form-check-label a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.form-check-modern .form-check-label a:hover {
    text-decoration: underline;
}

.btn-submit-modern {
    width: 100%;
    padding: 18px;
    background: var(--color-primary-bright);
    color: var(--white);
    border: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
}

.btn-submit-modern .btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-modern .btn-loading {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--color-primary-bright);
}

.btn-submit-modern.loading .btn-content {
    opacity: 0;
}

.btn-submit-modern.loading .btn-loading {
    display: flex;
}

.btn-submit-modern:hover:not(.loading) {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(1, 157, 244, 0.35);
}

.alert-modern {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 16px;
    margin-top: 24px;
    animation: slideDown 0.4s ease;
}

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

.alert-success-modern {
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    border: 2px solid #10B981;
}

.alert-error-modern {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    border: 2px solid #EF4444;
}

.alert-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alert-success-modern .alert-icon {
    background: #10B981;
}

.alert-error-modern .alert-icon {
    background: #EF4444;
}

.alert-icon i {
    font-size: 24px;
    color: var(--white);
}

.alert-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.alert-success-modern .alert-content h4 {
    color: #065F46;
}

.alert-error-modern .alert-content h4 {
    color: #991B1B;
}

.alert-content p {
    font-size: 15px;
    margin: 0;
}

.alert-success-modern .alert-content p {
    color: #047857;
}

.alert-error-modern .alert-content p {
    color: #B91C1C;
}

/* Form Bottom Features */
.form-bottom-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-300);
    flex-wrap: wrap;
}

.bottom-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

.bottom-feature-item i {
    font-size: 18px;
    color: var(--primary);
}

/* ========================================
   TRUST SECTION
   ======================================== */

.trust-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px;
    background: var(--gray-100);
    border-radius: 20px;
    transition: var(--transition-base);
}

.trust-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.trust-icon-box {
    width: 64px;
    height: 64px;
    background: var(--color-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-color-primary);
}

.trust-icon-box i {
    font-size: 32px;
    color: var(--white);
}

.trust-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.trust-content p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }
    
    .nav-actions {
        gap: 12px;
    }
    
    .client-badge {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .client-badge span {
        display: none;
    }
    
    .btn-nav-cta {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* Hero Mobile Optimizations */
    .hero-modern {
        min-height: auto;
        padding: 100px 0 0px;
    }
    
    .hero-modern .row {
        min-height: auto !important;
    }
    
    .hero-badge {
        font-size: 13px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .hero-features {
        gap: 12px;
        margin-bottom: 32px;
    }
    
    .feature-item {
        font-size: 14px;
        width: 100%;
    }
    
    .feature-item i {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .btn-hero-primary {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
        font-size: 15px;
    }
    
    .hero-stats {
        width: 100%;
        justify-content: space-around;
        background: var(--white);
        padding: 20px;
        border-radius: 16px;
        box-shadow: var(--shadow-sm);
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .stat-divider {
        height: 40px;
    }
    
    /* Hide visual cards on mobile */
    .hero-visual {
        display: none;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .form-info-side {
        padding: 0px 24px;
    }
    
    .form-input-side {
        padding: 40px 24px;
    }
    
    .cta-features-row {
        gap: 16px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .form-bottom-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575px) {
    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .badge-dot {
        width: 6px;
        height: 6px;
    }
    
    .hero-title {
        font-size: 1.9rem;
        line-height: 1.15;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .feature-item {
        font-size: 13px;
    }
    
    .feature-item i {
        font-size: 16px;
    }
    
    .hero-stats {
        padding: 16px;
        gap: 16px;
    }
    
    .stat-value {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .stat-divider {
        height: 35px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .benefit-card-modern {
        padding: 28px 24px;
    }
    
    .benefit-title {
        font-size: 20px;
    }
    
    .benefit-description {
        font-size: 15px;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 16px;
    }
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

.smooth-scroll {
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #0177C1 0%, #44C8F5 50%, #4DB8FF 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,150 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.05)"/></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.min-vh-75 {
    min-height: 75vh;
}

.text-primary-light {
    color: var(--primary-light) !important;
}

.feature-badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
}

/* Hero Card */
.hero-card {
    position: relative;
}

.card-gradient {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 2rem;
    opacity: 0.3;
    filter: blur(40px);
    z-index: 0;
}

.hero-card .card {
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2) !important;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(1,157,244,0.4);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(1,157,244,0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1,157,244,0.6);
}

.btn-light {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: var(--light-gray);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.pulse-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255,255,255,0);
    }
}

/* Benefits Section */
.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(1,157,244,0.3);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(1,157,244,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.text-white-50 {
    color: rgba(255,255,255,0.7) !important;
}

/* Form Section */
.icon-wrapper-lg {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(1,157,244,0.4);
}

.form-control, .form-select {
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(1,157,244,0.15);
}

.form-control.is-invalid, .form-select.is-invalid {
    border-color: var(--danger-color);
}

.form-control.is-valid, .form-select.is-valid {
    border-color: var(--success-color);
}

.form-label {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-check-input {
    width: 1.3rem;
    height: 1.3rem;
    border: 2px solid #E0E0E0;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    cursor: pointer;
    padding-left: 0.5rem;
}

#submitBtn {
    position: relative;
    overflow: hidden;
}

#submitBtn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

#submitBtn:hover::after {
    width: 300px;
    height: 300px;
}

#submitBtn.loading {
    pointer-events: none;
    opacity: 0.8;
}

#submitBtn.loading .btn-text {
    opacity: 0;
}

#submitBtn.loading .spinner-border {
    display: inline-block !important;
}

/* Trust Section */
.trust-icon {
    display: inline-block;
    width: 90px;
    height: 90px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.trust-icon:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(1,157,244,0.3);
}

.trust-icon:hover i {
    color: white !important;
}

/* Alerts */
.alert {
    border: none;
    border-radius: 12px;
    animation: slideDown 0.4s ease;
}

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

.alert-success {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    color: #2E7D32;
}

.alert-danger {
    background: linear-gradient(135deg, #FFEBEE, #FFCDD2);
    color: #C62828;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .btn-lg {
        padding: 12px 30px !important;
        font-size: 1rem;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .icon-wrapper-lg {
        width: 70px;
        height: 70px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .feature-badge {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease;
}

/* Badge */
.badge {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.bg-success {
    background: var(--success-color) !important;
}

.bg-primary {
    background: var(--primary-color) !important;
}

/* Card Effects */
.card {
    transition: all 0.3s ease;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

/* Text Colors */
.text-primary {
    color: var(--primary-color) !important;
}

.text-success {
    color: var(--success-color) !important;
}

.text-warning {
    color: var(--warning-color) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

/* Utilities */
.rounded-4 {
    border-radius: 1.5rem !important;
}

.rounded-pill {
    border-radius: 50rem !important;
}


