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

body{
  font-family:Arial,Helvetica,sans-serif;
  color:#111827;
  background:#f8fafc;
  line-height:1.6;
}

a{
  color:inherit;
  text-decoration:none;
}

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


/* =========================
   HEADER CLEAN FLOATING
========================= */

header{
  position:sticky;
  top:0;
  z-index:9999;

  background:transparent;

  border:none;

  box-shadow:none;

  transition:.3s ease;
}

/* KEIN WEISSER BALKEN */

header.scrolled{
  background:transparent;

  border:none;

  box-shadow:none;

  backdrop-filter:none;

  -webkit-backdrop-filter:none;
}

/* =========================
   NAVBAR
========================= */

.nav{
  height:110px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:24px;
}

/* =========================
   LOGO
========================= */

.logo{
  display:flex;
  align-items:center;

  flex-shrink:0;

  height:110px;

  overflow:visible;
}

.logo-image{
  width:170px !important;
  height:170px !important;

  max-width:none !important;

  object-fit:contain;

  display:block;

  transform:translateY(8px);

  filter:
    drop-shadow(
      0 0 25px rgba(37,99,235,.22)
    );

  transition:.3s ease;
}

/* =========================
   DESKTOP MENU
========================= */

.desktop-menu{
  display:flex;

  align-items:center;

  gap:14px;
}

/* STANDARD LINKS */

.desktop-menu a{
  color:#0f172a;

  font-weight:900;

  font-size:.95rem;

  text-decoration:none;

  padding:12px 18px;

  border-radius:16px;

  transition:.25s ease;
}

/* HOVER */

.desktop-menu a:hover{
  color:#2563eb;

  background:
    rgba(255,255,255,.65);

  backdrop-filter:blur(12px);
}

/* BEIM SCROLLEN */

header.scrolled .desktop-menu a{
  color:#0f172a;
}

header.scrolled .desktop-menu a:hover{
  color:#2563eb;

  background:
    rgba(255,255,255,.65);
}

/* =========================
   TOP 1000 BUTTON
========================= */

.desktop-menu a[href="/suche"]{
  background:
    linear-gradient(
      135deg,
      #2563eb,
      #1d4ed8
    );

  color:#ffffff !important;

  box-shadow:
    0 10px 25px rgba(37,99,235,.18);
}

/* HOVER */

.desktop-menu
a[href="/suche"]:hover{
  color:#ffffff !important;

  transform:translateY(-2px);

  background:
    linear-gradient(
      135deg,
      #1d4ed8,
      #1e40af
    );
}

/* SCROLLED */

header.scrolled
.desktop-menu
a[href="/suche"]{
  background:
    linear-gradient(
      135deg,
      #2563eb,
      #1d4ed8
    );

  color:#ffffff !important;
}

/* =========================
   BUTTON
========================= */

.nav-button{
  background:
    linear-gradient(
      135deg,
      #2563eb,
      #1d4ed8
    );

  color:#ffffff;

  padding:14px 24px;

  border-radius:16px;

  font-weight:900;

  text-decoration:none;

  box-shadow:
    0 18px 40px rgba(37,99,235,.18);

  transition:.25s ease;
}

/* HOVER */

.nav-button:hover{
  transform:translateY(-2px);

  background:
    linear-gradient(
      135deg,
      #1d4ed8,
      #1e40af
    );
}

/* SCROLLED */

header.scrolled .nav-button{
  background:
    linear-gradient(
      135deg,
      #2563eb,
      #1d4ed8
    );

  color:#ffffff;
}

/* =========================
   MOBILE TOGGLE
========================= */

#menu-toggle{
  display:none;
}

.mobile-toggle{
  display:none;

  width:56px;
  height:56px;

  border-radius:16px;

  background:#2563eb;

  color:#ffffff;

  cursor:pointer;

  font-size:1.5rem;

  align-items:center;
  justify-content:center;

  box-shadow:
    0 12px 30px rgba(37,99,235,.22);

  transition:.25s ease;
}

/* SCROLLED */

header.scrolled .mobile-toggle{
  background:#2563eb;

  color:#ffffff;
}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu{
  display:none;

  background:#ffffff;

  border-top:
    1px solid #e5e7eb;

  box-shadow:
    0 20px 40px rgba(15,23,42,.08);
}

