:root {
  --bg-a: #021418;
  --bg-b: #07323a;
  --panel-a: rgba(12, 55, 62, 0.94);
  --panel-b: rgba(22, 48, 73, 0.92);
  --card-a: rgba(15, 34, 59, 0.94);
  --card-b: rgba(30, 43, 64, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f3f9ff;
  --muted: #b7cedf;
  --mint-1: #35f2c0;
  --mint-2: #1fcfa1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  width: 100%;
  color: var(--text);
  font-family: "Segoe UI", "Nirmala UI", sans-serif;
  background:
    radial-gradient(
      circle at 14% 10%,
      rgba(78, 255, 214, 0.12),
      transparent 36%
    ),
    radial-gradient(
      circle at 86% 2%,
      rgba(152, 114, 255, 0.15),
      transparent 30%
    ),
    linear-gradient(120deg, var(--bg-a), var(--bg-b));
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}

.orb-blue {
  width: 340px;
  height: 340px;
  top: -110px;
  right: -80px;
  background: #18a7ff;
}

.orb-purple {
  width: 280px;
  height: 280px;
  left: -90px;
  top: 32%;
  background: #8d52ff;
}

header.nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5000;
  width: min(1320px, calc(100% - 28px));
  margin-top: 0;
  padding: 16px 20px;
  border-radius: 20px;
  border: 1px solid rgba(134, 245, 230, 0.22);
  background:
    radial-gradient(
      circle at 30% 0,
      rgba(124, 255, 233, 0.15),
      transparent 42%
    ),
    linear-gradient(130deg, var(--panel-a), var(--panel-b));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

/* ===== PREMIUM PROFILE DROPDOWN START ===== */
.profile-dropdown {
  width: 292px;
  border-radius: 18px;
  text-align: left;
}

.profile-dropdown-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(126, 230, 255, 0.16);
}

.profile-dropdown-avatar {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  border: 2px solid rgba(141, 247, 208, 0.72);
  background: center / cover no-repeat url("../img/indonline.png");
  box-shadow: 0 0 0 4px rgba(76, 231, 255, 0.1);
}

.profile-fullname {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.15;
}

.profile-email {
  margin-top: 3px;
  color: rgba(224, 241, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  max-width: 178px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-dropdown-status {
  margin: 12px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 217, 79, 0.24);
  padding: 9px 10px;
  color: #fff3c4;
  background: rgba(255, 201, 65, 0.1);
}

.profile-dropdown-status span {
  font-size: 12px;
  font-weight: 800;
}

.profile-dropdown-status strong {
  border-radius: 999px;
  padding: 4px 10px;
  color: #062923;
  background: #bdfdea;
  font-size: 12px;
  font-weight: 900;
}

.profile-link,
.profile-logout {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  font-size: 16px;
}

.profile-link-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: rgba(53, 242, 192, 0.14);
}

.profile-logout {
  color: #062923;
  background: linear-gradient(130deg, var(--mint-1), #4ce7ff);
  font-weight: 900;
}
/* ===== PREMIUM PROFILE DROPDOWN END ===== */

body.home-page.guest-mode header.nav {
  width: min(1720px, calc(100% - 8px));
  max-width: none;
  padding: 14px 18px;
}

body.home-page[data-initial-auth="guest"] header.nav {
  width: min(1720px, calc(100% - 8px));
  max-width: none;
  padding: 14px 18px;
}

body.index-page.index-user-mode {
  padding-top: 122px;
}

body.index-page.index-user-mode header.nav,
body.index-page[data-initial-auth="user"] header.nav {
  left: 0;
  right: 0;
  transform: none;
  width: 100%;
  max-width: none;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  padding: 14px 22px;
}

body.index-page.index-user-mode header.nav nav,
body.index-page[data-initial-auth="user"] header.nav nav {
  width: 100%;
  margin: 0 auto;
}

body.index-page.index-user-mode .service-grid,
body.index-page[data-initial-auth="user"] .service-grid {
  padding-top: 14px;
}

body.home-page[data-initial-auth="guest"] header.nav nav,
body.home-page.guest-mode header.nav nav {
  grid-template-columns: auto minmax(300px, 1fr) auto auto auto;
  gap: 8px;
  align-items: center;
}

body.home-page[data-initial-auth="guest"] .nav-links,
body.home-page.guest-mode .nav-links {
  justify-content: flex-end;
  min-width: 0;
  padding-left: 18px;
}

body.home-page[data-initial-auth="guest"] .nav-links ul,
body.home-page.guest-mode .nav-links ul {
  justify-content: flex-end;
  gap: 10px;
}

body.home-page[data-initial-auth="guest"] .header-preferences,
body.home-page[data-initial-auth="guest"] #loginBtn,
body.home-page[data-initial-auth="guest"] #registerBtn,
body.home-page.guest-mode .header-preferences,
body.home-page.guest-mode #loginBtn,
body.home-page.guest-mode #registerBtn {
  flex: 0 0 auto;
}

body.home-page.guest-mode .header-preferences {
  gap: 6px;
}

body.home-page.guest-mode .header-pref-item {
  padding: 5px 7px;
}

body.home-page.guest-mode .header-select {
  min-width: 86px;
}

body.home-page.guest-mode #loginBtn {
  width: fit-content;
  min-width: 0;
  max-width: max-content;
  flex: 0 0 auto;
  min-height: 62px;
  padding: 4px 14px 4px 6px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  border: 3px solid rgba(255, 157, 111, 0.82);
  border-radius: 999px;
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 214, 117, 0.2), transparent 20%),
    linear-gradient(180deg, rgba(255, 220, 132, 0.22), rgba(255, 220, 132, 0) 22%),
    linear-gradient(145deg, #3d1a04 0%, #6a3008 24%, #8f4a10 48%, #6b3208 72%, #2f1403 100%);
  color: #ffe0a0;
  box-shadow:
    0 10px 22px rgba(72, 25, 8, 0.34),
    inset 0 2px 0 rgba(255, 247, 221, 0.52),
    inset 0 -4px 10px rgba(180, 91, 48, 0.18),
    inset 0 0 0 2px rgba(137, 71, 19, 0.34);
  overflow: visible;
}

body.home-page.guest-mode #loginBtn::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 999px;
  border: 1px solid rgba(255, 209, 141, 0.7);
  pointer-events: none;
}

body.home-page.guest-mode #loginBtn .login-cta-icon,
body.home-page.guest-mode #loginBtn .login-cta-text,
body.home-page.guest-mode #loginBtn .login-cta-arrow {
  position: relative;
  z-index: 1;
}

body.home-page.guest-mode #loginBtn .login-cta-badge {
  flex: 0 0 auto;
  width: 72px;
  min-width: 72px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  margin-left: 0;
  margin-right: -10px;
}

body.home-page.guest-mode #loginBtn .login-cta-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 31px;
  border-radius: 0;
  background:
    linear-gradient(145deg, #1aa065, #0f8d59 58%, #0b7d4e);
  color: #6fc0ff;
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(196, 255, 225, 0.22);
  clip-path: polygon(50% 0%, 88% 14%, 88% 53%, 50% 100%, 12% 53%, 12% 14%);
  position: relative;
  margin-right: 0;
}

body.home-page.guest-mode #loginBtn .login-cta-key {
  content: "";
  position: absolute;
  right: 30px;
  top: 16px;
  width: 30px;
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 244, 201, 0.9), rgba(255, 244, 201, 0) 38%),
    linear-gradient(145deg, #ffe28a, #f2bc43 56%, #b96e14);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 243, 199, 0.72);
  transform: rotate(-7deg);
  z-index: 3;
}

body.home-page.guest-mode #loginBtn .login-cta-key::before {
  content: "";
  position: absolute;
  right: -9px;
  top: -8px;
  width: 15px;
  height: 15px;
  border: 4px solid #efb53f;
  border-radius: 50%;
  box-shadow:
    inset 0 1px 0 rgba(255, 242, 194, 0.7),
    0 0 0 1px rgba(188, 112, 24, 0.42);
  z-index: 4;
}

body.home-page.guest-mode #loginBtn .login-cta-key::after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: -4px;
  width: 12px;
  height: 8px;
  background:
    linear-gradient(90deg,
      transparent 0 2px,
      #d89728 2px 5px,
      transparent 5px 7px,
      #b86d15 7px 10px,
      transparent 10px 100%);
  clip-path: polygon(0 0, 100% 0, 100% 40%, 78% 40%, 78% 100%, 56% 100%, 56% 40%, 0 40%);
  transform: rotate(2deg);
}

body.home-page.guest-mode #loginBtn .login-cta-text {
  flex: 1 1 auto;
  text-align: center;
  white-space: nowrap;
  font-size: 31px;
  font-weight: 900;
  letter-spacing: 0;
  color: #ffd88c;
  text-shadow:
    0 1px 0 rgba(255, 248, 220, 0.7),
    0 3px 0 rgba(86, 39, 8, 0.98),
    0 5px 8px rgba(79, 33, 10, 0.18);
  margin-left: -14px;
  margin-right: 6px;
}

body.home-page.guest-mode #loginBtn .login-cta-arrow {
  display: none;
}

body.home-page.guest-mode #loginBtn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 14px 28px rgba(52, 18, 3, 0.34),
    inset 0 1px 0 rgba(255, 241, 200, 0.56),
    inset 0 0 0 1px rgba(201, 116, 67, 0.28);
}

html[data-theme] #loginBtn,
html[data-theme] body.home-page.guest-mode #loginBtn {
  color: #ffe0a0 !important;
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 214, 117, 0.2), transparent 20%),
    linear-gradient(180deg, rgba(255, 220, 132, 0.22), rgba(255, 220, 132, 0) 22%),
    linear-gradient(145deg, #3d1a04 0%, #6a3008 24%, #8f4a10 48%, #6b3208 72%, #2f1403 100%) !important;
  border-color: rgba(255, 157, 111, 0.82) !important;
  box-shadow:
    0 10px 22px rgba(72, 25, 8, 0.34),
    inset 0 2px 0 rgba(255, 247, 221, 0.52),
    inset 0 -4px 10px rgba(180, 91, 48, 0.18),
    inset 0 0 0 2px rgba(137, 71, 19, 0.34) !important;
}

html[data-theme] #loginBtn::after,
html[data-theme] body.home-page.guest-mode #loginBtn::after {
  content: none !important;
}

html[data-theme] #loginBtn .login-cta-text,
html[data-theme] body.home-page.guest-mode #loginBtn .login-cta-text {
  color: #ffd88c !important;
}

html[data-theme] #loginBtn .login-cta-icon,
html[data-theme] body.home-page.guest-mode #loginBtn .login-cta-icon {
  color: #6fc0ff !important;
  background: linear-gradient(145deg, #1aa065, #0f8d59 58%, #0b7d4e) !important;
}

html[data-theme] #loginBtn .login-cta-arrow,
html[data-theme] body.home-page.guest-mode #loginBtn .login-cta-arrow {
  display: none !important;
}

@keyframes loginSparkPulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

