
.home-hero{
  background: linear-gradient(135deg, #34d399 0%, #3b82f6 100%);
  padding: 80px 0 100px !important;
  margin-top: 0 !important;
  position: relative;
  overflow: hidden;
}

.home-hero::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,.1)"/></svg>');
  opacity: .3;
}

.home-hero__content{
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.home-hero__title{
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -.03em;
  line-height: 1.1;
}

.home-hero__subtitle{
  font-size: 18px;
  color: rgba(255,255,255,.90);
  margin: 0 0 40px;
  line-height: 1.6;
}

.home-search{
  margin-bottom: 24px;
}

.home-search__wrapper{
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 8px 8px 8px 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  gap: 12px;
}

.home-search__icon{
  width: 24px;
  height: 24px;
  color: rgba(15,23,42,.45);
  flex-shrink: 0;
}

.home-search__input{
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: #0f172a;
  padding: 12px 0;
}

.home-search__input::placeholder{
  color: rgba(15,23,42,.45);
}

.home-search__btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #34d399;
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all .2s ease;
}

.home-search__btn svg{
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.home-search__btn:hover{
  background: #6d28d9;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(52,211,153,.35);
}

.home-hero__tags{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.home-hero__tag-label{
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.70);
}

.home-hero__tag{
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: all .2s ease;
}

.home-hero__tag:hover{
  background: rgba(255,255,255,.25);
  transform: translateY(-2px);
}

.home-stats{
  padding: 60px 0;
  background: #f8fafc;
}

.home-stats__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.home-stat{
  text-align: center;
}

.home-stat__value{
  font-size: 42px;
  font-weight: 900;
  color: #34d399;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.home-stat__label{
  font-size: 14px;
  font-weight: 700;
  color: rgba(15,23,42,.65);
}

.home-categories{
  padding: 80px 0;
}

.home-section-header{
  text-align: center;
  margin-bottom: 50px;
}

.home-section-title{
  font-size: 38px;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 12px;
  letter-spacing: -.02em;
}

.home-section-desc{
  font-size: 16px;
  color: rgba(15,23,42,.65);
  margin: 0;
}

.home-category-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.home-category{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 24px;
  transition: all .25s ease;
}

.home-category:hover{
  border-color: #34d399;
  box-shadow: 0 12px 32px rgba(52,211,153,.12);
  transform: translateY(-4px);
}

.home-category__icon{
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(52,211,153,.12), rgba(59,130,246,.08));
  color: #34d399;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-category__icon svg{
  width: 24px;
  height: 24px;
}

.home-category__content{
  flex: 1;
}

.home-category__title{
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 6px;
}

.home-category__desc{
  font-size: 14px;
  color: rgba(15,23,42,.65);
  margin: 0 0 8px;
}

.home-category__meta{
  font-size: 12px;
  font-weight: 700;
  color: #34d399;
}

.home-categories__footer{
  text-align: center;
}

.home-categories__link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  color: #34d399;
  padding: 14px 28px;
  border: 2px solid #34d399;
  border-radius: 12px;
  transition: all .2s ease;
}

.home-categories__link svg{
  width: 18px;
  height: 18px;
}

.home-categories__link:hover{
  background: #34d399;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52,211,153,.25);
}

.home-how{
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
}

.home-how__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.home-how-step{
  text-align: center;
  position: relative;
}

.home-how-step__number{
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #34d399, #3b82f6);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(52,211,153,.35);
}

.home-how-step__icon{
  width: 80px;
  height: 80px;
  margin: 30px auto 20px;
  border-radius: 20px;
  background: #fff;
  border: 2px solid rgba(52,211,153,.20);
  color: #34d399;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-how-step__icon svg{
  width: 36px;
  height: 36px;
}

.home-how-step__title{
  font-size: 22px;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 12px;
}

.home-how-step__desc{
  font-size: 15px;
  color: rgba(15,23,42,.65);
  line-height: 1.6;
  margin: 0;
}

.home-how__cta{
  text-align: center;
}

.home-cta-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #34d399;
  color: #fff;
  padding: 16px 36px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 900;
  transition: all .25s ease;
  box-shadow: 0 12px 32px rgba(52,211,153,.25);
}

.home-cta-btn svg{
  width: 20px;
  height: 20px;
}

.home-cta-btn:hover{
  background: #6d28d9;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(52,211,153,.35);
}

.home-trust{
  padding: 80px 0;
  background: #fff;
}

.home-trust__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.home-trust-item{
  text-align: center;
}

.home-trust-item__icon{
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(52,211,153,.12), rgba(59,130,246,.08));
  color: #34d399;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-trust-item__icon svg{
  width: 32px;
  height: 32px;
}

