:root{
  --brand: #F96302;
  --brand-2: #FF8A33;
  --brand-soft: #FFF3EA;
  --ink: #172033;
  --text: #354154;
  --muted: #697586;
  --bg: #fbfcff;
  --bg-2: #f5f8ff;
  --surface: rgba(255,255,255,.82);
  --surface-solid: #ffffff;
  --line: rgba(28, 39, 60, .11);
  --blue-soft: #eef6ff;
  --green-soft: #effbf4;
  --violet-soft: #f5f0ff;
  --shadow: 0 24px 70px rgba(31, 41, 55, .10);
  --shadow-soft: 0 14px 35px rgba(31, 41, 55, .08);
  --radius: 24px;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 8% 4%, rgba(249,99,2,.12), transparent 60%),
    radial-gradient(900px 520px at 92% 8%, rgba(58,160,255,.13), transparent 58%),
    radial-gradient(760px 460px at 55% 85%, rgba(146,112,255,.12), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-2) 48%, #ffffff 100%);
  cursor: default;
}

a, button, .btn, .nav-link, .navbar-brand, select{ cursor: pointer; }

:focus-visible{
  outline: 3px solid rgba(249,99,2,.28);
  outline-offset: 3px;
  border-radius: 12px;
}

.eb-navbar{
  background: #FF8A33;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  
}

.navbar-toggler{
  border: 1px solid var(--line);
  background: #fff;
}

.navbar-toggler-icon{
  filter: invert(20%);
}

