:root {
  --idx-bg: #06101c;
  --idx-bg-soft: #0b1728;
  --idx-panel: rgba(9, 20, 36, 0.92);
  --idx-panel-2: rgba(13, 27, 46, 0.9);
  --idx-border: rgba(56, 182, 255, 0.14);
  --idx-border-strong: rgba(56, 182, 255, 0.28);
  --idx-text: #eef6ff;
  --idx-muted: #94a8c6;
  --idx-primary: #38b6ff;
  --idx-primary-2: #22d3ee;
  --idx-success: #22c55e;
  --idx-radius-xl: 28px;
  --idx-radius-lg: 22px;
  --idx-radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.landing-page {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--idx-text);
  background:
    radial-gradient(900px 500px at 0% 0%, rgba(56, 182, 255, 0.18), transparent 60%),
    radial-gradient(720px 420px at 100% 8%, rgba(34, 211, 238, 0.12), transparent 60%),
    linear-gradient(180deg, #05101c 0%, #081424 100%);
  overflow-x: hidden;
}

body.landing-page a {
  text-decoration: none;
}

body.landing-page .container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

body.landing-page .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 11, 20, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.landing-page .header-container {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

body.landing-page .brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

body.landing-page .brand img {
  width: 148px;
  height: auto;
  display: block;
  object-fit: contain;
}

body.landing-page .brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

body.landing-page .brand-copy strong {
  font-size: 1rem;
  font-weight: 800;
  color: #f8fbff;
}

body.landing-page .brand-copy span {
  font-size: 0.82rem;
  color: var(--idx-muted);
}

body.landing-page .site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

body.landing-page .site-nav a {
  position: relative;
  color: #d8e6f8;
  font-size: 0.95rem;
  font-weight: 600;
}

body.landing-page .site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--idx-primary), var(--idx-primary-2));
  transition: width 0.22s ease;
}

body.landing-page .site-nav a:hover::after {
  width: 100%;
}

body.landing-page .header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

body.landing-page .btn-primary,
body.landing-page .btn-outline,
body.landing-page .btn-hero,
body.landing-page .btn-hero-secondary {
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

body.landing-page .btn-primary,
body.landing-page .btn-hero {
  background: linear-gradient(135deg, var(--idx-primary) 0%, var(--idx-primary-2) 55%, #66a7ff 100%);
  color: #04111d;
  border: none;
}

body.landing-page .btn-outline,
body.landing-page .btn-hero-secondary {
  background: rgb(52 143 55);
  border: 1px solid var(--idx-border);
  color: #e7f3ff;
}

body.landing-page .btn-outline {
  padding: 11px 16px;
}

body.landing-page .btn-primary {
  padding: 12px 20px;
  cursor: pointer;
}

body.landing-page .btn-hero,
body.landing-page .btn-hero-secondary {
  padding: 13px 18px;
  cursor: pointer;
}

body.landing-page .btn-primary:hover,
body.landing-page .btn-outline:hover,
body.landing-page .btn-hero:hover,
body.landing-page .btn-hero-secondary:hover {
  transform: translateY(-1px);
  border-color: var(--idx-border-strong);
}

body.landing-page .hero {
  padding: 34px 0 10px;
}

body.landing-page .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

body.landing-page .hero-copy,
body.landing-page .hero-preview,
body.landing-page .glass-card,
body.landing-page .final-cta-box {
  backdrop-filter: blur(14px);
}

body.landing-page .hero-copy,
body.landing-page .hero-preview {
  position: relative;
  overflow: hidden;
  
}

body.landing-page .hero-copy::before,
body.landing-page .hero-preview::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.45), transparent);
}

body.landing-page .hero-copy {
  padding: 42px;
}

body.landing-page .hero-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
}

body.landing-page .hero-intro {
  min-width: 0;
}

body.landing-page .hero-media-inline {
  display: flex;
  align-items: center;
  justify-content: center;


}

body.landing-page .hero-media-inline img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

body.landing-page .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(56, 182, 255, 0.18);
  background: rgba(56, 182, 255, 0.08);
  color: #7dd3fc;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

body.landing-page .hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 4.8vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