header.nav::after {
  content: "";
  position: absolute;
  inset: -120% -24%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(124, 255, 233, 0.12) 70deg,
    transparent 140deg,
    rgba(150, 110, 255, 0.12) 230deg,
    transparent 320deg
  );
  animation: headerSpin 16s linear infinite;
  pointer-events: none;
}

@keyframes headerSpin {
  to {
    transform: rotate(360deg);
  }
}

header.nav nav {
  position: relative;
  z-index: 2;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  grid-template-rows: 1fr;
  grid-template-columns: auto 1fr auto auto auto auto auto auto;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 0 0 auto;
}

.nav-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(133, 239, 255, 0.75);
  box-shadow:
    0 0 0 4px rgba(52, 234, 193, 0.18),
    0 10px 22px rgba(0, 0, 0, 0.34);
  filter: drop-shadow(0 0 10px rgba(77, 248, 206, 0.45));
  animation: logoFloat 3.5s ease-in-out infinite;
}

.nav-logo img.brand-name-art {
  width: clamp(900px, 62vw, 1500px);
  height: 276px;
  max-width: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  animation: none;
  object-fit: contain;
  object-position: left center;
  background: transparent;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.4px;
  background: linear-gradient(
    90deg,
    #e9fff8,
    #8df7d0 45%,
    #a6dbff 85%,
    #e9fff8
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 10px rgba(95, 247, 205, 0.32);
  animation: brandShimmer 4.8s linear infinite;
}

@keyframes brandShimmer {
  to {
    background-position: 220% 0;
  }
}

.nav-links {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.header-preferences {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-pref-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(126, 230, 255, 0.24);
  background: rgba(6, 26, 41, 0.72);
  color: #dff8ff;
  font-size: 12px;
  font-weight: 700;
}

.header-select {
  min-width: 92px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(126, 230, 255, 0.3);
  background: rgba(13, 35, 54, 0.95);
  color: #e8f8ff;
  font-size: 12px;
  font-weight: 700;
  padding: 0 10px;
  outline: none;
  cursor: pointer;
}

.header-select:focus {
  border-color: rgba(54, 239, 198, 0.65);
  box-shadow: 0 0 0 2px rgba(54, 239, 198, 0.16);
}

.nav-links ul {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #ecf8ff;
  text-shadow: 0 2px 8px rgba(84, 238, 205, 0.2);
  transition:
    transform 0.22s ease,
    text-shadow 0.22s ease,
    color 0.22s ease;
}

.nav-links a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7bffe0, #32e9bb 46%, #7bc9ff);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.26s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a:hover {
  color: #ffffff;
  transform: translateY(-2px) scale(1.04);
  text-shadow:
    0 4px 14px rgba(72, 244, 208, 0.48),
    0 0 18px rgba(116, 203, 255, 0.4);
}

#gstHeaderTimer {
  display: none;
  align-items: center;
  gap: 6px;
  min-width: 88px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(130deg, #7440ff, #9d57ff 64%, #6b35eb);
  box-shadow: 0 10px 24px rgba(131, 88, 255, 0.46);
  animation: timerPulse 1.8s ease-in-out infinite;
}

@keyframes timerPulse {
  50% {
    transform: translateY(-2px);
  }
}

.mobile-hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.nav-link-btn,
.service-btn,
.glass-auth,
.logout-btn,
.gst-home-btn,
.form-submit,
.welcome-btn {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  color: #07261f;
  background: linear-gradient(130deg, var(--mint-1), var(--mint-2));
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-link-btn,
.service-btn,
.gst-home-btn {
  height: 36px;
  padding: 0 14px;
}

#registerBtn,
body.home-page.guest-mode #registerBtn {
  position: relative;
  height: auto;
  min-height: 82px;
  width: clamp(322px, 32vw, 528px);
  min-width: 0;
  padding: 6px 7px 6px 8px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  border: 2px solid rgba(255, 203, 105, 0.82);
  border-radius: 999px;
  background:
    radial-gradient(circle at 8% 50%, rgba(255, 247, 197, 0.95) 0 0.4%, rgba(255, 247, 197, 0) 1.1%),
    radial-gradient(circle at 14% 26%, rgba(255, 214, 111, 0.9) 0 0.55%, rgba(255, 214, 111, 0) 1.35%),
    radial-gradient(circle at 24% 74%, rgba(255, 176, 66, 0.85) 0 0.45%, rgba(255, 176, 66, 0) 1.15%),
    radial-gradient(circle at 42% 24%, rgba(255, 233, 158, 0.75) 0 0.42%, rgba(255, 233, 158, 0) 1.05%),
    radial-gradient(circle at 58% 78%, rgba(255, 154, 48, 0.82) 0 0.4%, rgba(255, 154, 48, 0) 1.05%),
    radial-gradient(circle at 88% 44%, rgba(255, 226, 142, 0.72) 0 0.38%, rgba(255, 226, 142, 0) 1%),
    radial-gradient(circle at 14% 50%, rgba(255, 213, 121, 0.28), transparent 18%),
    radial-gradient(circle at 52% 0%, rgba(255, 190, 92, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(255, 222, 133, 0.24), rgba(255, 215, 120, 0) 18%),
    linear-gradient(145deg, #641004, #a61d0a 24%, #db4a15 53%, #8d1f0b 80%, #561004);
  color: #fff4cb;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 238, 178, 0.5),
    inset 0 0 0 2px rgba(255, 146, 44, 0.3);
  animation: registerBtnPulse 1.25s ease-in-out infinite;
  overflow: hidden;
}

#registerBtn::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 999px;
  border: 1px solid rgba(255, 220, 143, 0.32);
  pointer-events: none;
}

#registerBtn .register-rocket {
  flex: 0 0 auto;
  font-size: 44px;
  line-height: 1;
  filter:
    drop-shadow(0 3px 8px rgba(0, 0, 0, 0.35))
    drop-shadow(0 0 8px rgba(255, 174, 49, 0.45))
    drop-shadow(0 0 18px rgba(255, 112, 36, 0.28));
  position: relative;
  animation: rocketFly 0.9s ease-in-out infinite;
  transform: rotate(-8deg);
  margin-right: -2px;
}

#registerBtn .register-rocket::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 246, 188, 0.95) 0 24%, rgba(255, 216, 103, 0.7) 25%, rgba(255, 147, 41, 0.22) 58%, rgba(255, 147, 41, 0) 100%);
  filter: blur(1px);
  animation: rocketSpark 0.28s linear infinite;
}

#registerBtn .register-rocket::after {
  content: "";
  position: absolute;
  left: -34px;
  top: 50%;
  width: 42px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 999px;
  background:
    radial-gradient(circle at 96% 50%, #fffce2 0 10%, #ffe485 12%, #ffb13f 32%, #ff6e2a 58%, rgba(255, 87, 34, 0) 100%);
  filter:
    blur(0.4px)
    drop-shadow(0 0 10px rgba(255, 153, 41, 0.7));
  animation: rocketFire 0.22s linear infinite;
}

#registerBtn .register-cta-copy {
  min-width: 0;
  display: grid;
  line-height: 1;
  flex: 0 1 auto;
  margin-right: -4px;
}

#registerBtn .register-cta-price {
  font-size: 28px;
  font-weight: 900;
  color: #ffd84f;
  text-shadow:
    0 0 10px rgba(255, 216, 79, 0.48),
    0 1px 6px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

#registerBtn .register-cta-price .old-price {
  color: #ffe0b2;
  opacity: 0.92;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #ff4b4b;
  margin-right: 6px;
  font-size: 22px;
}

#registerBtn .register-cta-price .new-price {
  color: #ffe542;
  text-shadow:
    0 0 10px rgba(255, 229, 66, 0.55),
    0 1px 6px rgba(0, 0, 0, 0.45);
}

#registerBtn .register-cta-main {
  margin-top: 1px;
  font-size: 15px;
  font-weight: 800;
  color: #fff8df;
  text-shadow:
    0 0 8px rgba(255, 248, 223, 0.35),
    0 1px 4px rgba(0, 0, 0, 0.44);
  white-space: nowrap;
}

#registerBtn .register-cta-pill {
  min-height: 66px;
  min-width: 184px;
  padding: 0 28px 0 12px;
  border-radius: 999px;
  border: 3px solid rgba(188, 236, 113, 0.9);
  background:
    radial-gradient(circle at 30% 22%, rgba(225, 255, 176, 0.32), rgba(225, 255, 176, 0) 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, #8ad63b, #5ab32b 44%, #367f1f 82%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff9d2;
  font-weight: 900;
  line-height: 1.05;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(241, 255, 208, 0.32),
    inset 0 -8px 14px rgba(34, 95, 20, 0.24);
  animation: joinPillPop 1.05s ease-in-out infinite;
  text-align: center;
  position: relative;
}

#registerBtn .register-cta-pill span {
  font-size: 14px;
}

#registerBtn .register-cta-pill small {
  font-size: 16px;
  font-weight: 900;
  color: #ffe45f;
  margin-top: 1px;
}

#registerBtn .register-cta-pill::after {
  content: "➜";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  line-height: 1;
  color: #fff3c9;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.32);
}

#registerBtn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 238, 178, 0.5);
}

html[data-theme] #registerBtn,
html[data-theme] body.home-page.guest-mode #registerBtn {
  color: #fff4cb !important;
  background:
    radial-gradient(circle at 8% 50%, rgba(255, 247, 197, 0.95) 0 0.4%, rgba(255, 247, 197, 0) 1.1%),
    radial-gradient(circle at 14% 26%, rgba(255, 214, 111, 0.9) 0 0.55%, rgba(255, 214, 111, 0) 1.35%),
    radial-gradient(circle at 24% 74%, rgba(255, 176, 66, 0.85) 0 0.45%, rgba(255, 176, 66, 0) 1.15%),
    radial-gradient(circle at 42% 24%, rgba(255, 233, 158, 0.75) 0 0.42%, rgba(255, 233, 158, 0) 1.05%),
    radial-gradient(circle at 58% 78%, rgba(255, 154, 48, 0.82) 0 0.4%, rgba(255, 154, 48, 0) 1.05%),
    radial-gradient(circle at 88% 44%, rgba(255, 226, 142, 0.72) 0 0.38%, rgba(255, 226, 142, 0) 1%),
    radial-gradient(circle at 14% 50%, rgba(255, 213, 121, 0.28), transparent 18%),
    radial-gradient(circle at 52% 0%, rgba(255, 190, 92, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(255, 222, 133, 0.24), rgba(255, 215, 120, 0) 18%),
    linear-gradient(145deg, #641004, #a61d0a 24%, #db4a15 53%, #8d1f0b 80%, #561004) !important;
  border-color: rgba(255, 203, 105, 0.82) !important;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 238, 178, 0.5),
    inset 0 0 0 2px rgba(255, 146, 44, 0.3) !important;
}

html[data-theme] #registerBtn::after,
html[data-theme] body.home-page.guest-mode #registerBtn::after {
  content: none !important;
}

html[data-theme] #registerBtn .register-cta-price,
html[data-theme] body.home-page.guest-mode #registerBtn .register-cta-price {
  color: #ffd84f !important;
}

