*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Inter', sans-serif; color: #1a1a2e; background: #fff; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; }

        :root {
            --primary: #2e6edd;
            --primary-dark: #1e52ab;
            --primary-light: #e8f0fe;
            --dark: #0f172a;
            --text: #1a1a2e;
            --muted: #64748b;
            --border: #e2e8f0;
        }

        /* --- NAV --- */
        .nav {
            position: fixed; top: 0; width: 100%; z-index: 100;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(226,232,240,0.6);
            transition: all 0.3s;
        }
        .nav-inner {
            max-width: 1200px; margin: 0 auto;
            padding: 0 24px; height: 72px;
            display: flex; align-items: center; justify-content: space-between;
        }
        .nav-logo { display: flex; align-items: center; gap: 10px; }
        .nav-logo img { height: 36px; }
        .nav-logo span { font-weight: 800; font-size: 1.125rem; color: var(--primary); letter-spacing: -0.02em; }
        .nav-links { display: flex; align-items: center; gap: 32px; }
        .nav-links a { font-size: 0.875rem; font-weight: 600; color: var(--muted); transition: color 0.2s; }
        .nav-links a:hover { color: var(--primary); }
        .nav-cta {
            padding: 10px 24px; background: var(--primary); color: #fff !important;
            border-radius: 12px; font-weight: 700; font-size: 0.875rem;
            transition: all 0.2s; border: none; cursor: pointer;
            display: inline-block;
        }
        .nav-cta:hover { background: var(--primary-dark); color: #fff !important; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(46,110,221,0.25); }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-inner { padding: 0 16px; }
        }

        /* --- HERO --- */
        .hero {
            padding: 140px 24px 80px;
            background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
            position: relative;
        }
        .hero-inner {
            max-width: 1200px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
        }
        @media (max-width: 768px) { .hero-inner { grid-template-columns: 1fr; gap: 40px; } }

        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: var(--primary-light); color: var(--primary);
            padding: 8px 16px; border-radius: 99px;
            font-size: 0.75rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.06em;
            margin-bottom: 24px;
        }
        .hero h1 {
            font-size: 3.25rem; font-weight: 900; line-height: 1.1;
            letter-spacing: -0.03em; color: var(--dark);
            margin-bottom: 20px;
        }
        .hero h1 span { color: var(--primary); }
        @media (max-width: 768px) { .hero h1 { font-size: 2.25rem; } }

        .hero-text {
            font-size: 1.0625rem; color: var(--muted); line-height: 1.7;
            margin-bottom: 36px; max-width: 520px;
        }
        .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
        .btn-hero {
            padding: 16px 32px; border-radius: 14px; font-weight: 700;
            font-size: 0.9375rem; transition: all 0.25s; cursor: pointer;
            border: 2px solid transparent;
        }
        .btn-hero-primary { background: var(--primary); color: #fff; }
        .btn-hero-primary:hover { background: var(--primary-dark); box-shadow: 0 12px 32px rgba(46,110,221,0.3); transform: translateY(-2px); }
        .btn-hero-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
        .btn-hero-outline:hover { background: var(--primary); color: #fff; }

        .hero-img {
            position: relative; border-radius: 24px; overflow: hidden;
            box-shadow: 0 25px 50px rgba(0,0,0,0.1);
        }
        .hero-img img { width: 100%; height: 400px; object-fit: cover; display: block; }
        .hero-stats {
            position: absolute; bottom: 0; left: 0; right: 0;
            background: rgba(15,23,42,0.85); backdrop-filter: blur(8px);
            padding: 20px 28px; display: flex; justify-content: space-around;
        }
        .hero-stat { text-align: center; color: #fff; }
        .hero-stat strong { display: block; font-size: 1.5rem; font-weight: 800; }
        .hero-stat span { font-size: 0.75rem; color: rgba(255,255,255,0.6); font-weight: 500; }

        /* --- SECTION COMMON --- */
        .section { padding: 80px 24px; }
        .section-dark { background: var(--dark); color: #fff; }
        .section-gray { background: #f8fafc; }
        .container { max-width: 1200px; margin: 0 auto; }
        .section-header { text-align: center; margin-bottom: 56px; }
        .section-tag {
            display: inline-block; background: var(--primary-light); color: var(--primary);
            padding: 6px 16px; border-radius: 99px; font-size: 0.75rem;
            font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
            margin-bottom: 16px;
        }
        .section-header h2 { font-size: 2.25rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
        .section-header p { color: var(--muted); font-size: 1rem; max-width: 560px; margin: 0 auto; line-height: 1.6; }

        /* --- PRACTICE AREAS --- */
        .practice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
        .practice-card {
            background: #fff; border: 1px solid var(--border); border-radius: 20px;
            padding: 32px; transition: all 0.3s; position: relative; overflow: hidden;
        }
        .practice-card:hover { border-color: var(--primary); box-shadow: 0 12px 32px rgba(46,110,221,0.1); transform: translateY(-4px); }
        .practice-icon {
            width: 56px; height: 56px; border-radius: 14px;
            background: var(--primary-light); color: var(--primary);
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 20px; font-size: 1.5rem;
        }
        .practice-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 10px; }
        .practice-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

        /* --- ABOUT --- */
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        @media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }
        .about-img { border-radius: 20px; overflow: hidden; }
        .about-img img { width: 100%; height: 400px; object-fit: cover; display: block; }
        .about-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
        .about-text p { color: var(--muted); font-size: 0.9375rem; line-height: 1.7; margin-bottom: 20px; }

        /* --- CTA --- */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            padding: 80px 24px;
            text-align: center;
            color: #fff;
        }
        .cta-section h2 { font-size: 2.5rem; font-weight: 900; margin-bottom: 16px; letter-spacing: -0.02em; }
        @media (max-width: 768px) { .cta-section h2 { font-size: 1.75rem; } }
        .cta-section p { font-size: 1.0625rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
        .cta-btn {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 18px 40px; background: #fff; color: var(--primary);
            border-radius: 14px; font-weight: 800; font-size: 1rem;
            transition: all 0.25s; border: none; cursor: pointer;
        }
        .cta-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }

        /* --- FOOTER --- */
        .footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 60px 24px 30px; }
        .footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
        @media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; } }
        .footer h4 { color: #fff; font-size: 0.875rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
        .footer p { font-size: 0.875rem; line-height: 1.7; }
        .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
        .footer-logo img { height: 32px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
        .footer-logo span { font-weight: 800; color: #fff; font-size: 1rem; }
        .footer a { color: rgba(255,255,255,0.6); font-size: 0.875rem; display: block; margin-bottom: 8px; transition: color 0.2s; }
        .footer a:hover { color: #fff; }
        .footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; margin-top: 40px; text-align: center; font-size: 0.8125rem; }
        /* --- CONSULTATION FORM --- */
        .consult-section { padding: 80px 24px; background: linear-gradient(180deg, #f0f4ff 0%, #f8fafc 100%); }
        .consult-wrap { max-width: 780px; margin: 0 auto; }
        .consult-card { background: #fff; border-radius: 24px; padding: 48px; box-shadow: 0 8px 40px rgba(46,110,221,.08); border: 1px solid rgba(46,110,221,.1); }
        @media (max-width: 768px) { .consult-card { padding: 28px 20px; } }

        .consult-steps { display: flex; gap: 0; margin-bottom: 36px; }
        .consult-step { flex: 1; text-align: center; position: relative; }
        .consult-step .cs-num { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: .8125rem; font-weight: 800; margin-bottom: 8px; }
        .consult-step .cs-label { font-size: .75rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
        .consult-step::after { content: ''; position: absolute; top: 18px; left: 60%; right: -40%; height: 2px; background: var(--primary-light); }
        .consult-step:last-child::after { display: none; }

        .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
        @media (max-width: 560px) { .cf-row { grid-template-columns: 1fr; } }
        .cf-group { margin-bottom: 18px; }
        .cf-group label { display: block; font-size: .8125rem; font-weight: 600; color: #374151; margin-bottom: 6px; }
        .cf-group label .req { color: #dc2626; }
        .cf-input-wrap { position: relative; }
        /* Solo el SVG ícono izquierdo (hijo directo, no el del botón toggle) */
        .cf-input-wrap > svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #94a3b8; pointer-events: none; flex-shrink: 0; }
        .cf-input-wrap input, .cf-input-wrap textarea {
            width: 100%; padding: 13px 44px 13px 44px; border: 2px solid #e2e8f0; border-radius: 14px;
            font-size: .9375rem; font-weight: 500; color: #1a1a2e; background: #f8fafc;
            transition: all .2s; outline: none; font-family: 'Inter', sans-serif;
        }
        .cf-input-wrap textarea { padding: 14px 14px 14px 14px; min-height: 120px; resize: vertical; }
        .cf-input-wrap input:focus, .cf-input-wrap textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(46,110,221,.1); background: #fff; }
        .cf-input-wrap input::placeholder, .cf-input-wrap textarea::placeholder { color: #94a3b8; font-weight: 400; }
        .cf-input-wrap .pw-toggle {
            position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
            cursor: pointer; color: #94a3b8; z-index: 2;
            background: none; border: none; padding: 6px;
            display: flex; align-items: center; justify-content: center;
            line-height: 0;
        }
        .cf-input-wrap .pw-toggle svg { position: static; transform: none; color: inherit; }
        .cf-input-wrap .pw-toggle:hover { color: var(--primary); }

        .cf-divider { border: none; border-top: 2px solid #f1f5f9; margin: 28px 0; }
        .cf-divider-label { text-align: center; margin: -12px 0 20px; }
        .cf-divider-label span { background: #fff; padding: 0 16px; font-size: .75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .06em; }

        /* Custom radio buttons for tipo consulta */
        .cf-tipo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
        @media (max-width: 560px) { .cf-tipo-grid { grid-template-columns: repeat(2, 1fr); } }
        .cf-tipo-opt { position: relative; }
        .cf-tipo-opt input { position: absolute; opacity: 0; pointer-events: none; }
        .cf-tipo-opt label {
            display: block; padding: 10px 14px; border: 2px solid #e2e8f0; border-radius: 12px;
            font-size: .8125rem; font-weight: 600; color: var(--muted); text-align: center;
            cursor: pointer; transition: all .2s; background: #f8fafc;
        }
        .cf-tipo-opt input:checked + label { border-color: var(--primary); background: var(--primary-light); color: var(--primary); }
        .cf-tipo-opt label:hover { border-color: #cbd5e1; }

        .cf-submit {
            width: 100%; padding: 16px; background: var(--primary); color: #fff; border: none;
            border-radius: 14px; font-size: 1rem; font-weight: 700; cursor: pointer;
            transition: all .25s; font-family: 'Inter', sans-serif; margin-top: 8px;
            display: flex; align-items: center; justify-content: center; gap: 10px;
        }
        .cf-submit:hover { background: var(--primary-dark); box-shadow: 0 12px 32px rgba(46,110,221,.25); transform: translateY(-2px); }

        .cf-error { padding: 14px 18px; border-radius: 14px; background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; font-size: .875rem; font-weight: 500; margin-bottom: 20px; line-height: 1.5; }
        .cf-success { text-align: center; padding: 48px 24px; }
        .cf-success-icon { width: 80px; height: 80px; border-radius: 50%; background: #f0fdf4; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
        .cf-success h3 { font-size: 1.5rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
        .cf-success p { color: var(--muted); font-size: .9375rem; line-height: 1.6; margin-bottom: 24px; max-width: 420px; margin-left: auto; margin-right: auto; }
        .cf-success a { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: var(--primary); color: #fff; border-radius: 14px; font-weight: 700; font-size: .9375rem; transition: all .2s; }
        .cf-success a:hover { background: var(--primary-dark); transform: translateY(-2px); color: #fff; }

        /* Honeypot */
        .ohnohoney { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

        /* Drop Zone */
        .cf-drop-zone {
            border: 2px dashed #c7d7f0; border-radius: 16px;
            padding: 28px 20px; text-align: center; cursor: pointer;
            transition: all .25s; background: #f8fafc; position: relative;
        }
        .cf-drop-zone:hover, .cf-drop-zone.drag-over { border-color: var(--primary); background: #eff5ff; }
        .cf-drop-zone.drag-over { transform: scale(1.01); }
        .cf-dz-icon { width: 48px; height: 48px; background: var(--primary-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; color: var(--primary); }
        .cf-dz-title { font-size: .875rem; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; }
        .cf-dz-hint { font-size: .75rem; color: #94a3b8; }
        .cf-dz-btn { display: inline-block; margin-top: 10px; padding: 7px 18px; background: var(--primary); color: #fff; border-radius: 10px; font-size: .8125rem; font-weight: 700; transition: background .2s; }
        .cf-dz-btn:hover { background: var(--primary-dark); }
        .cf-dz-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
        /* File list */
        .cf-file-list { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
        .cf-file-item { display: flex; align-items: center; gap: 10px; padding: 9px 12px; background: #fff; border: 1.5px solid #e2e8f0; border-radius: 12px; }
        .cf-file-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .6875rem; font-weight: 800; flex-shrink: 0; }
        .cf-file-info { flex: 1; min-width: 0; }
        .cf-file-name { font-size: .8125rem; font-weight: 600; color: #1a1a2e; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .cf-file-size { font-size: .6875rem; color: #94a3b8; }
        .cf-file-remove { width: 26px; height: 26px; border-radius: 7px; border: none; background: #fef2f2; color: #dc2626; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .2s; }
        .cf-file-remove:hover { background: #dc2626; color: #fff; }