#menu-toggle:checked ~ .mobile-menu{
  display:block;
}

.mobile-menu .container{
  display:grid;

  gap:12px;

  padding:18px 0 24px;
}

.mobile-menu a{
  display:flex;

  align-items:center;
  justify-content:space-between;

  min-height:56px;

  padding:0 18px;

  border-radius:16px;

  background:#f8fafc;

  color:#0f172a;

  font-weight:900;

  text-decoration:none;

  border:
    1px solid #e5e7eb;
}

.mobile-menu a::after{
  content:"›";

  color:#2563eb;

  font-size:1.4rem;
}

.mobile-menu a:last-child{
  background:
    linear-gradient(
      135deg,
      #2563eb,
      #1d4ed8
    );

  color:#ffffff;

  border:none;
}

.mobile-menu a:last-child::after{
  color:#ffffff;
}

/* =========================
   MOBILE
========================= */

@media (max-width:900px){

  .nav{
    height:130px;
  }

  .logo{
    height:130px;
  }

  .logo-image{
    width:220px !important;
    height:auto !important;

    max-width:none !important;
    max-height:none !important;

    object-fit:contain;

    transform:translateY(10px);
  }

  .desktop-menu,
  .nav-button{
    display:none;
  }

  .mobile-toggle{
    display:flex;
  }
}

/* Hero */