body.landing-page .hero-copy h1 span {
  background: linear-gradient(135deg, #7dd3fc 0%, #38b6ff 35%, #22d3ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

body.landing-page .hero-copy p {
  margin: 0;
  max-width: 60ch;
  color: var(--idx-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

body.landing-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 18px;
}

body.landing-page .hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.landing-page .hero-point {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 13px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #dcecff;
  font-size: 0.92rem;
  font-weight: 600;
}

body.landing-page .hero-point i {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.18);
  color: #4ade80;
  font-style: normal;
  font-size: 0.78rem;
  flex: 0 0 auto;
}

body.landing-page .hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

body.landing-page .hero-stat {
  padding: 12px 13px;
  border-radius: 14px;
  background: rgba(5, 15, 27, 0.72);
  border: 1px solid rgba(56, 182, 255, 0.10);
}

body.landing-page .hero-stat strong {
  display: block;
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

body.landing-page .hero-stat span {
  color: #88a1c0;
  font-size: 0.82rem;
}

body.landing-page .hero-preview {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.landing-page .preview-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 4px 4px 0;
}

body.landing-page .preview-title strong {
  display: block;
  font-size: 1rem;
  color: #f8fbff;
}

body.landing-page .preview-title span {
  color: var(--idx-muted);
  font-size: 0.84rem;
}

body.landing-page .preview-pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.20);
  color: #86efac;
  font-size: 0.82rem;
  font-weight: 700;
}

body.landing-page .preview-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.landing-page .metric-card {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

body.landing-page .metric-card span {
  display: block;
  color: var(--idx-muted);
  font-size: 0.79rem;
  margin-bottom: 4px;
}

body.landing-page .metric-card strong {
  color: #ffffff;
  font-size: 1rem;
}

body.landing-page .preview-image-wrap {
  padding: 10px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(4, 10, 18, 0.95), rgba(10, 20, 36, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

body.landing-page .preview-image-wrap img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

body.landing-page .section {
  padding: 60px 0 0;
}

body.landing-page .section-heading {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

body.landing-page .section-heading .eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #7dd3fc;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.landing-page .section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.1;
}

body.landing-page .section-heading p {
  margin: 0;
  color: var(--idx-muted);
  line-height: 1.7;
}

body.landing-page .cards-3,
body.landing-page .modules-grid,
body.landing-page .steps-grid,
body.landing-page .audience-grid,
body.landing-page .benefits-list {
  display: grid;
  gap: 18px;
}

body.landing-page .cards-3,
body.landing-page .modules-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.landing-page .steps-grid,
body.landing-page .audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.landing-page .glass-card {
  height: 100%;
  padding: 24px 22px;
  border-radius: var(--idx-radius-lg);
  background: linear-gradient(180deg, rgba(10, 22, 38, 0.92), rgba(8, 18, 31, 0.94));
  border: 1px solid rgba(56, 182, 255, 0.10);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

body.landing-page .glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 182, 255, 0.22);
}

body.landing-page .glass-card h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.08rem;
}

body.landing-page .glass-card p,
body.landing-page .glass-card li {
  color: var(--idx-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

body.landing-page .icon-badge {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(56, 182, 255, 0.18), rgba(34, 211, 238, 0.10));
  border: 1px solid rgba(56, 182, 255, 0.16);
  font-size: 1.15rem;
}

body.landing-page .module-card {
  position: relative;
  overflow: hidden;
}

body.landing-page .module-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--idx-primary), var(--idx-primary-2));
}

body.landing-page .module-card strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.08rem;
}

body.landing-page .module-note {
  margin: 0 0 12px;
}

body.landing-page .module-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

body.landing-page .module-list li {
  position: relative;
  padding-left: 14px;
  color: #d6e7fb;
}

body.landing-page .module-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #22d3ee;
  font-weight: 900;
}

body.landing-page .benefits-band {
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(56, 182, 255, 0.12), rgba(34, 211, 238, 0.05));
  border: 1px solid rgba(56, 182, 255, 0.15);
}

body.landing-page .benefits-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
}