.brand-logo{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.brand-name{
  color: var(--ink);
  font-weight: 850;
  letter-spacing: -.03em;
  color: #fff;
}

.nav-link{
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  border-radius: 999px;
  padding-inline: .85rem !important;
  transition: .2s ease;
}

.nav-link:hover{
  color: var(--brand);
  background: var(--brand-soft);
}

.btn-main{
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border: 0;
  color: #fff;
  font-weight: 850;
  box-shadow: 0 16px 36px rgba(249,99,2,.24);
}

.btn-main:hover,
.btn-main:focus{
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 20px 44px rgba(249,99,2,.30);
}

.btn-main:disabled{
  opacity: .68;
  cursor: not-allowed;
  transform: none;
}

.btn-soft,
.btn-language,
.btn-outline-main{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  color: var(--ink);
  font-weight: 800;
}

.btn-soft:hover,
.btn-language:hover,
.btn-outline-main:hover{
  border-color: rgba(249,99,2,.32);
  color: var(--brand);
  background: var(--brand-soft);
}

.section,
.hero{
  position: relative;
  padding: 84px 0;
  scroll-margin-top: 92px;
}

.hero{
  padding-top: 150px;
  padding-bottom: 90px;
}

.section-tint{
  background: rgba(255,255,255,.42);
  border-block: 1px solid rgba(28, 39, 60, .06);
}

.hero-badge,
.section-kicker{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  width: fit-content;
  padding: .42rem .78rem;
  border-radius: 999px;
  border: 1px solid rgba(249,99,2,.18);
  background: rgba(255,255,255,.70);
  color: var(--brand);
  font-size: .9rem;
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(31,41,55,.06);
}

.hero-title,
.section-title{
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.hero-title{
  max-width: 12ch;
  margin: 1rem 0;
  font-size: clamp(2.55rem, 5vw, 4.7rem);
}

.hero-subtitle,
.section-text{
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-subtitle{ max-width: 62ch; }
.section-title{ font-size: clamp(1.85rem, 3vw, 3rem); }
.section-text{ max-width: 68ch; }

.module-pill{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .67rem .88rem;
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 750;
  box-shadow: 0 10px 24px rgba(31,41,55,.06);
}

.module-pill i{ color: var(--brand); }

.dashboard-card,
.register-card,
.feature-card,
.module-card,
.step-card,
.plan-card{
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dashboard-card{
  overflow: hidden;
}

.status-badge,
.plan-tag{
  display: inline-flex;
  padding: .28rem .65rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  border: 1px solid rgba(249,99,2,.18);
  font-size: .82rem;
  font-weight: 850;
}

.metric-card{
  display: grid;
  gap: .35rem;
  min-height: 132px;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.metric-card i{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--brand);
  background: var(--brand-soft);
}

.metric-card strong{
  color: var(--ink);
  font-size: 1rem;
}

.metric-card small{ color: var(--muted); }

.preview-line{
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(249,99,2,.07), rgba(58,160,255,.08));
  border: 1px solid rgba(28,39,60,.08);
}

.preview-line span{
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  margin-top: .45rem;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 8px rgba(249,99,2,.10);
}

.preview-line p{ margin: 0; color: var(--muted); }

.feature-card,
.module-card,
.step-card,
.plan-card{
  height: 100%;
  padding: 1.35rem;
  transition: .2s ease;
}

.feature-card:hover,
.module-card:hover,
.step-card:hover,
.plan-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(31,41,55,.13);
}

.feature-card i,
.module-card i{
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 16px;
  color: var(--brand);
  background: var(--brand-soft);
}

.feature-card h3,
.module-card h3,
.step-card h3,
.plan-card h3{
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
  margin-bottom: .45rem;
}

.feature-card p,
.module-card p,
.step-card p,
.plan-card p{
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

.step-card span{
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: var(--blue-soft);
  color: #1663b7;
  font-weight: 900;
}

.plan-card{ position: relative; overflow: hidden; }
.plan-card.featured{ border-color: rgba(249,99,2,.24); background: linear-gradient(180deg, #fff, #fff7f4); }
.plan-tag{ position: absolute; top: 1rem; right: 1rem; }

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

.security-grid div{
  display: flex;
  align-items: center;
  gap: .75rem;
  min-height: 88px;
  padding: 1rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  font-weight: 850;
}

.security-grid i{ color: var(--brand); font-size: 1.25rem; }

.eb-accordion{
  display: grid;
  gap: .85rem;
}

.eb-accordion .accordion-item{
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.eb-accordion .accordion-button{
  color: var(--ink);
  background: #fff;
  font-weight: 850;
}

.eb-accordion .accordion-button:not(.collapsed){
  color: var(--brand);
  background: var(--brand-soft);
  box-shadow: none;
}

.eb-accordion .accordion-body{ color: var(--muted); }

.register-section{ padding-bottom: 96px; }

.register-card{
  padding: clamp(1.25rem, 4vw, 3rem);
  background:
    radial-gradient(600px 260px at 0% 0%, rgba(249,99,2,.10), transparent 65%),
    radial-gradient(600px 300px at 100% 20%, rgba(58,160,255,.10), transparent 62%),
    rgba(255,255,255,.86);
}

.register-benefits{
  display: grid;
  gap: .8rem;
  margin-top: 1.5rem;
}

.register-benefits div{
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--ink);
  font-weight: 800;
}

.register-benefits i{ color: var(--brand); }

.form-label{
  color: var(--ink);
  font-weight: 850;
  font-size: .9rem;
}

.form-control,
.form-select{
  border: 1px solid rgba(28,39,60,.12);
  border-radius: 16px;
  background-color: rgba(255,255,255,.92);
  color: var(--ink);
}

.form-control:focus,
.form-select:focus{
  border-color: rgba(249,99,2,.38);
  box-shadow: 0 0 0 .25rem rgba(249,99,2,.12);
}

.form-control[readonly]{ background: #f7f9fc; color: var(--muted); }

.form-note{
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}

.footer{
  padding: 32px 0;
  
  
  background: #F96302; 
  /*  rgba(255,255,255,.70); 
      color: var(--muted);
      border-top: 1px solid var(--line);
  */
}



.footer .fw-bold{ color: white; }

@media (max-width: 991.98px){
  .hero{ padding-top: 128px; }
  .hero-title{ max-width: 100%; }
  .security-grid{ grid-template-columns: 1fr; }
  .navbar-collapse{
    margin-top: .85rem;
    padding: .85rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
  }
}

@media (max-width: 575.98px){
  .section,
  .hero{ padding: 68px 0; }
  .hero{ padding-top: 118px; }
  .hero-title{ font-size: 2.45rem; }
  .metric-card{ min-height: 116px; }
}


.btn-lang.active {
    background: #fff;
    color: var(--brand, #F96302);
    border-color: #fff;
    font-weight: 700;
}