.page-hero{
  background:
    radial-gradient(circle at top right, rgba(37,99,235,.10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding:72px 0 46px;
  text-align:center;
}

.badge{
  display:inline-flex;
  background:#eff6ff;
  color:#2563eb;
  border:1px solid #dbeafe;
  padding:9px 16px;
  border-radius:999px;
  font-size:.9rem;
  font-weight:800;
  margin-bottom:22px;
}

h1{
  font-size:clamp(2.3rem, 5vw, 4.4rem);
  line-height:1;
  letter-spacing:-.06em;
  color:#0f172a;
  margin-bottom:22px;
  font-weight:900;
}

.hero-text{
  max-width:760px;
  margin:0 auto;
  color:#64748b;
  font-size:1.12rem;
}

/* Formular */

.form-section{
  display:none;
  padding:54px 0 90px;
}

.form-section.is-open{
  display:block;
  animation:fhOpenForm .28s ease both;
}

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

.fh-entry-button{
  border:0;
  cursor:pointer;
  font-family:inherit;
}

.form-head{
  max-width:820px;
  margin:0 auto 34px;
  text-align:center;
}

.form-head-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#eff6ff;
  color:#1d4ed8;
  border:1px solid #dbeafe;
  border-radius:999px;
  padding:8px 14px;
  font-size:.86rem;
  font-weight:900;
  margin-bottom:16px;
}

.form-head h2{
  font-size:clamp(2rem,4vw,3.2rem);
  line-height:1.05;
  letter-spacing:-.05em;
  color:#0f172a;
  margin-bottom:14px;
}

.form-head p,
.help-text{
  color:#64748b;
  font-size:1rem;
}

.help-text{
  margin-bottom:22px;
  max-width:780px;
}

.form-layout{
  display:grid;
  grid-template-columns:1fr 320px;
  gap:28px;
  align-items:start;
}

.form-card{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:28px;
  padding:34px;
  box-shadow:0 22px 60px rgba(15,23,42,.06);
}

.side-card{
  position:sticky;
  top:100px;
  background:#0f172a;
  color:#ffffff;
  border-radius:28px;
  padding:28px;
  box-shadow:0 22px 60px rgba(15,23,42,.12);
}

.side-card h3{
  font-size:1.25rem;
  margin-bottom:14px;
}

.side-card p{
  color:#cbd5e1;
  font-size:.96rem;
  margin-bottom:18px;
}

.secure-box{
  display:flex;
  gap:10px;
  align-items:flex-start;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px;
  color:#e2e8f0;
  font-size:.92rem;
}

.form-step{
  border-bottom:1px solid #e5e7eb;
  padding-bottom:34px;
  margin-bottom:34px;
}

.form-step:last-of-type{
  border-bottom:0;
  margin-bottom:0;
  padding-bottom:0;
}

.step-label{
  display:inline-flex;
  color:#2563eb;
  background:#eff6ff;
  border-radius:999px;
  padding:6px 12px;
  font-size:.82rem;
  font-weight:800;
  margin-bottom:14px;
}

.form-step h2{
  font-size:clamp(1.4rem,3vw,2rem);
  color:#0f172a;
  line-height:1.15;
  margin-bottom:10px;
}

.type-grid,
.grid-2,
.grid-3{
  display:grid;
  gap:16px;
}

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

.grid-3{
  grid-template-columns:.6fr 1fr 1fr;
}

.type-card{
  position:relative;
  display:block;
  cursor:pointer;
}

.type-card input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.type-content{
  height:100%;
  background:#f8fafc;
  border:2px solid #e5e7eb;
  border-radius:22px;
  padding:24px;
  transition:.2s ease;
}

.type-content span{
  display:block;
  font-size:2rem;
  margin-bottom:12px;
}

.type-content strong{
  display:block;
  color:#0f172a;
  font-size:1.1rem;
  margin-bottom:8px;
}

.type-content p{
  color:#64748b;
  font-size:.94rem;
}

.type-card input:checked + .type-content{
  border-color:#2563eb;
  background:#eff6ff;
  box-shadow:0 16px 35px rgba(37,99,235,.12);
}

.field{
  margin-bottom:16px;
}

.field label{
  display:block;
  font-weight:800;
  color:#1f2937;
  margin-bottom:8px;
  font-size:.94rem;
}

.field input,
.field select,
.field textarea{
  width:100%;
  border:1px solid #dbe1ea;
  background:#ffffff;
  border-radius:14px;
  padding:14px 15px;
  font-size:1rem;
  color:#111827;
  outline:0;
}

.field textarea{
  min-height:150px;
  resize:vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color:#2563eb;
  box-shadow:0 0 0 4px rgba(37,99,235,.10);
}

.small-note{
  color:#64748b;
  font-size:.86rem;
  margin-top:7px;
}

.upload-box{
  border:2px dashed #cbd5e1;
  border-radius:20px;
  background:#f8fafc;
  padding:24px;
  text-align:center;
  color:#64748b;
}

.upload-box strong{
  display:block;
  color:#0f172a;
  margin-bottom:8px;
}

.opening-grid{
  display:grid;
  gap:12px;
}

.opening-row{
  display:grid;
  grid-template-columns:120px 1fr 1fr;
  gap:12px;
  align-items:center;
}

.opening-row strong{
  color:#0f172a;
}

.check-row{
  display:flex;
  gap:12px;
  align-items:flex-start;
  margin:18px 0;
  color:#374151;
  font-size:.95rem;
}

.check-row input{
  margin-top:4px;
}

.actions{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:flex-end;
  margin-top:34px;
  flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
  border:0;
  cursor:pointer;
  border-radius:16px;
  padding:15px 24px;
  font-size:1rem;
  font-weight:900;
}

.btn-primary{
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  color:#ffffff;
  box-shadow:0 14px 30px rgba(37,99,235,.20);
}

.btn-secondary{
  background:#ffffff;
  color:#1f2937;
  border:1px solid #dbe1ea;
}

.required{
  color:#dc2626;
}

/* =====================================================
   FOOTER
   ===================================================== */

.site-footer{
  background:#0f172a;
  color:#e2e8f0;
  padding:70px 0 30px;
}

.footer-top{
  display:grid;
  grid-template-columns:1.25fr 1.75fr;
  gap:56px;
  margin-bottom:42px;
}

.footer-brand{
  color:#ffffff;
  font-size:1.45rem;
  font-weight:900;
  margin-bottom:14px;
  letter-spacing:-0.04em;
}

.footer-brand-block p{
  color:#cbd5e1;
  line-height:1.7;
}

.footer-links{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:34px;
}

.footer-title{
  color:#ffffff;
  font-size:1rem;
  font-weight:800;
  margin-bottom:18px;
}

.footer-links a{
  display:block;
  margin-bottom:12px;
  color:#cbd5e1;
  transition:.2s ease;
}

.footer-links a:hover{
  color:#ffffff;
  transform:translateX(2px);
}

.footer-award{
  margin-top:26px;
}

.footer-award-title{
  display:block;
  color:#ffffff;
  font-size:.92rem;
  font-weight:800;
  margin-bottom:10px;
}

.footer-award-text{
  font-size:.9rem;
  color:#94a3b8 !important;
  margin-bottom:16px;
}

.footer-award img{
  width:140px;
  height:auto;
  aspect-ratio:1 / 1;
  object-fit:contain;
}

/* Zahlungsmethoden */

.footer-payment{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:28px;
  margin-bottom:28px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.footer-payment-title{
  display:block;
  color:#ffffff;
  font-size:.92rem;
  font-weight:800;
  margin-bottom:8px;
}

.footer-payment-info{
  color:#94a3b8;
  font-size:.9rem;
  line-height:1.6;
}

.footer-payment-logos{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
  gap:14px;
}

.footer-payment-logos img{
  height:34px;
  width:auto;
  object-fit:contain;
  background:#ffffff;
  border-radius:12px;
  padding:7px 12px;
  box-shadow:0 8px 24px rgba(0,0,0,.16);
  transition:.2s ease;
}

.footer-payment-logos img:hover{
  transform:translateY(-2px) scale(1.03);
}

/* Bottom */

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.18);
  padding-top:24px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.footer-seo{
  color:#94a3b8;
  font-size:.88rem;
}

.copyright{
  color:#cbd5e1;
  font-size:.92rem;
  white-space:nowrap;
}

/* Responsive */

@media(max-width:900px){

  .footer-top{
    grid-template-columns:1fr;
  }

  .footer-links{
    grid-template-columns:1fr 1fr;
  }

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

  .footer-payment-logos{
    justify-content:flex-start;
  }

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

  .copyright{
    white-space:normal;
  }

}

@media(max-width:640px){

  .site-footer{
    padding:60px 0 28px;
  }

  .footer-links{
    grid-template-columns:1fr;
  }

  .footer-payment-logos{
    gap:10px;
  }

  .footer-payment-logos img{
    height:30px;
    padding:6px 10px;
  }

}
/* Mobile */

@media(max-width:980px){

  .container{
    width:calc(100% - 28px);
  }

  .nav{
    height:70px;
    gap:12px;
  }

  .logo img{
    width:170px;
    max-width:60vw;
    max-height:44px;
  }

  .desktop-menu{
    display:none;
  }

  .mobile-toggle{
    display:flex;
  }

  #menu-toggle:checked ~ .mobile-menu{
    display:block;
  }

  .form-layout,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .side-card{
    position:relative;
    top:0;
  }

  .type-grid,
  .grid-2,
  .grid-3,
  .opening-row{
    grid-template-columns:1fr;
  }

  .page-hero{
    padding:56px 0 36px;
  }

  .form-card{
    padding:26px;
  }
}