.home-trust-item__title{
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 10px;
}

.home-trust-item__desc{
  font-size: 14px;
  color: rgba(15,23,42,.65);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 980px){
  .home-hero{padding: 60px 0 80px}
  .home-hero__title{font-size: 42px}
  .home-hero__subtitle{font-size: 16px}
  .home-category-grid{grid-template-columns: 1fr}
  .home-stats__grid{grid-template-columns: repeat(2, 1fr); gap: 30px}
}

@media (max-width: 640px){
  .home-hero{padding: 40px 0 60px}
  .home-hero__title{font-size: 32px}
  .home-search__wrapper{flex-direction: column; padding: 16px}
  .home-search__btn{width: 100%; justify-content: center}
  .home-section-title{font-size: 28px}
  .home-stats__grid{grid-template-columns: 1fr}
  .home-trust__grid{grid-template-columns: 1fr}
}

.topbar{
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 0 0;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.95);
}

.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: #0f172a;
}

.brand__mark{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #34d399, #3b82f6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand__text{
  font-size: 20px;
  letter-spacing: -.02em;
}

.topnav{
  display: flex;
  align-items: center;
  gap: 8px;
}

.topnav__link{
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 10px;
  color: rgba(15,23,42,.75);
  font-weight: 700;
  font-size: 15px;
  transition: all .2s ease;
}

.topnav__link:hover{
  background: rgba(52,211,153,.08);
  color: #34d399;
}