html[data-theme] #registerBtn .register-cta-price .old-price,
html[data-theme] body.home-page.guest-mode #registerBtn .register-cta-price .old-price {
  color: #ffe0b2 !important;
}

html[data-theme] #registerBtn .register-cta-main,
html[data-theme] body.home-page.guest-mode #registerBtn .register-cta-main {
  color: #fff8df !important;
}

html[data-theme] #registerBtn .register-cta-pill,
html[data-theme] body.home-page.guest-mode #registerBtn .register-cta-pill {
  color: #fff9d2 !important;
  background:
    radial-gradient(circle at 30% 22%, rgba(225, 255, 176, 0.32), rgba(225, 255, 176, 0) 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, #8ad63b, #5ab32b 44%, #367f1f 82%) !important;
  border-color: rgba(188, 236, 113, 0.9) !important;
  box-shadow:
    inset 0 1px 0 rgba(241, 255, 208, 0.32),
    inset 0 -8px 14px rgba(34, 95, 20, 0.24) !important;
}

html[data-theme] #registerBtn .register-cta-pill small,
html[data-theme] body.home-page.guest-mode #registerBtn .register-cta-pill small {
  color: #ffe45f !important;
}

@media (max-width: 1400px) {
  header.nav {
    width: min(1240px, calc(100% - 20px));
    padding: 12px 14px;
  }

  body.home-page.guest-mode header.nav {
    width: min(1480px, calc(100% - 10px));
  }

  body.home-page.guest-mode header.nav nav {
    grid-template-columns: auto minmax(220px, 1fr) auto auto auto;
    gap: 8px;
  }

  body.home-page.guest-mode .nav-links ul {
    gap: 8px;
  }

  body.home-page.guest-mode .nav-links a {
    font-size: 14px;
  }

  body.home-page.guest-mode #loginBtn {
    width: fit-content;
    min-width: 0;
    max-width: max-content;
    min-height: 46px;
    gap: 8px;
    padding: 4px 8px 4px 2px;
  }

  body.home-page.guest-mode #loginBtn .login-cta-icon {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

  body.home-page.guest-mode #loginBtn .login-cta-text {
    font-size: 17px;
  }

  body.home-page.guest-mode #loginBtn .login-cta-arrow {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  header.nav nav {
    grid-template-columns: auto auto 1fr auto auto auto auto;
    gap: 8px;
  }

  .brand-name {
    font-size: 16px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .nav-links ul {
    gap: 10px;
  }

  .nav-links a {
    font-size: 15px;
  }

  #registerBtn,
  body.home-page.guest-mode #registerBtn {
    width: clamp(218px, 22vw, 270px);
    min-height: 52px;
    padding: 4px 5px 4px 6px;
    gap: 4px;
    animation: none;
  }

  #registerBtn .register-rocket {
    font-size: 32px;
    animation: none;
  }

  #registerBtn .register-rocket::after,
  #registerBtn .register-cta-price {
    display: none;
  }

  #registerBtn .register-cta-main {
    font-size: 12px;
    margin-top: 0;
    white-space: nowrap;
  }

  #registerBtn .register-cta-pill {
    min-width: 122px;
    min-height: 42px;
    padding: 0 17px 0 7px;
    animation: none;
  }

  #registerBtn .register-cta-pill span {
    font-size: 12px;
    white-space: nowrap;
  }

  #registerBtn .register-cta-pill small {
    font-size: 13px;
    margin-top: 1px;
  }

  #registerBtn .register-cta-pill::after {
    right: 8px;
    font-size: 16px;
  }
}

@keyframes rocketFly {
  0%, 100% { transform: translate(0, 0) rotate(-8deg); }
  50% { transform: translate(2px, -2px) rotate(-5deg); }
}

@keyframes rocketFire {
  0% { width: 34px; opacity: 0.86; transform: translateY(-50%) scaleX(0.92); }
  50% { width: 46px; opacity: 1; transform: translateY(-50%) scaleX(1.06); }
  100% { width: 30px; opacity: 0.84; transform: translateY(-50%) scaleX(0.88); }
}

@keyframes rocketSpark {
  0% { opacity: 0.65; transform: translateY(-50%) scale(0.72); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.08); }
  100% { opacity: 0.58; transform: translateY(-50%) scale(0.64); }
}

@keyframes joinPillPop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@keyframes registerBtnPulse {
  0%, 100% {
    box-shadow:
      0 10px 24px rgba(0, 0, 0, 0.34),
      0 0 0 0 rgba(255, 195, 95, 0.45),
      inset 0 1px 0 rgba(255, 238, 178, 0.44);
  }
  50% {
    box-shadow:
      0 15px 30px rgba(0, 0, 0, 0.42),
      0 0 0 6px rgba(255, 195, 95, 0.18),
      inset 0 1px 0 rgba(255, 238, 178, 0.5);
  }
}

@media (max-width: 1280px) {
  .header-preferences {
    gap: 6px;
  }

  .header-pref-item {
    padding: 5px 6px;
    gap: 5px;
  }

  .header-select {
    min-width: 82px;
  }

  #registerBtn,
  body.home-page.guest-mode #registerBtn {
    width: 228px;
    min-height: 50px;
    padding: 4px 5px 4px 6px;
    gap: 4px;
  }

  #registerBtn .register-rocket {
    font-size: 26px;
  }

  #registerBtn .register-cta-main {
    font-size: 11px;
  }

  #registerBtn .register-cta-pill {
    min-width: 118px;
    min-height: 40px;
    padding: 0 17px 0 7px;
  }

  #registerBtn .register-cta-pill span,
  #registerBtn .register-cta-pill small {
    font-size: 11px;
  }

  #registerBtn .register-cta-pill::after {
    right: 7px;
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  #registerBtn,
  body.home-page.guest-mode #registerBtn {
    min-width: 224px;
    gap: 6px;
  }

  #registerBtn .register-rocket,
  #registerBtn .register-cta-price {
    display: none;
  }

  #registerBtn .register-cta-main {
    font-size: 13px;
    margin-top: 0;
  }

  #registerBtn .register-cta-pill {
    min-width: 116px;
    min-height: 42px;
    padding: 0 18px 0 8px;
  }

  #registerBtn .register-cta-pill::after {
    right: 8px;
    font-size: 16px;
  }
}

@media (max-width: 1100px) {
  .proof-counter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-cta-grid {
    grid-template-columns: 1fr;
  }
}

body.home-page.guest-mode header.nav,
body.home-page[data-initial-auth="guest"] header.nav {
  width: min(1720px, calc(100% - 8px));
  max-width: none;
}

body.home-page[data-initial-auth="guest"] header.nav nav,
body.home-page.guest-mode header.nav nav {
  grid-template-columns: auto minmax(220px, 1fr) auto auto auto auto;
  gap: 10px;
}

body.home-page[data-initial-auth="guest"] .nav-links ul,
body.home-page.guest-mode .nav-links ul {
  gap: 14px;
}

body.home-page.guest-mode .vision-strip,
body.home-page.guest-mode .hero-launch-shell,
body.home-page.guest-mode .hero-image-wrap,
body.home-page.guest-mode .trust-proof-section {
  width: min(1720px, calc(100% - 8px));
}

body.home-page[data-initial-auth="guest"] .vision-strip,
body.home-page[data-initial-auth="guest"] .hero-launch-shell,
body.home-page[data-initial-auth="guest"] .hero-image-wrap,
body.home-page[data-initial-auth="guest"] .trust-proof-section {
  width: min(1720px, calc(100% - 8px));
}

body.home-page.guest-mode .homepage-proof-shell,
body.home-page.guest-mode .footer-shell {
  max-width: 1720px;
}

body.home-page[data-initial-auth="guest"] .homepage-proof-shell,
body.home-page[data-initial-auth="guest"] .footer-shell {
  max-width: 1720px;
}

body.home-page.guest-mode .nav-links a,
body.home-page[data-initial-auth="guest"] .nav-links a {
  font-size: 15px;
}

body.home-page.guest-mode .header-preferences,
body.home-page[data-initial-auth="guest"] .header-preferences {
  gap: 6px;
}

body.home-page.guest-mode .header-pref-item,
body.home-page[data-initial-auth="guest"] .header-pref-item {
  padding: 5px 6px;
}

body.home-page.guest-mode #loginBtn,
body.home-page[data-initial-auth="guest"] #loginBtn {
  min-height: 56px;
  padding: 4px 14px 4px 6px;
  gap: 10px;
  border: 1px solid rgba(255, 212, 140, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 239, 204, 0.18), rgba(255, 239, 204, 0) 26%),
    linear-gradient(145deg, #61330c, #935112 36%, #b66a18 62%, #6d360b);
  color: #fff1c6;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 234, 190, 0.34);
}

body.home-page.guest-mode #loginBtn .login-cta-badge,
body.home-page[data-initial-auth="guest"] #loginBtn .login-cta-badge {
  width: 42px;
  height: 42px;
}

body.home-page.guest-mode #loginBtn .login-cta-icon,
body.home-page[data-initial-auth="guest"] #loginBtn .login-cta-icon {
  width: 42px;
  height: 42px;
  font-size: 22px;
}

body.home-page.guest-mode #loginBtn .login-cta-text,
body.home-page[data-initial-auth="guest"] #loginBtn .login-cta-text {
  font-size: 16px;
  letter-spacing: 0.02em;
}

body.home-page.guest-mode #loginBtn .login-cta-arrow,
body.home-page[data-initial-auth="guest"] #loginBtn .login-cta-arrow {
  width: 28px;
  height: 28px;
  font-size: 13px;
}

body.home-page.guest-mode #registerBtn,
body.home-page[data-initial-auth="guest"] #registerBtn {
  min-height: 64px;
  width: clamp(286px, 27vw, 390px);
  padding: 4px 6px 4px 8px;
  animation: none;
}

body.home-page.guest-mode #registerBtn .register-rocket,
body.home-page[data-initial-auth="guest"] #registerBtn .register-rocket {
  font-size: 34px;
  animation: none;
}

body.home-page[data-initial-auth="guest"] #registerBtn .register-rocket::before,
body.home-page[data-initial-auth="guest"] #registerBtn .register-rocket::after,
body.home-page[data-initial-auth="guest"] #registerBtn .register-cta-price,
body.home-page.guest-mode #registerBtn .register-rocket::before,
body.home-page.guest-mode #registerBtn .register-rocket::after,
body.home-page.guest-mode #registerBtn .register-cta-price {
  display: none;
}

body.home-page.guest-mode #registerBtn .register-cta-main,
body.home-page[data-initial-auth="guest"] #registerBtn .register-cta-main {
  font-size: 13px;
}

body.home-page.guest-mode #registerBtn .register-cta-pill,
body.home-page[data-initial-auth="guest"] #registerBtn .register-cta-pill {
  min-width: 152px;
  min-height: 52px;
  padding: 0 20px 0 10px;
  animation: none;
}