@media(max-width:480px){

  .container{
    width:calc(100% - 22px);
  }

  .logo img{
    width:145px;
  }

  h1{
    font-size:2.15rem;
    letter-spacing:-.04em;
  }

  .hero-text{
    font-size:1rem;
  }

  .form-card{
    padding:22px;
    border-radius:22px;
  }

  .type-content{
    padding:20px;
  }

  .actions{
    justify-content:stretch;
  }

  .btn-primary,
  .btn-secondary{
    width:100%;
  }

  .footer-award img{
    width:120px;
  }
}
/* PayPal */

.paypal-box{
  margin-top:28px;

  padding:28px;

  border:1px solid #dbe1ea;

  border-radius:24px;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fafc 100%
    );

  box-shadow:
    0 18px 40px rgba(15,23,42,.06);
}

.paypal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;

  margin-bottom:12px;
}

.paypal-title{
  font-size:1.1rem;
  font-weight:900;
  color:#0f172a;
}

.paypal-price{
  font-size:2rem;
  font-weight:900;
  color:#2563eb;
}

.paypal-text{
  color:#64748b;
  margin-bottom:22px;
  font-size:.96rem;
}

.btn-primary:disabled{
  opacity:.5;
  cursor:not-allowed;
  box-shadow:none;
}

.btn-primary.is-active{
  opacity:1;
}

@media(max-width:640px){

  .paypal-box{
    padding:22px;
    border-radius:20px;
  }

  .paypal-head{
    flex-direction:column;
    align-items:flex-start;
  }

  .paypal-price{
    font-size:1.8rem;
  }
}
/* Popup Overlay */