body.landing-page .benefit-pill {
  min-height: 56px;
  display: flex;
  align-items: center;
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(6, 17, 29, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #dbeafe;
  font-size: 0.92rem;
  font-weight: 600;
}

body.landing-page .step-number {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: rgba(56, 182, 255, 0.14);
  color: #7dd3fc;
  font-weight: 800;
}

body.landing-page .final-cta {
  padding: 56px 0 72px;
}

body.landing-page .final-cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 36px;
  border-radius: var(--idx-radius-xl);
  background: linear-gradient(135deg, rgba(7, 15, 27, 0.96), rgba(12, 33, 56, 0.94));
  border: 1px solid rgba(56, 182, 255, 0.16)
}

body.landing-page .final-cta-box h2 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

body.landing-page .final-cta-box p {
  margin: 0;
  color: var(--idx-muted);
  line-height: 1.7;
}


body.landing-page footer {
  padding: 0 0 30px;
  text-align: center;
  color: var(--idx-muted);
}

body.landing-page .login-card {
  width: 100%;
  max-width: 400px;
  padding: 34px 28px 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, #0d1c31, #0a1729);
  border: 1px solid rgba(56, 182, 255, 0.16);
}

body.landing-page .login-card .logo {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

body.landing-page .login-card .logo img {
  width: 180px;
  height: auto;
}

body.landing-page .subtitle {
  color: #c0d2e8;
  text-align: center;
  margin-bottom: 16px;
}

body.landing-page form#loginForm {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.landing-page .field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

body.landing-page .field label {
  color: #d9e8f8;
  font-size: 0.95rem;
  font-weight: 600;
}

body.landing-page .field input,
body.landing-page #forgotEmail {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(20, 35, 58, 0.95);
  border: 1px solid rgba(56, 182, 255, 0.18);
  color: #eef6ff;
  outline: none;
}

body.landing-page .field input:focus,
body.landing-page #forgotEmail:focus {
  border-color: rgba(56, 182, 255, 0.46);
}

body.landing-page .eye-icon-login {
  position: absolute;
  right: 14px;
  top: 70%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  cursor: pointer;
}

body.landing-page .actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

body.landing-page .remember {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c7d7eb;
  font-size: 0.92rem;
}

body.landing-page .styled-checkbox {
  display: none;
}

body.landing-page .custom-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid var(--idx-primary);
  border-radius: 4px;
  background: #fff;
  position: relative;
}

body.landing-page .styled-checkbox:checked + .custom-checkbox {
  background: var(--idx-primary);
  border-color: var(--idx-primary);
}

body.landing-page .styled-checkbox:checked + .custom-checkbox::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

body.landing-page .actions a {
  color: #7dd3fc;
  font-size: 0.92rem;
}

body.landing-page .btn-login {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--idx-primary), var(--idx-primary-2));
  color: #04111d;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

body.landing-page .error {
  min-height: 18px;
  color: #ff8a8a;
  font-size: 0.92rem;
  text-align: center;
}

body.landing-page .footer-copy {
  margin-top: 10px;
  text-align: center;
  color: #7f96b1;
  font-size: 0.88rem;
}

body.landing-page .spacer-8 {
  height: 8px;
}

@media (max-width: 1100px) {
  body.landing-page .site-nav {
    display: none;
  }

  body.landing-page .hero-showcase {
    grid-template-columns: 1fr;
  }

  body.landing-page .hero-grid,
  body.landing-page .cards-3,
  body.landing-page .modules-grid,
  body.landing-page .steps-grid,
  body.landing-page .audience-grid,
  body.landing-page .benefits-list,
  body.landing-page .final-cta-box {
    grid-template-columns: 1fr;
  }

  body.landing-page .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body.landing-page .brand-copy {
    display: none;
  }

  body.landing-page .header-actions .btn-outline {
    display: none;
  }

  body.landing-page .hero-copy {
    padding: 24px;
  }

  body.landing-page .hero-points,
  body.landing-page .hero-stats,
  body.landing-page .preview-metrics,
  body.landing-page .benefits-list {
    grid-template-columns: 1fr;
  }

  body.landing-page .final-cta-box {
    padding: 24px;
  }

  body.landing-page .whatsapp-float span:last-child {
    display: none;
  }
}