.mobile-auth .glass-auth:last-child {
  border: 1px solid rgba(255, 212, 130, 0.45);
  background: linear-gradient(145deg, #ffde8a, #ff9966 52%, #ff7e5f);
  color: #1b1b1b;
  box-shadow:
    0 10px 24px rgba(255, 134, 96, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.form-submit,
.welcome-btn {
  height: 42px;
  padding: 0 16px;
}

.nav-link-btn:hover,
.service-btn:hover,
.glass-auth:hover,
.logout-btn:hover,
.gst-home-btn:hover,
.form-submit:hover,
.welcome-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(54, 239, 198, 0.34);
}

.nav-link-btn::after,
.service-btn::after,
.glass-auth::after,
.logout-btn::after,
.gst-home-btn::after,
.form-submit::after,
.welcome-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.nav-link-btn:hover::after,
.service-btn:hover::after,
.glass-auth:hover::after,
.logout-btn:hover::after,
.gst-home-btn:hover::after,
.form-submit:hover::after,
.welcome-btn:hover::after {
  transform: translateX(120%);
}

.profile-menu {
  position: relative;
  display: flex;
}

.header-wallet {
  display: inline-flex;
  align-items: center;
}

/* Header widgets should not blink:
   - Use server-provided data attribute to render the correct header state immediately.
   - JS can still enhance, but initial layout remains stable. */
.profile-menu,
.header-wallet,
#headerTimer {
  display: none;
}

/* केवल homepage (guest) पर wallet icon नहीं दिखाना */
body.index-page[data-initial-auth="guest"] .header-wallet {
  display: none !important;
}

body:not(.index-page)[data-initial-auth="user"] .profile-menu {
  display: flex;
}

body:not(.index-page)[data-initial-auth="user"] .header-wallet {
  display: inline-flex;
}

body:not(.index-page)[data-initial-auth="user"] #headerTimer {
  display: inline-flex;
  align-items: center;
}

body[data-initial-auth="guest"] #loginBtn,
body[data-initial-auth="guest"] #registerBtn {
  display: inline-flex;
}

body[data-initial-auth="user"].auth-pending #loginBtn,
body[data-initial-auth="user"].auth-pending #registerBtn,
body[data-initial-auth="user"].auth-pending .mobile-auth {
  display: none !important;
}

body:not(.index-page)[data-initial-auth="user"].auth-pending .header-wallet {
  display: inline-flex !important;
}

/* Homepage (guest) पर wallet icon हमेशा hide रहे — auth-pending/user rules को भी override करें */
body.index-page[data-initial-auth="guest"] .header-wallet,
body.index-page[data-initial-auth="guest"].auth-pending .header-wallet {
  display: none !important;
}

body:not(.index-page)[data-initial-auth="user"].auth-pending .profile-menu {
  display: flex !important;
}

body:not(.index-page)[data-initial-auth="user"].auth-pending #mobileProfile {
  display: block !important;
  visibility: hidden;
}

.wallet-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(132, 231, 255, 0.6);
  background: rgba(5, 23, 38, 0.56);
  cursor: pointer;
}

.wallet-coin-icon {
  width: 86%;
  height: 86%;
  display: block;
}

.profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(132, 231, 255, 0.6);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: color-mix(in srgb, white, var(--mint-1) 18%);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  background-image:
    radial-gradient(circle at 30% 20%, rgba(120, 230, 255, 0.28), transparent 50%),
    linear-gradient(140deg, rgba(15, 34, 59, 0.92), rgba(30, 43, 64, 0.88));
}

.profile-avatar.avatar-loaded {
  opacity: 1;
}

.profile-dropdown {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5001;
  width: 244px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(126, 230, 255, 0.28);
  background: linear-gradient(
    140deg,
    rgba(15, 34, 59, 0.98),
    rgba(30, 43, 64, 0.95)
  );
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  display: none;
  text-align: center;
}

.profile-dropdown.show {
  display: block;
  animation: profileDropIn 0.22s ease;
}

@keyframes profileDropIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.profile-fullname {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #f3fbff;
}

.profile-link,
.profile-logout {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 11px 12px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  color: #e8f4ff;
  margin-top: 8px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.profile-link:hover,
.profile-logout:hover {
  transform: translateY(-2px);
  background: rgba(53, 242, 192, 0.2);
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.24);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  z-index: 3600;
  display: none;
}

.menu-overlay.show {
  display: block;
}

.mobile-menu {
  position: fixed;
  top: 74px;
  right: 8px;
  width: min(310px, calc(100% - 16px));
  border-radius: 16px;
  border: 1px solid rgba(126, 230, 255, 0.22);
  background: linear-gradient(
    140deg,
    rgba(15, 34, 59, 0.98),
    rgba(30, 43, 64, 0.95)
  );
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.42);
  padding: 14px;
  display: none;
  z-index: 4000;
}

.mobile-menu.show {
  display: block;
  animation: mobileMenuIn 0.3s ease;
}

.mobile-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: #e8f4ff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 8px;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.mobile-menu a:hover {
  transform: translateY(-1px);
  background: rgba(126, 230, 255, 0.14);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.28);
}

.mobile-auth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.mobile-preferences {
  display: grid;
  gap: 8px;
  margin: 10px 0 4px;
}

.mobile-pref-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(126, 230, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #e8f4ff;
  font-size: 14px;
  font-weight: 700;
}

.mobile-pref-select {
  width: 100%;
  min-height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(126, 230, 255, 0.3);
  background: rgba(13, 35, 54, 0.95);
  color: #e8f8ff;
  font-size: 13px;
  font-weight: 700;
  padding: 0 10px;
  outline: none;
  cursor: pointer;
}

.mobile-pref-select:focus {
  border-color: rgba(54, 239, 198, 0.65);
  box-shadow: 0 0 0 2px rgba(54, 239, 198, 0.16);
}

.mobile-profile {
  margin-top: 10px;
}

.profile-glass {
  border-radius: 12px;
  border: 1px solid rgba(126, 230, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  padding: 12px;
  text-align: center;
}

.mobile-profile .logout-btn {
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  margin-top: 10px;
  font-size: 18px;
  line-height: 1;
}

@keyframes mobileMenuIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero,
.about-section,
.services-section {
  position: relative;
  z-index: 1;
}

.hero {
  padding-top: 8px;
}

.hero-launch-shell {
  width: min(1320px, calc(100% - 28px));
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 16px;
  align-items: stretch;
}

.hero-launch-copy,
.hero-launch-metrics {
  border-radius: 24px;
  border: 1px solid rgba(153, 241, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(8, 29, 50, 0.96), rgba(23, 47, 82, 0.92)),
    linear-gradient(135deg, rgba(53, 176, 201, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.hero-launch-copy {
  padding: 24px 28px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(110, 245, 255, 0.12);
  border: 1px solid rgba(153, 241, 255, 0.25);
  color: #cbfbff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-launch-copy h1 {
  margin: 16px 0 10px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.06;
  color: #f6fbff;
}

.hero-lead {
  margin: 0;
  max-width: 720px;
  color: rgba(235, 246, 255, 0.86);
  font-size: 17px;
  line-height: 1.62;
}

.hero-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-primary-btn,
.hero-secondary-btn,
.hero-ghost-btn {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.hero-primary-btn {
  color: #0e2438;
  background: linear-gradient(135deg, #9ff8d5, #5fe0ff);
  box-shadow: 0 14px 30px rgba(95, 224, 255, 0.22);
}

.hero-secondary-btn {
  color: #effbff;
  background: linear-gradient(135deg, rgba(84, 140, 255, 0.28), rgba(18, 92, 187, 0.32));
  border-color: rgba(152, 204, 255, 0.24);
}

.hero-ghost-btn {
  color: #edf8ff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(153, 241, 255, 0.22);
}

.hero-primary-btn:hover,
.hero-secondary-btn:hover,
.hero-ghost-btn:hover {
  transform: translateY(-2px);
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-trust-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(153, 241, 255, 0.16);
  color: #dff8ff;
  font-size: 14px;
  font-weight: 700;
}

.hero-launch-metrics {
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-metric-card {
  min-height: 124px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(153, 241, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-metric-card strong {
  display: block;
  color: #ffffff;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
}

.hero-metric-card span {
  color: rgba(226, 243, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
}

.vision-strip {
  width: min(1320px, calc(100% - 28px));
  margin: -2px auto 0;
  border-radius: 18px;
  border: 1px solid rgba(153, 241, 255, 0.42);
  background:
    linear-gradient(120deg, rgba(0, 160, 140, 0.28), rgba(26, 89, 197, 0.24)),
    linear-gradient(135deg, rgba(10, 34, 58, 0.95), rgba(32, 48, 96, 0.9));
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.32),
    0 0 28px rgba(84, 225, 255, 0.2);
  overflow: hidden;
}

.vision-strip-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 200%;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.25px;
  white-space: nowrap;
  color: #f2ffff;
  text-shadow:
    0 2px 10px rgba(74, 240, 203, 0.28),
    0 0 16px rgba(126, 196, 255, 0.24);
  animation: visionRun 18s linear infinite;
  will-change: transform;
}

.vision-group {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
  padding: 14px 22px;
}

@keyframes visionRun {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.hero-image-wrap {
  width: min(1320px, calc(100% - 28px));
  margin: 14px auto 26px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(153, 241, 255, 0.16);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32);
}

.hero-image-wrap img {
  width: 100%;
  max-width: none;
  max-height: 560px;
  height: auto;
  display: block;
}

.trust-proof-section {
  width: min(1320px, calc(100% - 28px));
  margin: 0 auto 12px;
}

.trust-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.trust-proof-card {
  border-radius: 24px;
  border: 1px solid rgba(124, 228, 255, 0.14);
  background: linear-gradient(140deg, rgba(11, 33, 58, 0.95), rgba(24, 49, 78, 0.92));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.26);
  padding: 24px 26px;
}

.trust-proof-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(97, 232, 255, 0.12);
  border: 1px solid rgba(153, 241, 255, 0.2);
  color: #ccfbff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-proof-card h3 {
  margin: 14px 0 10px;
  font-size: clamp(26px, 2.5vw, 34px);
  line-height: 1.18;
}

.trust-proof-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.trust-proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-proof-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(153, 241, 255, 0.16);
  color: #eaf8ff;
  font-size: 13px;
  font-weight: 700;
}

.trust-steps {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.trust-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid rgba(153, 241, 255, 0.12);
}

.trust-step:first-child {
  border-top: 0;
  padding-top: 0;
}

.trust-step strong {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #9ff8d5, #5fe0ff);
  color: #0e2438;
  font-size: 18px;
  font-weight: 900;
}

.trust-step h4 {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.2;
  color: #f7fbff;
}

.trust-step p {
  margin: 0;
}

.about-section,
.services-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px;
}

.services-section {
  margin-top: 0;
}

/* लॉगिन (रिटेलर डैशबोर्ड) पर:
   - running message (vision strip) दिखे
   - hero banner image छिपे
   - services grid ऊपर न चढ़े (negative margin हटे)
*/
body:not(.index-page)[data-initial-auth="user"] #home {
  display: block !important;
}

body:not(.index-page)[data-initial-auth="user"] #home .hero-image-wrap {
  display: none !important;
}

body:not(.index-page)[data-initial-auth="user"] #home .vision-strip {
  margin-bottom: 2px;
}

body:not(.index-page)[data-initial-auth="user"] .services-section {
  margin-top: 0;
}

/* लॉगिन (retailer dashboard) पर vision strip दिखने के कारण services image ऊपर चढ़ जाती है।
   इसलिए authenticated initial state में negative margin हटाएँ। */
body[data-initial-auth="user"] .services-section {
  margin-top: 0;
}

body.index-page[data-initial-auth="user"] #home,
body.index-page[data-initial-auth="user"] .services-heading,
body.index-page[data-initial-auth="user"] .services-showcase,
body.index-page[data-initial-auth="user"] #homepageSupport,
body.index-page.index-user-mode #home,
body.index-page.index-user-mode .services-heading,
body.index-page.index-user-mode .services-showcase,
body.index-page.index-user-mode #homepageSupport {
  display: none !important;
}