.fh-popup-overlay{
  position:fixed;

  top:0;
  left:0;

  width:100%;
  height:100vh;

  z-index:999999;

  background:rgba(15,23,42,.62);

  display:none;

  align-items:center;
  justify-content:center;

  padding:20px;

  backdrop-filter:blur(5px);
}
/* Popup Overlay */

.fh-popup-overlay{
  position:fixed;

  inset:0;

  z-index:999999;

  display:none;

  align-items:center;
  justify-content:center;

  padding:20px;

  background:rgba(15,23,42,.62);

  backdrop-filter:blur(5px);
}

.fh-toast{
  position:fixed;

  left:50%;
  bottom:30px;

  transform:translateX(-50%);

  z-index:999999;

  width:min(520px, calc(100% - 28px));

  background:#16a34a;

  color:#ffffff;

  padding:18px 22px;

  border-radius:18px;

  font-weight:900;

  text-align:center;

  box-shadow:
    0 20px 50px rgba(15,23,42,.28);

  animation:fhToastIn .25s ease;
}

@keyframes fhToastIn{

  from{
    opacity:0;
    transform:
      translateX(-50%)
      translateY(16px);
  }

  to{
    opacity:1;
    transform:
      translateX(-50%)
      translateY(0);
  }
}

@media(max-width:640px){

  .fh-toast{
    bottom:18px;

    font-size:.92rem;

    padding:16px 18px;
  }

}
/* Wizard */

.wizard-step{
  display:none;
}

.wizard-step.is-active{
  display:block;
  animation:wizardFadeIn .22s ease both;
}

