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

        body {
            font-family: 'Work Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8fafc;
            color: #1e293b;
            line-height: 1.6;
        }

        /* ========== EXACT HEADER FROM INDOGLOBALLEI.IN ========== */
        
        /* Orange Announcement Banner */
        .announcement-banner {
            background-color: #F7A400;
            color: #ffffff;
            padding: 1px 0;
        }
.home-icon svg {
    width: 28px;
    height: 28px;
}

        .announcement-wrapper {
            max-width: 1210px;
            margin: 0 auto;
            padding: 0 15px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .announcement-controls {
            display: flex;
            gap: 0;
            margin-right: 12px;
        }

        .announcement-arrow {
            background: transparent;
            border: none;
            color: #ffffff;
            cursor: pointer;
            padding: 4px 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .announcement-arrow:hover {
            opacity: 0.8;
        }

        .announcement-arrow svg {
            width: 20px;
            height: 20px;
        }

        .announcement-content {
            flex: 1;
        }

        .announcement-text {
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            margin: 0;
        }

        .announcement-dismiss {
            background: transparent;
            border: none;
            color: #ffffff;
            cursor: pointer;
            padding: 4px 8px;
            margin-left: auto;
        }

        .announcement-dismiss:hover {
            opacity: 0.8;
        }

        .announcement-dismiss svg {
            width: 20px;
            height: 20px;
        }

        .announcement-item {
            display: none;
        }

        .announcement-item.active {
            display: block;
        }

        /* Dark Blue Secondary Header */
        .secondary-header {
            background-color: #12196a;
            color: #ffffff;
            padding: 12px 0;
        }

        .secondary-wrapper {
            max-width: 1210px;
            margin: 0 auto;
            padding: 0 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #5eb3f0;
            text-decoration: none;
            font-size: 14px;
        }

        .contact-item:hover {
            color: #F7A400;
        }

        .contact-item svg {
            width: 18px;
            height: 18px;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .currency-selector {
            display: flex;
            align-items: center;
            gap: 4px;
            color: #5eb3f0;
            font-size: 14px;
            cursor: pointer;
        }

        .currency-selector:hover {
            color: #F7A400;
        }

        .header-icon {
            color: #5eb3f0;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .header-icon:hover {
            color: #F7A400;
        }

        .header-icon svg {
            width: 20px;
            height: 20px;
        }

        .login-link {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #5eb3f0;
            text-decoration: none;
            font-size: 14px;
        }

        .login-link:hover {
            color: #F7A400;
        }

        /* Main Navigation Header - White */
        .main-header {
            background-color: #ffffff;
            padding: 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .main-header-wrapper {
            max-width: 1210px;
            margin: 0 auto;
            padding: 0 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 80px;
        }

        .logo-link {
            display: flex;
            align-items: center;
        }

        .logo-link img {
            height: 70px;
            width: auto;
        }
        /* Home Icon - NEW */
        .home-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            color: #12196a;
            text-decoration: none;
            padding: 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
            margin-right: 15px;
        }

        .home-icon:hover {
            background-color: #f0f4ff;
            color: #F7A400;
        }

        .home-icon svg {
            width: 28px;
            height: 28px;
        }



        .main-nav {
            display: flex;
            align-items: center;
            gap: 36px;
        }

        .nav-link {
            color: #1e293b;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 28px 0;
            position: relative;
        }

        .nav-link:hover {
            color: #F7A400;
        }

        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #1e293b;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            background: none;
            border: none;
            padding: 28px 0;
        }

        .nav-dropdown-btn:hover {
            color: #F7A400;
        }

        .nav-dropdown-btn svg {
            width: 12px;
            height: 12px;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #ffffff;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            min-width: 200px;
            z-index: 200;
        }

        .nav-dropdown:hover .dropdown-menu {
            display: block;
        }

        .dropdown-item {
            display: block;
            padding: 12px 20px;
            color: #1e293b;
            text-decoration: none;
            font-size: 15px;
            border-bottom: 1px solid #f0f0f0;
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item:hover {
            background-color: #F7A400;
            color: #ffffff;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .search-btn {
            color: #1e293b;
            cursor: pointer;
            background: none;
            border: none;
            display: flex;
            align-items: center;
        }

        .search-btn:hover {
            color: #F7A400;
        }

        .search-btn svg {
            width: 22px;
            height: 22px;
        }

        .menu-grid-btn {
            width: 40px;
            height: 40px;
            background: #f5f5f5;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1e293b;
        }

        .menu-grid-btn:hover {
            background: #e0e0e0;
        }

        .apply-lei-btn {
            background-color: #F7A400;
            color: #ffffff;
            padding: 14px 28px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }

        .apply-lei-btn:hover {
            background-color: #e59500;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(247, 164, 0, 0.4);
        }

        /* ========== CONTAINER ========== */
        .lei-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 20px;
        }

        /* ========== STEPPER STYLES - FIXED WITH TICK MARKS ========== */
        .stepper-wrapper {
            background: #ffffff;
            border-radius: 12px;
            padding: 24px 32px;
            margin-bottom: 24px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
        }

        .stepper-container {
            max-width: 100%;
        }

        .steps-holder {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
            padding: 0 20px;
        }

        .progress-track {
            position: absolute;
            top: 18px;
            left: 60px;
            right: 60px;
            height: 3px;
            background: #e2e8f0;
            border-radius: 2px;
            z-index: 0;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #22c55e, #16a34a);
            border-radius: 2px;
            transition: width 0.4s ease;
        }

        .step-block {
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 1;
            cursor: pointer;
            transition: transform 0.2s ease;
            flex: 1;
            max-width: 140px;
        }

        .step-block:hover {
            transform: translateY(-2px);
        }

        .step-circle-wrap {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #ffffff;
            border: 3px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
            transition: all 0.3s ease;
        }

        .step-block.active .step-circle-wrap {
            background: #F7A400;
            border-color: #F7A400;
            box-shadow: 0 0 0 4px rgba(247, 164, 0, 0.2);
        }

        .step-block.completed .step-circle-wrap {
            background: #22c55e;
            border-color: #22c55e;
            box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
        }

        .step-num {
            font-size: 14px;
            font-weight: 600;
            color: #94a3b8;
        }

        .step-block.active .step-num {
            color: #ffffff;
        }

        .step-block.completed .step-num {
            display: none;
        }

        .step-check {
            display: none;
            color: #ffffff;
            font-size: 16px;
        }

        .step-block.completed .step-check {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .step-label {
            font-size: 12px;
            color: #94a3b8;
            text-align: center;
            font-weight: 500;
            max-width: 100px;
            line-height: 1.3;
        }

        .step-block.active .step-label {
            color: #F7A400;
            font-weight: 600;
        }

        .step-block.completed .step-label {
            color: #22c55e;
            font-weight: 600;
        }

        .progress-indicator {
            text-align: center;
            margin-top: 16px;
            padding-top: 12px;
            border-top: 1px solid #e2e8f0;
        }

        .progress-text {
            font-size: 13px;
            color: #64748b;
        }

        .progress-percent {
            color: #22c55e;
            font-weight: 600;
            margin-left: 8px;
        }

        /* ========== FORM SECTION ========== */
        .form-section {
            background: #ffffff;
            border-radius: 12px;
            padding: 32px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
        }

        .form-title {
            font-family: 'Arial Narrow', 'Roboto Condensed', 'Helvetica Neue', Arial, sans-serif;
            font-size: 38px;
            font-weight: 700;
            color: #1e3a5f;
            margin-bottom: 12px;
            line-height: 1.2;
            letter-spacing: -0.5px;
            font-stretch: condensed;
        }

        .form-subtitle {
            font-family: 'Work Sans', 'Segoe UI', Tahoma, sans-serif;
            color: #64748b;
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 32px;
            line-height: 1.5;
        }

        .section-heading {
            font-family: 'Arial Narrow', 'Roboto Condensed', 'Helvetica Neue', Arial, sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid #e2e8f0;
            line-height: 1.2;
            font-stretch: condensed;
        }
        
        .section-title {
            font-family: 'Arial Narrow', 'Roboto Condensed', 'Helvetica Neue', Arial, sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: #1e3a5f;
            margin-bottom: 16px;
            line-height: 1.3;
            font-stretch: condensed;
        }
        
        .page-title {
            font-family: 'Arial Narrow', 'Roboto Condensed', 'Helvetica Neue', Arial, sans-serif;
            font-size: 38px;
            font-weight: 700;
            color: #1e3a5f;
            margin-bottom: 16px;
            line-height: 1.2;
            letter-spacing: -0.5px;
            font-stretch: condensed;
        }

                /* Custom Form Grid: 4 fields + 3 fields */
        .custom-form-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .custom-form-grid .form-group:nth-child(5),
        .custom-form-grid .form-group:nth-child(6),
        .custom-form-grid .form-group:nth-child(7) {
            grid-column: span 1;
        }

        .custom-form-grid .form-group:nth-child(5) {
            grid-column: 1 / 2;
            grid-row: 2;
        }

        .custom-form-grid .form-group:nth-child(6) {
            grid-column: 2 / 3;
            grid-row: 2;
        }

        .custom-form-grid .form-group:nth-child(7) {
            grid-column: 3 / 4;
            grid-row: 2;
        }

        @media (max-width: 1200px) {
            .custom-form-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .custom-form-grid .form-group:nth-child(n) {
                grid-column: span 1 !important;
                grid-row: auto !important;
            }
        }

        @media (max-width: 768px) {
            .custom-form-grid {
                grid-template-columns: 1fr;
            }
        }

        

        .lei-code-section {
            margin-bottom: 32px;
        }

        .legal-address-section {
            margin-bottom: 32px;
            padding-top: 24px;
            border-top: 1px solid #e2e8f0;
        }

        .form-group {
            margin-bottom: 0;
        }

        .form-label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .required {
            color: #ef4444;
        }

        .input-wrapper {
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 10px 12px;
            font-size: 13px;
            border: 2px solid #94a3b8;
            border-radius: 8px;
            background: #ffffff;
            transition: all 0.2s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #F7A400;
            box-shadow: 0 0 0 3px rgba(247, 164, 0, 0.15);
        }

        .form-input:hover {
            border-color: #64748b;
        }

        .form-input.error {
            border-color: #ef4444;
        }

        .form-input.success {
            border-color: #22c55e;
        }

        .field-icon {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 12px;
            display: none;
        }

        .error-icon { color: #ef4444; }
        .success-icon { color: #22c55e; }

        .form-input.error + .error-icon { display: block; }
        .form-input.success + .error-icon + .success-icon { display: block; }

        .radio-group {
            margin-bottom: 20px;
            padding: 16px;
            background: #f8fafc;
            border-radius: 8px;
            border: 2px solid #cbd5e1;
        }

        .radio-label {
            font-size: 14px;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 4px;
            display: block;
        }

        .radio-help {
            font-size: 12px;
            color: #64748b;
            margin-bottom: 12px;
        }

        .radio-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 0;
        }

        .radio-item input[type="radio"] {
            width: 18px;
            height: 18px;
            accent-color: #F7A400;
            cursor: pointer;
        }

        .radio-item label {
            font-size: 13px;
            color: #475569;
            cursor: pointer;
        }

        .conditional-panel {
            display: none;
            margin-top: 16px;
            padding: 16px;
            background: #ffffff;
            border-radius: 8px;
            border: 2px solid #94a3b8;
        }

        .conditional-panel.show { display: block; }

        .panel-title {
            font-size: 14px;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 12px;
        }

        .signing-authority-fields {
            display: grid;
            gap: 16px;
        }

        .email-input-group { margin-bottom: 16px; }

        .email-help-text {
            font-size: 12px;
            color: #dc2626;
            margin-top: 4px;
            font-style: italic;
        }

        .name-fields-row {
            display: flex;
            gap: 16px;
        }

        .name-field-group { flex: 1; }

        .name-field-sublabel {
            font-size: 12px;
            color: #64748b;
            margin-bottom: 6px;
        }

        .email-validation-msg {
            font-size: 12px;
            margin-top: 4px;
        }

        .email-validation-msg.error { color: #ef4444; }
        .email-validation-msg.success { color: #22c55e; }

        /* Registration Number Fetch Button Styles */
        .reg-number-wrapper {
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

        .fetch-btn {
            padding: 10px 20px;
            font-size: 13px;
            font-weight: 600;
            border: 2px solid #12196a;
            background: #12196a;
            color: #fff;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 80px;
        }

        .fetch-btn:hover {
            background: #0d1255;
            border-color: #0d1255;
        }

        .fetch-btn:disabled {
            background: #94a3b8;
            border-color: #94a3b8;
            cursor: not-allowed;
        }

        .fetch-btn-loader {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .fetch-status {
            font-size: 12px;
            margin-top: 4px;
            min-height: 18px;
        }

        .fetch-status.success {
            color: #00875A;
        }

        .fetch-status.error {
            color: #dc2626;
        }

        .fetch-status.loading {
            color: #f59e0b;
        }

        /* Auto-filled field highlight */
        .form-input.auto-filled {
            background-color: #f0fdf4;
            border-color: #22c55e;
        }

        .form-input.auto-filled:focus {
            border-color: #22c55e;
            box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
        }

        /* Signing Authority Yes Panel Styles */
        .signing-yes-fields {
            display: grid;
            gap: 16px;
        }

        .signing-yes-row {
            display: flex;
            gap: 16px;
        }

        .signing-yes-row .form-group {
            flex: 1;
        }

        .verify-input-wrapper {
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

        .verify-input-wrapper .input-wrapper {
            flex: 1;
        }

        .verify-btn {
            padding: 10px 20px;
            font-size: 13px;
            font-weight: 600;
            border: 2px solid #00875A;
            background: transparent;
            color: #00875A;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
            height: 42px;
        }

        .verify-btn:hover {
            background: #00875A;
            color: #fff;
        }

        .verify-btn.verified {
            background: #00875A;
            color: #fff;
            cursor: default;
        }

        .verify-btn.verified:hover {
            background: #00875A;
        }

        .verification-status {
            font-size: 12px;
            margin-top: 4px;
        }

        .file-upload-wrapper-inline {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            background: #fff;
            height: 42px;
        }

        .file-upload-wrapper-inline .file-upload-text {
            flex: 1;
            font-size: 13px;
            color: #94a3b8;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .file-upload-wrapper-inline .file-upload-btn {
            padding: 4px 12px;
            font-size: 12px;
        }

        .verification-status.success {
            color: #00875A;
        }

        .verification-status.pending {
            color: #f59e0b;
        }
        /* Registration Number Fetch Styles */
        .reg-number-wrapper {
            display: flex;
            gap: 8px;
            align-items: flex-start;
        }

        .fetch-btn {
            padding: 10px 16px;
            font-size: 13px;
            font-weight: 600;
            border: 2px solid #F7A400;
            background: transparent;
            color: #F7A400;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
            height: 42px;
            min-width: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .fetch-btn:hover {
            background: #F7A400;
            color: #fff;
        }

        .fetch-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .fetch-btn-loader {
            display: none;
        }

        .fetch-btn.loading .fetch-btn-text {
            display: none;
        }

        .fetch-btn.loading .fetch-btn-loader {
            display: inline-block;
        }

        .fetch-status {
            font-size: 12px;
            margin-top: 4px;
        }

        .fetch-status.success {
            color: #00875A;
        }

        .fetch-status.error {
            color: #ef4444;
        }

        .fetch-status.pending {
            color: #f59e0b;
        }

        /* Documents Checklist Panel Styles */
        .documents-checklist-section {
            display: none;
            margin-top: 24px;
            padding: 24px;
            background: #fff;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .documents-checklist-section.show {
            display: block;
        }

        .documents-checklist-title {
            font-size: 16px;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 8px;
        }

        .documents-checklist-subtitle {
            font-size: 13px;
            color: #64748b;
            margin-bottom: 20px;
        }

        .documents-table {
            width: 100%;
            border-collapse: collapse;
        }

        .documents-table th {
            text-align: left;
            padding: 12px 16px;
            background: #f8fafc;
            font-size: 12px;
            font-weight: 600;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 2px solid #e2e8f0;
        }

        .documents-table th:first-child {
            width: 50px;
            text-align: center;
        }

        .documents-table th:last-child {
            width: 180px;
            text-align: center;
        }

        .documents-table td {
            padding: 16px;
            border-bottom: 1px solid #f1f5f9;
            vertical-align: middle;
        }

        .documents-table td:first-child {
            text-align: center;
            font-weight: 500;
            color: #64748b;
        }

        .doc-name {
            font-size: 14px;
            color: #1e293b;
            line-height: 1.5;
        }

        .doc-status {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
        }

        .doc-status.mandatory {
            background: #fef2f2;
            color: #dc2626;
        }

        .doc-status.conditional {
            background: #fff7ed;
            color: #ea580c;
        }

        .doc-upload-cell {
            text-align: center;
        }

        .doc-upload-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .doc-upload-btn {
            padding: 8px 16px;
            font-size: 12px;
            font-weight: 500;
            border: 1px solid #e2e8f0;
            background: #fff;
            color: #475569;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .doc-upload-btn:hover {
            background: #f8fafc;
            border-color: #cbd5e1;
        }

        .doc-upload-btn.uploaded {
            background: #f0fdf4;
            border-color: #00875A;
            color: #00875A;
        }

        .doc-tick {
            display: none;
            width: 24px;
            height: 24px;
            background: #00875A;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 14px;
        }

        .doc-tick.show {
            display: flex;
        }

        .doc-filename {
            display: none;
            font-size: 11px;
            color: #64748b;
            max-width: 100px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .doc-filename.show {
            display: block;
        }

        .poa-upload-section { margin-top: 16px; }

        .poa-label {
            font-size: 14px;
            font-weight: 500;
            color: #475569;
            margin-bottom: 12px;
            display: block;
        }

        .file-upload-wrapper {
            display: flex;
            border: 2px solid #94a3b8;
            border-radius: 8px;
            overflow: hidden;
        }

        .file-upload-text {
            flex: 1;
            padding: 14px 16px;
            background: #ffffff;
            font-size: 14px;
            color: #64748b;
            display: flex;
            align-items: center;
        }

        .file-upload-btn {
            padding: 14px 24px;
            background: #e2e8f0;
            border: none;
            font-size: 14px;
            font-weight: 500;
            color: #475569;
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .file-upload-btn:hover { background: #cbd5e1; }

        .file-input-hidden { display: none; }

        .full-width-section {
            border-top: 1px solid #e2e8f0;
            padding-top: 24px;
        }

        .full-width-section[data-section="4"] {
            padding: 28px;
            background: #fafbfc;
            border-radius: 14px;
            margin-top: 24px;
        }

        .full-width-section[data-section="4"] .section-heading {
            font-size: 20px;
        }

        .pricing-wrapper {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 16px;
            padding: 28px;
            margin-bottom: 24px;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .pricing-title {
            font-size: 22px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 6px;
        }

        .pricing-subtitle {
            font-size: 14px;
            color: #64748b;
        }

        .pricing-cards {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .pricing-card {
            background: #ffffff;
            border-radius: 14px;
            padding: 20px 24px;
            flex: 1;
            max-width: 260px;
            min-width: 220px;
            border: 2px solid #cbd5e1;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .pricing-card:hover {
            border-color: #F7A400;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(247, 164, 0, 0.15);
        }

        .pricing-card.selected {
            border-color: #F7A400;
            box-shadow: 0 8px 20px rgba(247, 164, 0, 0.2);
        }

        .pricing-card.popular { border-color: #F7A400; }

        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #F7A400;
            color: #ffffff;
            font-size: 11px;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 12px;
            text-transform: uppercase;
        }

        .plan-duration {
            font-size: 18px;
            font-weight: 600;
            color: #1e293b;
            text-align: center;
            margin-bottom: 6px;
        }

        .plan-price {
            font-size: 28px;
            font-weight: 700;
            color: #F7A400;
            text-align: center;
            margin-bottom: 14px;
        }

        .plan-price span { font-size: 16px; }

        .plan-features {
            list-style: none;
            margin-bottom: 16px;
        }

        .plan-features li {
            font-size: 13px;
            color: #64748b;
            padding: 4px 0;
            padding-left: 18px;
            position: relative;
        }

        .plan-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #22c55e;
            font-weight: bold;
        }

        .select-plan-btn {
            width: 100%;
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .select-plan-btn.outline {
            background: #ffffff;
            border: 2px solid #F7A400;
            color: #F7A400;
        }

        .select-plan-btn.outline:hover {
            background: #F7A400;
            color: #ffffff;
        }

        .select-plan-btn.filled {
            background: #F7A400;
            border: 2px solid #F7A400;
            color: #ffffff;
        }

        .select-plan-btn.filled:hover {
            background: #e59500;
            border-color: #e59500;
        }

        .action-section {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 24px;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
        }

        .price-display {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .price-label {
            font-size: 14px;
            color: #64748b;
        }

        .price-final {
            font-size: 24px;
            font-weight: 700;
            color: #1e293b;
        }

        .submit-btn {
            background: #F7A400;
            color: #ffffff;
            padding: 14px 32px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .submit-btn:hover {
            background: #e59500;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(247, 164, 0, 0.3);
        }

        /* ========== EXACT FOOTER FROM INDOGLOBALLEI.IN ========== */
        .site-footer {
            background: linear-gradient(135deg, #c5d5e8 0%, #d8e4f0 50%, #e8f0f8 100%);
            position: relative;
            overflow: hidden;
        }

        .footer-bg-decoration {
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            pointer-events: none;
        }

        .footer-circle {
            position: absolute;
            top: 20px;
            right: 100px;
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            box-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
        }

        .footer-wave {
            position: absolute;
            top: 60px;
            right: 0;
            width: 300px;
            height: 200px;
        }

        .footer-wave svg {
            width: 100%;
            height: 100%;
        }

        .footer-container {
            max-width: 1210px;
            margin: 0 auto;
            padding: 60px 15px 40px;
            position: relative;
            z-index: 1;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.2fr 1.2fr 1fr;
            gap: 40px;
        }

        .footer-brand {}

        .footer-logo {
            margin-bottom: 16px;
        }

        .footer-logo img {
            height: 60px;
            width: auto;
        }

        .footer-description {
            font-size: 14px;
            color: #1e293b;
            line-height: 1.7;
            margin-bottom: 24px;
            max-width: 280px;
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

        .social-btn {
            width: 44px;
            height: 44px;
            border-radius: 6px;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .social-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .social-btn svg {
            width: 20px;
            height: 20px;
            color: #12196a;
        }

        .footer-section {}

        .footer-section h3 {
            font-size: 18px;
            font-weight: 700;
            color: #12196a;
            margin-bottom: 8px;
        }

        .footer-section-divider {
            width: 40px;
            height: 3px;
            background: #F7A400;
            margin-bottom: 20px;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 14px;
            color: #12196a;
        }

        .footer-contact-item svg {
            width: 20px;
            height: 20px;
            color: #12196a;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .footer-contact-item a {
            color: #12196a;
            text-decoration: none;
        }

        .footer-contact-item a:hover {
            color: #F7A400;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #12196a;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: #F7A400;
        }

        .footer-bottom {
            background: #12196a;
            padding: 16px 0;
            text-align: center;
        }

        .footer-copyright {
            font-size: 14px;
            color: #ffffff;
            margin: 0;
        }

        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #F7A400;
            color: #ffffff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 999;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: #e59500;
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 1200px) {
                    /* Custom Form Grid: 4 fields + 3 fields */
        .custom-form-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .custom-form-grid .form-group:nth-child(5),
        .custom-form-grid .form-group:nth-child(6),
        .custom-form-grid .form-group:nth-child(7) {
            grid-column: span 1;
        }

        .custom-form-grid .form-group:nth-child(5) {
            grid-column: 1 / 2;
            grid-row: 2;
        }

        .custom-form-grid .form-group:nth-child(6) {
            grid-column: 2 / 3;
            grid-row: 2;
        }

        .custom-form-grid .form-group:nth-child(7) {
            grid-column: 3 / 4;
            grid-row: 2;
        }

        @media (max-width: 1200px) {
            .custom-form-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .custom-form-grid .form-group:nth-child(n) {
                grid-column: span 1 !important;
                grid-row: auto !important;
            }
        }

        @media (max-width: 768px) {
            .custom-form-grid {
                grid-template-columns: 1fr;
            }
        }

        
        }

        @media (max-width: 992px) {
            .main-nav { display: none; }
            .footer-content { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
                    /* Custom Form Grid: 4 fields + 3 fields */
        .custom-form-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .custom-form-grid .form-group:nth-child(5),
        .custom-form-grid .form-group:nth-child(6),
        .custom-form-grid .form-group:nth-child(7) {
            grid-column: span 1;
        }

        .custom-form-grid .form-group:nth-child(5) {
            grid-column: 1 / 2;
            grid-row: 2;
        }

        .custom-form-grid .form-group:nth-child(6) {
            grid-column: 2 / 3;
            grid-row: 2;
        }

        .custom-form-grid .form-group:nth-child(7) {
            grid-column: 3 / 4;
            grid-row: 2;
        }

        @media (max-width: 1200px) {
            .custom-form-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .custom-form-grid .form-group:nth-child(n) {
                grid-column: span 1 !important;
                grid-row: auto !important;
            }
        }

        @media (max-width: 768px) {
            .custom-form-grid {
                grid-template-columns: 1fr;
            }
        }

        
            .secondary-wrapper { flex-direction: column; gap: 12px; }
            .contact-info { flex-wrap: wrap; justify-content: center; }
            .header-actions { flex-wrap: wrap; justify-content: center; }
            .steps-holder { flex-wrap: wrap; gap: 20px; }
            .step-block { flex: 0 0 calc(33.33% - 14px); max-width: none; }
            .progress-track { display: none; }
        }

        @media (max-width: 576px) {
                    /* Custom Form Grid: 4 fields + 3 fields */
        .custom-form-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .custom-form-grid .form-group:nth-child(5),
        .custom-form-grid .form-group:nth-child(6),
        .custom-form-grid .form-group:nth-child(7) {
            grid-column: span 1;
        }

        .custom-form-grid .form-group:nth-child(5) {
            grid-column: 1 / 2;
            grid-row: 2;
        }

        .custom-form-grid .form-group:nth-child(6) {
            grid-column: 2 / 3;
            grid-row: 2;
        }

        .custom-form-grid .form-group:nth-child(7) {
            grid-column: 3 / 4;
            grid-row: 2;
        }

        @media (max-width: 1200px) {
            .custom-form-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .custom-form-grid .form-group:nth-child(n) {
                grid-column: span 1 !important;
                grid-row: auto !important;
            }
        }

        @media (max-width: 768px) {
            .custom-form-grid {
                grid-template-columns: 1fr;
            }
        }

        
            .pricing-cards { flex-direction: column; align-items: center; }
            .pricing-card { max-width: 100%; }
            .step-block { flex: 0 0 calc(50% - 10px); }
        }
        .search__popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.98);
            z-index: 9999;
            padding: 40px 20px;
        }
        .search__popup.active {
            display: block;
        }
        .search-popup-overlay {
            display: none;
        }
        .search__wrapper {
            max-width: 800px;
            margin: 0 auto;
            padding-top: 60px;
        }
        .search__close {
            position: absolute;
            top: 20px;
            right: 20px;
        }
        .search-close-btn {
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 10px;
            color: #333;
        }
        .search-close-btn:hover {
            color: #F7941D;
        }
        .search__form {
            margin-top: 20px;
        }
        .search__input {
            position: relative;
        }
        .search-input-field {
            width: 100%;
            padding: 15px 50px 15px 20px;
            font-size: 16px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            outline: none;
        }
        .search-input-field:focus {
            border-color: #F7941D;
        }
        #gleif-search-btn {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 10px;
            color: #64748b;
        }
        #gleif-search-btn:hover {
            color: #F7941D;
        }
        /* Autocomplete Dropdown */
        .gleif-autocomplete-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #ddd;
            border-top: none;
            border-radius: 0 0 8px 8px;
            max-height: 400px;
            overflow-y: auto;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            display: none;
        }

        .gleif-autocomplete-dropdown.active {
            display: block;
        }

        .gleif-autocomplete-item {
            padding: 12px 15px;
            cursor: pointer;
            border-bottom: 1px solid #f0f0f0;
            transition: background-color 0.2s;
        }

        .gleif-autocomplete-item:hover {
            background-color: #f8f9fa;
        }

        .gleif-autocomplete-item:last-child {
            border-bottom: none;
        }

        .gleif-item-name {
            font-weight: 600;
            color: #191D88;
            margin-bottom: 4px;
        }

        .gleif-item-details {
            font-size: 13px;
            color: #666;
        }

        .gleif-item-lei {
            display: inline-block;
            margin-right: 10px;
            color: #F7A400;
            font-weight: 500;
        }

        .gleif-item-country {
            display: inline-block;
            color: #888;
        }

        /* Loading Indicator */
        .gleif-loading {
            position: absolute;
            right: 50px;
            top: 50%;
            transform: translateY(-50%);
        }

        .spinner {
            border: 3px solid #f3f3f3;
            border-top: 3px solid #F7A400;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Results Panel */
        .gleif-results-panel {
            margin-top: 30px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            max-height: 70vh;
            display: flex;
            flex-direction: column;
        }

        .gleif-results-header {
            background: linear-gradient(135deg, #191D88 0%, #14176C 100%);
            color: white;
            padding: 18px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-shrink: 0;
        }

        .gleif-results-header h3 {
            margin: 0;
            font-size: 22px;
            font-weight: 600;
            color: white !important;
        }

        .gleif-results-close {
            background: transparent;
            border: none;
            color: white;
            font-size: 32px;
            cursor: pointer;
            line-height: 1;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: background-color 0.2s;
        }

        .gleif-results-close:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .gleif-results-content {
            padding: 25px;
            overflow-y: auto;
            flex: 1;
        }

        .gleif-results-content::-webkit-scrollbar {
            width: 8px;
        }

        .gleif-results-content::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 4px;
        }

        .gleif-results-content::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 4px;
        }

        .gleif-results-content::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        .gleif-result-item {
            margin-bottom: 15px;
        }

        .gleif-result-item h4 {
            color: #191D88;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .gleif-result-row {
            display: flex;
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .gleif-result-row:last-child {
            border-bottom: none;
        }

        .gleif-result-label {
            font-weight: 600;
            color: #333;
            min-width: 180px;
            font-size: 14px;
        }

        .gleif-result-value {
            color: #666;
            flex: 1;
            font-size: 14px;
        }

        .gleif-status-active {
            display: inline-block;
            padding: 4px 12px;
            background-color: #28a745;
            color: white;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 500;
        }

        .gleif-status-inactive {
            display: inline-block;
            padding: 4px 12px;
            background-color: #dc3545;
            color: white;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 500;
        }

        .gleif-buttons-container {
            display: flex;
            gap: 15px;
            margin-top: 18px;
            flex-wrap: wrap;
        }

        .gleif-register-btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(135deg, #191D88 0%, #14176C 100%);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gleif-register-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(25, 29, 136, 0.4);
            color: white;
        }

        .gleif-view-btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(135deg, #F7A400 0%, #FF9800 100%);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gleif-view-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(247, 164, 0, 0.4);
            color: white;
        }

        .gleif-no-results {
            text-align: center;
            padding: 40px 20px;
            color: #666;
        }

        .gleif-no-results svg {
            width: 60px;
            height: 60px;
            margin-bottom: 15px;
            opacity: 0.5;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .gleif-result-row {
                flex-direction: column;
            }

            .gleif-result-label {
                min-width: auto;
                margin-bottom: 4px;
            }
        }
