@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&display=swap");

/* ===== RESET & BASE ===== */
.ijx-wrap *, .ijx-wrap *::before, .ijx-wrap *::after {
	box-sizing: border-box; margin: 0; padding: 0;
	font-family: "Syne", sans-serif;
}
.ijx-wrap { background: #ffffff; min-height: 100vh; color: #000000; }

/* ===== LOGIN ===== */
.ijx-login-outer {
	min-height: 100vh; display: flex; align-items: center; justify-content: center;
	padding: 24px; position: relative; z-index: 2;
	background: #ffffff;
}
.ijx-login-card {
	background: #ffffff;
	border: 2px solid #000000;
	border-radius: 30px; padding: 40px;
	width: 100%; max-width: 440px;
	box-shadow: 0 25px 60px rgba(0,0,0,.1);
}
.ijx-login-logo {
	display: flex; align-items: center; gap: 14px;
	margin-bottom: 28px;
}
.ijx-logo-icon {
	width: 48px; height: 48px; background: #ffb647;
	border-radius: 12px; display: flex; align-items: center; justify-content: center;
	font-size: 24px; flex-shrink: 0; color: #000000;
}
.ijx-logo-studio { display: block; color: #000000; font-size: 20px; font-weight: 800; letter-spacing: -.3px; }
.ijx-logo-sub { display: block; color: #666666; font-size: 11px; font-weight: 500; margin-top: 2px; }
.ijx-login-title { color: #000000; font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.ijx-login-desc { color: #666666; font-size: 13px; margin-bottom: 28px; line-height: 1.5; }
.ijx-login-note { 
	color: #ffb647; font-size: 11px; text-align: center; 
	margin-top: 16px; padding: 8px; background: #fff9f0; 
	border-radius: 15px; border: 1px solid #ffe5c2;
}
.ijx-field { margin-bottom: 18px; }
.ijx-field label { display: block; color: #000000; font-size: 12px; font-weight: 600; margin-bottom: 7px; text-transform: uppercase; letter-spacing: .5px; }
.ijx-field label i { margin-right: 6px; color: #ffb647; }
.ijx-field input {
	width: 100%; background: #f9f9f9; border: 2px solid #000000;
	border-radius: 100px; padding: 12px 20px; color: #000000; font-size: 14px; font-family: "Syne",sans-serif;
	transition: border .2s, box-shadow .2s; outline: none;
}
.ijx-field input:focus { border-color: #ffb647; box-shadow: 0 0 0 3px rgba(255,182,71,.25); }
.ijx-field input::placeholder { color: #999999; }
.ijx-pwd-wrap { position: relative; }
.ijx-pwd-wrap input { padding-right: 50px; }
.ijx-pwd-toggle {
	position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
	background: none; border: none; cursor: pointer; font-size: 18px; padding: 4px; color: #ffb647;
}
.ijx-btn-login {
	width: 100%; background: #000000;
	border: 2px solid #000000; border-radius: 100px; padding: 14px;
	color: #ffffff; font-size: 15px; font-weight: 700; font-family: "Syne",sans-serif;
	cursor: pointer; transition: opacity .2s, transform .1s; margin-top: 4px;
}
.ijx-btn-login:hover { background: #ffb647; border-color: #ffb647; color: #000000; }
.ijx-btn-login:active { transform: scale(.98); }
.ijx-btn-login:disabled { opacity: .5; cursor: not-allowed; }
.ijx-login-help { color: #666666; font-size: 12px; text-align: center; margin-top: 20px; }
.ijx-login-help a { color: #000000; text-decoration: none; font-weight: 600; }
.ijx-login-help a:hover { text-decoration: underline; color: #ffb647; }

/* ===== ALERTS ===== */
.ijx-alert {
	border-radius: 100px; padding: 12px 20px; font-size: 13px; font-weight: 600;
	margin-bottom: 16px; animation: ijxSlideIn .3s ease; border: 2px solid;
}
.ijx-alert-success { background: #d1fae5; color: #065f46; border-color: #059669; }
.ijx-alert-error { background: #fee2e2; color: #991b1b; border-color: #dc2626; }
.ijx-alert i { margin-right: 8px; }
@keyframes ijxSlideIn { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }

/* ===== HEADER ===== */
.ijx-header {
	background: #ffffff;
	border-bottom: 2px solid #000000;
	position: relative;
	z-index: 1;
}
.ijx-header-inner {
	max-width: 1200px; margin: 0 auto; padding: 0 24px;
	display: flex; align-items: center; justify-content: space-between;
	height: 64px;
}
.ijx-header-brand {
	display: flex; align-items: center; gap: 12px;
}
.ijx-brand-name { display: block; color: #000000; font-size: 15px; font-weight: 800; }
.ijx-brand-sub { display: block; color: #666666; font-size: 11px; }
.ijx-header-client { display: flex; align-items: center; gap: 10px; }
.ijx-client-avatar, .ijx-client-photo {
	width: 36px; height: 36px; background: #ffb647;
	border-radius: 50%; display: flex; align-items: center; justify-content: center;
	color: #000000; font-weight: 800; font-size: 15px; flex-shrink: 0;
	object-fit: cover;
}
.ijx-client-name { display: block; color: #000000; font-size: 13px; font-weight: 700; }
.ijx-client-company { display: block; color: #666666; font-size: 11px; }
.ijx-btn-logout {
	background: #ffffff; border: 2px solid #000000;
	border-radius: 100px; color: #000000; width: 36px; height: 36px;
	cursor: pointer; font-size: 16px; transition: all .2s;
	display: flex; align-items: center; justify-content: center;
}
.ijx-btn-logout:hover { background: #ffb647; border-color: #ffb647; color: #000000; }

/* ===== MAIN ===== */
.ijx-main { max-width: 1200px; margin: 0 auto; padding: 28px 24px 60px; }

/* ===== COTIZA BANNER ===== */
.ijx-cotiza-banner {
	background: linear-gradient(135deg, #000000 0%, #333333 100%);
	border: 2px solid #ffb647;
	border-radius: 30px;
	padding: 20px 24px;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}
.ijx-cotiza-content {
	display: flex;
	align-items: center;
	gap: 16px;
}
.ijx-cotiza-icon { font-size: 32px; color: #ffb647; }
.ijx-cotiza-content strong { display: block; color: #ffffff; font-size: 16px; margin-bottom: 4px; }
.ijx-cotiza-content span { color: #cccccc; font-size: 13px; }
.ijx-btn-cotiza {
	background: #ffb647;
	color: #000000;
	padding: 12px 28px;
	border-radius: 100px;
	font-weight: 700;
	text-decoration: none;
	font-size: 14px;
	transition: all .2s;
	white-space: nowrap;
	border: 2px solid #ffb647;
}
.ijx-btn-cotiza:hover { background: #e5a340; border-color: #e5a340; transform: translateY(-2px); }
.ijx-btn-cotiza i { margin-left: 8px; }

/* ===== STAT BADGES ROW ===== */
.ijx-cards-row {
	display: flex; gap: 10px; flex-wrap: wrap;
	margin-bottom: 24px;
}
.ijx-exp-badge {
	padding: 8px 16px; border-radius: 100px; font-size: 12px; font-weight: 700;
	letter-spacing: .2px; border: 2px solid #000000;
}
.ijx-exp-badge i { margin-right: 6px; }
.ijx-exp-badge.ok { background: #d1fae5; color: #065f46; border-color: #059669; }
.ijx-exp-badge.warning { background: #fef3c7; color: #92400e; border-color: #f59e0b; }
.ijx-exp-badge.danger { background: #fee2e2; color: #991b1b; border-color: #dc2626; }
.ijx-exp-badge.neutral { background: #f3f4f6; color: #6b7280; border-color: #9ca3af; }

/* ===== GRID ===== */
.ijx-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 20px;
}
.ijx-card-full { grid-column: 1/-1; }

/* ===== CARDS - ORIGINAL LAYOUT WITH SCROLL FOR TALL CONTENT ===== */
.ijx-card {
	background: #ffffff;
	border: 2px solid #000000;
	border-radius: 30px; overflow: hidden;
	transition: border-color .2s, transform .2s;
}
.ijx-card:hover { border-color: #ffb647; transform: translateY(-2px); }
.ijx-card-header {
	display: flex; align-items: center; gap: 10px;
	padding: 16px 20px;
	background: #f9f9f9;
	border-bottom: 2px solid #000000;
}
.ijx-card-header h3 {
	flex: 1; color: #000000; font-size: 14px; font-weight: 700; margin: 0;
}
.ijx-card-icon { font-size: 18px; color: #ffb647; }
.ijx-card-body { 
	padding: 20px;
}
.ijx-card-body.ijx-card-scroll {
	max-height: 500px;
	overflow-y: auto;
}
.ijx-card-body.ijx-card-scroll::-webkit-scrollbar {
	width: 6px;
}
.ijx-card-body.ijx-card-scroll::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
}
.ijx-card-body.ijx-card-scroll::-webkit-scrollbar-thumb {
	background: #ffb647;
	border-radius: 10px;
}
.ijx-card-body.ijx-card-scroll::-webkit-scrollbar-thumb:hover {
	background: #e5a340;
}
.ijx-status-pill {
	padding: 4px 12px; border-radius: 100px;
	font-size: 11px; font-weight: 700; white-space: nowrap; border: 2px solid #000000;
}
.ijx-status-pill i { margin-right: 4px; }

/* ===== INFO GRID ===== */
.ijx-info-grid {
	display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px;
}
.ijx-info-item { display: flex; flex-direction: column; gap: 3px; }
.ijx-info-label { color: #666666; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .4px; }
.ijx-info-label i { margin-right: 6px; color: #ffb647; }
.ijx-info-value { color: #000000; font-size: 13px; font-weight: 600; }

/* ===== PLAN ===== */
.ijx-plan-main { 
	margin-bottom: 16px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
}
.ijx-plan-name { color: #000000; font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.ijx-plan-desc { color: #666666; font-size: 13px; line-height: 1.6; }
.ijx-plan-image-container { flex-shrink: 0; }
.ijx-plan-image {
	max-width: 200px;
	border-radius: 15px;
	border: 2px solid #ffb647;
}

/* ===== HOSTING LOGO ===== */
.ijx-hosting-logo-container {
	text-align: center;
	margin-bottom: 16px;
}
.ijx-hosting-logo {
	max-height: 50px;
	max-width: 150px;
	object-fit: contain;
}

/* ===== DOMAIN BIG ===== */
.ijx-domain-big {
	color: #000000; font-size: 20px; font-weight: 800;
	margin-bottom: 16px; word-break: break-all;
}

/* ===== EXPIRY PROGRESS ===== */
.ijx-expiry-progress {
	margin-top: 14px;
	padding: 12px;
	background: #f9f9f9;
	border-radius: 100px;
	border: 1px solid #000000;
}
.ijx-expiry-label {
	color: #666666;
	font-size: 12px;
	margin-bottom: 8px;
	display: block;
}
.ijx-expiry-bar-bg {
	background: #f3f4f6;
	border-radius: 100px;
	height: 10px;
	overflow: hidden;
	border: 1px solid #000000;
}
.ijx-expiry-bar-fill {
	height: 100%;
	border-radius: 100px;
	transition: width 1s ease;
	background: linear-gradient(90deg, #ffb647, #ff9500);
}

/* ===== RESOURCES ===== */
.ijx-resource { margin-bottom: 16px; }
.ijx-resource:last-child { margin-bottom: 0; }
.ijx-resource-header {
	display: flex; justify-content: space-between;
	color: #000000; font-size: 12px; font-weight: 600; margin-bottom: 6px;
}
.ijx-resource-header i { margin-right: 6px; color: #ffb647; }
.ijx-bar-bg {
	background: #f3f4f6; border-radius: 100px; height: 8px; overflow: hidden; border: 1px solid #000000;
}
.ijx-bar-fill {
	height: 100%; border-radius: 100px; transition: width 1s ease;
	background: #ffb647;
}
.ijx-bar-pct { color: #666666; font-size: 11px; margin-top: 4px; display: block; }
.ijx-resources-mini {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: 10px; margin-top: 18px;
}
.ijx-res-mini {
	background: #f9f9f9; border: 2px solid #000000;
	border-radius: 20px; padding: 10px 12px;
	display: flex; flex-direction: column; gap: 4px;
}
.ijx-res-icon { font-size: 16px; color: #ffb647; }
.ijx-res-label { color: #666666; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .3px; }
.ijx-res-value { color: #000000; font-size: 13px; font-weight: 700; }

/* ===== MAINTENANCE ===== */
.ijx-maint-not-contracted {
	background: #fff9f0;
	border: 2px dashed #ffb647;
	border-radius: 20px;
	padding: 20px;
	text-align: center;
	margin-bottom: 16px;
}
.ijx-maint-not-contracted i {
	font-size: 40px;
	color: #ffb647;
	margin-bottom: 12px;
	display: block;
}
.ijx-maint-not-contracted strong {
	display: block;
	color: #000000;
	font-size: 16px;
	margin-bottom: 8px;
}
.ijx-maint-not-contracted p {
	color: #666666;
	font-size: 13px;
	margin-bottom: 16px;
}
.ijx-btn-contract {
	background: #ffb647;
	color: #000000;
	padding: 10px 24px;
	border-radius: 100px;
	text-decoration: none;
	font-weight: 700;
	display: inline-block;
	transition: all .2s;
	border: 2px solid #000000;
}
.ijx-btn-contract:hover {
	background: #e5a340;
	transform: translateY(-2px);
}

.ijx-maint-desc {
	margin-top: 16px; padding: 14px;
	background: #f9f9f9; border-radius: 20px;
	border-left: 4px solid #ffb647; border: 2px solid #000000;
}
.ijx-maint-label { color: #666666; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; display: block; margin-bottom: 6px; }
.ijx-maint-label i { margin-right: 6px; color: #ffb647; }
.ijx-maint-desc p { color: #000000; font-size: 13px; line-height: 1.6; }

/* ===== REMINDER BOX ===== */
.ijx-reminder-box {
	margin-top: 16px;
	padding: 18px;
	background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
	border: 2px solid #ffb647;
	border-radius: 20px;
	box-shadow: 0 4px 15px rgba(255,182,71,.15);
}
.ijx-reminder-icon {
	font-size: 28px;
	color: #ffb647;
	flex-shrink: 0;
	background: #ffffff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #ffb647;
}
.ijx-reminder-content {
	flex: 1;
	padding-left: 12px;
}
.ijx-reminder-content strong {
	color: #000000;
	font-size: 14px;
	display: block;
	margin-bottom: 6px;
}
.ijx-reminder-content p {
	color: #666666;
	font-size: 13px;
	line-height: 1.6;
	margin: 0;
}
.ijx-reminder-actions {
	display: flex;
	gap: 10px;
	margin-top: 16px;
	flex-wrap: wrap;
}
.ijx-btn-wa, .ijx-btn-email {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border-radius: 100px;
	border: 2px solid #000000;
	font-size: 13px;
	font-weight: 700;
	font-family: "Syne",sans-serif;
	cursor: pointer;
	transition: all .2s;
}
.ijx-btn-wa:active, .ijx-btn-email:active { transform: scale(.97); }
.ijx-btn-wa { background: #25D366; color: #fff; }
.ijx-btn-email { background: #000000; color: #ffb647; }
.ijx-btn-wa:hover, .ijx-btn-email:hover { opacity: .88; transform: translateY(-2px); }
.ijx-btn-wa i, .ijx-btn-email i { font-size: 16px; }

/* ===== TECHNOLOGIES ===== */
.ijx-tech-section { margin-bottom: 16px; }
.ijx-tech-label {
	display: block;
	color: #666666;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .4px;
	margin-bottom: 8px;
}
.ijx-tech-label i { margin-right: 6px; color: #ffb647; }
.ijx-tech-grid { display: flex; gap: 8px; flex-wrap: wrap; }
.ijx-tech-badge {
	background: #fff9f0;
	border: 2px solid #ffb647;
	color: #000000;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 100px;
}
.ijx-plugins-list {
	margin-top: 16px;
	padding: 14px;
	background: #f9f9f9;
	border-radius: 20px;
	border: 2px solid #000000;
}
.ijx-plugins-title {
	color: #666666;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .4px;
	display: block;
	margin-bottom: 8px;
}
.ijx-plugins-title i { margin-right: 6px; color: #ffb647; }
.ijx-plugins-list ul { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.ijx-plugins-list li {
	background: #ffffff;
	color: #000000;
	border: 1px solid #000000;
	font-size: 11px;
	padding: 4px 10px;
	border-radius: 100px;
}

/* ===== LICENSED PLUGINS ===== */
.ijx-licensed-plugins {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.ijx-licensed-plugin-item {
	background: #f9f9f9;
	border: 2px solid #000000;
	border-radius: 15px;
	padding: 14px;
	transition: all .2s;
}
.ijx-licensed-plugin-item:hover {
	border-color: #ffb647;
	transform: translateX(5px);
}
.ijx-licensed-plugin-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.ijx-licensed-plugin-name {
	color: #000000;
	font-size: 14px;
	font-weight: 700;
}
.ijx-licensed-plugin-name i {
	color: #ffb647;
	margin-right: 6px;
}
.ijx-licensed-plugin-version {
	background: #000000;
	color: #ffb647;
	padding: 3px 10px;
	border-radius: 100px;
	font-size: 11px;
	font-weight: 700;
}
.ijx-licensed-plugin-info {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}
.ijx-badge-premium {
	background: linear-gradient(135deg, #ffb647, #ff9500);
	color: #000000;
	padding: 3px 10px;
	border-radius: 100px;
	font-size: 11px;
	font-weight: 700;
}
.ijx-badge-premium i {
	margin-right: 4px;
}
.ijx-badge-updates {
	background: #d1fae5;
	color: #065f46;
	padding: 3px 10px;
	border-radius: 100px;
	font-size: 11px;
	font-weight: 700;
	border: 1px solid #059669;
}
.ijx-badge-updates i {
	margin-right: 4px;
}
.ijx-btn-download-plugin {
	background: #ffb647;
	color: #000000;
	border: 2px solid #000000;
	border-radius: 100px;
	padding: 8px 16px;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	font-family: "Syne", sans-serif;
	transition: all .2s;
	width: 100%;
}
.ijx-btn-download-plugin:hover {
	background: #e5a340;
	transform: translateY(-2px);
}
.ijx-btn-download-plugin i {
	margin-right: 6px;
}
.ijx-no-plugins {
	color: #666666;
	font-size: 13px;
	text-align: center;
	padding: 20px;
}
.ijx-no-plugins i {
	color: #ffb647;
	margin-right: 6px;
}

/* ===== CREDENTIALS ===== */
.ijx-creds-warning {
	padding: 10px 14px;
	background: #fff9f0;
	border: 2px solid #ffb647;
	border-radius: 20px;
	color: #92400e;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 16px;
}
.ijx-creds-warning i { margin-right: 6px; }
.ijx-creds-toggle {
	background: #fff9f0;
	border: 2px solid #ffb647;
	color: #000000;
	border-radius: 100px;
	padding: 5px 16px;
	font-size: 12px;
	font-weight: 700;
	font-family: "Syne",sans-serif;
	cursor: pointer;
	transition: all .2s;
}
.ijx-creds-toggle:hover { background: #ffb647; }
.ijx-creds-toggle i { margin-right: 6px; }
.ijx-cred-section { margin-bottom: 20px; }
.ijx-cred-section:last-child { margin-bottom: 0; }
.ijx-cred-section-title {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #666666;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px;
	margin-bottom: 10px;
	padding-bottom: 6px;
	border-bottom: 2px solid #000000;
}
.ijx-cred-section-title i { color: #ffb647; }
.ijx-cred-row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	border-bottom: 1px solid #f3f4f6;
	flex-wrap: wrap;
}
.ijx-cred-row:last-child { border-bottom: none; }
.ijx-cred-label { color: #666666; font-size: 12px; font-weight: 600; width: 90px; flex-shrink: 0; }
.ijx-cred-value { color: #000000; font-size: 13px; font-weight: 500; flex: 1; word-break: break-all; }
.ijx-cred-link { color: #000000; text-decoration: none; font-weight: 600; }
.ijx-cred-link:hover { text-decoration: underline; color: #ffb647; }
.ijx-cred-link i { font-size: 12px; margin-left: 4px; }
.ijx-cred-pwd-row { display: flex; align-items: center; gap: 8px; flex: 1; }
.ijx-cred-show-btn {
	background: #f9f9f9;
	border: 2px solid #000000;
	color: #000000;
	border-radius: 100px;
	padding: 4px 12px;
	font-size: 11px;
	font-weight: 700;
	cursor: pointer;
	font-family: "Syne",sans-serif;
	transition: all .2s;
}
.ijx-cred-show-btn:hover { background: #ffb647; border-color: #ffb647; }
.ijx-copy-btn {
	background: #f9f9f9;
	border: 2px solid #000000;
	color: #000000;
	border-radius: 100px;
	padding: 4px 12px;
	font-size: 11px;
	font-weight: 700;
	cursor: pointer;
	font-family: "Syne",sans-serif;
	transition: all .2s;
	flex-shrink: 0;
}
.ijx-copy-btn:hover { background: #ffb647; border-color: #ffb647; }
.ijx-copy-btn.copied { background: #d1fae5; color: #065f46; border-color: #059666; }
.ijx-cred-download {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 2px dashed #ffb647;
	text-align: center;
}
.ijx-btn-download {
	background: #ffb647;
	color: #000000;
	padding: 12px 28px;
	border-radius: 100px;
	border: 2px solid #000000;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	font-family: "Syne",sans-serif;
	transition: all .2s;
}
.ijx-btn-download:hover { background: #e5a340; transform: translateY(-2px); }
.ijx-btn-download i { margin-right: 8px; }

/* ===== HELP TOOLS ===== */
.ijx-card-help-tools { grid-column: 1/-1; }
.ijx-help-tools-buttons {
	display: flex;
	gap: 12px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}
.ijx-btn-help-tool {
	flex: 1;
	min-width: 200px;
	background: #f9f9f9;
	border: 2px solid #000000;
	border-radius: 100px;
	padding: 14px 24px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	font-family: "Syne", sans-serif;
	transition: all .2s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.ijx-btn-help-tool:hover {
	background: #ffb647;
	border-color: #ffb647;
	transform: translateY(-2px);
}
.ijx-btn-help-tool i {
	font-size: 18px;
	color: #ffb647;
}
.ijx-btn-help-tool:hover i {
	color: #000000;
}
.ijx-help-tool-content {
	background: #f9f9f9;
	border: 2px solid #000000;
	border-radius: 20px;
	padding: 24px;
	margin-top: 16px;
}
.ijx-tool-input {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 20px;
}
.ijx-tool-input label {
	color: #000000;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .4px;
}
.ijx-tool-input label i {
	margin-right: 6px;
	color: #ffb647;
}
.ijx-tool-input input {
	width: 100%;
	padding: 12px 20px;
	border: 2px solid #000000;
	border-radius: 100px;
	font-size: 14px;
	font-family: "Syne", sans-serif;
}
.ijx-tool-input input:focus {
	border-color: #ffb647;
	outline: none;
	box-shadow: 0 0 0 3px rgba(255,182,71,.15);
}
.ijx-btn-analyze {
	background: #000000;
	color: #ffb647;
	border: 2px solid #000000;
	border-radius: 100px;
	padding: 12px 28px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	font-family: "Syne", sans-serif;
	transition: all .2s;
	align-self: flex-start;
}
.ijx-btn-analyze:hover {
	background: #ffb647;
	color: #000000;
	transform: translateY(-2px);
}
.ijx-tool-loading {
	text-align: center;
	padding: 40px 20px;
}
.ijx-progress-bar {
	width: 100%;
	max-width: 300px;
	height: 8px;
	background: #f3f4f6;
	border-radius: 100px;
	margin: 0 auto 16px;
	overflow: hidden;
	border: 1px solid #000000;
}
.ijx-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #ffb647, #ff9500);
	border-radius: 100px;
	animation: ijxProgress 2s ease-in-out infinite;
	width: 30%;
}
@keyframes ijxProgress {
	0% { width: 30%; }
	50% { width: 70%; }
	100% { width: 30%; }
}
.ijx-tool-loading p {
	color: #666666;
	font-size: 14px;
}
.ijx-tool-results {
	text-align: center;
	padding: 20px;
}
.ijx-score-circular {
	width: 150px;
	height: 150px;
	margin: 0 auto 24px;
}
.ijx-score-circular svg {
	transform: rotate(-90deg);
}
.ijx-score-bg {
	fill: none;
	stroke: #f3f4f6;
	stroke-width: 8;
}
.ijx-score-fill {
	fill: none;
	stroke: #ffb647;
	stroke-width: 8;
	stroke-linecap: round;
	stroke-dasharray: 283;
	stroke-dashoffset: 283;
	transition: stroke-dashoffset 1.5s ease;
}
.ijx-score-text {
	fill: #000000;
	font-size: 28px;
	font-weight: 800;
	text-anchor: middle;
	transform: rotate(90deg);
	transform-origin: 50px 50px;
}
.ijx-score-details {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
	margin-bottom: 24px;
	text-align: left;
}
.ijx-score-item {
	background: #ffffff;
	border: 2px solid #000000;
	border-radius: 15px;
	padding: 14px;
}
.ijx-score-item span:first-child {
	display: block;
	color: #666666;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 8px;
}
.ijx-score-bar {
	height: 8px;
	background: #f3f4f6;
	border-radius: 100px;
	margin-bottom: 8px;
	overflow: hidden;
	border: 1px solid #000000;
}
.ijx-score-bar-fill {
	height: 100%;
	background: linear-gradient(90deg, #ffb647, #ff9500);
	border-radius: 100px;
	transition: width 1s ease;
	width: 0%;
}
.ijx-score-item span:last-child {
	color: #000000;
	font-size: 14px;
	font-weight: 700;
}
.ijx-tool-issues {
	background: #fff9f0;
	border: 2px solid #ffb647;
	border-radius: 15px;
	padding: 16px;
	margin-bottom: 20px;
	text-align: left;
}
.ijx-tool-issues h4 {
	color: #000000;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 12px;
}
.ijx-tool-issues ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.ijx-tool-issues li {
	color: #666666;
	font-size: 13px;
	padding: 6px 0;
	border-bottom: 1px solid #ffe5c2;
}
.ijx-tool-issues li:last-child {
	border-bottom: none;
}
.ijx-tool-issues li:before {
	content: "⚠️";
	margin-right: 8px;
}
.ijx-btn-cta {
	display: inline-block;
	background: linear-gradient(135deg, #000000, #333333);
	color: #ffb647;
	border: 2px solid #ffb647;
	border-radius: 100px;
	padding: 14px 32px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: all .2s;
}
.ijx-btn-cta:hover {
	background: #ffb647;
	color: #000000;
	transform: translateY(-2px);
}
.ijx-btn-cta i {
	margin-right: 8px;
}
.ijx-speed-grade {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, #ffb647, #ff9500);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 48px;
	font-weight: 800;
	color: #000000;
	border: 4px solid #000000;
}
.ijx-speed-grade.grade-a { background: linear-gradient(135deg, #059669, #10b981); }
.ijx-speed-grade.grade-b { background: linear-gradient(135deg, #0891b2, #06b6d4); }
.ijx-speed-grade.grade-c { background: linear-gradient(135deg, #d97706, #f59e0b); }
.ijx-speed-grade.grade-d { background: linear-gradient(135deg, #ea580c, #f97316); }
.ijx-speed-grade.grade-e { background: linear-gradient(135deg, #dc2626, #ef4444); }
.ijx-speed-grade.grade-f { background: linear-gradient(135deg, #7c2d12, #92400e); }
.ijx-speed-score {
	font-size: 18px;
	margin-bottom: 20px;
}
.ijx-speed-score strong {
	color: #ffb647;
	font-size: 24px;
}
.ijx-speed-metrics {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 12px;
	margin-bottom: 24px;
}
.ijx-metric-item {
	background: #ffffff;
	border: 2px solid #000000;
	border-radius: 15px;
	padding: 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}
.ijx-metric-item i {
	font-size: 24px;
	color: #ffb647;
}
.ijx-metric-item span {
	color: #666666;
	font-size: 12px;
}
.ijx-metric-item strong {
	color: #000000;
	font-size: 16px;
}

/* ===== FAQ ===== */
.ijx-card-faq { grid-column: 1/-1; }
.ijx-faq-toggle {
	background: #fff9f0;
	border: 2px solid #ffb647;
	color: #000000;
	border-radius: 100px;
	padding: 5px 16px;
	font-size: 12px;
	font-weight: 700;
	font-family: "Syne",sans-serif;
	cursor: pointer;
	transition: all .2s;
}
.ijx-faq-toggle:hover { background: #ffb647; }
.ijx-faq-toggle i { margin-right: 6px; }
.ijx-faq-content {
	margin-top: 16px;
	max-height: 500px;
	overflow-y: auto;
	padding-right: 10px;
}
.ijx-faq-list { display: flex; flex-direction: column; gap: 12px; }
.ijx-faq-item {
	background: #f9f9f9;
	border: 2px solid #000000;
	border-radius: 20px;
	overflow: hidden;
}
.ijx-faq-question {
	padding: 14px 16px;
	background: #ffffff;
	border-bottom: 1px solid #000000;
	cursor: pointer;
	font-weight: 700;
	font-size: 13px;
	color: #000000;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.ijx-faq-question:hover { background: #fff9f0; }
.ijx-faq-question i { color: #ffb647; transition: transform .3s; }
.ijx-faq-item.active .ijx-faq-question i { transform: rotate(180deg); }
.ijx-faq-answer {
	padding: 14px 16px;
	color: #666666;
	font-size: 13px;
	line-height: 1.6;
	display: none;
}
.ijx-faq-item.active .ijx-faq-answer { display: block; }
.ijx-faq-loading { color: #666666; font-size: 13px; text-align: center; padding: 20px; }

/* ===== REMINDERS ===== */
.ijx-card-reminders { grid-column: 1/-1; }
.ijx-reminders-desc {
	color: #666666;
	font-size: 13px;
	margin-bottom: 20px;
}
.ijx-reminders-form {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
	align-items: end;
}
.ijx-reminder-input {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.ijx-reminder-input label {
	color: #000000;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .4px;
}
.ijx-reminder-input label i {
	margin-right: 6px;
	color: #ffb647;
}
.ijx-reminder-input input {
	width: 100%;
	padding: 10px 16px;
	border: 2px solid #000000;
	border-radius: 100px;
	font-size: 14px;
	font-family: "Syne", sans-serif;
	text-align: center;
}
.ijx-reminder-input input:focus {
	border-color: #ffb647;
	outline: none;
	box-shadow: 0 0 0 3px rgba(255,182,71,.15);
}
.ijx-btn-save-reminders {
	background: #ffb647;
	color: #000000;
	padding: 12px 28px;
	border-radius: 100px;
	border: 2px solid #000000;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	font-family: "Syne", sans-serif;
	transition: all .2s;
	white-space: nowrap;
}
.ijx-btn-save-reminders:hover {
	background: #e5a340;
	transform: translateY(-2px);
}
.ijx-btn-save-reminders i { margin-right: 8px; }

/* ===== SUPPORT BAR ===== */
.ijx-support-bar {
	margin-top: 40px;
	padding: 20px;
	background: linear-gradient(135deg, #000000 0%, #333333 100%);
	border: 2px solid #ffb647;
	border-radius: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}
.ijx-support-bar span { color: #ffffff; font-size: 14px; font-weight: 600; }
.ijx-support-bar i { margin-right: 8px; color: #ffb647; }
.ijx-btn-support {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #25D366;
	color: #ffffff;
	padding: 12px 24px;
	border-radius: 100px;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	transition: all .2s;
	border: 2px solid #25D366;
}
.ijx-btn-support:hover { background: #1ebc57; border-color: #1ebc57; transform: translateY(-2px); }
.ijx-btn-support i { font-size: 18px; }

/* ===== FOOTER ===== */
.ijx-footer {
	margin-top: 40px;
	padding: 20px;
	border-top: 2px solid #000000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	color: #666666;
	font-size: 12px;
}
.ijx-footer-logout {
	background: #ffffff;
	border: 2px solid #000000;
	color: #000000;
	border-radius: 100px;
	padding: 8px 20px;
	font-size: 12px;
	cursor: pointer;
	font-family: "Syne",sans-serif;
	transition: all .2s;
	font-weight: 700;
}
.ijx-footer-logout:hover { background: #ffb647; border-color: #ffb647; color: #000000; }
.ijx-footer-logout i { margin-right: 6px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
	.ijx-main { padding: 16px 14px 40px; }
	.ijx-header-inner { padding: 0 14px; }
	.ijx-grid { grid-template-columns: 1fr; gap: 14px; }
	.ijx-card-full { grid-column: 1; }
	.ijx-login-card { padding: 28px 20px; }
	.ijx-login-title { font-size: 18px; }
	.ijx-cards-row { gap: 7px; }
	.ijx-exp-badge { font-size: 11px; padding: 6px 12px; }
	.ijx-info-grid { grid-template-columns: 1fr 1fr; }
	.ijx-reminder-actions { flex-direction: column; }
	.ijx-btn-wa, .ijx-btn-email { width: 100%; justify-content: center; }
	.ijx-brand-name { font-size: 13px; }
	.ijx-client-info { display: none; }
	.ijx-footer { flex-direction: column; text-align: center; }
	.ijx-cotiza-banner { flex-direction: column; text-align: center; }
	.ijx-cotiza-content { flex-direction: column; }
	.ijx-support-bar { flex-direction: column; text-align: center; }
	.ijx-btn-support { width: 100%; justify-content: center; }
	.ijx-plan-main { flex-direction: column; }
	.ijx-plan-image-container { text-align: center; margin-top: 16px; }
	.ijx-reminders-form { grid-template-columns: 1fr; }
	.ijx-reminder-box { flex-direction: column; text-align: center; }
	.ijx-reminder-icon { margin: 0 auto 12px; }
	.ijx-reminder-content { padding-left: 0; }
	.ijx-help-tools-buttons { flex-direction: column; }
	.ijx-btn-help-tool { width: 100%; }
	.ijx-score-details { grid-template-columns: 1fr; }
	.ijx-speed-metrics { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
	.ijx-info-grid { grid-template-columns: 1fr; }
	.ijx-resources-mini { grid-template-columns: 1fr 1fr; }
	.ijx-cards-row { display: grid; grid-template-columns: 1fr 1fr; }
}