@keyframes wizardFadeIn{
  from{
    opacity:0;
    transform:translateY(10px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

.wizard-progress{
  height:10px;
  background:#e5e7eb;
  border-radius:999px;
  overflow:hidden;
  margin-bottom:14px;
}

.wizard-progress-bar{
  width:16.66%;
  height:100%;
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  border-radius:999px;
  transition:width .25s ease;
}

.wizard-counter{
  color:#64748b;
  font-weight:800;
  margin-bottom:28px;
}

.wizard-actions{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-top:34px;
}

.wizard-actions button{
  min-width:140px;
}

#paypal-button-container{
  min-height:52px;
}

@media(max-width:640px){

  .wizard-actions{
    flex-direction:column;
  }

  .wizard-actions button{
    width:100%;
  }
}
  
  .premium-summary{
  background:
    linear-gradient(
      135deg,
      #0f172a,
      #1e293b
    );

  color:#ffffff;

  border-radius:30px;

  padding:34px;

  margin-bottom:28px;

  box-shadow:
    0 24px 60px rgba(15,23,42,.14);
}

.premium-summary-badge{
  display:inline-flex;

  background:rgba(255,255,255,.08);

  border:1px solid rgba(255,255,255,.10);

  border-radius:999px;

  padding:8px 14px;

  font-size:.82rem;
  font-weight:900;

  margin-bottom:20px;
}

.premium-summary h3{
  font-size:1.9rem;

  line-height:1.1;

  margin-bottom:24px;
}

.premium-summary-list{
  display:grid;

  gap:14px;

  margin-bottom:28px;
}

.premium-summary-list div{
  background:rgba(255,255,255,.06);

  border:1px solid rgba(255,255,255,.08);

  border-radius:16px;

  padding:14px 16px;

  font-weight:700;

  color:#e2e8f0;
}

.premium-summary-price{
  font-size:2rem;

  font-weight:900;

  color:#60a5fa;
}

@media(max-width:640px){

  .premium-summary{
    padding:26px;
    border-radius:24px;
  }

  .premium-summary h3{
    font-size:1.5rem;
  }

  .premium-summary-price{
    font-size:1.6rem;
  }

}
.fh-payment-methods{
  margin-bottom:28px;
}

.fh-payment-label{
  display:block;

  font-size:.9rem;
  font-weight:700;

  color:#64748b;

  margin-bottom:14px;
}

.fh-payment-logos{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
}

.fh-payment-logos img{
  height:34px;
  width:auto;

  object-fit:contain;

  background:#fff;

  border:1px solid #e5e7eb;

  border-radius:14px;

  padding:8px 12px;

  box-shadow:
    0 8px 24px rgba(15,23,42,.05);

  transition:.2s ease;
}

.fh-payment-logos img:hover{
  transform:translateY(-2px);
}

@media(max-width:640px){

  .fh-payment-logos{
    gap:10px;
  }

  .fh-payment-logos img{
    height:30px;
    padding:6px 10px;
  }

}

.fh-entry-section{
  padding:110px 0;
}

.fh-entry-box{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:40px;
  align-items:center;
}

.fh-entry-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;

  background:#dbeafe;
  color:#1d4ed8;

  border:1px solid #bfdbfe;

  padding:10px 16px;

  border-radius:999px;

  font-size:.85rem;
  font-weight:900;

  margin-bottom:22px;
}

.fh-entry-left h2{
  font-size:clamp(2.2rem,4vw,4rem);

  line-height:1.02;

  letter-spacing:-.06em;

  color:#0f172a;

  margin-bottom:18px;
}

.fh-entry-intro{
  font-size:1.08rem;

  color:#64748b;

  max-width:760px;

  margin-bottom:30px;
}

.fh-entry-price{
  display:flex;
  align-items:center;
  gap:18px;

  margin-bottom:34px;
}

.fh-price{
  font-size:3rem;
  font-weight:900;
  color:#2563eb;
  line-height:1;
}

.fh-price-info{
  color:#475569;
  font-weight:700;
}

.fh-price-info small{
  color:#64748b;
}

.fh-entry-benefits{
  display:grid;
  gap:18px;
  margin-bottom:34px;
}

.fh-entry-item{
  display:flex;
  gap:16px;
  align-items:flex-start;

  background:#fff;

  border:1px solid #e5e7eb;

  border-radius:24px;

  padding:22px;

  box-shadow:
    0 14px 40px rgba(15,23,42,.05);
}

.fh-icon{
  width:44px;
  height:44px;

  border-radius:14px;

  background:#16a34a;

  color:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  font-weight:900;

  flex-shrink:0;
}

.fh-entry-item strong{
  display:block;

  color:#0f172a;

  margin-bottom:6px;

  font-size:1rem;
}

.fh-entry-item p{
  color:#64748b;

  font-size:.95rem;
}

.fh-entry-note{
  background:#f8fafc;

  border:1px solid #e2e8f0;

  border-radius:18px;

  padding:18px 20px;

  color:#475569;

  font-size:.92rem;

  margin-bottom:28px;
}

.fh-entry-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  background:
    linear-gradient(
      135deg,
      #2563eb,
      #1d4ed8
    );

  color:#fff;

  padding:20px 32px;

  border-radius:20px;

  font-weight:900;

  font-size:1rem;

  box-shadow:
    0 20px 50px rgba(37,99,235,.22);

  transition:.2s ease;
}

.fh-entry-button:hover{
  transform:translateY(-2px);
  filter:brightness(1.04);
}

.fh-entry-card{
  background:
    linear-gradient(
      135deg,
      #0f172a,
      #1e293b
    );

  color:#fff;

  border-radius:36px;

  padding:38px;

  box-shadow:
    0 30px 80px rgba(15,23,42,.18);
}

.fh-card-badge{
  display:inline-block;

  background:rgba(255,255,255,.08);

  border:1px solid rgba(255,255,255,.12);

  padding:8px 14px;

  border-radius:999px;

  font-size:.82rem;
  font-weight:800;

  margin-bottom:22px;
}

.fh-entry-card h3{
  font-size:2rem;

  margin-bottom:10px;
}

.fh-entry-card p{
  color:#cbd5e1;

  margin-bottom:28px;
}

.fh-card-list{
  display:grid;
  gap:14px;
}

.fh-card-list div{
  background:rgba(255,255,255,.06);

  border:1px solid rgba(255,255,255,.08);

  border-radius:16px;

  padding:14px 16px;

  font-weight:700;
}

@media(max-width:980px){

  .fh-entry-box{
    grid-template-columns:1fr;
  }

}

@media(max-width:640px){

  .fh-entry-section{
    padding:70px 0;
  }

  .fh-entry-item{
    padding:18px;
  }

  .fh-entry-price{
    flex-direction:column;
    align-items:flex-start;
  }

  .fh-entry-button{
    width:100%;
  }

}