.topbar__actions{
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar__link{
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  color: rgba(15,23,42,.75);
  font-weight: 700;
  font-size: 15px;
  transition: all .2s ease;
}

.topbar__link:hover{
  color: #34d399;
}

.iconbtn{
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.iconbtn__bar{
  width: 24px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  transition: all .2s ease;
}

@media (max-width: 980px){
  .topnav{display: none}
  .topbar__link{display: none}
  .iconbtn{display: flex}
}

.modern-footer{
  background: #ffffff !important;
  color: #334155;
  padding: 60px 0 30px;
  margin-top: 80px;
  border-top: 1px solid #e2e8f0;
}

.modern-footer__main{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 30px;
}

.modern-footer__col--brand{
  max-width: 320px;
}

.modern-footer__brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.modern-footer__brand .brand__text{
  color: #0f172a;
  font-size: 20px;
}

.modern-footer__desc{
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin: 0 0 20px;
}

.modern-footer__social{
  display: flex;
  align-items: center;
  gap: 10px;
}

.modern-footer__social-link{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
}

.modern-footer__social-link svg{
  width: 18px;
  height: 18px;
}

.modern-footer__social-link:hover{
  background: #34d399;
  color: #fff;
  transform: translateY(-2px);
}

.modern-footer__title{
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.modern-footer__links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modern-footer__links a{
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s ease;
}

.modern-footer__links a:hover{
  color: #0f172a;
  padding-left: 4px;
}

.modern-footer__bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.modern-footer__copyright{
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
}

.modern-footer__badges{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.modern-footer__badge{
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
}

@media (max-width: 980px){
  .modern-footer__main{grid-template-columns: 1fr 1fr; gap: 30px}
  .modern-footer__col--brand{max-width: none; grid-column: 1 / -1}
}

@media (max-width: 640px){
  .modern-footer{padding: 40px 0 20px; margin-top: 60px}
  .modern-footer__main{grid-template-columns: 1fr; gap: 30px}
  .modern-footer__bottom{flex-direction: column; align-items: flex-start}
}

.wizard-section{
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.wizard-header{
  text-align: center;
  margin-bottom: 40px;
}

.wizard-header__title{
  font-size: 36px;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 12px;
  letter-spacing: -.02em;
}

.wizard-header__desc{
  font-size: 16px;
  color: rgba(15,23,42,.65);
  margin: 0;
}

.wizard-progress{
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.wizard-progress__step{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.wizard-progress__number{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(0,0,0,.12);
  color: rgba(15,23,42,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  transition: all .3s ease;
}

.wizard-progress__number svg{
  width: 20px;
  height: 20px;
}

.wizard-progress__step.is-active .wizard-progress__number{
  background: #34d399;
  border-color: #34d399;
  color: #fff;
  box-shadow: 0 8px 20px rgba(52,211,153,.35);
}

.wizard-progress__step.is-completed .wizard-progress__number{
  background: #10b981;
  border-color: #10b981;
  color: #fff;
}

.wizard-progress__label{
  font-size: 13px;
  font-weight: 700;
  color: rgba(15,23,42,.55);
}

.wizard-progress__step.is-active .wizard-progress__label{
  color: #34d399;
}

.wizard-progress__line{
  width: 80px;
  height: 2px;
  background: rgba(0,0,0,.12);
  margin: 0 16px;
  transition: all .3s ease;
}

.wizard-progress__line.is-filled{
  background: #10b981;
}

.wizard-card{
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.06);
  overflow: hidden;
}

.wizard-card__header{
  padding: 32px 32px 24px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.wizard-card__title{
  font-size: 22px;
  font-weight: 900;
  color: #0f172a;
  margin: 0;
}

.wizard-alert{
  margin: 24px 32px;
  padding: 16px;
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.wizard-alert--error{
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.25);
}

.wizard-alert__icon{
  width: 24px;
  height: 24px;
  color: #ef4444;
  flex-shrink: 0;
}

.wizard-alert__content{
  flex: 1;
}

.wizard-alert__title{
  font-size: 14px;
  font-weight: 800;
  color: #ef4444;
  margin: 0 0 8px;
}

.wizard-alert__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wizard-alert__list li{
  font-size: 13px;
  color: rgba(15,23,42,.75);
  padding-left: 16px;
  position: relative;
}

.wizard-alert__list li::before{
  content: "•";
  position: absolute;
  left: 0;
  color: #ef4444;
}

.wizard-summary{
  margin: 24px 32px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(52,211,153,.08), rgba(59,130,246,.05));
  border-radius: 14px;
  border: 1px solid rgba(52,211,153,.15);
}

.wizard-summary__title{
  font-size: 14px;
  font-weight: 800;
  color: #34d399;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.wizard-summary__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wizard-summary__item--full{
  grid-column: 1 / -1;
}

.wizard-summary__label{
  font-size: 12px;
  font-weight: 700;
  color: rgba(15,23,42,.55);
  margin-bottom: 4px;
}

.wizard-summary__value{
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
}

.wizard-form{
  padding: 32px;
}

.wizard-category-questions{
  margin: 32px 0;
  padding: 24px;
  background: linear-gradient(135deg, rgba(52,211,153,.05), rgba(59,130,246,.03));
  border-radius: 14px;
  border: 1px solid rgba(52,211,153,.12);
}

.wizard-category-questions__title{
  font-size: 15px;
  font-weight: 800;
  color: #34d399;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.wizard-form__group{
  margin-bottom: 24px;
}

.wizard-form__label{
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.wizard-form__input-wrapper{
  position: relative;
  display: flex;
  align-items: center;
}

.wizard-form__icon{
  position: absolute;
  left: 16px;
  width: 20px;
  height: 20px;
  color: rgba(15,23,42,.45);
  pointer-events: none;
}

.wizard-form__input{
  width: 100%;
  height: 52px;
  padding: 0 16px 0 48px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  background: #fff;
  color: #0f172a;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  transition: all .2s ease;
}

.wizard-form__input--currency{
  padding: 0 16px 0 40px;
}

.wizard-form__currency{
  position: absolute;
  left: 16px;
  font-size: 16px;
  font-weight: 800;
  color: rgba(15,23,42,.55);
  pointer-events: none;
}

.wizard-form__input:focus{
  border-color: #34d399;
  box-shadow: 0 0 0 3px rgba(52,211,153,.1);
}

.wizard-form__select{
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  background: #fff;
  color: #0f172a;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: all .2s ease;
}

.wizard-form__select:focus{
  border-color: #34d399;
  box-shadow: 0 0 0 3px rgba(52,211,153,.1);
}

.wizard-form__textarea{
  width: 100%;
  min-height: 140px;
  padding: 16px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  background: #fff;
  color: #0f172a;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  outline: none;
  resize: vertical;
  transition: all .2s ease;
}

.wizard-form__textarea:focus{
  border-color: #34d399;
  box-shadow: 0 0 0 3px rgba(52,211,153,.1);
}

.wizard-form__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wizard-form__actions{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.wizard-form__submit{
  flex: 1;
}

.wizard-form__submit svg{
  width: 18px;
  height: 18px;
}

@media (max-width: 640px){
  .wizard-section{padding: 40px 0 60px}
  .wizard-header__title{font-size: 28px}
  .wizard-progress{flex-wrap: wrap; gap: 20px}
  .wizard-progress__line{display: none}
  .wizard-card{border-radius: 16px}
  .wizard-card__header{padding: 24px 20px 20px}
  .wizard-form{padding: 24px 20px}
  .wizard-alert{margin: 20px}
  .wizard-summary{margin: 20px}
  .wizard-summary__grid{grid-template-columns: 1fr}
  .wizard-form__row{grid-template-columns: 1fr}
  .wizard-form__actions{flex-direction: column-reverse}
  .wizard-form__actions .btn{width: 100%}
}
