:root {
  /* Colores principales de Bootstrap 5 */
  --bs-blue:    #0d6efd;
  --bs-indigo:  #6610f2;
  --bs-purple:  #6f42c1;
  --bs-pink:    #d63384;
  --bs-red:     #dc3545;
  --bs-orange:  #fd7e14;
  --bs-yellow:  #ffc107;
  --bs-green:   #198754;
  --bs-teal:    #20c997;
  --bs-cyan:    #0dcaf0;

  /* Colores funcionales */
  --bs-primary:   var(--bs-blue);
  --bs-secondary: #6c757d;
  --bs-success:   var(--bs-green);
  --bs-info:      var(--bs-cyan);
  --bs-warning:   var(--bs-yellow);
  --bs-danger:    var(--bs-red);
  --bs-light:     #f8f9fa;
  --bs-dark:      #212529;

  /* Colores de texto y fondo */
  --bs-body-color: #212529;
  --bs-body-bg:    #fff;

  /* Bordes y radios */
  --bs-border-width: 1px;
  --bs-border-color: #dee2e6;
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;

  /* Sombras */
  --bs-box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.15);
}


.main-content {
	width: 50%;
	border-radius: 20px;
	box-shadow: 0 5px 5px rgba(0,0,0,.4);
	margin: 5em auto;
	display: flex;
	overflow: hidden; /* Evita que el contenido sobresalga del borde redondeado */
}

.main-content .row {
	margin: 0; /* Elimina márgenes negativos de Bootstrap dentro de tu flex */
	width: 100%;
}

.company__info {
	flex: 0 0 40%; /* Mantiene proporción en flex */
	background-color: var(--bs-blue);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center; /* Centrado horizontal */
	color: #fff;
}