body.index-page.index-user-mode .services-section,
body.index-page[data-initial-auth="user"] .services-section {
  width: calc(100% - 28px);
  max-width: none;
  padding-top: 0;
}

.about-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.about-left,
.about-right,
.service-card {
  border-radius: 18px;
  border: 1px solid rgba(124, 228, 255, 0.12);
  background: linear-gradient(140deg, var(--card-a), var(--card-b));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
}

.about-left {
  padding: 20px;
}

.about-left h2 {
  margin-bottom: 10px;
}

.about-left p {
  color: var(--muted);
  line-height: 1.55;
  margin-top: 8px;
}

.about-right {
  padding: 10px;
  display: grid;
  place-items: center;
}

.about-right img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.services-content {
  display: grid;
  gap: 18px;
}

.services-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 24px;
  border: 1px solid rgba(124, 228, 255, 0.14);
  background: linear-gradient(140deg, rgba(11, 33, 58, 0.95), rgba(24, 49, 78, 0.92));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.26);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(97, 232, 255, 0.12);
  border: 1px solid rgba(153, 241, 255, 0.2);
  color: #ccfbff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.services-heading h2 {
  margin: 12px 0 8px;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.12;
}

.services-heading p {
  margin: 0;
  max-width: 740px;
  color: var(--muted);
  line-height: 1.7;
}

.services-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.services-summary span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(153, 241, 255, 0.16);
  color: #eaf8ff;
  font-size: 13px;
  font-weight: 700;
}

.services-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
}

.services-showcase > * {
  min-width: 0;
}

.services-only-image img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  border: 1px solid rgba(153, 241, 255, 0.16);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.services-side-panel {
  border-radius: 24px;
  border: 1px solid rgba(124, 228, 255, 0.14);
  background: linear-gradient(140deg, rgba(11, 33, 58, 0.95), rgba(24, 49, 78, 0.92));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.26);
  padding: 20px 22px;
}

.services-side-panel h3 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.2;
}

.services-side-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.services-side-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #ecf8ff;
}

.services-side-list li + li {
  margin-top: 10px;
}

.services-side-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 48%);
  pointer-events: none;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(97, 232, 255, 0.14);
  border: 1px solid rgba(153, 241, 255, 0.18);
  color: #d4fbff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card img {
  width: 100%;
  height: auto;
  object-fit: initial;
  object-position: initial;
  border-radius: 14px;
  border: 2px solid rgba(132, 231, 255, 0.6);
  margin: 12px 0 14px;
  display: block;
  background: transparent;
}

.service-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  width: 100%;
  font-weight: 900;
}

.service-card p {
  margin: 10px 0 0;
  color: rgba(235, 247, 255, 0.9);
  min-height: 44px;
  display: -webkit-box;
  width: 100%;
  font-weight: 800;
  line-height: 1.35;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.service-meta {
  display: none;
}

.service-card .service-btn {
  margin-top: auto;
  align-self: center;
  font-weight: 900;
}

.homepage-proof-band {
  padding: 8px 16px 0;
}

.homepage-proof-shell {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.homepage-proof-header {
  padding: 24px 26px;
  border-radius: 24px;
  border: 1px solid rgba(124, 228, 255, 0.14);
  background: linear-gradient(140deg, rgba(11, 33, 58, 0.95), rgba(24, 49, 78, 0.92));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.26);
}

.homepage-proof-header h2 {
  margin: 14px 0 10px;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.12;
}

.homepage-proof-header p {
  margin: 0;
  max-width: 860px;
  color: var(--muted);
  line-height: 1.7;
}

.proof-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.proof-counter-card {
  min-height: 158px;
  padding: 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(124, 228, 255, 0.14);
  background: linear-gradient(140deg, rgba(11, 33, 58, 0.95), rgba(24, 49, 78, 0.92));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.26);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.proof-counter-card strong {
  display: block;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
}

.proof-counter-card span {
  color: rgba(226, 243, 255, 0.82);
  font-size: 15px;
  line-height: 1.6;
}

.support-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
}

.support-cta-card {
  padding: 24px 26px;
  border-radius: 24px;
  border: 1px solid rgba(124, 228, 255, 0.14);
  background: linear-gradient(140deg, rgba(11, 33, 58, 0.95), rgba(24, 49, 78, 0.92));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.26);
}

.support-cta-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(97, 232, 255, 0.12);
  border: 1px solid rgba(153, 241, 255, 0.2);
  color: #ccfbff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.support-cta-card h3 {
  margin: 14px 0 10px;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.18;
}

.support-cta-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.support-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.support-primary-btn {
  box-shadow: 0 12px 26px rgba(255, 137, 93, 0.26);
}

.support-secondary-btn {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(153, 241, 255, 0.18);
  color: #eef9ff;
}

.support-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(135deg, #23c483, #14a36f);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(24, 163, 111, 0.28);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(153, 241, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  color: #f5fbff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9ff8d5;
  background: rgba(159, 248, 213, 0.08);
  border: 1px solid rgba(159, 248, 213, 0.16);
  font-size: 22px;
  font-weight: 900;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.faq-item[open] summary::after {
  content: "-";
  background: rgba(159, 248, 213, 0.16);
  border-color: rgba(159, 248, 213, 0.28);
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: rgba(226, 243, 255, 0.82);
  line-height: 1.7;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: rgba(3, 10, 18, 0.78);
  backdrop-filter: blur(8px);
}

.modal.is-closing {
  animation: modalOverlayOut 0.2s ease forwards;
}

#loginModal,
#registerModal {
  display: none;
}

.modal-panel {
  position: relative;
  width: 100%;
  max-width: 460px;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(126, 230, 255, 0.24);
  background: linear-gradient(
    145deg,
    rgba(12, 33, 54, 0.98),
    rgba(24, 44, 73, 0.96)
  );
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.48);
  overflow: hidden;
  animation: modalIn 0.28s ease;
}

.modal.is-closing .modal-panel {
  animation: modalOut 0.2s ease forwards;
}

.modal-panel::after {
  content: none;
}

.modal-panel > * {
  position: relative;
  z-index: 1;
}

.auth-modal-topline {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(95, 224, 255, 0.12);
  border: 1px solid rgba(153, 241, 255, 0.2);
  color: #d9fbff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-modal-subtitle {
  margin: -2px 0 18px;
  color: rgba(226, 243, 255, 0.78);
  font-size: 14px;
  line-height: 1.65;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #e8f4ff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(126, 230, 255, 0.22);
  cursor: pointer;
}

.form label {
  display: block;
  margin: 12px 0 6px;
  color: #e8f4ff;
  font-size: 14px;
  font-weight: 600;
}

.login-role-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 6px;
}

.login-role-hint {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(153, 241, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(226, 243, 255, 0.76);
  font-size: 13px;
  line-height: 1.6;
}

#loginModal .login-role-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid #b9d0df;
  background: #f2f6fb;
  color: #123245;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

#loginModal .login-role-pill span {
  display: inline-flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #17384a;
  font-weight: 700;
  text-shadow: none;
}

#loginModal .login-role-pill .login-role-pill-content {
  display: grid;
  gap: 2px;
  padding: 8px 6px;
  text-align: center;
  line-height: 1.2;
}

#loginModal .login-role-pill .login-role-pill-content strong {
  font-size: 13px;
  font-weight: 800;
}

#loginModal .login-role-pill .login-role-pill-content small {
  font-size: 10px;
  font-weight: 700;
  color: rgba(23, 56, 74, 0.76);
}

#loginModal .login-role-pill input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}

#loginModal .login-role-pill input:checked + span {
  border: 1px solid rgba(54, 239, 198, 0.78);
  box-shadow: 0 0 0 2px rgba(54, 239, 198, 0.2);
  background: linear-gradient(140deg, #ecfff8, #d7fff4);
  color: #0d4b3a;
}

.modal-panel h2 {
  margin: 0 0 4px;
  padding-right: 40px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #eaf8ff;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(126, 230, 255, 0.22);
  background: rgba(247, 251, 255, 0.96);
  color: #102536;
  padding: 11px 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.form input::placeholder,
.form textarea::placeholder {
  color: #5c7282;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: rgba(54, 239, 198, 0.65);
  box-shadow:
    0 0 0 2px rgba(54, 239, 198, 0.18),
    0 8px 18px rgba(0, 0, 0, 0.22);
}

.input-wrap,
.password-box {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
  will-change: auto;
}

.toggle-password:hover,
.toggle-password:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
}

.toggle-password i {
  pointer-events: none;
  display: block;
  line-height: 1;
}

.auth-footer {
  margin-top: 12px;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.auth-footer.center {
  text-align: center;
}

.auth-link,
.auth-switch a {
  color: #9be3b4;
  cursor: pointer;
  font-weight: 600;
}

#gstItrPage.gst-page {
  min-height: 100vh;
  padding: 5px 16px 30px;
  display: none;
}

#gstItrPage .gst-header nav {
  grid-template-columns: auto 1fr auto auto auto;
}

.gst-header-title {
  text-align: center;
  font-size: clamp(19px, 1.9vw, 30px);
  font-weight: 800;
}

.gst-hero {
  max-width: 960px;
  margin: 0 auto 8px;
  text-align: center;
}

.gst-hero h1 {
  font-size: clamp(24px, 2.2vw, 36px);
  font-weight: 800;
}

.gst-hero p {
  margin-top: 4px;
  font-size: 16px;
  color: rgba(227, 243, 255, 0.86);
}

.gst-card-grid {
  max-width: 980px;
  margin: 0 auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gst-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(124, 228, 255, 0.12);
  background: linear-gradient(140deg, var(--card-a), var(--card-b));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
  padding: 12px;
  min-height: 154px;
  text-align: center;
}

.gst-card::before {
  content: "";
  position: absolute;
  inset: -60% -20%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(113, 236, 224, 0.2) 70deg,
    transparent 150deg
  );
}

.gst-card > * {
  position: relative;
  z-index: 1;
}

.gst-icon {
  font-size: 20px;
  margin-bottom: 4px;
}

.gst-card h3 {
  font-size: 18px;
  margin: 0 0 2px;
}

.gst-card p {
  margin: 4px 0 10px;
  font-size: 14px;
  line-height: 1.28;
  color: rgba(227, 243, 255, 0.86);
}

