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


html, body {
  background: #ffffff;
  color: #1a1a1a;
  font-family: 'Inter', system-ui, -apple-system, Arial, sans-serif;
  padding: 30px;
}


h2 {
  font-size: 28px;
  margin-top: 20px;
  color: #000080; 
}
.section-title {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
  text-transform: uppercase;
}


.container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.full-width {
  grid-column: span 2;
}
.section {
  margin-top: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}


.field {
  margin-bottom: 20px;
}
label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #000080;
}
.hint {
  font-size: 15px;
  color: #666;
  margin-top: 5px;
}
input, select {
  display: block;
  margin: 10px 0;
  padding: 10px;
  width: 100%;
  max-width: 300px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #ffffff;
  color: #1a1a1a;
}
input[type="number"].small-input,
.input-small {
  width: 80px;
  max-width: 80px;
}


button,
.button {
  padding: 12px 20px;
  background: #138808;  
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}
button:hover,
.button:hover {
  background: #0f6b06;
}
.button-secondary {
  background: #FF9933; 
  color: #ffffff;
}
.button-secondary:hover {
  background: #e68900;
}
.button {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 20px;
}


.kpi-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.kpi {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}
.kpi-title {
  color: #555;
  font-size: 12px;
}
.kpi-value {
  font-size: 34px;
  font-weight: bold;
  margin-top: 10px;
  color: #1a1a1a;
}
.kpi-value.green { color: #138808; }
.kpi-value.saffron { color: #FF9933; }
.kpi-value.blue { color: #000080; }

@media (max-width: 1024px) {
  .kpi-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
}


table {
  width: 100%;
  margin-top: 10px;
  border-collapse: collapse;
}
td, th {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}
th {
  color: #000080;
  text-align: left;
}


.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid #e0e0e0;
  color: #1a1a1a;
}
.summary {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.row {
  display: flex;
  justify-content: space-between;
  margin: 5px 0;
}
.result {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}
.value {
  font-weight: bold;
}


.green { color: #138808; }
.saffron { color: #FF9933; }
.blue { color: #000080; }
.red { color: #dc3545; }


@media (max-width: 768px) {
  .container { grid-template-columns: 1fr; }
  .full-width { grid-column: span 1; }
  .kpi-grid { grid-template-columns: 1fr; gap: 15px; }
  input { max-width: 100%; }
}


.action-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  border: 1px solid #e0e0e0;
}
.action-title,
.action-sub {
  grid-column: span 4;
}
.action-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000080;
}
.action-sub {
  color: #555;
  margin-bottom: 15px;
}
.action-block {
  background: #ffffff;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
}
.action-label {
  font-size: 13px;
  color: #555;
  margin-bottom: 5px;
}
.action-value {
  font-size: 18px;
  font-weight: bold;
}
.action-list {
  margin-top: 10px;
  padding-left: 18px;
}
.action-list li { margin-bottom: 6px; }
.highlight { color: #138808; font-weight: bold; }
.warning { color: #dc3545; font-weight: bold; }
.caution { color: #FF9933; font-weight: bold; }
.success { color: #138808; }

@media (max-width: 1024px) {
  .action-box { grid-template-columns: repeat(2, 1fr); }
  .action-title, .action-sub { grid-column: span 2; }
}
@media (max-width: 600px) {
  .action-box { grid-template-columns: 1fr; }
  .action-title, .action-sub { grid-column: span 1; }
}


.simulator-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.sim-block {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}
.sim-block input {
  width: 100%;
  margin-top: 10px;
}
.sim-block output {
  display: block;
  margin-top: 8px;
  font-weight: bold;
  color: #138808;
}
@media (max-width: 1024px) {
  .simulator-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .simulator-row { grid-template-columns: 1fr; }
}


.history-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .history-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .history-grid { grid-template-columns: 1fr; }
}


.green-bg {
  background: #e8f5e9;
  border: 1px solid #138808;
}
.saffron-bg {
  background: #fff3e0;
  border: 1px solid #FF9933;
}
.red-bg {
  background: #ffebee;
  border: 1px solid #dc3545;
}
.blue-bg {
  background: #e8eaf6;
  border: 1px solid #000080;
}
.card .row div:last-child {
  font-weight: bold;
}


.select-all {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
  background: #f8f9fa;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.select-all input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.select-all label {
  font-size: 16px;
  cursor: pointer;
  color: #000080;
}


.glossary-container {
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
}
.term {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
}
.term h3 {
  color: #000080;
  margin-bottom: 10px;
}
.term p {
  margin: 6px 0;
  line-height: 1.5;
}
.term strong {
  color: #555;
}
.glossary {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  padding: 20px;
}
.left {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  height: 85vh;
  overflow-y: auto;
  position: sticky;
  top: 20px;
  border: 1px solid #e0e0e0;
}
.item {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
  transition: all 0.2s;
  color: #1a1a1a;
}
.item:hover { background: #e0e0e0; }
.item.active { background: #000080; color: #ffffff; font-weight: bold; }
.right {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  overflow-y: auto;
  height: 85vh;
  border: 1px solid #e0e0e0;
}
.def-block {
  margin-bottom: 16px;
  border-left: 3px solid #FF9933;
  padding-left: 12px;
}
.def-label {
  font-weight: bold;
  color: #000080;
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.def-text {
  color: #1a1a1a;
  line-height: 1.5;
  margin: 0 0 8px 0;
}
.right h2 {
  color: #000080;
  margin-top: 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 8px;
}
.badge {
  display: inline-block;
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  color: #555;
}
ul {
  margin: 5px 0 0 20px;
  padding: 0;
}
@media (max-width: 768px) {
  .glossary {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .left {
    position: relative;
    height: auto;
    max-height: 350px;
    top: 0;
  }
  .right {
    height: auto;
    min-height: 400px;
  }
}


.success-msg,
.error-msg {
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.success-msg {
  background: #e8f5e9;
  border: 1px solid #138808;
  color: #138808;
}
.error-msg {
  background: #ffebee;
  border: 1px solid #dc3545;
  color: #dc3545;
}
.warning-msg {
  background: #fff3e0;
  border: 1px solid #FF9933;
  color: #FF9933;
}


.load-btn {
  background: #138808;
  color: #ffffff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: background 0.2s;
}
.load-btn:hover { background: #0f6b06; }
.delete-btn {
  background: #dc3545;
  color: #ffffff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: background 0.2s;
}
.delete-btn:hover { background: #c82333; }
.bulk-delete-btn {
  background: #dc3545;
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  margin-left: 10px;
  transition: background 0.2s;
}
.bulk-delete-btn:hover { background: #c82333; }


.inline-form {
  background: #f8f9fa !important;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.form-field {
  display: flex;
  flex-direction: column;
}
.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #000080;
  margin-bottom: 4px;
}
.form-field input,
.form-field select {
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid #ccc;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.9rem;
}
.update-btn {
  margin-top: 15px;
  background: #138808;
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}
.update-btn:hover { background: #0f6b06; }


.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: #ffffff;
  border-bottom: 2px solid #FF9933;
  width: 100%;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}
.product-name {
  font-size: 16px;
  font-weight: bold;
  color: #000080;
}
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  margin-left: auto;
}
.hamburger span {
  width: 100%;
  height: 3px;
  background: #1a1a1a;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
.nav-right {
  position: fixed;
  top: 60px;
  right: -100%;
  width: 280px;
  height: calc(100vh - 60px);
  background: #ffffff;
  border-left: 2px solid #FF9933;
  flex-direction: column;
  padding: 20px;
  gap: 10px;
  transition: right 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
  box-shadow: -5px 0 20px rgba(0,0,0,0.1);
}
.nav-right.show {
  right: 0;
}
.nav-right a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-weight: 500;
  display: block;
  text-align: left;
  width: 100%;
}
.nav-right a:hover {
  color: #ffffff;
  background: #138808;
  font-weight: 700;
  transform: translateX(5px);
}
.nav-right a.active {
  color: #000080;
  background: rgba(0,0,128,0.1);
  font-weight: 700;
  border-left: 3px solid #000080;
}
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 15px;
  }
  .hamburger { display: flex; margin-left: auto; margin-right: 0; }
  .product-name { font-size: 14px; }
  .logo { width: 30px; height: 30px; }
  .nav-right { width: 100%; top: 52px; height: calc(100vh - 52px); }
}
@media (min-width: 769px) {
  .nav-right { width: 300px; }
}


.cmo-section {
  border-left: 4px solid #FF9933;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.cmo-section h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #000080;
}
.cmo-section h3:before {
  content: "🎯";
  font-size: 1.2rem;
}
.cmo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1rem;
}
.cmo-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  border: 1px solid #e0e0e0;
}
.cmo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.cmo-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #555;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.cmo-value {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
}
.cmo-value.green { color: #138808; }
.cmo-value.red { color: #dc3545; }
.cmo-value.saffron { color: #FF9933; }
.cmo-value.blue { color: #000080; }
.cmo-summary {
  background: #ffffff;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: #1a1a1a;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  border-top: 1px solid #e0e0e0;
  margin-top: 0.5rem;
}
.cmo-summary span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
@media (max-width: 768px) {
  .cmo-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .cmo-value { font-size: 1.4rem; }
  .cmo-summary { flex-direction: column; align-items: center; gap: 0.5rem; text-align: center; }
}


.feedback-container {
  max-width: 700px;
  margin: 30px auto;
}
.feedback-form .field { margin-bottom: 20px; }
.feedback-form label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  color: #000080;
}
.feedback-form select,
.feedback-form textarea,
.feedback-form input[type="text"] {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 0.9rem;
}
.feedback-form textarea {
  min-height: 150px;
  resize: vertical;
}
.note {
  font-size: 0.8rem;
  color: #555;
  margin-top: 20px;
  text-align: center;
}


.login-page {
  margin: 0;
  height: 100vh;
  display: flex;
  background: linear-gradient(rgba(2,6,23,0.85), rgba(2,6,23,0.95));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow-x: hidden;
  padding: 0;
}
.login-page::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #138808;
  filter: blur(180px);
  opacity: 0.2;
  top: -100px;
  left: -100px;
  z-index: 0;
}
.login-page::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #000080;
  filter: blur(150px);
  opacity: 0.15;
  bottom: -100px;
  right: -100px;
  z-index: 0;
}


.login-page .header {
  position: absolute;
  top: 20px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.login-page .header-logo {
  height: 35px;
  width: auto;
}
.login-page .header-brand {
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
}


.login-page .login-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
  padding: 20px;
}
.login-page .login-top-expired {
  flex: 0 0 100%;
  width: 100%;
  margin-bottom: 20px;
}


.login-page .login-left {
  flex: 1;
  padding: 40px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.login-page .login-left h1 {
  font-size: 40px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff, #FF9933);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.login-page .login-left p {
  font-size: 18px;
  color: #94a3b8;
  margin-bottom: 30px;
  line-height: 1.5;
}
.login-page .preview {
  background: rgba(17, 24, 39, 0.6);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid #334155;
  margin-top: 20px;
}
.login-page .kpi-grid-login {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.login-page .kpi-login {
  flex: 1;
  background: #0f172a;
  padding: 15px 20px;
  border-radius: 12px;
  text-align: center;
  min-width: 100px;
}
.login-page .kpi-title-login {
  font-size: 12px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.login-page .kpi-value-login {
  font-size: 28px;
  font-weight: bold;
}
.login-page .kpi-value-login.green { color: #138808; }
.login-page .kpi-value-login.red { color: #dc3545; }
.login-page .kpi-value-login.saffron { color: #FF9933; }

.login-page .chart {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  height: 80px;
  margin-top: 15px;
}
.login-page .bar {
  flex: 1;
  background: #138808;
  border-radius: 4px;
  transition: height 0.3s ease;
  min-width: 8px;
}
.login-page .bar:nth-child(2) { background: #FF9933; }
.login-page .bar:nth-child(3) { background: #000080; }
.login-page .bar:nth-child(4) { background: #138808; }
.login-page .bar:nth-child(5) { background: #FF9933; }


.login-page .login-right {
  flex: 0 0 380px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-page .login-box {
  width: 100%;
  padding: 35px;
  border-radius: 20px;
  background: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(15px);
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
  border: 1px solid #334155;
}
.login-page .login-box h2 {
  text-align: center;
  color: #FF9933;
  margin-bottom: 25px;
  font-size: 28px;
}
.login-page .login-box input,
.login-page .login-box select {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #334155;
  background: #0f172a;
  color: #ffffff;
  font-size: 14px;
  box-sizing: border-box;
}
.login-page .login-box input:focus,
.login-page .login-box select:focus {
  outline: none;
  border-color: #138808;
}
.login-page .login-box button {
  width: 100%;
  padding: 12px;
  margin-top: 20px;
  border: none;
  border-radius: 8px;
  background: #138808;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
}
.login-page .login-box button:hover {
  background: #0f6b06;
  transform: translateY(-1px);
}
.login-page .error {
  color: #dc3545;
  text-align: center;
  margin-bottom: 15px;
  padding: 8px;
  background: rgba(239,68,68,0.1);
  border-radius: 8px;
}
.login-page .forgot-link {
  text-align: right;
  margin-top: 10px;
}
.login-page .forgot-link a {
  color: #94a3b8;
  font-size: 13px;
  text-decoration: none;
}
.login-page .forgot-link a:hover {
  color: #FF9933;
}


@media (max-width: 768px) {
  .login-page .header {
    top: 15px;
    left: 20px;
  }
  .login-page .header-brand {
    font-size: 14px;
  }
  .login-page .login-container {
    flex-direction: column;
    padding: 80px 20px 40px;
  }
  .login-page .login-left {
    padding: 20px;
    text-align: center;
  }
  .login-page .login-left h1 {
    font-size: 28px;
  }
  .login-page .login-left p {
    font-size: 14px;
  }
  .login-page .login-right {
    width: 100%;
    margin-top: 30px;
  }
  .login-page .kpi-login {
    min-width: 90px;
  }
}


.landing-page {
  background: linear-gradient(135deg, #0a0f1e 0%, #0a0f1e 50%, #0f1424 100%);
  padding: 0;
}


.landing-page .section-title {
  color: #e2e8f0 !important;
}
.landing-page h2 {
  color: #ffffff !important;
}
.landing-page p,
.landing-page li,
.landing-page .row,
.landing-page .field,
.landing-page .hint,
.landing-page .action-list li {
  color: #cbd5e1 !important;
}
.landing-page .card,
.landing-page .summary,
.landing-page .action-block {
  background: #1e293b !important;
  color: #e2e8f0 !important;
  border-color: #334155 !important;
}
.landing-page .kpi {
  background: #1e293b !important;
  border-color: #334155 !important;
}
.landing-page .kpi-title {
  color: #94a3b8 !important;
}
.landing-page .kpi-value {
  color: #ffffff !important;
}


.landing-page .landing-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid #FF9933;
}
.landing-page .landing-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.landing-page .landing-logo img {
  max-width: 125px;
  height: auto;
}
.landing-page .landing-logo span {
  font-size: 0.8rem;
  color: #94a3b8;
}
.landing-page .landing-nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.landing-page .landing-nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s;
}
.landing-page .landing-nav-links a:hover {
  color: #FF9933;
}
.landing-page .login-link {
  background: #138808;
  color: #ffffff !important;
  padding: 8px 24px;
  border-radius: 8px;
  font-weight: 600;
}
.landing-page .login-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(19, 136, 8, 0.4);
}


.landing-page .landing-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.landing-page .landing-hamburger span {
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.landing-page .landing-hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.landing-page .landing-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.landing-page .landing-hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
.landing-page .landing-mobile-menu {
  position: fixed;
  top: 70px;
  right: -100%;
  width: 280px;
  height: calc(100vh - 70px);
  background: #0a0f1e;
  border-left: 2px solid #FF9933;
  flex-direction: column;
  padding: 30px 20px;
  gap: 20px;
  transition: right 0.3s ease;
  z-index: 999;
}
.landing-page .landing-mobile-menu.show {
  right: 0;
}
.landing-page .landing-mobile-menu a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 10px 0;
  display: block;
}
.landing-page .landing-mobile-menu a:hover {
  color: #FF9933;
}


.landing-page .hero {
  padding: 120px 5% 80px;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(19, 136, 8, 0.15), transparent);
}
.landing-page .hero-badge {
  display: inline-block;
  background: rgba(255, 153, 51, 0.15);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  color: #FF9933;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 153, 51, 0.3);
}
.landing-page .hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}
.landing-page .hero h1 span {
  background: linear-gradient(135deg, #FF9933, #138808);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.landing-page .hero-subtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 30px;
}


.landing-page .btn-primary {
  background: #138808;
  color: #ffffff;
  padding: 14px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  display: inline-block;
}
.landing-page .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(19, 136, 8, 0.4);
}
.landing-page .btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #334155;
  color: #ffffff;
  padding: 14px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}
.landing-page .btn-secondary:hover {
  border-color: #FF9933;
  background: rgba(255, 153, 51, 0.1);
}


.landing-page .steps,
.landing-page .features,
.landing-page .metrics-preview,
.landing-page .testimonials,
.landing-page .cta-section {
  padding: 80px 5%;
}
.landing-page .section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff !important;
}
.landing-page .section-subtitle {
  text-align: center;
  color: #94a3b8;
  margin-bottom: 50px;
  font-size: 1.1rem;
}
.landing-page .steps-grid,
.landing-page .features-grid,
.landing-page .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.landing-page .step-card,
.landing-page .feature-item,
.landing-page .testimonial-card {
  background: rgba(30, 41, 59, 0.5);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  border: 1px solid #334155;
  transition: all 0.3s;
  color: #e2e8f0;
}
.landing-page .step-card:hover,
.landing-page .feature-item:hover,
.landing-page .testimonial-card:hover {
  transform: translateY(-5px);
  border-color: #FF9933;
}
.landing-page .step-number {
  width: 50px;
  height: 50px;
  background: #138808;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
  color: #ffffff;
}
.landing-page .feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.landing-page .feature-item h4,
.landing-page .step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #FF9933;
}
.landing-page .step-card p,
.landing-page .feature-item p,
.landing-page .testimonial-text {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.5;
}


.landing-page .metrics-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}
.landing-page .metric-card {
  background: #1e293b;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  border: 1px solid #334155;
}
.landing-page .metric-label {
  font-size: 0.8rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.landing-page .metric-value {
  font-size: 1.8rem;
  font-weight: bold;
  color: #138808;
  margin-top: 10px;
}


.landing-page .testimonial-author {
  color: #FF9933;
  font-weight: 600;
  margin-top: 15px;
}
.landing-page .testimonial-role {
  color: #94a3b8;
  font-size: 0.8rem;
}


.landing-page .cta-section {
  text-align: center;
  background: linear-gradient(135deg, #1a2a3a, #0a0f1e);
}
.landing-page .cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffffff !important;
}
.landing-page .cta-section p {
  color: #94a3b8;
}
.landing-page .btn-large {
  padding: 16px 50px;
  font-size: 1.1rem;
}


.landing-page .footer {
  padding: 40px 5%;
  text-align: center;
  border-top: 1px solid #334155;
  color: #64748b;
  font-size: 0.85rem;
}


@media (max-width: 1024px) {
  .landing-page .steps-grid,
  .landing-page .features-grid,
  .landing-page .metrics-container,
  .landing-page .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .landing-page .hero h1 { font-size: 2rem; }
  .landing-page .steps-grid,
  .landing-page .features-grid,
  .landing-page .metrics-container,
  .landing-page .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .landing-page .section-title { font-size: 1.8rem; }
  .landing-page .metric-value { font-size: 1.4rem; }
  .landing-page .landing-nav-links { display: none; }
  .landing-page .landing-hamburger { display: flex; }
  .landing-page .landing-mobile-menu { display: flex; }
}



:root {
  --india-saffron: #FF9933;
  --india-green: #138808;
  --india-navy: #000080;
  --india-white: #ffffff;
  --india-cream: #fffaf3;
  --india-mint: #f1fff3;
  --india-blue-soft: #eef2ff;
  --text-main: #172033;
  --text-muted: #5d6678;
  --border-soft: #e6e8ef;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.08);
}

html, body {
  background: linear-gradient(180deg, #fff7ee 0%, #ffffff 34%, #f2fff4 100%) !important;
  color: var(--text-main) !important;
}

body::selection {
  background: rgba(255,153,51,0.25);
}


.tricolour-line,
.landing-page .landing-navbar::after,
.login-page .login-box::before,
.login-page .preview::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--india-saffron) 0 33%, var(--india-white) 33% 66%, var(--india-green) 66% 100%);
  border-radius: 999px;
  border: 1px solid rgba(0,0,128,0.08);
}


.login-page {
  min-height: 100vh;
  height: auto !important;
  background:
    radial-gradient(circle at top left, rgba(255,153,51,0.28), transparent 34%),
    radial-gradient(circle at bottom right, rgba(19,136,8,0.22), transparent 38%),
    linear-gradient(135deg, #fff7ed 0%, #ffffff 48%, #f0fff3 100%) !important;
  color: var(--text-main) !important;
  overflow-x: hidden;
}

.login-page::before,
.login-page::after {
  display: none !important;
}

.login-page .header {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 8px 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  backdrop-filter: blur(10px);
}

.login-page .header-brand {
  color: var(--india-navy) !important;
}

.login-page .login-container {
  gap: 26px;
  align-items: center;
}

.login-page .login-left {
  color: var(--text-main) !important;
}

.login-page .login-left h1 {
  color: var(--india-navy) !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  line-height: 1.08;
}

.login-page .login-left h1::after {
  content: "";
  display: block;
  width: 160px;
  height: 5px;
  margin-top: 18px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--india-saffron), var(--india-white), var(--india-green));
  border: 1px solid rgba(0,0,128,0.08);
}

.login-page .login-left p {
  color: var(--text-muted) !important;
}

.login-page .preview {
  position: relative;
  background: rgba(255,255,255,0.82) !important;
  border: 1px solid var(--border-soft) !important;
  box-shadow: var(--shadow-soft);
  color: var(--text-main) !important;
  overflow: hidden;
}

.login-page .preview::before {
  margin: -20px -20px 18px -20px;
  border-radius: 20px 20px 0 0;
}

.login-page .kpi-login {
  background: #ffffff !important;
  border: 1px solid var(--border-soft);
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}

.login-page .kpi-title-login {
  color: var(--text-muted) !important;
}

.login-page .chart {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 10px;
}

.login-page .login-box {
  position: relative;
  background: rgba(255,255,255,0.94) !important;
  border: 1px solid var(--border-soft) !important;
  box-shadow: var(--shadow-soft) !important;
  overflow: hidden;
}

.login-page .login-box::before {
  margin: -35px -35px 26px -35px;
  border-radius: 20px 20px 0 0;
}

.login-page .login-box h2 {
  color: var(--india-navy) !important;
}

.login-page .login-box input,
.login-page .login-box select {
  background: #ffffff !important;
  color: var(--text-main) !important;
  border: 1px solid #d7dce7 !important;
}

.login-page .login-box input:focus,
.login-page .login-box select:focus {
  border-color: var(--india-saffron) !important;
  box-shadow: 0 0 0 4px rgba(255,153,51,0.15);
}

.login-page .login-box button,
.landing-page .btn-primary,
.landing-page .login-link {
  background: linear-gradient(135deg, var(--india-green), #0f6b06) !important;
  color: #ffffff !important;
}

.login-page .forgot-link a {
  color: var(--india-navy) !important;
}

.login-page .error {
  background: #fff1f1 !important;
  border: 1px solid #ffc9c9;
}


.landing-page {
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 42%, #f1fff3 100%) !important;
  color: var(--text-main) !important;
  padding: 0 !important;
}

.landing-page .landing-navbar {
  background: rgba(255,255,255,0.94) !important;
  border-bottom: 0 !important;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.landing-page .landing-navbar::after {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 0;
}

.landing-page .landing-logo span,
.landing-page .landing-nav-links a,
.landing-page .landing-mobile-menu a {
  color: var(--text-main) !important;
}

.landing-page .landing-nav-links a:hover,
.landing-page .landing-mobile-menu a:hover {
  color: var(--india-green) !important;
}

.landing-page .landing-hamburger span {
  background: var(--india-navy) !important;
}

.landing-page .landing-mobile-menu {
  background: #ffffff !important;
  border-left: 3px solid var(--india-saffron) !important;
  box-shadow: -18px 0 35px rgba(0,0,0,0.08);
}

.landing-page .hero {
  background:
    radial-gradient(circle at 15% 10%, rgba(255,153,51,0.22), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(19,136,8,0.18), transparent 34%),
    linear-gradient(180deg, #fffaf3, #ffffff) !important;
}

.landing-page .hero-badge {
  background: #ffffff !important;
  color: var(--india-navy) !important;
  border: 1px solid var(--border-soft) !important;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}

.landing-page .hero h1,
.landing-page h2,
.landing-page .section-title,
.landing-page .cta-section h2 {
  color: var(--india-navy) !important;
}

.landing-page .hero h1 span {
  background: linear-gradient(135deg, var(--india-saffron), var(--india-green)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}

.landing-page .hero-subtitle,
.landing-page .section-subtitle,
.landing-page p,
.landing-page li,
.landing-page .step-card p,
.landing-page .feature-item p,
.landing-page .testimonial-text,
.landing-page .testimonial-role,
.landing-page .metric-label,
.landing-page .cta-section p,
.landing-page .footer {
  color: var(--text-muted) !important;
}

.landing-page .btn-secondary {
  background: #ffffff !important;
  border: 1px solid var(--border-soft) !important;
  color: var(--india-navy) !important;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}

.landing-page .btn-secondary:hover {
  border-color: var(--india-saffron) !important;
  background: #fff7ed !important;
}

.landing-page .step-card,
.landing-page .feature-item,
.landing-page .testimonial-card,
.landing-page .metric-card {
  background: rgba(255,255,255,0.9) !important;
  border: 1px solid var(--border-soft) !important;
  color: var(--text-main) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.landing-page .step-card:hover,
.landing-page .feature-item:hover,
.landing-page .testimonial-card:hover,
.landing-page .metric-card:hover {
  border-color: var(--india-saffron) !important;
  box-shadow: 0 18px 38px rgba(255,153,51,0.14);
}

.landing-page .step-number {
  background: linear-gradient(135deg, var(--india-saffron), var(--india-green)) !important;
}

.landing-page .feature-item h4,
.landing-page .step-card h3,
.landing-page .testimonial-author {
  color: var(--india-green) !important;
}

.landing-page .metric-value {
  color: var(--india-navy) !important;
}

.landing-page .metrics-preview,
.landing-page .testimonials {
  background: linear-gradient(180deg, #ffffff, #fffaf3) !important;
}

.landing-page .features,
.landing-page .steps {
  background: #ffffff !important;
}

.landing-page .cta-section {
  background: linear-gradient(135deg, #fff7ed, #ffffff, #f1fff3) !important;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.landing-page .footer {
  background: #ffffff !important;
  border-top: 1px solid var(--border-soft) !important;
}


.navbar {
  background: rgba(255,255,255,0.95) !important;
  border-bottom: 3px solid var(--india-saffron) !important;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.section,
.card,
.kpi,
.action-box,
.sim-block,
.inline-form,
.term,
.left,
.right,
.cmo-section,
.cmo-card {
  background: #ffffff !important;
  border-color: var(--border-soft) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.section,
.cmo-section {
  border-top: 4px solid var(--india-saffron) !important;
}

h1, h2, h3, label, .product-name, .action-title, .def-label, th {
  color: var(--india-navy) !important;
}

input, select, textarea {
  background: #ffffff !important;
  color: var(--text-main) !important;
  border: 1px solid #d7dce7 !important;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--india-saffron) !important;
  box-shadow: 0 0 0 4px rgba(255,153,51,0.14);
}

@media (max-width: 768px) {
  .login-page .login-left h1::after {
    margin-left: auto;
    margin-right: auto;
  }
  .login-page .login-box {
    padding: 28px;
  }
  .login-page .login-box::before {
    margin: -28px -28px 22px -28px;
  }
}




        :root {
            --im-navy: #071a35;
            --im-navy-soft: #0e294f;
            --im-ink: #162033;
            --im-muted: #667085;
            --im-line: rgba(15, 23, 42, 0.12);
            --im-bg: #f7fafc;
            --im-card: #ffffff;
            --im-saffron: #ff8f2d;
            --im-saffron-dark: #d76a00;
            --im-green: #138a3d;
            --im-green-soft: #e8f7ee;
            --im-blue: #123b7a;
            --im-blue-soft: #eaf1ff;
            --im-warning: #fff7e6;
            --im-danger: #ffecec;
            --im-shadow: 0 20px 60px rgba(7, 26, 53, 0.14);
            --im-radius-xl: 30px;
            --im-radius-lg: 22px;
            --im-radius-md: 16px;
            --im-max: 1180px;
        }
.imagic-page * {
            box-sizing: border-box;
        }
body.imagic-page {
            margin: 0;
            padding: 0;
            font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--im-ink);
            background:
                radial-gradient(circle at top left, rgba(255, 143, 45, 0.18), transparent 34%),
                radial-gradient(circle at top right, rgba(19, 138, 61, 0.15), transparent 34%),
                linear-gradient(180deg, #ffffff 0%, var(--im-bg) 44%, #ffffff 100%);
        }
.imagic-page a {
            color: inherit;
            text-decoration: none;
        }

        .im-top-strip {
            height: 8px;
            background: linear-gradient(90deg, var(--im-saffron) 0%, #ffffff 48%, var(--im-green) 100%);
            border-bottom: 1px solid rgba(0,0,0,0.04);
        }

        .im-nav {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(18px);
            background: rgba(255, 255, 255, 0.88);
            border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        }

        .im-nav-inner {
            max-width: var(--im-max);
            margin: 0 auto;
            padding: 16px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
        }

        .im-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 220px;
        }

        .im-brand-mark {
            width: 42px;
            height: 42px;
            border-radius: 14px;
            background:
                linear-gradient(135deg, rgba(255,143,45,0.95), rgba(255,255,255,0.9) 48%, rgba(19,138,61,0.95)),
                var(--im-card);
            box-shadow: 0 10px 26px rgba(7, 26, 53, 0.16);
            display: grid;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, 0.75);
            color: var(--im-navy);
            font-weight: 900;
            letter-spacing: -0.08em;
        }

        .im-brand-text strong {
            display: block;
            font-size: 1.02rem;
            line-height: 1;
            letter-spacing: -0.03em;
            color: var(--im-navy);
        }

        .im-brand-text span {
            display: block;
            font-size: 0.78rem;
            color: var(--im-muted);
            margin-top: 3px;
        }

        .im-nav-links {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            color: #475467;
            font-size: 0.92rem;
            font-weight: 700;
        }

        .im-nav-links a:hover {
            color: var(--im-navy);
        }

        .im-nav-cta {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .im-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border: 0;
            border-radius: 999px;
            padding: 12px 20px;
            font-weight: 900;
            font-size: 0.94rem;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
            white-space: nowrap;
        }

        .im-btn:hover {
            transform: translateY(-1px);
        }

        .im-btn-primary {
            color: #ffffff !important;
            background: linear-gradient(135deg, var(--im-navy), var(--im-blue));
            box-shadow: 0 14px 32px rgba(18, 59, 122, 0.25);
        }

        .im-btn-secondary {
            color: var(--im-navy);
            background: #ffffff;
            border: 1px solid rgba(18, 59, 122, 0.14);
            box-shadow: 0 12px 26px rgba(7, 26, 53, 0.08);
        }

        .im-btn-green {
            color: #ffffff;
            background: linear-gradient(135deg, var(--im-green), #0f6d34);
            box-shadow: 0 14px 32px rgba(19, 138, 61, 0.24);
        }

        .im-section {
            max-width: var(--im-max);
            margin: 0 auto;
            padding: 72px 22px;
        }

        .im-hero {
            display: grid;
            grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
            gap: 44px;
            align-items: center;
            padding-top: 78px;
            padding-bottom: 64px;
        }

        .im-pill {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 9px 13px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.85);
            border: 1px solid rgba(18, 59, 122, 0.12);
            color: var(--im-blue);
            font-weight: 900;
            font-size: 0.82rem;
            box-shadow: 0 10px 30px rgba(7, 26, 53, 0.07);
            margin-bottom: 20px;
        }

        .im-hero h1 {
            margin: 0;
            font-size: clamp(2.15rem, 3.6vw, 3.55rem);
            line-height: 1.03;
            letter-spacing: -0.045em;
            color: var(--im-navy);
        }

        .im-hero h1 span {
            display: block;
            background: linear-gradient(90deg, var(--im-saffron-dark), var(--im-blue) 54%, var(--im-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .im-hero-lead {
            margin: 24px 0 0;
            color: #475467;
            font-size: clamp(1.05rem, 2vw, 1.28rem);
            line-height: 1.7;
            max-width: 680px;
        }

        .im-hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 13px;
            margin-top: 30px;
        }

        .im-hero-proof {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-top: 34px;
        }

        .im-proof-card {
            background: rgba(255, 255, 255, 0.74);
            border: 1px solid rgba(15, 23, 42, 0.09);
            border-radius: 18px;
            padding: 16px;
            box-shadow: 0 10px 30px rgba(7, 26, 53, 0.06);
        }

        .im-proof-card strong {
            display: block;
            color: var(--im-navy);
            font-size: 1.24rem;
            letter-spacing: -0.04em;
        }

        .im-proof-card span {
            display: block;
            color: var(--im-muted);
            font-size: 0.82rem;
            font-weight: 700;
            margin-top: 3px;
        }

        .im-dashboard-shell {
            position: relative;
        }

        .im-dashboard-shell::before,
        .im-dashboard-shell::after {
            content: "";
            position: absolute;
            border-radius: 999px;
            filter: blur(6px);
            opacity: 0.78;
            z-index: 0;
        }

        .im-dashboard-shell::before {
            width: 160px;
            height: 160px;
            right: -18px;
            top: -26px;
            background: rgba(255, 143, 45, 0.3);
        }

        .im-dashboard-shell::after {
            width: 180px;
            height: 180px;
            left: -30px;
            bottom: -24px;
            background: rgba(19, 138, 61, 0.22);
        }

        .im-dashboard-card {
            position: relative;
            z-index: 1;
            border-radius: var(--im-radius-xl);
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid rgba(15, 23, 42, 0.1);
            box-shadow: var(--im-shadow);
            overflow: hidden;
        }

        .im-dashboard-top {
            padding: 18px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background:
                linear-gradient(90deg, rgba(255,143,45,0.14), rgba(255,255,255,0.9), rgba(19,138,61,0.12));
            border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        }

        .im-window-dots {
            display: flex;
            gap: 7px;
        }

        .im-window-dots span {
            width: 10px;
            height: 10px;
            border-radius: 999px;
            display: block;
            background: #cfd8e3;
        }

        .im-dashboard-top strong {
            color: var(--im-navy);
            letter-spacing: -0.035em;
        }

        .im-dashboard-body {
            padding: 22px;
        }

        .im-score-panel {
            display: grid;
            grid-template-columns: 152px 1fr;
            gap: 18px;
            align-items: center;
            padding: 18px;
            border-radius: 24px;
            background: linear-gradient(135deg, #ffffff, #f6fbff);
            border: 1px solid rgba(19, 138, 61, 0.18);
        }

        .im-score-ring {
            width: 138px;
            height: 138px;
            border-radius: 50%;
            background:
                conic-gradient(var(--im-green) 0 87%, #e8eef5 87% 100%);
            display: grid;
            place-items: center;
            box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
        }

        .im-score-ring-inner {
            width: 104px;
            height: 104px;
            border-radius: 50%;
            background: #ffffff;
            display: grid;
            place-items: center;
            text-align: center;
            box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
        }

        .im-score-ring-inner strong {
            display: block;
            color: var(--im-navy);
            font-size: 1.6rem;
            line-height: 1;
            letter-spacing: -0.05em;
        }

        .im-score-ring-inner span {
            display: block;
            color: var(--im-green);
            font-size: 0.68rem;
            text-transform: uppercase;
            font-weight: 900;
            letter-spacing: 0.06em;
            margin-top: 5px;
        }

        .im-score-copy h2 {
            margin: 0;
            color: var(--im-navy);
            font-size: 1.5rem;
            line-height: 1.08;
            letter-spacing: -0.05em;
        }

        .im-score-copy p {
            margin: 9px 0 0;
            color: #536176;
            line-height: 1.5;
            font-weight: 650;
        }

        .im-mini-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-top: 16px;
        }

        .im-mini-stat {
            padding: 14px;
            border-radius: 17px;
            background: #ffffff;
            border: 1px solid rgba(15, 23, 42, 0.09);
        }

        .im-mini-stat span {
            display: block;
            color: var(--im-muted);
            font-size: 0.73rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .im-mini-stat strong {
            display: block;
            margin-top: 5px;
            color: var(--im-navy);
            font-size: 1.25rem;
            letter-spacing: -0.05em;
        }

        .im-alert-row {
            margin-top: 16px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .im-alert-card {
            padding: 14px;
            border-radius: 17px;
            font-size: 0.84rem;
            line-height: 1.45;
            font-weight: 750;
            border: 1px solid rgba(15, 23, 42, 0.08);
        }

        .im-alert-card.good {
            background: var(--im-green-soft);
            color: #0f6d34;
        }

        .im-alert-card.watch {
            background: var(--im-warning);
            color: #9a5a00;
        }

        .im-section-head {
            max-width: 760px;
            margin: 0 auto 34px;
            text-align: center;
        }

        .im-kicker {
            color: var(--im-green);
            font-size: 0.82rem;
            font-weight: 1000;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            margin-bottom: 10px;
        }

        .im-section-head h2 {
            margin: 0;
            color: var(--im-navy);
            font-size: clamp(2rem, 4vw, 3.35rem);
            line-height: 1.04;
            letter-spacing: -0.065em;
        }

        .im-section-head p {
            margin: 16px auto 0;
            color: #5f6c7f;
            font-size: 1.05rem;
            line-height: 1.75;
        }

        .im-problem-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .im-problem-card,
        .im-output-card,
        .im-persona-card,
        .im-data-design-card {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(15, 23, 42, 0.09);
            border-radius: var(--im-radius-lg);
            padding: 24px;
            box-shadow: 0 16px 42px rgba(7, 26, 53, 0.07);
        }

        .im-icon {
            width: 48px;
            height: 48px;
            border-radius: 16px;
            display: grid;
            place-items: center;
            font-size: 1.45rem;
            margin-bottom: 16px;
            background: linear-gradient(135deg, rgba(255,143,45,0.16), rgba(19,138,61,0.15));
            border: 1px solid rgba(15, 23, 42, 0.08);
        }

        .im-problem-card h3,
        .im-output-card h3,
        .im-persona-card h3,
        .im-data-design-card h3 {
            margin: 0;
            color: var(--im-navy);
            font-size: 1.16rem;
            letter-spacing: -0.04em;
        }

        .im-problem-card p,
        .im-output-card p,
        .im-persona-card p,
        .im-data-design-card p {
            margin: 11px 0 0;
            color: #5d687a;
            line-height: 1.65;
            font-size: 0.97rem;
            font-weight: 610;
        }

        .im-flow {
            border-radius: var(--im-radius-xl);
            background: var(--im-navy);
            color: #ffffff;
            padding: 34px;
            box-shadow: var(--im-shadow);
            position: relative;
            overflow: hidden;
        }

        .im-flow::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 14% 20%, rgba(255,143,45,0.27), transparent 26%),
                radial-gradient(circle at 86% 76%, rgba(19,138,61,0.24), transparent 26%);
            pointer-events: none;
        }

        .im-flow-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 70px 1fr 70px 1fr;
            gap: 14px;
            align-items: stretch;
        }

        .im-flow-step {
            min-height: 220px;
            padding: 24px;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.09);
            border: 1px solid rgba(255, 255, 255, 0.14);
        }

        .im-flow-step .num {
            width: 38px;
            height: 38px;
            display: grid;
            place-items: center;
            border-radius: 12px;
            background: rgba(255,255,255,0.13);
            color: #ffffff;
            font-weight: 1000;
            margin-bottom: 18px;
        }

        .im-flow-step h3 {
            margin: 0;
            font-size: 1.32rem;
            line-height: 1.14;
            letter-spacing: -0.045em;
            color: var(--im-green) !important;
        }

        .im-flow-step ul {
            margin: 14px 0 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 8px;
            color: rgba(255, 255, 255, 0.78);
            font-size: 0.94rem;
            line-height: 1.35;
            font-weight: 650;
        }

        .im-flow-arrow {
            display: grid;
            place-items: center;
            color: rgba(255,255,255,0.72);
            font-size: 2rem;
            font-weight: 900;
        }

        .im-output-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .im-output-card {
            padding: 22px;
        }

        .im-output-card .tag {
            display: inline-flex;
            padding: 6px 10px;
            border-radius: 999px;
            background: var(--im-blue-soft);
            color: var(--im-blue);
            font-size: 0.74rem;
            font-weight: 900;
            margin-bottom: 14px;
        }

        .im-preview-wrap {
            display: grid;
            grid-template-columns: 0.92fr 1.08fr;
            gap: 26px;
            align-items: start;
        }

        .im-preview-copy {
            position: sticky;
            top: 94px;
            background: #ffffff;
            border: 1px solid rgba(15, 23, 42, 0.09);
            border-radius: var(--im-radius-xl);
            padding: 30px;
            box-shadow: 0 16px 42px rgba(7, 26, 53, 0.07);
        }

        .im-preview-copy h2 {
            margin: 0;
            color: var(--im-navy);
            font-size: clamp(1.9rem, 3.6vw, 3rem);
            line-height: 1.04;
            letter-spacing: -0.06em;
        }

        .im-preview-copy p {
            margin: 16px 0 0;
            color: #5b687a;
            line-height: 1.7;
            font-weight: 650;
        }

        .im-check-list {
            margin: 22px 0 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 11px;
        }

        .im-check-list li {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            color: #3f4b5d;
            line-height: 1.45;
            font-weight: 750;
        }

        .im-check-list li::before {
            content: "✓";
            width: 22px;
            height: 22px;
            flex: 0 0 22px;
            border-radius: 999px;
            display: grid;
            place-items: center;
            background: var(--im-green-soft);
            color: var(--im-green);
            font-size: 0.78rem;
            font-weight: 1000;
        }

        .im-report-preview {
            display: grid;
            gap: 16px;
        }

        .im-report-card {
            background: #ffffff;
            border: 1px solid rgba(15, 23, 42, 0.1);
            border-radius: var(--im-radius-lg);
            box-shadow: 0 14px 36px rgba(7, 26, 53, 0.07);
            overflow: hidden;
        }

        .im-report-card-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 16px 18px;
            border-bottom: 1px solid rgba(15, 23, 42, 0.08);
            background: linear-gradient(90deg, #ffffff, #f8fbff);
        }

        .im-report-card-head strong {
            color: var(--im-navy);
            letter-spacing: -0.035em;
        }

        .im-report-card-head span {
            color: var(--im-muted);
            font-size: 0.82rem;
            font-weight: 850;
        }

        .im-report-card-body {
            padding: 18px;
        }

        .im-score-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .im-score-tile {
            padding: 16px;
            border-radius: 18px;
            border: 1px solid rgba(19, 138, 61, 0.17);
            background: linear-gradient(135deg, #ffffff, #f4fff7);
        }

        .im-score-tile span {
            display: block;
            color: var(--im-muted);
            font-size: 0.74rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .im-score-tile strong {
            display: block;
            color: var(--im-navy);
            font-size: 1.74rem;
            margin-top: 5px;
            letter-spacing: -0.06em;
        }

        .im-benchmark-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }

        .im-benchmark-table th,
        .im-benchmark-table td {
            text-align: left;
            border-bottom: 1px solid rgba(15, 23, 42, 0.08);
            padding: 12px 8px;
            vertical-align: top;
        }

        .im-benchmark-table th {
            color: var(--im-navy);
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .im-benchmark-table td {
            color: #475467;
            font-weight: 700;
        }

        .im-dot {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .im-dot::before {
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 999px;
            display: inline-block;
            background: var(--im-green);
            box-shadow: 0 0 0 4px rgba(19, 138, 61, 0.1);
        }

        .im-dot.watch::before {
            background: #f4b400;
            box-shadow: 0 0 0 4px rgba(244, 180, 0, 0.12);
        }

        .im-dot.risk::before {
            background: #e5484d;
            box-shadow: 0 0 0 4px rgba(229, 72, 77, 0.12);
        }

        .im-scenario-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .im-scenario-card {
            padding: 16px;
            border-radius: 18px;
            border: 1px solid rgba(15, 23, 42, 0.09);
            background: #ffffff;
        }

        .im-scenario-card.best {
            border-color: rgba(19, 138, 61, 0.28);
            background: #f6fff8;
        }

        .im-scenario-card span {
            display: block;
            color: var(--im-muted);
            font-size: 0.75rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .im-scenario-card strong {
            display: block;
            margin-top: 5px;
            color: var(--im-navy);
            font-size: 1.02rem;
            letter-spacing: -0.03em;
        }

        .im-roadmap {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .im-roadmap-col {
            border-radius: 18px;
            border: 1px solid rgba(15, 23, 42, 0.09);
            padding: 16px;
            background: #ffffff;
            min-height: 176px;
        }

        .im-roadmap-col strong {
            display: block;
            color: var(--im-navy);
            margin-bottom: 12px;
            letter-spacing: -0.035em;
        }

        .im-roadmap-col p {
            margin: 0;
            color: #536176;
            line-height: 1.5;
            font-size: 0.89rem;
            font-weight: 650;
        }

        .im-data-design-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }

        .im-data-design-card {
            padding: 0;
            overflow: hidden;
        }

        .im-design-visual {
            min-height: 220px;
            background:
                linear-gradient(135deg, rgba(18,59,122,0.92), rgba(7,26,53,0.98));
            padding: 22px;
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .im-design-visual::before {
            content: "";
            position: absolute;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(255,143,45,0.22);
            right: -54px;
            top: -54px;
        }

        .im-design-visual::after {
            content: "";
            position: absolute;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: rgba(19,138,61,0.18);
            left: -50px;
            bottom: -60px;
        }

        .im-design-content {
            position: relative;
            z-index: 1;
        }

        .im-design-label {
            color: rgba(255,255,255,0.72);
            font-size: 0.76rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .im-design-number {
            display: block;
            color: #ffffff;
            font-size: 3rem;
            line-height: 1;
            margin: 12px 0 16px;
            letter-spacing: -0.08em;
        }

        .im-bars {
            display: grid;
            gap: 9px;
        }

        .im-bar {
            height: 12px;
            border-radius: 999px;
            background: rgba(255,255,255,0.12);
            overflow: hidden;
        }

        .im-bar span {
            display: block;
            height: 100%;
            border-radius: inherit;
            background: linear-gradient(90deg, var(--im-saffron), #ffffff, var(--im-green));
        }

        .im-chip-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 18px;
        }

        .im-chip {
            display: inline-flex;
            padding: 8px 10px;
            border-radius: 999px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.16);
            color: rgba(255,255,255,0.85);
            font-size: 0.76rem;
            font-weight: 850;
        }

        .im-data-design-copy {
            padding: 24px;
        }

        .im-persona-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .im-persona-card {
            padding: 22px;
        }

        .im-cta-panel {
            border-radius: 34px;
            background:
                linear-gradient(135deg, rgba(255,143,45,0.18), rgba(255,255,255,0.96) 43%, rgba(19,138,61,0.16)),
                #ffffff;
            border: 1px solid rgba(15, 23, 42, 0.09);
            box-shadow: var(--im-shadow);
            padding: 44px;
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 30px;
            align-items: center;
        }

        .im-cta-panel h2 {
            margin: 0;
            color: var(--im-navy);
            font-size: clamp(2rem, 4vw, 3.3rem);
            line-height: 1.04;
            letter-spacing: -0.065em;
        }

        .im-cta-panel p {
            margin: 13px 0 0;
            color: #536176;
            line-height: 1.7;
            font-weight: 680;
            max-width: 760px;
        }

        .im-footer {
            border-top: 1px solid rgba(15, 23, 42, 0.08);
            background: #ffffff;
        }

        .im-footer-inner {
            max-width: var(--im-max);
            margin: 0 auto;
            padding: 30px 22px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 18px;
            color: var(--im-muted);
            font-size: 0.9rem;
            font-weight: 650;
        }

        .im-footer-links {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .im-footer-links a {
            font-weight: 850;
            color: var(--im-navy);
        }

        .im-disclaimer {
            max-width: var(--im-max);
            margin: 0 auto;
            padding: 0 22px 34px;
            color: #667085;
            font-size: 0.82rem;
            line-height: 1.6;
        }

        @media (max-width: 1080px) {
            .im-nav-links {
                display: none;
            }

            .im-hero,
            .im-preview-wrap,
            .im-cta-panel {
                grid-template-columns: 1fr;
            }

            .im-dashboard-shell,
            .im-preview-copy {
                position: static;
            }

            .im-output-grid,
            .im-persona-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 780px) {
            .im-section {
                padding: 54px 16px;
            }

            .im-nav-inner {
                padding: 14px 16px;
            }

            .im-brand {
                min-width: auto;
            }

            .im-brand-text span {
                display: none;
            }

            .im-btn {
                padding: 11px 15px;
                font-size: 0.86rem;
            }

            .im-hero {
                padding-top: 52px;
            }

            .im-hero-proof,
            .im-problem-grid,
            .im-output-grid,
            .im-data-design-grid,
            .im-persona-grid,
            .im-score-panel,
            .im-score-row,
            .im-scenario-grid,
            .im-roadmap,
            .im-alert-row,
            .im-mini-grid {
                grid-template-columns: 1fr;
            }

            .im-flow {
                padding: 22px;
            }

            .im-flow-inner {
                grid-template-columns: 1fr;
            }

            .im-flow-arrow {
                transform: rotate(90deg);
                padding: 8px 0;
            }

            .im-score-ring {
                margin: 0 auto;
            }

            .im-cta-panel {
                padding: 28px;
                border-radius: 28px;
            }

            .im-footer-inner {
                flex-direction: column;
                align-items: flex-start;
            }

            .im-benchmark-table {
                font-size: 0.82rem;
            }

            .im-benchmark-table th:nth-child(3),
            .im-benchmark-table td:nth-child(3) {
                display: none;
            }
        }


        :root {
            --im-navy: #071a35;
            --im-navy-soft: #0e294f;
            --im-ink: #162033;
            --im-muted: #667085;
            --im-line: rgba(15, 23, 42, 0.12);
            --im-bg: #f7fafc;
            --im-card: #ffffff;
            --im-saffron: #ff8f2d;
            --im-green: #138a3d;
            --im-blue: #123b7a;
            --im-green-soft: #e8f7ee;
            --im-warning: #fff7e6;
            --im-danger: #fff0f0;
            --im-shadow: 0 20px 60px rgba(7, 26, 53, 0.14);
            --im-radius-xl: 30px;
            --im-radius-lg: 22px;
            --im-radius-md: 16px;
            --im-max: 1180px;
        }
.imagic-page * { box-sizing: border-box; }
html.imagic-root {
            padding: 0;
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }
body.imagic-page {
            margin: 0;
            padding: 0;
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
            font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--im-ink);
            background:
                radial-gradient(circle at top left, rgba(255, 143, 45, 0.17), transparent 34%),
                radial-gradient(circle at top right, rgba(19, 138, 61, 0.14), transparent 34%),
                linear-gradient(180deg, #ffffff 0%, var(--im-bg) 48%, #ffffff 100%);
        }
.imagic-page a { color: inherit; text-decoration: none; }
        .im-top-strip { height: 8px; background: linear-gradient(90deg, var(--im-saffron) 0%, #ffffff 48%, var(--im-green) 100%); border-bottom: 1px solid rgba(0,0,0,0.04); }
        .im-nav { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(18px); background: rgba(255, 255, 255, 0.9); border-bottom: 1px solid rgba(15, 23, 42, 0.08); }
        .im-nav-inner { max-width: var(--im-max); margin: 0 auto; padding: 16px 22px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
        .im-brand { display: flex; align-items: center; gap: 12px; min-width: 220px; }
        .im-brand-logo { display: block; width: auto; max-width: 210px; height: 48px; object-fit: contain; border-radius: 12px; box-shadow: 0 10px 26px rgba(7, 26, 53, 0.10); }
        .im-nav-links { display: flex; align-items: center; justify-content: center; gap: 20px; color: #475467; font-size: 0.92rem; font-weight: 800; }
        .im-nav-links a:hover,
        .im-nav-links a.is-section-active { color: var(--im-navy); }
        .im-nav-cta { display: flex; align-items: center; gap: 10px; }
        .im-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 0; border-radius: 999px; padding: 12px 20px; font-weight: 900; font-size: 0.94rem; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; white-space: nowrap; }
        .im-btn:hover { transform: translateY(-1px); }
        .im-btn-primary { color: #ffffff; background: linear-gradient(135deg, var(--im-navy), var(--im-blue)); box-shadow: 0 14px 32px rgba(18, 59, 122, 0.25); }
        .im-btn-secondary { color: var(--im-navy); background: #ffffff; border: 1px solid rgba(18, 59, 122, 0.14); box-shadow: 0 12px 26px rgba(7, 26, 53, 0.08); }
        .im-btn-green { color: #ffffff; background: linear-gradient(135deg, var(--im-green), #0f6d34); box-shadow: 0 14px 32px rgba(19, 138, 61, 0.24); }
        .im-section { max-width: var(--im-max); margin: 0 auto; padding: 64px 22px; }
        .im-hero { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr); gap: 42px; align-items: center; padding-top: 76px; }
        .im-pill { display: inline-flex; align-items: center; gap: 9px; padding: 9px 13px; border-radius: 999px; background: rgba(255, 255, 255, 0.88); border: 1px solid rgba(18, 59, 122, 0.12); color: var(--im-blue); font-weight: 900; font-size: 0.82rem; box-shadow: 0 10px 30px rgba(7, 26, 53, 0.07); margin-bottom: 20px; }
.imagic-page h1 { margin: 0; font-size: clamp(2.6rem, 5vw, 5rem); line-height: 0.98; letter-spacing: -0.07em; color: var(--im-navy); }
.imagic-page h1 span { display: block; color: var(--im-green); }
        .im-lead { font-size: 1.16rem; line-height: 1.7; color: #475467; max-width: 680px; margin: 22px 0 0; }
        .im-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
        .im-proof-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 26px; }
        .im-proof-card { background: rgba(255,255,255,0.9); border: 1px solid var(--im-line); border-radius: 18px; padding: 14px; box-shadow: 0 14px 34px rgba(7,26,53,0.07); }
        .im-proof-card strong { display: block; color: var(--im-navy); font-size: 1.35rem; letter-spacing: -0.04em; }
        .im-proof-card span { display: block; margin-top: 4px; color: var(--im-muted); font-size: 0.82rem; font-weight: 800; }
        .im-panel { background: rgba(255,255,255,0.95); border: 1px solid rgba(15,23,42,0.12); border-radius: var(--im-radius-xl); box-shadow: var(--im-shadow); overflow: hidden; }
        .im-panel-top { height: 8px; background: linear-gradient(90deg, var(--im-saffron), #ffffff, var(--im-green)); }
        .im-form-card { padding: 26px; }
        .im-form-card h2 { margin: 0 0 8px; color: var(--im-navy); font-size: 1.55rem; letter-spacing: -0.035em; }
        .im-form-card p { margin: 0 0 20px; color: var(--im-muted); line-height: 1.6; }
        .im-alert { border-radius: 16px; padding: 14px 16px; margin-bottom: 18px; font-size: 0.94rem; line-height: 1.55; }
        .im-alert.success { background: var(--im-green-soft); color: #0f5132; border: 1px solid #b7ebc9; }
        .im-alert.error { background: var(--im-danger); color: #8a1f11; border: 1px solid #ffc4bd; }
        .im-alert ul { margin: 0; padding-left: 18px; }
        .im-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
        .im-form-group { display: flex; flex-direction: column; gap: 7px; }
        .im-form-group.full { grid-column: 1 / -1; }
.imagic-page label { font-size: 0.82rem; color: var(--im-navy); font-weight: 900; }
.imagic-page input, .imagic-page select, .imagic-page textarea { width: 100%; border: 1px solid rgba(15, 23, 42, 0.14); border-radius: 14px; padding: 13px 14px; font: inherit; color: var(--im-ink); background: #ffffff; outline: none; transition: border 0.2s ease, box-shadow 0.2s ease; }
.imagic-page textarea { min-height: 112px; resize: vertical; }
.imagic-page input:focus, .imagic-page select:focus, .imagic-page textarea:focus { border-color: rgba(18, 59, 122, 0.45); box-shadow: 0 0 0 4px rgba(18, 59, 122, 0.08); }
        .im-consent { display: flex; align-items: flex-start; gap: 10px; margin: 16px 0 20px; color: #475467; line-height: 1.5; font-size: 0.9rem; }
        .im-consent input { width: auto; margin-top: 4px; }
        .im-hidden { position: absolute; left: -10000px; opacity: 0; height: 0; width: 0; }
        .im-section-head { max-width: 820px; margin-bottom: 28px; }
        .im-kicker { text-transform: uppercase; letter-spacing: 0.14em; color: var(--im-blue); font-weight: 950; font-size: 0.78rem; margin-bottom: 12px; }
        .im-section-head h2 { margin: 0; color: var(--im-navy); font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.04; letter-spacing: -0.055em; }
        .im-section-head p { color: var(--im-muted); line-height: 1.7; font-size: 1.02rem; }
        .im-rate-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
        .im-rate-card { background: #ffffff; border: 1px solid rgba(15,23,42,0.1); border-radius: 22px; padding: 20px; box-shadow: 0 16px 36px rgba(7,26,53,0.08); position: relative; overflow: hidden; }
        .im-rate-card:before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: linear-gradient(90deg, var(--im-saffron), #ffffff, var(--im-green)); }
        .im-rate-card h3 { margin: 0 0 10px; color: var(--im-navy); font-size: 1.1rem; letter-spacing: -0.02em; }
        .im-price { color: var(--im-green); font-weight: 950; font-size: 1.15rem; margin: 0 0 12px; }
        .im-rate-card p { color: #475467; line-height: 1.62; margin: 0 0 10px; font-size: 0.92rem; }
        .im-rate-card strong { color: var(--im-navy); }
        .im-flow-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
        .im-flow-card { background: #ffffff; border: 1px solid var(--im-line); border-radius: 22px; padding: 22px; box-shadow: 0 14px 34px rgba(7,26,53,0.07); }
        .im-flow-num { width: 40px; height: 40px; border-radius: 14px; display: grid; place-items: center; color: #ffffff; font-weight: 950; background: linear-gradient(135deg, var(--im-navy), var(--im-blue)); margin-bottom: 14px; }
        .im-flow-card h3 { margin: 0 0 8px; color: var(--im-navy); }
        .im-flow-card p { margin: 0; color: var(--im-muted); line-height: 1.65; }
        .im-footer { padding: 30px 22px 42px; border-top: 1px solid rgba(15,23,42,0.08); color: #475467; background: #ffffff; }
        .im-footer-inner { max-width: var(--im-max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 0.92rem; }
        .im-footer-links { display: flex; gap: 18px; font-weight: 900; color: var(--im-navy); }
        .im-note { max-width: var(--im-max); margin: 12px auto 0; color: #667085; font-size: 0.83rem; line-height: 1.55; }

        @media (max-width: 980px) {
            .im-nav-inner { flex-wrap: wrap; width: 100%; }
            .im-hero { grid-template-columns: 1fr; }
            .im-rate-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .im-flow-grid { grid-template-columns: 1fr; }
            .im-nav-links {
                display: flex;
                justify-content: flex-start;
                order: 3;
                flex: 0 0 100%;
                width: 100%;
                max-width: 100%;
                gap: 14px;
                flex-wrap: wrap;
                overflow: visible;
                padding-bottom: 4px;
            }
            .im-nav-links a { white-space: normal; }
        }

        @media (max-width: 640px) {
            .im-nav-inner { align-items: stretch; flex-direction: column; width: 100%; }
            .im-nav-cta { flex-direction: column; width: 100%; }
            .im-btn { width: 100%; }
            .im-hero { padding-top: 46px; }
            .im-form-grid, .im-rate-grid, .im-proof-grid { grid-template-columns: 1fr; }
            .im-footer-inner { flex-direction: column; align-items: flex-start; }
        }

        .im-exec-lane {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
            margin-top: 14px;
        }

        .im-exec-lane span {
            min-height: 42px;
            display: flex;
            align-items: center;
            padding: 10px 12px;
            border-radius: 8px;
            border: 1px solid rgba(18, 59, 122, 0.14);
            background: rgba(255, 255, 255, 0.86);
            color: var(--im-navy);
            font-size: 0.86rem;
            font-weight: 900;
            line-height: 1.25;
            box-shadow: 0 10px 24px rgba(7, 26, 53, 0.06);
        }

        .im-dashboard-title {
            min-width: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .im-dashboard-logo {
            width: min(142px, 30vw);
            max-height: 46px;
            object-fit: contain;
            border-radius: 6px;
        }

        .im-dashboard-title strong {
            white-space: nowrap;
        }

        @media (max-width: 640px) {
            .im-exec-lane { grid-template-columns: 1fr; }
            .im-dashboard-top { flex-wrap: wrap; gap: 12px; }
            .im-dashboard-title { width: 100%; flex-wrap: wrap; }
            .im-dashboard-title strong { white-space: normal; }
            .im-dashboard-logo { width: min(132px, 58vw); }
        }
        

        .imagic-session-overlay {
            position: fixed;
            inset: 0;
            z-index: 99999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: rgba(15, 23, 42, 0.62);
            backdrop-filter: blur(6px);
        }

        .imagic-session-overlay.active {
            display: flex;
        }

        .imagic-session-modal {
            width: min(520px, 100%);
            background: #ffffff;
            border-radius: 22px;
            padding: 30px;
            border: 1px solid rgba(15, 23, 42, 0.10);
            box-shadow: 0 26px 80px rgba(15, 23, 42, 0.28);
            text-align: center;
        }

        .imagic-session-icon {
            width: 58px;
            height: 58px;
            margin: 0 auto 14px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255, 153, 51, 0.18), rgba(19, 136, 8, 0.16));
            font-size: 28px;
        }

        .imagic-session-modal h2 {
            margin: 0 0 10px;
            color: #0f172a;
            font-size: 26px;
            line-height: 1.2;
        }

        .imagic-session-modal p {
            margin: 0 auto 18px;
            max-width: 420px;
            color: #475569;
            font-size: 15px;
            line-height: 1.65;
        }

        .imagic-session-countdown {
            margin: 18px auto 22px;
            padding: 14px 18px;
            border-radius: 16px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            color: #334155;
            font-size: 15px;
        }

        .imagic-session-countdown strong {
            color: #dc2626;
            font-size: 22px;
            letter-spacing: 0.5px;
        }

        .imagic-session-actions {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .imagic-session-actions button {
            border: 0;
            border-radius: 999px;
            padding: 12px 20px;
            font-weight: 800;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
        }

        .imagic-session-actions button:hover {
            transform: translateY(-1px);
        }

        .imagic-session-actions button:disabled {
            cursor: not-allowed;
            opacity: 0.72;
            transform: none;
        }

        .imagic-session-primary {
            background: linear-gradient(135deg, #ff9933, #138808);
            color: #ffffff;
            box-shadow: 0 12px 26px rgba(19, 136, 8, 0.22);
        }

        .imagic-session-secondary {
            background: #eef2f7;
            color: #0f172a;
        }

        .imagic-session-message {
            min-height: 20px;
            margin-top: 14px;
            color: #b45309;
            font-size: 13px;
            font-weight: 700;
        }

        @media (max-width: 520px) {
            .imagic-session-modal {
                padding: 24px 18px;
            }

            .imagic-session-actions {
                display: grid;
                grid-template-columns: 1fr;
            }

            .imagic-session-actions button {
                width: 100%;
            }
        }


.im-nav,
.im-footer {
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
}

.im-nav-inner,
.im-footer-inner,
.im-disclaimer {
    width: 90%;
    max-width: var(--im-max);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.im-section {
    width: 90%;
    max-width: var(--im-max);
    padding-left: 0;
    padding-right: 0;
}

.im-public-product-name {
    color: var(--im-navy);
    font-size: clamp(0.72rem, 1.1vw, 0.9rem);
    font-weight: 950;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
}

.im-public-menu-btn,
.im-mobile-menu-logo,
.im-mobile-nav-cta {
    display: none;
}

.im-footer-links {
    flex-wrap: wrap;
}

.im-footer-links a:hover,
.im-footer-links a:focus-visible {
    color: var(--im-green);
}

@media (max-width: 980px) {
    .im-nav-inner {
        width: 90%;
        flex-wrap: nowrap;
        padding-left: 0;
        padding-right: 0;
    }

    .im-brand {
        flex: 1 1 auto;
        min-width: 0;
    }

    .im-brand-logo {
        max-width: 150px;
        height: 40px;
    }

    .im-public-product-name {
        max-width: 42vw;
        min-width: 0;
        overflow: hidden;
        overflow-wrap: anywhere;
        text-overflow: ellipsis;
        white-space: normal;
    }

    .im-public-menu-btn {
        display: inline-flex;
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        border: 1px solid rgba(18, 59, 122, 0.16);
        border-radius: 12px;
        background: #ffffff;
        cursor: pointer;
        box-shadow: 0 10px 24px rgba(7, 26, 53, 0.08);
    }

    .im-public-menu-btn span {
        display: block;
        width: 20px;
        height: 2px;
        margin: 0 auto;
        border-radius: 99px;
        background: var(--im-navy);
    }

    .im-public-menu-btn.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .im-public-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .im-public-menu-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .im-nav-links {
        position: fixed;
        top: 0;
        right: 0;
        transform: none;
        z-index: 2000;
        width: min(320px, 86vw);
        height: 100vh;
        display: none !important;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
        order: initial;
        flex: initial;
        max-width: none;
        padding: 22px;
        overflow-y: auto;
        background: #ffffff;
        border-left: 1px solid rgba(18, 59, 122, 0.14);
        box-shadow: -20px 0 55px rgba(7, 26, 53, 0.18);
        transition: transform 0.25s ease;
    }

    .im-nav-links.show {
        display: flex !important;
        transform: translateX(0);
    }

    .im-mobile-menu-logo {
        display: block;
        padding: 0 0 10px;
    }

    .im-mobile-menu-logo img {
        width: min(190px, 72vw);
        max-height: 54px;
        object-fit: contain;
    }

    .im-nav-links a {
        width: 100%;
        padding: 12px 14px;
        border-radius: 12px;
        background: #f8fafc;
        white-space: normal;
    }

    .im-mobile-nav-cta {
        display: block;
        text-align: center;
    }

    .im-mobile-nav-cta.primary {
        color: #ffffff;
        background: linear-gradient(135deg, var(--im-navy), var(--im-blue));
    }

    .im-nav-cta {
        display: none;
    }
}

@media (max-width: 640px) {
    .im-nav-inner {
        align-items: center;
        flex-direction: row;
    }

    .im-section,
    .im-footer-inner,
    .im-disclaimer {
        width: 90%;
    }

    .im-public-product-name {
        max-width: 34vw;
        font-size: 0.64rem;
    }
}


@media (max-width: 980px) {
    .im-nav {
        z-index: 10000;
        overflow: visible;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.98);
    }

    .im-public-menu-btn {
        position: relative;
        z-index: 10030;
    }

    .im-nav-links {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: auto !important;
        width: min(320px, 86vw) !important;
        height: 100dvh !important;
        max-height: 100dvh;
        overflow-y: auto;
        z-index: 10020 !important;
        display: none !important;
    }

    .im-nav-links.show {
        display: flex !important;
    }
}

html.imagic-root,
body.imagic-page {
    max-width: 100%;
    overflow-x: hidden;
}

.imagic-page main,
.imagic-page .im-section {
    max-width: 100%;
    overflow-x: hidden;
}

.imagic-page .im-dashboard-shell,
.imagic-page .im-design-visual {
    position: relative;
    overflow: hidden;
}

@supports (overflow: clip) {
    html.imagic-root,
    body.imagic-page,
    .imagic-page main,
    .imagic-page .im-section {
        overflow-x: clip;
    }
}


html.imagic-root,
body.imagic-page {
    min-height: 100vh;
}

body.imagic-page {
    display: flex;
    flex-direction: column;
}

.imagic-page main {
    flex: 1 0 auto;
}

.im-nav {
    width: 100% !important;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.im-nav-inner,
.im-footer-inner,
.im-disclaimer,
.im-footer-bottom {
    width: 95% !important;
    max-width: none !important;
}

.im-brand {
    min-width: 0;
}

.im-brand-logo {
    width: min(190px, 24vw) !important;
    height: auto !important;
    max-height: 58px !important;
    object-fit: contain;
}

.im-public-product-name {
    display: grid !important;
    gap: 2px;
    max-width: min(380px, 44vw) !important;
    min-width: 0;
    color: var(--im-navy);
    font-size: clamp(0.66rem, 1vw, 0.88rem) !important;
    line-height: 1.12;
    letter-spacing: 0.06em;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
}

.im-public-product-name span {
    display: block;
}

.im-public-menu-btn {
    display: inline-flex !important;
    position: relative;
    z-index: 10030;
}

.im-nav-cta {
    display: none !important;
}

.im-nav-links {
    position: fixed !important;
    inset: 0 0 0 auto !important;
    width: min(380px, 88vw) !important;
    height: 100dvh !important;
    max-height: none !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    padding: 24px !important;
    border: 0 !important;
    border-left: 1px solid rgba(18, 59, 122, 0.14) !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    box-shadow: -28px 0 80px rgba(7, 26, 53, 0.22) !important;
    z-index: 10020 !important;
    overflow-y: auto !important;
}

.im-nav-links.show {
    display: flex !important;
}

.im-mobile-menu-logo {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 0 18px !important;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(18, 59, 122, 0.14);
}

.im-mobile-menu-logo img {
    width: min(190px, 58vw);
    max-height: 58px;
    object-fit: contain;
}

.im-menu-close {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 1px solid rgba(18, 59, 122, 0.16);
    border-radius: 50%;
    background: #f8fafc;
    color: var(--im-navy);
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 950;
    line-height: 1;
}

.imagic-page main[data-section-switcher] > section:not([hidden]) {
    min-height: calc(100vh - 330px);
    display: grid;
    align-content: center;
}

.im-footer {
    flex-shrink: 0;
}

.im-footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.im-footer-brand {
    display: grid;
    gap: 4px;
}

.im-footer-brand strong {
    color: var(--im-navy);
    font-weight: 950;
}

.im-footer-brand span {
    color: #475467;
    font-weight: 800;
}

.im-footer-bottom {
    margin: 12px auto 0;
    color: #667085;
    font-size: 0.9rem;
    font-weight: 800;
}

.im-scroll-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 10040;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: var(--im-navy);
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(7, 26, 53, 0.2);
    cursor: pointer;
    font-weight: 950;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.im-scroll-top span {
    display: none;
}

.im-scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

@media (max-width: 720px) {
    .im-brand-logo {
        width: min(146px, 34vw) !important;
    }

    .im-public-product-name {
        max-width: 36vw !important;
        font-size: 0.58rem !important;
        letter-spacing: 0.03em;
    }

    .im-footer-inner {
        display: grid;
    }
}


:root {
    --india-chrome-navy: #000080;
    --india-chrome-saffron: #ff9933;
    --india-chrome-green: #138808;
    --india-chrome-text: #0f172a;
    --india-chrome-muted: #64748b;
    --india-chrome-line: rgba(15, 23, 42, 0.12);
    --india-public-nav-space: 84px;
}

html.imagic-root,
body.imagic-page {
    width: 100%;
    min-height: 100vh;
    padding: 0 !important;
    overflow-x: hidden;
}

html.imagic-root {
    scroll-padding-top: var(--india-public-nav-space);
}

body.imagic-page {
    display: flex;
    flex-direction: column;
    padding-top: var(--india-public-nav-space) !important;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.08), #ffffff 45%, rgba(19, 136, 8, 0.08));
}

.imagic-page main {
    flex: 1 0 auto;
}

.india-public-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    z-index: 10000;
    width: 100%;
    border-top: 5px solid var(--india-chrome-saffron);
    border-bottom: 1px solid var(--india-chrome-line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.imagic-page section {
    scroll-margin-top: calc(var(--india-public-nav-space) + 14px);
}

.india-public-nav-inner {
    width: 95%;
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.india-public-brand {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--india-chrome-navy);
    text-decoration: none;
}

.india-public-logo {
    width: min(190px, 24vw);
    height: auto;
    max-height: 58px;
    object-fit: contain;
}

.india-product-name {
    display: grid;
    gap: 2px;
    max-width: min(410px, 44vw);
    color: var(--india-chrome-navy);
    font-size: clamp(0.66rem, 1vw, 0.9rem);
    font-weight: 950;
    letter-spacing: 0.06em;
    line-height: 1.12;
    text-transform: uppercase;
    white-space: normal;
}

.india-product-name span {
    display: block;
}

.india-menu-toggle {
    width: 46px !important;
    height: 44px !important;
    min-width: 46px;
    padding: 0 !important;
    display: inline-grid !important;
    place-items: center;
    gap: 0;
    border: 1px solid rgba(0, 0, 128, 0.18) !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    cursor: pointer;
}

.india-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    grid-area: 1 / 1;
    border-radius: 99px;
    background: var(--india-chrome-navy);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.india-menu-toggle span:nth-child(1) {
    transform: translateY(-8px);
}

.india-menu-toggle span:nth-child(3) {
    transform: translateY(8px);
}

.india-menu-toggle.is-open span:nth-child(1) {
    transform: rotate(45deg);
}

.india-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.india-menu-toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg);
}

.india-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10010;
    background: rgba(15, 23, 42, 0.38);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

body.india-menu-open .india-menu-backdrop {
    opacity: 1;
    pointer-events: auto;
}

body.india-menu-open {
    overflow: hidden;
}

.india-slide-menu {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 10020;
    width: min(390px, 88vw);
    height: 100dvh;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    border-left: 1px solid var(--india-chrome-line);
    background: #ffffff;
    box-shadow: -28px 0 80px rgba(15, 23, 42, 0.22);
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.24s ease, opacity 0.2s ease, visibility 0.2s ease;
}

.india-slide-menu.is-open {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.india-slide-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--india-chrome-line);
}

.india-slide-menu-header img {
    width: min(190px, 58vw);
    max-height: 58px;
    object-fit: contain;
}

.india-menu-close {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px;
    padding: 0 !important;
    border: 1px solid var(--india-chrome-line) !important;
    border-radius: 50% !important;
    background: #fffaf3 !important;
    color: var(--india-chrome-navy) !important;
    cursor: pointer;
    font-size: 1.45rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
}

.india-slide-menu a {
    padding: 13px 14px;
    border-radius: 12px;
    color: var(--india-chrome-text);
    font-weight: 900;
    text-decoration: none;
}

.india-slide-menu a:hover,
.india-slide-menu a:focus-visible,
.india-slide-menu a.is-section-active {
    color: var(--india-chrome-navy);
    background: rgba(255, 153, 51, 0.12);
}

.india-slide-menu .india-menu-primary {
    margin-top: 8px;
    color: #ffffff;
    text-align: center;
    background: var(--india-chrome-green);
}

.india-public-footer {
    width: 100%;
    flex-shrink: 0;
    border-top: 1px solid var(--india-chrome-line);
    background: #ffffff;
    padding: 24px 0;
}

.india-public-footer-inner {
    width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(210px, 1fr) minmax(280px, 1.25fr) minmax(190px, 1fr);
    align-items: center;
    gap: 22px;
}

.india-footer-left {
    display: grid;
    gap: 8px;
}

.india-footer-left img {
    width: min(180px, 42vw);
    max-height: 54px;
    object-fit: contain;
}

.india-footer-left p,
.india-footer-center span {
    margin: 0;
    color: var(--india-chrome-muted);
    font-size: 0.88rem;
    font-weight: 750;
    line-height: 1.5;
}

.india-footer-center {
    display: grid;
    gap: 6px;
    text-align: center;
}

.india-footer-center strong {
    color: var(--india-chrome-navy);
    font-size: 1rem;
    font-weight: 950;
    letter-spacing: 0.03em;
    line-height: 1.25;
    text-transform: uppercase;
}

.india-footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.india-footer-links a {
    color: var(--india-chrome-navy);
    font-weight: 900;
    text-decoration: none;
}

.india-footer-links a:hover,
.india-footer-links a:focus-visible {
    color: var(--india-chrome-green);
}

.india-footer-terms {
    margin-right: 150px;
}

@media (max-width: 980px) {
    .india-footer-terms {
        margin-right: 0;
    }
}

@media (max-width: 720px) {
    :root {
        --india-public-nav-space: 78px;
    }

    .india-public-nav-inner {
        min-height: 72px;
    }

    .india-public-logo {
        width: min(146px, 34vw);
    }

    .india-product-name {
        max-width: 36vw;
        font-size: 0.58rem;
        letter-spacing: 0.03em;
    }

    .india-public-footer-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .india-footer-center {
        text-align: left;
    }

    .india-footer-links {
        justify-content: flex-start;
    }
}


body.imagic-page main#top {
    margin-top: 0 !important;
}

body.imagic-page .im-hero {
    padding-top: 14px !important;
    align-content: start !important;
}

body.imagic-page main[data-section-switcher] > section.im-hero h1 {
    font-size: clamp(2.1rem, 3.45vw, 3.45rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.04em !important;
}

@media (max-width: 720px) {
    body.imagic-page main[data-section-switcher] > section.im-hero h1 {
        font-size: clamp(1.9rem, 8.5vw, 2.35rem) !important;
        max-width: none !important;
    }
}

body.imagic-page main[data-section-switcher] > .im-hero:not([hidden]) {
    min-height: auto !important;
    align-content: start !important;
}

body.imagic-page .im-hero .im-pill {
    margin-top: 0 !important;
}

@media (max-width: 720px) {
    body.imagic-page .im-hero {
        padding-top: 10px !important;
    }
}


body.imagic-page {
    min-height: 100vh;
    min-height: 100dvh;
}

body.imagic-page main {
    flex: 1 0 auto;
}

body.imagic-page main[data-section-switcher] > section:not([hidden]) {
    min-height: calc(100vh - var(--india-public-nav-space, 84px) - 130px);
    min-height: calc(100dvh - var(--india-public-nav-space, 84px) - 130px);
}

body.imagic-page main[data-section-switcher] > section:not([hidden]):not(.im-hero) {
    display: grid;
    align-content: center;
}

:root {
  --imagic-page-content-width: 90%;
}

html {
  margin: 0;
  padding: 0;
}

.india-public-nav,
.india-public-footer {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box;
}

.india-public-nav-imagic,
.india-public-footer-imagic {
  box-sizing: border-box;
}

body.imagic-page .im-section,
.login-page .login-container {
  width: var(--imagic-page-content-width) !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
}

body.login-page {
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 768px) {
  body.imagic-page .im-section,
  .login-page .login-container {
    width: var(--imagic-page-content-width) !important;
  }
}

/* Public section transition system */
[data-section-switcher] > section[hidden] {
    display: none !important;
}

[data-section-switcher] > section.public-section-panel {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
    filter: blur(6px);
    transition: opacity 420ms ease, transform 420ms ease, filter 420ms ease;
    will-change: opacity, transform, filter;
}

[data-section-switcher] > section.public-section-panel.public-section-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

[data-section-switcher] > section.public-section-panel.public-section-visible > * {
    animation: publicSectionContentRise 520ms ease both;
}

[data-section-switcher] > section.public-section-panel.public-section-visible > *:nth-child(2) {
    animation-delay: 70ms;
}

[data-section-switcher] > section.public-section-panel.public-section-visible > *:nth-child(3) {
    animation-delay: 110ms;
}

@keyframes publicSectionContentRise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-section-switcher] > section.public-section-panel,
    [data-section-switcher] > section.public-section-panel.public-section-visible {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    [data-section-switcher] > section.public-section-panel.public-section-visible > * {
        animation: none;
    }
}


/* iMAGIC public tablet footer layout */
@media (min-width: 721px) and (max-width: 1024px) {
    .india-public-footer-inner,
    .india-public-footer-imagic .india-public-footer-inner,
    .usa-public-footer-inner,
    .im-footer-inner,
    .landing-footer-inner,
    .footer-content {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
        justify-items: center !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: min(100% - 36px, 980px) !important;
    }

    .india-footer-left,
    .india-footer-center,
    .india-footer-links,
    .usa-footer-left,
    .usa-footer-center,
    .usa-footer-links,
    .im-footer-links,
    .landing-footer-links,
    .footer-legal-links {
        width: 100% !important;
        justify-content: center !important;
        justify-items: center !important;
        text-align: center !important;
    }

    .india-footer-links,
    .usa-footer-links,
    .im-footer-links,
    .landing-footer-links,
    .footer-legal-links {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .india-footer-terms,
    .usa-footer-terms,
    .india-footer-links a[href*="terms-of-use"],
    .usa-footer-links a[href*="terms-of-use"] {
        margin-right: 0 !important;
    }
}