.login_form {
	flex: 1;
	background-color: #fff;
	padding: 2em;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.fa-android{
	font-size:3em;
}
@media screen and (max-width: 640px) {
	.main-content{width: 90%;}
	.company__info{
		display: none;
	}
	.login_form{
		border-top-left-radius:20px;
		border-bottom-left-radius:20px;
	}
}
@media screen and (min-width: 642px) and (max-width:800px){
	.main-content{width: 70%;}
}
.row > h2{
	color:var(--bs-blue);
}
.login_form{
	background-color: #fff;
	border-top-right-radius:20px;
	border-bottom-right-radius:20px;
	border-top:1px solid #ccc;
	border-right:1px solid #ccc;
}
form{
	padding: 0 2em;
}
.form__input{
	width: 100%;
	border:0px solid transparent;
	border-radius: 0;
	border-bottom: 1px solid #aaa;
	padding: 1em .5em .5em;
	padding-left: 2em;
	outline:none;
	margin:1.5em auto;
	transition: all .5s ease;
}
.form__input:focus{
	border-bottom-color: var(--bs-blue);
	box-shadow: 0 0 5px rgba(0,80,80,.4); 
	border-radius: 4px;
}
.btn{
	transition: all .5s ease;
	width: 70%;
	border-radius: 30px;
	padding: 1em;
	color:var(--bs-blue);
	font-weight: 600;
	background-color: #fff;
	border: 1px solid var(--bs-blue);
	margin: 1.5em auto;
	margin-top: 1.5em;
	margin-bottom: 1em;
	display: block;
}
.btn:hover, .btn:focus{
	background-color: var(--bs-blue);
	color:#fff;
}

.features-section {
	padding: 3rem 1rem 4rem;
	background:
		radial-gradient(circle at top left, rgba(14, 165, 233, 0.16), transparent 28%),
		radial-gradient(circle at top right, rgba(37, 99, 235, 0.14), transparent 30%),
		linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.features-shell {
	max-width: 1120px;
	margin: 0 auto;
}

.hero-section {
	position: relative;
	min-height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	background: linear-gradient(160deg, #f0f8ff 0%, #dbeeff 35%, #bfdbfe 65%, #e0f2fe 100%);
	padding: 4rem 1.5rem 2.5rem;
}

.hero-bg-orbs {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(70px);
	opacity: 0.28;
	animation: orb-float 9s ease-in-out infinite alternate;
}

.hero-orb-1 {
	width: 340px;
	height: 340px;
	background: radial-gradient(circle, #7dd3fc 0%, transparent 70%);
	top: -80px;
	left: -100px;
	animation-delay: 0s;
}

.hero-orb-2 {
	width: 260px;
	height: 260px;
	background: radial-gradient(circle, #a5b4fc 0%, transparent 70%);
	bottom: -60px;
	right: -60px;
	animation-delay: 3s;
}

.hero-orb-3 {
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, #38bdf8 0%, transparent 70%);
	top: 40%;
	left: 60%;
	animation-delay: 5.5s;
}

@keyframes orb-float {
	from { transform: translateY(0) scale(1); }
	to   { transform: translateY(-36px) scale(1.07); }
}

.hero-shell {
	position: relative;
	z-index: 1;
	max-width: 600px;
	margin: 0 auto;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(14, 165, 233, 0.1);
	border: 1px solid rgba(14, 165, 233, 0.3);
	color: #0369a1;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	padding: 0.35rem 1rem;
	border-radius: 100px;
	margin-bottom: 0.9rem;
}

.hero-headline {
	font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
	font-size: clamp(1.6rem, 4vw, 2.6rem);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #0f172a;
	margin-bottom: 0.7rem;
}

.hero-brand {
	background: linear-gradient(90deg, #0ea5e9 0%, #6366f1 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-sub {
	font-size: clamp(0.9rem, 2vw, 1rem);
	color: #475569;
	font-weight: 500;
	line-height: 1.7;
	max-width: 520px;
	margin: 0 auto 0.4rem;
}

.hero-welcome {
	font-size: 0.95rem;
	font-weight: 700;
	color: #0284c7;
	margin-bottom: 1.2rem;
	letter-spacing: 0.01em;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.hero-cta-primary {
	background: linear-gradient(90deg, #0ea5e9, #6366f1);
	color: #fff;
	font-weight: 700;
	font-size: 0.95rem;
	padding: 0.65rem 1.8rem;
	border-radius: 100px;
	border: none;
	box-shadow: 0 6px 24px rgba(14, 165, 233, 0.32);
	transition: box-shadow 0.2s, transform 0.2s;
}

.hero-cta-primary:hover {
	color: #fff;
	box-shadow: 0 10px 32px rgba(14, 165, 233, 0.48);
	transform: translateY(-2px);
}

.hero-cta-ghost {
	background: rgba(14, 165, 233, 0.08);
	color: #0369a1;
	font-weight: 600;
	font-size: 0.95rem;
	padding: 0.65rem 1.8rem;
	border-radius: 100px;
	border: 1px solid rgba(14, 165, 233, 0.35);
	transition: background 0.2s, transform 0.2s;
}

.hero-cta-ghost:hover {
	background: rgba(14, 165, 233, 0.16);
	color: #0284c7;
	transform: translateY(-2px);
}

#userMenuBtnDesktop,
#userMenuBtnMobile {
	width: auto;
	min-width: 52px;
	height: 52px;
	border-radius: 50px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	margin: 0;
}

#userMenuBtnDesktop:hover .user-menu-text,
#userMenuBtnDesktop:focus-visible .user-menu-text,
#userMenuBtnMobile:hover .user-menu-text,
#userMenuBtnMobile:focus-visible .user-menu-text {
	color: #fff !important;
}

#userMenuBtnDesktop:hover .user-menu-icon,
#userMenuBtnDesktop:focus-visible .user-menu-icon,
#userMenuBtnDesktop.show .user-menu-icon,
#userMenuBtnDesktop.show .user-menu-text,
#userMenuBtnMobile:hover .user-menu-icon,
#userMenuBtnMobile:focus-visible .user-menu-icon,
#userMenuBtnMobile.show .user-menu-icon,
#userMenuBtnMobile.show .user-menu-text {
	color: #fff !important;
}

.user-menu-icon {
	font-size: 2.3rem;
	color: #007bff;
}

.user-menu-dropdown {
	min-width: 220px;
}

.features-intro {
	max-width: 720px;
	margin: 0 auto 2rem;
	text-align: center;
}

.features-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.4rem 0.85rem;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.1);
	color: #1d4ed8;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.features-title {
	margin: 1rem 0 0.75rem;
	font-size: clamp(2rem, 3vw, 3rem);
	line-height: 1.05;
	color: #0f172a;
	font-weight: 800;
}

.features-copy {
	color: #475569;
	font-size: 1.05rem;
	line-height: 1.7;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-bottom: 2rem;
}

.feature-panel {
	position: relative;
	overflow: hidden;
	padding: 1.35rem;
	border-radius: 1.5rem;
	border: 1px solid rgba(148, 163, 184, 0.18);
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.feature-panel::after {
	content: '';
	position: absolute;
	inset: auto -20% -35% auto;
	width: 180px;
	height: 180px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(56, 189, 248, 0.2), transparent 70%);
	pointer-events: none;
}

.feature-icon {
	width: 3rem;
	height: 3rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 1rem;
	margin-bottom: 1rem;
	font-size: 1.25rem;
	background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
	color: #1d4ed8;
}

.feature-shop-btn {
	position: relative;
	z-index: 1;
	width: auto;
	align-self: flex-start;
	margin: 1rem 0 0;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(90deg, #0f766e 0%, #2563eb 100%);
	color: #fff;
	font-size: 0.92rem;
	font-weight: 700;
	padding: 0.72rem 1.2rem;
	box-shadow: 0 12px 28px rgba(37, 99, 235, 0.2);
}

.feature-shop-btn:hover,
.feature-shop-btn:focus-visible {
	background: linear-gradient(90deg, #0d9488 0%, #1d4ed8 100%);
	color: #fff;
	transform: translateY(-1px);
}

.feature-step {
	display: inline-flex;
	margin-bottom: 0.8rem;
	padding: 0.28rem 0.65rem;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.06);
	color: #334155;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.feature-heading {
	font-size: 1.25rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 0.35rem;
}

.feature-subtitle {
	color: #1d4ed8;
	font-weight: 700;
	margin-bottom: 0.8rem;
}

.feature-text {
	color: #475569;
	line-height: 1.7;
	margin: 0;
}

.brand-story-shell {
	max-width: 980px;
	margin: 0 auto;
	padding: 1.2rem;
}

.landing-accordion .accordion-item {
	border: 0;
	border-radius: 1.4rem;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
	margin-bottom: 1rem;
}

.landing-accordion .accordion-button {
	padding: 1.15rem 1.25rem;
	font-weight: 700;
	color: #0f172a;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	box-shadow: none;
}

.landing-accordion .accordion-button:not(.collapsed) {
	color: #1d4ed8;
	background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
}

.landing-accordion .accordion-body {
	padding: 1.3rem;
}

.story-lead {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1.3fr 0.8fr;
	margin-bottom: 1.25rem;
}

.story-card {
	padding: 1.15rem;
	border-radius: 1.25rem;
	background: linear-gradient(145deg, #eff6ff 0%, #ffffff 100%);
	border: 1px solid rgba(148, 163, 184, 0.18);
}

.story-card h6,
.story-card h5 {
	margin-bottom: 0.6rem;
	color: #0f172a;
	font-weight: 800;
}

.story-card p {
	margin-bottom: 0;
	color: #475569;
	line-height: 1.7;
}

.story-founders {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.9rem;
}

.story-founders span {
	display: inline-flex;
	padding: 0.45rem 0.8rem;
	border-radius: 999px;
	background: #dbeafe;
	color: #1d4ed8;
	font-size: 0.85rem;
	font-weight: 700;
}

.story-feature-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	padding: 0;
	margin: 1rem 0 0;
	list-style: none;
}

.story-feature-list li {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
	padding: 0.85rem 0.95rem;
	border-radius: 1rem;
	background: #f8fafc;
	color: #334155;
	line-height: 1.55;
}

.story-feature-list li::before {
	content: '•';
	color: #2563eb;
	font-size: 1.2rem;
	line-height: 1;
	margin-top: 0.08rem;
}

.story-closing {
	margin-top: 1.2rem;
	padding: 1rem 1.1rem;
	border-radius: 1.1rem;
	background: linear-gradient(90deg, #0f172a 0%, #1d4ed8 100%);
	color: #eff6ff;
}

.story-closing p {
	margin: 0;
	line-height: 1.7;
}

.api-showcase {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 1rem;
	margin-top: 1.2rem;
	padding: 1rem;
	border-radius: 1.4rem;
	background: linear-gradient(135deg, #020617 0%, #111827 55%, #0f172a 100%);
	color: #e2e8f0;
	box-shadow: 0 20px 48px rgba(2, 6, 23, 0.24);
}

.api-showcase-copy h6 {
	color: #f8fafc;
	font-weight: 800;
	margin-bottom: 0.65rem;
}

.api-showcase-copy p {
	color: #cbd5e1;
	line-height: 1.75;
	margin-bottom: 0.8rem;
}

.api-pill-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.api-pill-list li {
	padding: 0.42rem 0.75rem;
	border-radius: 999px;
	background: rgba(148, 163, 184, 0.14);
	color: #bfdbfe;
	font-size: 0.83rem;
	font-weight: 700;
}

.api-window {
	overflow: hidden;
	border-radius: 1.1rem;
	border: 1px solid rgba(148, 163, 184, 0.14);
	background: #020617;
}

.api-window-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.8rem 0.95rem;
	background: rgba(15, 23, 42, 0.95);
	border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.api-window-dots {
	display: inline-flex;
	gap: 0.35rem;
}

.api-window-dots span {
	width: 0.62rem;
	height: 0.62rem;
	border-radius: 999px;
	display: inline-block;
}

.api-window-dots span:nth-child(1) {
	background: #fb7185;
}

.api-window-dots span:nth-child(2) {
	background: #fbbf24;
}

.api-window-dots span:nth-child(3) {
	background: #4ade80;
}

.api-window-label {
	color: #94a3b8;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.api-window pre {
	margin: 0;
	padding: 1rem;
	color: #e2e8f0;
	font-size: 0.88rem;
	line-height: 1.7;
	overflow-x: auto;
}

.api-code-comment {
	color: #64748b;
}

.api-code-keyword {
	color: #7dd3fc;
}

.api-code-string {
	color: #86efac;
}

.api-code-number {
	color: #f9a8d4;
}

.password-recovery-modal .modal-content {
	border: 0;
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: 0 24px 80px rgba(15, 23, 42, 0.18);
}

.password-recovery-modal .modal-header {
	border-bottom: 0;
	padding: 1.25rem 1.25rem 0;
}

.password-recovery-modal .modal-body {
	padding: 0 1.25rem 1.25rem;
}

.password-recovery-hero {
	background: linear-gradient(145deg, #0f172a 0%, #1d4ed8 55%, #38bdf8 100%);
	border-radius: 1.25rem;
	color: #f8fafc;
	padding: 1.1rem;
	margin-bottom: 1rem;
}

.password-recovery-hero .badge {
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.password-recovery-input {
	border: 1px solid #dbeafe;
	border-radius: 0.95rem;
	padding: 0.9rem 1rem;
	box-shadow: none;
}

.password-recovery-input:focus {
	border-color: #60a5fa;
	box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.12);
}

.password-recovery-btn {
	border: 0;
	border-radius: 999px;
	padding: 0.9rem 1.1rem;
	background: linear-gradient(90deg, #1d4ed8 0%, #0ea5e9 100%);
	color: #ffffff;
	font-weight: 600;
	box-shadow: 0 14px 32px rgba(37, 99, 235, 0.18);
	white-space: normal;
	line-height: 1.2;
	min-height: 48px;
}

.password-recovery-btn:hover {
	background: linear-gradient(90deg, #1e40af 0%, #0284c7 100%);
	color: #ffffff;
}

.demo-img-wide {
	max-width: 400px;
}

.demo-img-mid {
	max-width: 320px;
}

.demo-whatsapp-icon {
	font-size: 1.3em;
}

.ked-course-progress {
	height: 20px;
}

.ked-course-progress-bar {
	width: 30%;
}

.ked-evaluation-questions {
	display: grid;
	gap: 1rem;
}

.ked-question {
	border: 1px solid #e5e7eb;
	border-radius: 0.75rem;
	padding: 1rem;
	background: #f8fafc;
}

.ked-question label {
	display: flex;
	gap: 0.55rem;
	align-items: flex-start;
	margin: 0.45rem 0;
	color: #334155;
}

.ked-question input {
	margin-top: 0.2rem;
}

.signup-modal .modal-content {
	border: 0;
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: 0 24px 80px rgba(15, 23, 42, 0.18);
}

.signup-modal .modal-dialog {
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.signup-modal .modal-header {
	border-bottom: 0;
	padding: 1.25rem 1.25rem 0;
}

.signup-modal .modal-body {
	padding: 0 1.25rem 1.25rem;
}

.signup-hero {
	background: linear-gradient(145deg, #1e3a5f 0%, #3b82c4 56%, #7dd3fc 100%);
	border-radius: 1.25rem;
	color: #f8fafc;
	padding: 1.15rem;
	margin-bottom: 1rem;
}

.signup-hero .badge {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.signup-input-group {
	border: 1px solid #dbeafe;
	border-radius: 0.95rem;
	overflow: hidden;
	background: #fff;
}

.signup-input-group:focus-within {
	border-color: #60a5fa;
	box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.12);
}

.signup-input-group .input-group-text,
.signup-input-group .form-control,
.signup-input-group .btn {
	border: 0;
	box-shadow: none;
}

.signup-input-group .input-group-text {
	background: #fff;
	color: #2563eb;
	padding-left: 1rem;
}

.signup-input-group .form-control {
	padding: 0.75rem 0.85rem;
}

.signup-input-group .btn {
	background: #fff;
	color: #475569;
	width: auto;
	min-width: 44px;
	margin: 0;
	padding: 0 1rem;
	border-radius: 0;
}

.signup-legal {
	border: 1px solid #e2e8f0;
	border-radius: 1rem;
	background: #f8fafc;
	padding: 0.85rem 0.95rem;
}

.signup-legal .form-check-input {
	margin-top: 0.2rem;
	border-color: #94a3b8;
}

.signup-submit {
	border: 0;
	border-radius: 999px;
	padding: 0.95rem 1.2rem;
	background: linear-gradient(90deg, #2563eb 0%, #0ea5e9 100%);
	font-weight: 600;
	box-shadow: 0 14px 32px rgba(37, 99, 235, 0.18);
}

.signup-submit:hover {
	background: linear-gradient(90deg, #1d4ed8 0%, #0284c7 100%);
}

.verification-envelope-icon {
	font-size: 28px;
	color: #ff9800;
}

.verification-step-bordered {
	border-bottom: 1px solid #dee2e6;
}

.steps-container .step-number {
	width: 40px;
	height: 40px;
	font-weight: bold;
}

#authProgressContainer {
	z-index: 2000;
	max-width: 100%;
}

#authProgressContainer .progress {
	height: 35px;
}

#authProgressBar {
	width: 0%;
	font-size: 1.1rem;
	line-height: 35px;
}

#kedshop-floating {
	position: fixed;
	width: 56px;
	height: 56px;
	bottom: 92px;
	left: 24px;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: transparent;
	box-shadow: 0 8px 20px rgba(14, 165, 233, 0.35);
	overflow: hidden;
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s;
}

#kedshop-floating:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(14, 165, 233, 0.45);
}

#kedshop-floating img {
	width: 56px;
	height: 56px;
	display: block;
}

#whatsapp-support {
	position: fixed;
	width: 56px;
	height: 56px;
	bottom: 24px;
	left: 24px;
	z-index: 9999;
	background: transparent;
	border-radius: 50%;
	box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s, box-shadow 0.2s;
	text-decoration: none;
}

#whatsapp-support:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(37, 211, 102, 0.45);
}

.whatsapp-support-icon {
	width: 56px;
	height: 56px;
	display: block;
}

@media (max-width: 768px) {
	#kedshop-floating {
		left: auto;
		right: 24px;
		bottom: 92px;
	}

	#whatsapp-support {
		left: auto;
		right: 24px;
		bottom: 24px;
	}
}

@media (max-width: 991px) {
	.api-showcase {
		grid-template-columns: 1fr;
	}

	.feature-grid,
	.story-lead,
	.story-feature-list {
		grid-template-columns: 1fr;
	}

	.demo-img-pc {
		max-width: 90vw !important;
	}
}

@media (min-width: 992px) {
	.demo-img-pc {
		max-width: 260px !important;
	}
}

@media (max-width: 767px) {
	.card-title {
		font-size: 1.1rem;
	}

	.card-text {
		font-size: 0.98rem;
	}

	.img-fluid {
		max-width: 90vw;
	}
}

.card-title {
	font-size: 1.3rem;
}

.card-text {
	font-size: 1.05rem;
}

.login-section {
	background:
		linear-gradient(180deg, #eef7ff 0%, #f8fafc 100%);
	padding: 3rem 1rem 3.5rem;
}

.login-container {
	width: min(100%, 920px);
}

.login-card {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(37, 99, 235, 0.18);
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 22px 58px rgba(15, 23, 42, 0.16);
	padding: 2.35rem 2rem 1.75rem;
}

.login-card::before {
	content: '';
	position: absolute;
	inset: 0 0 auto;
	height: 6px;
	background: linear-gradient(90deg, #0ea5e9 0%, #2563eb 55%, #22c55e 100%);
}

.login-card h4 {
	color: #0f3f8f;
	font-size: 1.35rem;
	margin-bottom: 1.7rem;
}

.login-card .form-group input,
.login-card .form-group .form-select {
	border: 1px solid #bfd7ff;
	background: #f8fbff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.login-card .form-group input:focus,
.login-card .form-group .form-select:focus {
	border-color: #3b82f6;
	background: #fff;
	box-shadow: 0 0 0 0.22rem rgba(59, 130, 246, 0.14);
}

.login-card #login-button,
.login-card #login-button-p {
	width: 100%;
	margin: 0.25rem 0 0.85rem;
	box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

@media (max-width: 767px) {
	.login-section {
		padding-top: 2rem;
	}

	.login-card {
		padding: 2rem 1.25rem 1.5rem;
		box-shadow: 0 16px 42px rgba(15, 23, 42, 0.14);
	}
}