.gst-card > button {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.reveal-init {
  opacity: 0;
  transform: translateY(24px);
}

.reveal-active {
  opacity: 1;
  transform: none;
  transition: 0.6s ease;
}

.footer {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  padding: 32px 18px 14px;
  background:
    radial-gradient(circle at 14% 0%, color-mix(in srgb, var(--mint-1), transparent 88%), transparent 30%),
    radial-gradient(circle at 84% 96%, color-mix(in srgb, var(--mint-2), transparent 90%), transparent 32%),
    linear-gradient(180deg, color-mix(in srgb, var(--bg-a), black 14%), color-mix(in srgb, var(--bg-b), black 24%));
  border-top: 1px solid color-mix(in srgb, var(--mint-1), transparent 82%);
}

.footer-shell {
  width: min(1440px, 100%);
  max-width: 1440px;
  margin: 0 auto;
}

.footer-container.footer-launch-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(210px, 0.9fr) minmax(190px, 0.8fr) minmax(190px, 0.8fr);
  gap: 26px;
}

.footer-panel {
  min-width: 0;
  text-align: left;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-brand > img:first-child {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.25),
    0 0 0 1px color-mix(in srgb, var(--mint-1), transparent 74%);
}

.footer-brand img.brand-name-art {
  width: min(260px, 72vw);
  max-width: 260px;
  height: 74px;
  object-fit: contain;
  object-position: left center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  animation: none;
  background: transparent;
}

.footer h4 {
  margin: 0 0 14px;
  color: color-mix(in srgb, var(--theme-light), var(--mint-1) 22%);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.footer-about p,
.footer-contact p,
.footer-links a,
.footer-services a,
.footer-bottom p,
.footer-policy-links a {
  color: color-mix(in srgb, var(--theme-light), white 8%);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 650;
}

.footer-about p {
  max-width: 430px;
  margin: 0 0 18px;
}

.footer-primary-action {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: color-mix(in srgb, var(--theme-dark), black 28%);
  background: linear-gradient(135deg, var(--mint-1), var(--mint-2));
  font-size: 15px;
  font-weight: 900;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 color-mix(in srgb, white, var(--theme-light) 20%);
  cursor: pointer;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
}

.footer-contact i {
  width: 18px;
  color: color-mix(in srgb, var(--mint-1), white 18%);
  text-align: center;
}

.footer-links ul,
.footer-services ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-services li {
  padding: 0;
}

.footer-links a,
.footer-services a,
.footer-policy-links a {
  transition: color 0.18s ease;
}

.footer-links a:hover,
.footer-services a:hover,
.footer-policy-links a:hover {
  color: color-mix(in srgb, white, var(--mint-1) 12%);
}

.footer-payments {
  margin: 28px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid color-mix(in srgb, var(--mint-1), transparent 88%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.payment-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: color-mix(in srgb, var(--theme-light), var(--mint-1) 22%);
  font-size: 14px;
  font-weight: 900;
}

.payment-label i {
  color: color-mix(in srgb, var(--mint-1), white 18%);
}

.payment-methods {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-methods span {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid color-mix(in srgb, var(--mint-1), transparent 84%);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: color-mix(in srgb, var(--theme-light), white 8%);
  background: color-mix(in srgb, var(--panel-a), transparent 42%);
  font-size: 13px;
  font-weight: 850;
}

.footer-bottom {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid color-mix(in srgb, var(--mint-1), transparent 88%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-policy-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .footer-container.footer-launch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .footer {
    padding: 26px 14px 14px;
  }

  .footer-container.footer-launch-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-panel,
  .footer-contact p,
  .footer-brand {
    text-align: center;
    justify-content: center;
  }

  .footer-about p {
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-policy-links {
    justify-content: center;
  }

  .footer-payments,
  .payment-methods {
    justify-content: center;
  }
}
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 5002;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  border: 1px solid rgba(124, 228, 255, 0.2);
  background: linear-gradient(130deg, var(--mint-1), var(--mint-2));
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.35);
  animation: whatsappPulse 1.9s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.35);
  }
  50% {
    transform: scale(1.08);
    box-shadow:
      0 14px 26px rgba(0, 0, 0, 0.35),
      0 0 0 10px rgba(53, 242, 192, 0.18);
  }
}

.welcome-overlay {
  position: fixed;
  inset: 0;
  z-index: 9900;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(8px);
}

.welcome-card {
  width: min(460px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(124, 228, 255, 0.2);
  background: linear-gradient(
    140deg,
    rgba(15, 34, 59, 0.98),
    rgba(30, 43, 64, 0.95)
  );
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  padding: 18px;
  position: relative;
}

.welcome-card h2 {
  margin: 6px 0;
}

.welcome-card p,
.welcome-note {
  color: var(--muted);
}

.welcome-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.welcome-close {
  position: absolute;
  top: 10px;
  right: 12px;
  cursor: pointer;
  font-size: 18px;
}

@media (max-width: 1024px) {
  body.home-page.guest-mode header.nav,
  body.home-page[data-initial-auth="guest"] header.nav {
    width: calc(100% - 12px);
    padding: 10px 12px;
  }

  header.nav nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px;
  }

  body.home-page.guest-mode .nav-logo,
  body.home-page[data-initial-auth="guest"] .nav-logo {
    margin-right: auto;
  }

  body.home-page.guest-mode .nav-links,
  body.home-page[data-initial-auth="guest"] .nav-links,
  body.home-page.guest-mode .header-preferences,
  body.home-page[data-initial-auth="guest"] .header-preferences,
  body.home-page.guest-mode #loginBtn,
  body.home-page[data-initial-auth="guest"] #loginBtn,
  body.home-page.guest-mode #registerBtn,
  body.home-page[data-initial-auth="guest"] #registerBtn {
    display: none !important;
  }

  body.home-page.guest-mode .mobile-hamburger,
  body.home-page[data-initial-auth="guest"] .mobile-hamburger {
    display: block;
    font-size: 34px;
    line-height: 1;
  }

  .hero-launch-shell,
  .services-showcase,
  .trust-proof-grid {
    grid-template-columns: 1fr;
  }

  .services-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-summary {
    justify-content: flex-start;
  }

  .nav-links {
    display: none;
  }

  .mobile-hamburger {
    display: block;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  header.nav {
    width: calc(100% - 12px);
    padding: 10px 12px;
  }

  .hero-launch-shell,
  .hero-image-wrap,
  .vision-strip {
    width: calc(100% - 12px);
  }

  .hero-launch-copy,
  .hero-launch-metrics,
  .services-heading,
  .services-side-panel,
  .trust-proof-card,
  .homepage-proof-header,
  .proof-counter-card,
  .support-cta-card {
    padding: 18px;
    border-radius: 20px;
  }

  .hero-launch-copy h1 {
    font-size: 30px;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-launch-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metric-card {
    min-height: 108px;
  }

  .services-heading h2 {
    font-size: 28px;
  }

  .services-side-panel h3 {
    font-size: 24px;
  }

  .trust-proof-card h3 {
    font-size: 24px;
  }

  .homepage-proof-header h2,
  .support-cta-card h3 {
    font-size: 24px;
  }

  .proof-counter-grid {
    grid-template-columns: 1fr;
  }

  .trust-step {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .trust-step strong {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  body.home-page.guest-mode header.nav,
  body.home-page[data-initial-auth="guest"] header.nav {
    width: calc(100% - 12px);
    max-width: none;
    padding: 10px 12px;
  }

  .vision-strip {
    margin: -2px auto 0;
  }

  .vision-strip-track {
    font-size: 14px;
  }

  .vision-group {
    gap: 14px;
    padding: 10px 14px;
  }

  header.nav nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .nav-logo {
    order: 1;
    margin-right: auto;
  }

  #headerTimer {
    order: 2;
    display: inline-flex;
    min-width: 78px;
    height: 34px;
    padding: 0 10px;
    font-size: 14px;
  }

  .header-wallet {
    order: 3;
    display: flex;
  }

  .mobile-hamburger {
    order: 4;
    display: block;
    font-size: 34px;
    line-height: 1;
  }

body.home-page.guest-mode .nav-links,
body.home-page[data-initial-auth="guest"] .nav-links,
body.home-page.guest-mode .header-preferences,
body.home-page[data-initial-auth="guest"] .header-preferences,
body.home-page.guest-mode #loginBtn,
body.home-page[data-initial-auth="guest"] #loginBtn,
body.home-page.guest-mode #registerBtn,
body.home-page[data-initial-auth="guest"] #registerBtn {
    display: none;
}

/* Panel roles: index -> panel redirect के दौरान retailer dashboard flash न हो */
body.panel-redirecting header.nav,
body.panel-redirecting .mobile-menu,
body.panel-redirecting section.hero,
body.panel-redirecting main,
body.panel-redirecting footer,
body.panel-redirecting .whatsapp-float,
body.panel-redirecting #walletPanel,
body.panel-redirecting #authRequiredModal,
body.panel-redirecting #loginModal,
body.panel-redirecting #registerModal {
  display: none !important;
}

body.panel-redirecting {
  overflow: hidden !important;
  background: #07131b !important;
}

body.panel-redirecting::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  background: #07131b;
}

#panelRedirectShield {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: grid;
  place-items: center;
  background: #07131b;
  color: #e8f7ff;
  font: 800 16px/1.4 "Segoe UI", "Nirmala UI", sans-serif;
}

#panelRedirectShield::after {
  content: "पैनल खुल रहा है...";
}

  body.home-page.guest-mode .mobile-hamburger,
  body.home-page[data-initial-auth="guest"] .mobile-hamburger {
    display: block;
    margin-left: auto;
  }

  .header-preferences {
    display: none;
  }

  .profile-menu {
    order: 5;
  }

  .profile-avatar {
    width: 52px;
    height: 52px;
  }

  .wallet-btn {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    display: none;
  }

  #gstItrPage.gst-page {
    padding-top: 66px;
  }

  #gstItrPage .gst-header nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: nowrap;
  }

  #gstItrPage .gst-header .nav-logo {
    order: 1;
    margin-right: 0;
  }

  #gstItrPage .gst-header .gst-header-title {
    order: 2;
    flex: 1;
    text-align: left;
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #gstItrPage .gst-header #gstHeaderTimer {
    order: 3;
    display: inline-flex;
    min-width: 78px;
    height: 34px;
    padding: 0 10px;
    font-size: 14px;
  }

  #gstItrPage .gst-header .gst-home-btn {
    order: 4;
    height: 34px;
    padding: 0 12px;
  }

  #gstItrPage .gst-header .gst-user-pill {
    order: 5;
    padding: 4px 8px;
    gap: 6px;
  }

  #gstItrPage .gst-header .gst-user-pill .service-user-avatar {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  #gstItrPage .gst-header .gst-user-pill .service-user-info {
    max-width: 90px;
  }

  #gstItrPage .gst-header .gst-user-pill .service-user-name {
    font-size: 12px;
  }

  #gstItrPage .gst-header .gst-user-pill .service-user-email {
    display: none;
  }

  body[data-initial-auth="user"] #loginBtn,
  body[data-initial-auth="user"] #registerBtn {
    display: none !important;
  }

  .hero {
    padding-top: 0;
    margin-top: -12px;
  }

  .about-container,
  .welcome-actions {
    grid-template-columns: 1fr;
  }

  .gst-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-auth {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px;
  }

  .mobile-auth .glass-auth {
    width: 100%;
    min-height: 46px;
    font-size: 20px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-align: center;
  }

  .gst-hero h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .gst-hero p {
    font-size: 14px;
    line-height: 1.35;
    margin-top: 6px;
  }

  #gstItrPage .gst-hero {
    margin: 2px auto 6px;
  }

  #gstItrPage .gst-card-grid {
    margin-top: 0;
    gap: 10px;
  }

  #gstItrPage .gst-card {
    min-height: 148px;
    padding: 12px;
  }

  .gst-card h3 {
    font-size: 17px;
  }

  .gst-card p {
    font-size: 13px;
    margin: 4px 0 8px;
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .gst-card-grid {
    grid-template-columns: 1fr;
  }
}

/* AUTH MODAL FINAL OVERRIDE (LOGIN/REGISTER ONLY) */
#loginModal,
#registerModal {
  backdrop-filter: blur(8px);
  align-items: flex-start;
  overflow-y: auto;
  padding: 12px 12px 16px;
}

#registerModal {
  align-items: center;
}

#registerModal {
  align-items: center;
}

#loginModal .modal-panel,
#registerModal .modal-panel {
  max-width: 460px;
  width: min(460px, 100%);
  margin: 0 auto;
  max-height: calc(100dvh - 28px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(126, 230, 255, 0.26);
  background: linear-gradient(
    145deg,
    rgba(12, 33, 54, 0.98),
    rgba(24, 44, 73, 0.96)
  );
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.5);
  animation: modalIn 0.24s ease;
}

#registerModal .modal-panel {
  max-width: 760px;
  width: min(760px, 100%);
}

#loginModal .modal-panel::before,
#registerModal .modal-panel::before,
#loginModal .modal-panel::after,
#registerModal .modal-panel::after {
  content: none;
}

#loginModal .modal-close,
#registerModal .modal-close {
  width: 36px;
  height: 36px;
  top: 12px;
  right: 12px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(126, 230, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: #f0fbff;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  pointer-events: auto;
  z-index: 5;
  user-select: none;
  cursor: pointer;
}

#loginModal h2,
#registerModal h2 {
  margin: 0 0 6px;
  padding-right: 44px;
  font-size: 30px;
  font-weight: 800;
  color: #ecf8ff;
}

#loginModal h2 {
  width: 100%;
  margin: 0 auto 12px;
  padding-right: 0;
  text-align: center;
  font-size: clamp(32px, 2.8vw, 40px);
  letter-spacing: 0.6px;
  color: #f3fbff;
}

#registerModal h2 {
  width: 100%;
  margin: 0 auto 14px;
  padding-right: 0;
  text-align: center;
  font-size: clamp(34px, 3.2vw, 46px);
  letter-spacing: 0.8px;
  background: linear-gradient(90deg, #ffffff, #8fffe5, #ffd08a, #ffffff);
  background-size: 260% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: registerHeadingShine 4.8s linear infinite;
  text-shadow: 0 0 28px rgba(143, 255, 229, 0.26);
}

@keyframes registerHeadingShine {
  to {
    background-position: 260% center;
  }
}

#loginModal .form label,
#registerModal .form label {
  margin: 12px 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: #e7f4ff;
}

#loginModal .form input,
#registerModal .form input,
#registerModal .form select,
#registerModal .form input[type="file"],
#registerModal .form textarea {
  min-height: 52px;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid rgba(126, 230, 255, 0.24);
  background: rgba(247, 251, 255, 0.98);
  color: #122634;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

#loginModal .form input::placeholder,
#registerModal .form input::placeholder,
#registerModal .form select::placeholder,
#registerModal .form textarea::placeholder {
  font-size: 16px;
  font-weight: 600;
}

#loginModal .form input:focus,
#registerModal .form input:focus,
#registerModal .form select:focus,
#registerModal .form input[type="file"]:focus,
#registerModal .form textarea:focus {
  transform: none;
  border-color: rgba(54, 239, 198, 0.7);
  box-shadow:
    0 0 0 2px rgba(54, 239, 198, 0.18),
    0 8px 18px rgba(0, 0, 0, 0.22);
}

#loginModal .form-submit,
#registerModal .form-submit {
  width: 100%;
  min-height: 46px;
  margin-top: 12px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 800;
  color: #05241d;
  background: linear-gradient(130deg, #35f2c0, #1fcfa1);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.34);
}

#loginModal .form-submit:hover,
#registerModal .form-submit:hover {
  transform: none;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.34);
}

#loginModal .auth-footer,
#registerModal .auth-footer {
  margin-top: 12px;
  gap: 8px;
  text-align: center;
}

#loginModal .auth-link,
#loginModal .auth-switch a,
#registerModal .auth-switch a {
  color: #9ef6dc;
  font-weight: 700;
}

#loginModal .login-role-switch {
  gap: 10px;
  margin-bottom: 10px;
}

#loginModal .login-role-pill {
  min-height: 44px;
}

#loginModal .login-role-pill input:checked + span {
  border: 1px solid rgba(33, 211, 171, 0.92);
  box-shadow: 0 0 0 2px rgba(33, 211, 171, 0.28);
  background: linear-gradient(145deg, #0f4f62, #166f64);
  color: #e9fff8;
}

#loginModal .login-captcha-wrap {
  margin-top: 10px;
  border: 1px solid rgba(126, 230, 255, 0.24);
  border-radius: 12px;
  padding: 10px;
  background: rgba(7, 25, 41, 0.3);
}

#loginModal .login-captcha-row {
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

#loginModal .login-captcha-prompt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 120px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(126, 230, 255, 0.28);
  background: rgba(247, 251, 255, 0.98);
  color: #122634;
  font-weight: 800;
  letter-spacing: 1.2px;
}

#loginModal .login-captcha-refresh {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(126, 230, 255, 0.3);
  border-radius: 10px;
  background: rgba(19, 54, 83, 0.92);
  color: #eaf8ff;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#registerModal .register-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  align-items: start;
}

#registerModal .register-grid > label {
  display: none;
}

#registerModal .register-grid > .register-docs,
#registerModal .register-grid > #passwordError,
#registerModal .register-grid > .register-fee-strip,
#registerModal .register-grid > .register-captcha,
#registerModal .register-grid > .register-password-row,
#registerModal .register-grid > .register-network-panel {
  grid-column: 1 / -1;
}

#registerModal .register-grid > #registerAddress {
  min-height: 92px;
  grid-column: 1 / -1;
}

.register-network-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(153, 241, 255, 0.16);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(10, 28, 46, 0.38);
}

.register-network-copy {
  display: grid;
  gap: 6px;
}

.register-network-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(126, 230, 255, 0.28);
  background: rgba(126, 230, 255, 0.08);
  color: #bdf8ff;
  font-size: 12px;
  font-weight: 800;
}

.register-network-copy strong {
  color: #f3fbff;
  font-size: 19px;
  line-height: 1.3;
}

.register-network-copy p {
  margin: 0;
  color: rgba(226, 243, 255, 0.78);
  font-size: 13px;
  line-height: 1.65;
}

.register-network-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.register-network-field {
  display: grid;
  gap: 6px;
}

.register-network-field label {
  margin: 0;
  color: #dff7ff;
  font-size: 13px;
  font-weight: 700;
}

.register-offer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  margin-bottom: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 206, 133, 0.24);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 214, 111, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(62, 15, 11, 0.92), rgba(119, 29, 22, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 227, 179, 0.18);
}

.register-offer-copy {
  display: grid;
  gap: 8px;
}

.register-offer-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 236, 186, 0.12);
  border: 1px solid rgba(255, 214, 111, 0.24);
  color: #ffe7b0;
  font-size: 12px;
  font-weight: 800;
}

.register-offer-copy strong {
  display: block;
  color: #fff6de;
  font-size: 22px;
  line-height: 1.2;
}

.register-offer-copy p {
  margin: 0;
  color: rgba(255, 239, 213, 0.8);
  font-size: 13px;
  line-height: 1.65;
}

.register-offer-price {
  min-width: 140px;
  display: grid;
  gap: 4px;
  justify-items: end;
}

.register-offer-price .offer-old {
  color: rgba(255, 222, 189, 0.74);
  font-size: 16px;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 120, 120, 0.92);
}

.register-offer-price .offer-new {
  color: #ffe157;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 18px rgba(255, 225, 87, 0.24);
}

.register-fee-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(153, 241, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.register-fee-label {
  display: block;
  color: rgba(226, 243, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.register-fee-strip strong {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
}

.register-fee-note {
  max-width: 360px;
  color: rgba(226, 243, 255, 0.74);
  font-size: 13px;
  line-height: 1.6;
  text-align: right;
}

#registerModal .register-docs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 10px;
  margin-top: 8px;
  border: 1px solid rgba(126, 230, 255, 0.24);
  border-radius: 12px;
  padding: 10px 12px 12px;
  background: rgba(7, 25, 41, 0.35);
}

#registerModal .register-docs legend {
  grid-column: 1 / -1;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: #9ef6dc;
  margin: -16px auto 4px;
  background: rgba(7, 25, 41, 0.74);
  border-radius: 999px;
  text-align: center;
}

#registerModal .register-doc-item {
  display: grid;
  gap: 6px;
  align-content: start;
}

#registerModal .register-doc-item label {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 800;
}

#registerModal .register-file-preview {
  min-height: 120px;
  border: 1px dashed rgba(126, 230, 255, 0.35);
  border-radius: 10px;
  padding: 8px;
  background: rgba(11, 36, 56, 0.35);
  color: #dff4ff;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}

#registerModal .register-file-preview img {
  width: 100%;
  max-width: 220px;
  max-height: 92px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(126, 230, 255, 0.35);
}

#registerModal .register-file-preview iframe,
#registerModal .register-file-preview embed {
  width: 100%;
  max-width: 220px;
  height: 92px;
  border: 1px solid rgba(126, 230, 255, 0.35);
  border-radius: 6px;
  background: #ffffff;
}

#registerModal .register-captcha {
  margin-top: 8px;
  border: 1px solid rgba(126, 230, 255, 0.24);
  border-radius: 12px;
  padding: 8px 10px;
  background: rgba(7, 25, 41, 0.32);
  width: 100%;
  grid-column: 1 / -1;
  align-self: start;
}

#registerModal .captcha-row {
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px;
  align-items: center;
}

#registerModal #registerCaptchaPrompt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 120px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(126, 230, 255, 0.28);
  background: rgba(247, 251, 255, 0.98);
  color: #122634;
  font-weight: 800;
  letter-spacing: 1.5px;
}

#registerModal .captcha-refresh {
  border: 1px solid rgba(126, 230, 255, 0.3);
  border-radius: 10px;
  background: rgba(19, 54, 83, 0.92);
  color: #eaf8ff;
  font-weight: 700;
  min-height: 48px;
  padding: 0 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#registerModal .register-password-row {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  grid-column: 1 / -1;
  align-self: start;
}

#registerModal .register-password-row label {
  margin-top: 0;
}

#registerModal .register-action-row {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#registerModal .register-action-row .form-submit {
  width: auto;
  min-width: 190px;
  margin-top: 0;
  padding: 0 24px;
}

#registerModal .register-action-row .auth-footer {
  margin-top: 0;
}

#registerModal .register-action-row .auth-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #d8ecff;
}

#registerModal .register-action-row .auth-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid rgba(143, 255, 229, 0.45);
  background: linear-gradient(140deg, rgba(8, 36, 61, 0.95), rgba(20, 68, 98, 0.96));
  color: #b8ffe9;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(4, 20, 33, 0.28);
}

#registerModal .register-action-row .auth-switch a:hover {
  filter: brightness(1.08);
}

#registerModal .invalid-blink {
  border-color: #ff4d4f;
  box-shadow:
    0 0 0 2px rgba(255, 77, 79, 0.25),
    0 0 0 0 rgba(255, 77, 79, 0.35);
  animation: invalidBlink 0.8s linear 3;
}

@keyframes invalidBlink {
  50% {
    box-shadow:
      0 0 0 2px rgba(255, 77, 79, 0.45),
      0 0 0 4px rgba(255, 77, 79, 0.22);
  }
}

@media (max-width: 980px) {
  #registerModal .modal-panel {
    width: min(760px, 100%);
  }

  #registerModal .register-grid {
    grid-template-columns: 1fr;
  }

  #registerModal .register-docs {
    grid-template-columns: 1fr;
  }

  #registerModal .register-captcha,
  #registerModal .register-password-row {
    grid-column: 1 / -1;
  }

  .register-offer-panel {
    grid-template-columns: 1fr;
  }

  .register-network-fields {
    grid-template-columns: 1fr;
  }

  .register-offer-price,
  .register-fee-note {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  #registerModal .modal-panel {
    width: min(100%, 100%);
    padding: 18px 16px 20px;
  }

  #registerModal .register-grid {
    grid-template-columns: 1fr;
  }

  #registerModal .register-password-row {
    grid-template-columns: 1fr;
  }

  #registerModal .register-action-row {
    flex-direction: column;
    align-items: center;
  }

  #registerModal h2 {
    font-size: clamp(28px, 9vw, 40px);
    margin-bottom: 10px;
  }

  .register-offer-panel {
    padding: 14px;
    border-radius: 16px;
    margin-bottom: 14px;
  }

  .register-fee-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .register-fee-note {
    max-width: none;
    text-align: left;
  }
}

/* AUTH REQUIRED ALERT DESIGN */
#authRequiredModal.welcome-overlay {
  align-items: center;
  justify-content: center;
  padding: 16px;
  background:
    radial-gradient(
      circle at 20% 18%,
      rgba(255, 187, 92, 0.18),
      transparent 44%
    ),
    radial-gradient(
      circle at 82% 84%,
      rgba(78, 236, 194, 0.2),
      transparent 40%
    ),
    rgba(5, 16, 30, 0.72);
  backdrop-filter: blur(12px) saturate(118%);
}

#authRequiredModal.welcome-overlay.is-closing {
  animation: modalOverlayOut 0.2s ease forwards;
}

#authRequiredModal .welcome-card {
  position: relative;
  width: min(620px, 100%);
  border-radius: 24px;
  border: 1px solid rgba(255, 215, 166, 0.34);
  background: linear-gradient(
    135deg,
    rgba(15, 35, 62, 0.96),
    rgba(30, 63, 95, 0.94)
  );
  box-shadow:
    0 26px 56px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  padding: 24px 22px 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: authCardIn 0.32s ease-out;
  transform-origin: center top;
}

#authRequiredModal.welcome-overlay.is-closing .welcome-card {
  animation: authCardOut 0.2s ease forwards;
}

@keyframes modalOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
}

@keyframes modalOverlayOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes authCardIn {
  0% {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes authCardOut {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  100% {
    opacity: 0;
    transform: scale(0.98) translateY(8px);
  }
}

#authRequiredModal .welcome-card::before,
#authRequiredModal .welcome-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

#authRequiredModal .welcome-card::before {
  width: 220px;
  height: 220px;
  top: -120px;
  left: -70px;
  background: radial-gradient(
    circle,
    rgba(255, 198, 106, 0.38),
    transparent 68%
  );
}

#authRequiredModal .welcome-card::after {
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(85, 240, 204, 0.3), transparent 70%);
}

#authRequiredModal .welcome-emoji {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
  align-self: center;
}

#authRequiredModal #welcomeEmoji {
  font-size: 30px;
  line-height: 1;
}

#authRequiredModal #welcomeTopMsg {
  font-size: 13px;
  font-weight: 700;
  color: #ffdca4;
  letter-spacing: 0.2px;
}

#authRequiredModal #welcomeGreeting {
  position: relative;
  z-index: 1;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.12;
  margin: 0 0 10px;
  color: #fdf8ec;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  max-width: 92%;
}

#authRequiredModal #welcomeLine {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 19px;
  line-height: 1.4;
  color: #e3f3ff;
  max-width: 92%;
}

#authRequiredModal #authNote {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  padding: 8px 12px;
  width: min(100%, 540px);
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.35;
  text-align: center;
  font-weight: 600;
  color: #e8fff7;
  background: linear-gradient(
    120deg,
    rgba(255, 199, 108, 0.2),
    rgba(72, 227, 189, 0.24)
  );
  border: 1px solid rgba(154, 240, 218, 0.34);
}

#authRequiredModal .welcome-actions {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 220px));
  justify-content: center;
  gap: 12px;
  width: 100%;
}

#authRequiredModal .welcome-actions .welcome-btn {
  min-height: 52px;
  border-radius: 14px;
  font-size: 21px;
  line-height: 1.2;
  white-space: nowrap;
  font-weight: 800;
  padding: 0 14px;
  color: #04231b;
  background: linear-gradient(120deg, #ffc974, #49e4bf 58%, #2fd8bc);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
  justify-self: center;
}

#authRequiredModal .welcome-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  padding: 0;
  line-height: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #e9f6ff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 232, 183, 0.44);
  cursor: pointer;
  z-index: 5;
  pointer-events: auto;
  touch-action: manipulation;
}

@media (max-width: 700px) {
  #authRequiredModal .welcome-card {
    width: min(96vw, 460px);
    padding: 18px 14px 14px;
  }

  #authRequiredModal #welcomeGreeting {
    font-size: 31px;
  }

  #authRequiredModal #welcomeLine {
    font-size: 16px;
  }

  #authRequiredModal .welcome-actions {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  #authRequiredModal .welcome-actions .welcome-btn {
    font-size: 20px;
    min-height: 50px;
  }
}

@media (max-width: 700px) {
  #loginModal,
  #registerModal {
    align-items: flex-start;
    overflow-y: auto;
    padding: 10px 10px 14px;
  }

  #loginModal .modal-panel,
  #registerModal .modal-panel {
    margin: 0 auto;
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 700px) {
  #gstItrPage.gst-page {
    padding-top: 58px;
  }

  #gstItrPage .gst-header nav {
    gap: 6px;
  }

  #gstItrPage .gst-header .nav-logo img {
    width: 46px;
    height: 46px;
  }

  #gstItrPage .gst-header .gst-header-title {
    font-size: 16px;
    font-weight: 700;
    min-width: 0;
  }

  #gstItrPage .gst-header #gstHeaderTimer {
    min-width: 72px;
    padding: 0 8px;
    font-size: 13px;
  }

  #gstItrPage .gst-header .gst-home-btn {
    height: 33px;
    padding: 0 10px;
    font-size: 17px;
  }

  #gstItrPage .gst-header .gst-user-pill {
    padding: 3px 7px;
  }

  #gstItrPage .gst-header .gst-user-pill .service-user-avatar {
    width: 26px;
    height: 26px;
    min-width: 26px;
  }

  #gstItrPage .gst-header .gst-user-pill .service-user-info {
    display: none;
  }

  #gstItrPage .gst-hero {
    margin: 2px auto 4px;
  }
}

/* ===== PREMIUM PROFILE DROPDOWN FINAL OVERRIDE START ===== */
.profile-dropdown {
  width: 292px;
  border-radius: 18px;
  text-align: left;
}

.profile-dropdown-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(126, 230, 255, 0.16);
}

.profile-dropdown-avatar {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  border: 2px solid rgba(141, 247, 208, 0.72);
  background: center / cover no-repeat url("../img/indonline.png");
  box-shadow: 0 0 0 4px rgba(76, 231, 255, 0.1);
}

.profile-fullname {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.15;
}

.profile-email {
  margin-top: 3px;
  color: rgba(224, 241, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  max-width: 178px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-dropdown-status {
  margin: 12px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 217, 79, 0.24);
  padding: 9px 10px;
  color: #fff3c4;
  background: rgba(255, 201, 65, 0.1);
}

.profile-dropdown-status span {
  font-size: 12px;
  font-weight: 800;
}

.profile-dropdown-status strong {
  border-radius: 999px;
  padding: 4px 10px;
  color: #062923;
  background: #bdfdea;
  font-size: 12px;
  font-weight: 900;
}

.profile-link,
.profile-logout {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  font-size: 16px;
}

.profile-link-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: rgba(53, 242, 192, 0.14);
}

.profile-logout {
  color: #062923;
  background: linear-gradient(130deg, var(--mint-1), #4ce7ff);
  font-weight: 900;
}
/* ===== PREMIUM PROFILE DROPDOWN FINAL OVERRIDE END ===== */

/* Bigger login/register fields for clearer typing */
#loginModal .form input,
#registerModal .form input,
#registerModal .form select,
#registerModal .form textarea,
body.operator-login-page .operator-login-form input,
body.operator-login-page .operator-login-form select,
body.operator-login-page .operator-login-form textarea {
  min-height: 62px !important;
  padding: 17px 18px !important;
  font-size: 21px !important;
  line-height: 1.35 !important;
}

#loginModal .form input::placeholder,
#registerModal .form input::placeholder,
#registerModal .form textarea::placeholder,
body.operator-login-page .operator-login-form input::placeholder,
body.operator-login-page .operator-login-form textarea::placeholder {
  font-size: 19px !important;
}

#loginModal .form label,
#registerModal .form label,
body.operator-login-page .operator-login-form label {
  font-size: 17px !important;
}

#loginModal .input-wrap .toggle-password {
  width: 46px;
  height: 46px;
  right: 12px;
}

#loginModal .input-wrap input {
  padding-right: 64px !important;
}

@media (max-width: 700px) {
  #loginModal .form input,
  #registerModal .form input,
  #registerModal .form select,
  #registerModal .form textarea,
  body.operator-login-page .operator-login-form input,
  body.operator-login-page .operator-login-form select,
  body.operator-login-page .operator-login-form textarea {
    min-height: 66px !important;
    font-size: 22px !important;
  }
}
