/**
 * Elite BioDental — bază vizuală comună pagini servicii (structură aliniată implant-dentar-vaslui).
 * Fundal hero generic (gradient); paginile pot suprascrie în CSS propriu (ex. imagine dedicată).
 */
.page-hero{
  position:relative;
  overflow-x:hidden;
  min-height:clamp(680px,78vh,760px);
  padding:clamp(56px,7vw,88px) 0 clamp(52px,6vw,72px);
  background-color:#0a0528;
  background-image:
    linear-gradient(to right, rgba(10, 5, 40, 0.92), rgba(10, 5, 40, 0.75), rgba(10, 5, 40, 0.45));
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
}
.page-hero-inner{
  position:relative;
  z-index:1;
  max-width:1200px;
  margin:0 auto;
  padding:0 40px;
  text-align:left;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:70px;
  align-items:center;
}
.page-hero-inner > div:first-child{
  max-width:min(100%,34rem);
  width:100%;
}
.page-hero-label{display:inline-block;color:var(--gold-light);font-size:0.8rem;font-weight:600;letter-spacing:2px;text-transform:uppercase;margin-bottom:16px}
.page-hero h1{
  font-family:var(--font-display);
  font-size:clamp(48px,4.5vw,56px);
  color:var(--white);
  font-weight:600;
  margin-bottom:14px;
  text-align:left;
  line-height:1.18;
}
.page-hero p.hero-intro{
  color:rgba(255,255,255,0.94);
  font-size:1.08rem;
  max-width:32rem;
  margin:0 0 14px;
  line-height:1.65;
}
.page-hero-micro{
  margin:0 0 20px;
  max-width:28rem;
  font-size:0.9rem;
  line-height:1.55;
  color:rgba(255,255,255,0.72);
  font-weight:400;
}
.page-hero-bullets{
  list-style:none;
  margin:0 0 26px;
  padding:0;
  max-width:26rem;
}
.page-hero-bullets li{
  position:relative;
  padding-left:1.3em;
  margin-bottom:8px;
  font-size:0.92rem;
  line-height:1.45;
  color:rgba(255,255,255,0.9);
}
.page-hero-bullets li:last-child{margin-bottom:0;}
.page-hero-bullets li::before{
  content:'\2713';
  position:absolute;
  left:0;
  top:0.04em;
  color:var(--gold-light);
  font-weight:700;
  font-size:0.88em;
}
.page-hero-note{color:rgba(255,255,255,0.5);font-size:0.85rem}
.page-hero-cta-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
  margin-bottom:12px;
}
.page-hero .page-hero-cta-row .btn-primary{
  padding:16px 34px;
  border-radius:10px;
  background:linear-gradient(180deg,#e8c97a 0%,#C9A84C 48%,#b8923f 100%);
  color:var(--navy-dark);
  border:none;
  font-weight:600;
  font-size:clamp(15px,0.35vw + 14.2px,16px);
  letter-spacing:0.35px;
  box-shadow:0 12px 30px rgba(0,0,0,0.25);
}
.page-hero .page-hero-cta-row .btn-primary:hover{
  background:linear-gradient(180deg,#f0d68f 0%,#d4b55d 50%,#c9a84c 100%);
  color:var(--navy-dark);
  transform:translateY(-1px);
  box-shadow:0 14px 34px rgba(0,0,0,0.28);
}
.page-hero .page-hero-cta-row .btn-outline{
  padding:13px 22px;
  border-radius:10px;
  border-width:1px;
  border-color:rgba(255,255,255,0.26);
  color:rgba(255,255,255,0.88);
  font-weight:500;
  font-size:0.875rem;
  background:transparent;
  opacity:0.9;
}
.page-hero .page-hero-cta-row .btn-outline:hover{
  border-color:rgba(255,255,255,0.42);
  color:var(--white);
  background:rgba(255,255,255,0.06);
  opacity:1;
}
.page-hero .hero-cta-subline{
  display:block;
  margin:0;
  font-size:0.82rem;
  line-height:1.5;
  color:rgba(255,255,255,0.62);
  max-width:28rem;
  text-align:left;
}
.page-hero-spacer{
  min-height:1px;
  pointer-events:none;
}
@media (max-width:768px){
  .page-hero-spacer{display:none;}
}
@media (max-width: 1024px) and (min-width: 769px) {
  .page-hero{
    min-height:clamp(620px,72vh,720px);
    padding:clamp(48px,6vw,72px) 0 clamp(48px,5vw,64px);
  }
}
@media (max-width: 900px) and (min-width: 769px) {
  .page-hero-inner{
    grid-template-columns:1fr;
    gap:24px;
    align-items:center;
  }
  .page-hero-inner > div:first-child{
    max-width:min(100%,34rem);
  }
}
@media (max-width: 768px) {
  .page-hero {
    min-height:clamp(440px,52vh,560px);
    padding:clamp(28px,6vw,40px) 0 clamp(44px,9vw,56px);
    background-position:center center,center center;
  }
  .page-hero h1,
  .page-hero .hero-intro,
  .page-hero-micro,
  .page-hero-bullets li {
    text-shadow:0 2px 24px rgba(10, 5, 40, 0.45);
  }
  .page-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-left: clamp(16px, 4.5vw, 20px);
    padding-right: clamp(16px, 4.5vw, 20px);
    text-align: center;
  }
  .page-hero-inner > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    gap: 0;
  }
  .page-hero-micro{
    margin-bottom:16px;
    text-align:center;
    max-width:min(28rem,100%);
  }
  .page-hero-bullets{
    margin-bottom:22px;
    text-align:left;
    width:100%;
    max-width:22rem;
  }
  .page-hero-cta-row {
    flex-direction: column;
    width: 100%;
    max-width: 22rem;
    gap: 12px;
    margin-bottom: 10px;
  }
  section.page-hero .page-hero-cta-row .btn-primary {
    width: 100%;
    min-height: 56px;
    padding: 16px 34px !important;
    justify-content: center;
    border-radius: 14px !important;
    font-size: clamp(15px, 0.5vw + 14px, 16px) !important;
    font-weight: 600 !important;
    letter-spacing: 0.35px !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25) !important;
  }
  section.page-hero .page-hero-cta-row .btn-primary:hover {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28) !important;
  }
  section.page-hero .page-hero-cta-row .btn-outline {
    width: 100%;
    min-height: 48px !important;
    padding: 13px 20px !important;
    font-size: 0.875rem !important;
    border-radius: 10px !important;
    justify-content: center;
    border-color: rgba(255, 255, 255, 0.26) !important;
    opacity: 0.9;
  }
  .page-hero .hero-cta-subline {
    max-width: 22rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.62);
  }
  .page-hero h1 { font-size: clamp(1.75rem, 5.5vw, 2rem); line-height: 1.2; text-align: center; margin-bottom: 12px; }
  .page-hero .hero-intro { font-size: 0.98rem; max-width: min(520px, 100%); padding: 0 2px; line-height: 1.62; margin-bottom: 10px; }
  .page-hero-bullets li{ font-size:0.9rem; }
}

  /* ===== MOBILE FIX =====*/
    html, body { 
      overflow-x: hidden !important; 
      max-width: 100% !important;
    }
    .header-top-inner, .header-main-inner, .hero-inner,
    .section-inner, .cta-banner-inner, .footer-inner,
    .reviews-inner, .page-hero-inner {
      max-width: 100% !important; 
      width: 100% !important;
      box-sizing: border-box !important;
    }
    @media (max-width: 768px) {
      .header-top-inner, .header-main-inner, .hero-inner,
      .section-inner, .cta-banner-inner, .footer-inner,
      .reviews-inner, .page-hero-inner {
        padding-left: clamp(16px, 4.5vw, 20px) !important; 
        padding-right: clamp(16px, 4.5vw, 20px) !important; 
      }
      .hero-inner { 
        grid-template-columns: 1fr !important; 
        gap: 24px !important;
        padding-top: 30px !important;
        padding-bottom: 30px !important;
      }
      .cta-banner-inner {
        grid-template-columns: 1fr !important;
        text-align: center !important;
      }
      img { max-width: 100% !important; height: auto !important; }
    }
  
  /* ===== DROPDOWN MENU (Servicii) ===== */
  .nav-dropdown { position: relative; display: inline-flex; align-items: center; flex-shrink: 0; }
  .nav-dropdown-toggle {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--navy);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    transition: var(--transition);
  }
  .nav-dropdown-toggle:hover { color: var(--navy-light); }
  .nav-dropdown-menu a::after { display: none !important; }
  .nav-dropdown-chevron {
    display: inline-block;
    width: 0.4em;
    height: 0.4em;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -0.2em;
    vertical-align: middle;
    transition: transform 0.25s ease;
    opacity: 0.65;
    flex-shrink: 0;
  }
  .nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    transform: none;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(14,31,112,0.18);
    min-width: 268px;
    z-index: 10050;
    padding: 10px 0;
    border: 1px solid rgba(14,31,112,0.08);
    border-top: 3px solid #C9A84C;
    list-style: none;
  }
  .nav-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 14px;
    z-index: 10049;
  }
  .nav-dropdown-menu a {
    display: block;
    padding: 12px 22px;
    color: #1a2b4a !important;
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
  }
  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a:focus-visible {
    background: #f0f3fc;
    color: #C9A84C !important;
    outline: none;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
  }
  @media (max-width: 768px) {
    .nav-dropdown { display: block; width: 100%; }
    .nav-dropdown:hover .nav-dropdown-menu {
      display: none !important;
    }
    .nav-dropdown:focus-within .nav-dropdown-menu {
      display: none !important;
    }
    .nav-dropdown.open .nav-dropdown-menu {
      display: block !important;
    }
    .nav-dropdown-toggle {
      width: 100%;
      justify-content: space-between;
      box-sizing: border-box;
      padding: 11px clamp(16px, 4.5vw, 20px);
      min-height: 44px;
      font-size: 0.9375rem;
      border-radius: 8px;
    }
    .nav-dropdown-chevron {
      width: 0.5em;
      height: 0.5em;
      opacity: 0.85;
    }
    .nav-dropdown.open .nav-dropdown-chevron {
      transform: rotate(-135deg);
      margin-top: 0.15em;
    }
    .nav-dropdown-menu {
      position: static;
      box-shadow: inset 0 1px 0 rgba(14,31,112,0.06);
      border: none;
      border-radius: 0 0 10px 10px;
      background: #eef1fb;
      padding: 6px 0 10px;
      margin: 0 clamp(8px, 2vw, 12px) 4px;
      min-width: 0;
      border-top: 2px solid rgba(201,168,76,0.45);
    }
    .nav-dropdown-menu a {
      padding: 12px 20px 12px 28px;
      font-size: 0.9rem;
      white-space: normal;
      min-height: 44px;
      display: flex;
      align-items: center;
      border-radius: 6px;
      margin: 2px 8px;
    }
    .nav-dropdown-menu a:active {
      background: #e4e9f8;
    }
  }

  /* ===== SVG SIZE FIX (fără [class*="-icon"] — prindea .implant-faq-icon și tăia textul +/-) ===== */
  .srv-why-item-icon,
  .srv-card-icon,
  .ebd-cookie-icon {
    overflow: hidden !important;
  }
  .srv-why-item-icon svg,
  .srv-card-icon svg,
  .ebd-cookie-icon svg,
  .site-header nav svg,
  .site-header button svg,
  .sticky-call-bar a svg {
    width: 1em !important;
    height: 1em !important;
    max-width: 28px !important;
    max-height: 28px !important;
    display: inline-block !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
  }

.page-hero-btns{display:flex;gap:16px;flex-wrap:wrap;}

.implant-intro{
  background:var(--white);
  padding:clamp(56px,7vw,76px) clamp(18px,4vw,28px) clamp(52px,6.5vw,72px);
}
.implant-intro-inner{
  max-width:1180px;
  margin:0 auto;
}
.implant-intro-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:clamp(28px,3.5vw,40px);
  align-items:center;
}
.implant-intro-copy{
  min-width:0;
}
.implant-intro-copy h2{
  font-family:var(--font-display);
  font-size:clamp(1.75rem,3vw,2.25rem);
  font-weight:600;
  color:var(--navy);
  text-align:left;
  margin:0 0 14px;
  line-height:1.2;
  max-width:min(100%,28rem);
  letter-spacing:-0.01em;
}
.implant-intro-sub{
  margin:0 0 18px;
  font-size:1.05rem;
  line-height:1.58;
  font-weight:500;
  color:#3d4a63;
  max-width:36em;
}
.implant-intro-lead{
  margin:0 0 12px;
  font-size:1.04rem;
  line-height:1.72;
  color:var(--text);
  max-width:34em;
}
.implant-intro-lead:last-of-type{
  margin-bottom:16px;
}
.implant-intro-trust{
  list-style:none;
  margin:0 0 22px;
  padding:0;
  max-width:36em;
}
.implant-intro-trust li{
  position:relative;
  padding-left:1.45em;
  margin-bottom:10px;
  font-size:0.96rem;
  line-height:1.5;
  color:#3d4a63;
}
.implant-intro-trust li:last-child{
  margin-bottom:0;
}
.implant-intro-trust li::before{
  content:'\2713';
  position:absolute;
  left:0;
  top:0.05em;
  color:var(--gold);
  font-weight:700;
  font-size:0.95em;
}
.implant-intro-cta{
  margin:0;
}
.implant-intro-cta .btn-primary,
.implant-intro-cta .btn-primary:visited{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:13px 28px;
  box-sizing:border-box;
  background:var(--navy);
  color:var(--white);
  border:2px solid var(--navy);
  border-radius:10px;
  text-decoration:none;
  box-shadow:0 6px 20px rgba(14,31,112,0.22);
  transition:background 0.2s ease,border-color 0.2s ease,box-shadow 0.2s ease,transform 0.2s ease;
}
.implant-intro-cta .btn-primary:hover{
  background:var(--navy-dark);
  border-color:var(--navy-dark);
  color:var(--white);
  box-shadow:0 10px 28px rgba(14,31,112,0.28);
  transform:translateY(-2px);
}
/* Aliniere butoane final CTA — detalii în blocul .implant-final-cta */
.implant-final-cta-actions .btn-primary,
.implant-final-cta-actions .btn-secondary{
  align-items:center;
  justify-content:center;
  box-sizing:border-box;
}
.implant-intro-media{
  position:relative;
  width:100%;
  max-width:100%;
  min-width:0;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 36px rgba(14,31,112,0.11);
  background:#eef1f7;
  aspect-ratio:4/3;
  max-height:min(520px,60vh);
  align-self:center;
}
.implant-intro-img{
  width:100%;
  max-width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  border-radius:16px;
}
@media (max-width:900px){
  .implant-intro-grid{
    grid-template-columns:1fr;
    gap:22px;
  }
  .implant-intro-media{
    width:100%;
    max-width:100%;
    margin:0;
    max-height:min(480px,56vh);
  }
  .implant-intro-copy h2{
    max-width:none;
    text-align:left;
  }
}
@media (max-width:768px){
  .implant-intro{
    padding:clamp(44px,9vw,64px) clamp(16px,4.5vw,22px);
  }
  .implant-intro-sub{
    font-size:1rem;
    margin-bottom:16px;
  }
  .implant-intro-lead{
    font-size:1rem;
    line-height:1.7;
  }
  .implant-intro-trust{
    margin-bottom:20px;
  }
  .implant-intro-cta .btn-primary{
    width:100%;
    max-width:22rem;
  }
}

.implant-need{
  background:linear-gradient(180deg,#f4f6fa 0%,#eef1f7 100%);
  padding:clamp(52px,6.5vw,76px) clamp(18px,4vw,28px) clamp(56px,7vw,80px);
}
.implant-need-inner{
  max-width:1180px;
  margin:0 auto;
}
.implant-need h2{
  font-family:var(--font-display);
  font-size:clamp(1.75rem,3vw,2.25rem);
  font-weight:600;
  color:var(--navy);
  text-align:center;
  margin:0 auto clamp(20px,2.5vw,28px);
  line-height:1.2;
  max-width:min(100%,36rem);
  letter-spacing:-0.01em;
}
.implant-need-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:clamp(16px,2vw,22px);
}
.implant-need-card{
  background:var(--white);
  border-radius:18px;
  padding:22px 24px 21px;
  box-shadow:0 4px 22px rgba(14,31,112,0.06),0 1px 0 rgba(255,255,255,0.9) inset;
  box-sizing:border-box;
  border:1px solid rgba(14,31,112,0.065);
  transition:box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}
.implant-need-card-title{
  font-family:var(--font-body);
  font-size:1.0625rem;
  font-weight:700;
  color:var(--navy);
  margin:0 0 8px;
  line-height:1.32;
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.implant-need-card-title::before{
  content:'';
  flex-shrink:0;
  width:6px;
  height:6px;
  border-radius:50%;
  margin-top:0.42em;
  background:radial-gradient(circle at 30% 30%,var(--gold-light),var(--gold));
  box-shadow:0 0 0 1px rgba(201,168,76,0.2);
}
@media (hover:hover){
  .implant-need-card:hover{
    box-shadow:0 10px 32px rgba(14,31,112,0.1);
    transform:translateY(-2px);
    border-color:rgba(14,31,112,0.09);
  }
}
.implant-need-card-text{
  margin:0;
  font-size:0.98rem;
  line-height:1.66;
  color:#556070;
  max-width:42em;
}
@media (max-width:768px){
  .implant-need{
    padding:clamp(44px,9vw,64px) clamp(16px,4.5vw,22px);
  }
  .implant-need-grid{
    grid-template-columns:1fr;
    gap:14px;
  }
  .implant-need h2{
    margin-bottom:20px;
    max-width:none;
  }
}

.implant-process{
  position:relative;
  z-index:1;
  isolation:isolate;
  background-color:#f7f8fb;
  background-image:none;
  padding:clamp(56px,7vw,92px) clamp(18px,4vw,28px);
}
/* Fără pseudo-elemente sau straturi care pot prinde artefacte vizuale / bleed de fundal */
.implant-process::before,
.implant-process::after{
  content:none !important;
  display:none !important;
}
.implant-process .container{
  position:relative;
  z-index:1;
  max-width:1240px;
  margin:0 auto;
  background:none;
  background-image:none;
}
.implant-process h2{
  position:relative;
  z-index:1;
  font-family:var(--font-display);
  font-size:clamp(1.75rem,3vw,2.25rem);
  font-weight:600;
  color:var(--navy);
  text-align:center;
  margin:0 0 14px;
  line-height:1.2;
  letter-spacing:-0.01em;
  background:none;
  background-image:none;
}
.implant-process .section-subtitle{
  position:relative;
  z-index:1;
  text-align:center;
  max-width:700px;
  margin:0 auto clamp(48px,5.5vw,72px);
  font-size:1rem;
  line-height:1.72;
  color:var(--gray);
  background:none;
  background-image:none;
}
.implant-process .process-steps{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:clamp(22px,2.4vw,32px);
  margin-top:0;
  align-items:stretch;
  background:none;
  background-image:none;
}
/* Linie de proces discretă — doar desktop 5 coloane (în spatele cardurilor) */
@media (min-width:1025px){
  .implant-process .process-steps::before{
    content:'';
    position:absolute;
    left:6%;
    right:6%;
    top:calc(30px + 26px);
    height:1px;
    z-index:0;
    pointer-events:none;
    background:linear-gradient(
      90deg,
      transparent 0%,
      rgba(201,168,76,0.14) 12%,
      rgba(14,31,112,0.07) 50%,
      rgba(201,168,76,0.14) 88%,
      transparent 100%
    );
    opacity:0.85;
  }
}
.implant-process .process-step{
  position:relative;
  z-index:1;
  background:linear-gradient(165deg,#ffffff 0%,#fafbfd 100%);
  border:1px solid rgba(26,20,100,0.07);
  border-radius:18px;
  padding:30px 28px 32px;
  box-shadow:0 8px 24px rgba(0,0,0,0.04);
  text-align:left;
  box-sizing:border-box;
  display:flex;
  flex-direction:column;
  min-height:100%;
  transition:transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
@media (hover:hover){
  .implant-process .process-step:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 32px rgba(14,31,112,0.09);
    border-color:rgba(26,20,100,0.1);
  }
}
.implant-process .step-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:52px;
  height:52px;
  border-radius:50%;
  background:linear-gradient(155deg,#ead695 0%,var(--gold) 52%,#b8923f 100%);
  color:var(--navy-dark);
  font-weight:600;
  font-size:1.125rem;
  line-height:1;
  margin-bottom:18px;
  flex-shrink:0;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.45) inset,
    0 6px 16px rgba(201,168,76,0.28),
    0 0 0 1px rgba(201,168,76,0.12);
}
.implant-process .process-step h3{
  font-family:var(--font-body);
  font-size:1.1875rem;
  font-weight:700;
  color:var(--navy);
  margin:0 0 14px;
  line-height:1.32;
  letter-spacing:-0.015em;
}
.implant-process .process-step p{
  margin:0;
  max-width:100%;
  font-size:0.98rem;
  line-height:1.62;
  color:#5e6778;
  flex-grow:1;
}
/* Tabletă: 2 coloane — fără linie de conectare */
@media (max-width:1024px) and (min-width:769px){
  .implant-process .process-steps{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:clamp(18px,2.2vw,24px);
  }
  .implant-process .process-steps::before{
    display:none;
  }
}
@media (max-width:768px){
  .implant-process{
    padding:clamp(44px,9vw,68px) clamp(16px,4.5vw,22px);
  }
  .implant-process .section-subtitle{
    margin-bottom:clamp(32px,6vw,44px);
  }
  .implant-process .process-steps{
    grid-template-columns:1fr;
    gap:20px;
  }
  .implant-process .process-steps::before{
    display:none;
  }
  .implant-process .process-step{
    padding:24px 22px 26px;
    border-radius:16px;
  }
  .implant-process .step-number{
    width:48px;
    height:48px;
    font-size:1.0625rem;
    font-weight:600;
  }
}

.allon4-section{
  position:relative;
  background:#f4f5f7;
  padding:clamp(56px,7vw,88px) clamp(18px,4vw,28px);
  overflow:hidden;
}
.allon4-section::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background:linear-gradient(90deg,var(--navy) 0%,var(--gold) 100%);
  opacity:0.95;
}
.allon4-section .container{
  max-width:1100px;
  margin:0 auto;
}
.allon4-grid,
.section-allonx{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(48px,5vw,72px);
  align-items:start;
}
.section-allonx{
  background:#f4f5f7;
  padding:0;
}
.allon4-text{
  max-width:520px;
  align-self:start;
  padding-top:2px;
}
.allon4-text h2{
  font-family:var(--font-display);
  font-size:clamp(1.75rem,3vw,2.25rem);
  font-weight:600;
  color:var(--navy);
  line-height:1.2;
  margin:0 0 18px;
}
.allon4-text p{
  margin:0 0 14px;
  font-size:1rem;
  line-height:1.7;
  color:var(--gray);
}
.allon4-text p:last-of-type{
  margin-bottom:0;
}
.allon4-text ul{
  list-style:none;
  padding:0;
  margin:20px 0 22px;
}
.allon4-text li{
  margin-bottom:8px;
  line-height:1.55;
  color:var(--text);
  font-size:0.98rem;
}
.allon4-text li:last-child{
  margin-bottom:0;
}
.allon4-section .allon4-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:4px;
  padding:14px 28px;
  border-radius:10px;
  border:none;
  background:linear-gradient(180deg,#e8c97a 0%,#C9A84C 48%,#b8923f 100%);
  color:var(--navy-dark);
  font-weight:700;
  font-size:0.95rem;
  letter-spacing:0.3px;
  text-decoration:none;
  box-shadow:0 10px 28px rgba(201,168,76,0.35),0 4px 12px rgba(14,31,112,0.08);
  transition:var(--transition,all 0.3s ease);
}
.allon4-section .allon4-cta:hover{
  background:linear-gradient(180deg,#f0d68f 0%,#d4b55d 50%,#c9a84c 100%);
  transform:translateY(-2px);
  box-shadow:0 14px 36px rgba(201,168,76,0.42);
}
.allon4-section .allon4-cta.btn-primary{
  min-height:48px;
  box-sizing:border-box;
}
.allon4-visual{
  display:flex;
  align-items:flex-start;
  justify-content:center;
  align-self:start;
  min-height:0;
}
.allon4-visual-inner{
  width:100%;
  max-width:520px;
  margin:0 auto;
  box-sizing:border-box;
}
.section-allonx-visual{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  background:transparent;
  padding:0;
  margin:0;
}
.allonx-card{
  background:#f9f9fb;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 10px 32px rgba(0, 0, 0, 0.07);
}
.allonx-image{
  width:100%;
  height:320px;
  display:block;
  object-fit:cover;
  object-position:center;
  border-radius:0;
  margin:0;
  padding:0;
}
.allonx-testimonial{
  margin:0;
  padding:14px 18px 16px;
  background:#f9f9fb;
  border-top:none;
}
.allonx-testimonial p{
  margin:0;
  font-size:14px;
  line-height:1.36;
  font-style:italic;
  color:rgba(26, 26, 46, 0.92);
}
.allonx-testimonial span{
  display:block;
  margin-top:5px;
  font-size:10px;
  letter-spacing:0.02em;
  color:rgba(107, 111, 123, 0.95);
  opacity:0.65;
}
@media (max-width:900px){
  .allon4-grid,
  .section-allonx{
    grid-template-columns:1fr;
    gap:36px;
  }
  .allon4-text{
    max-width:640px;
    margin:0 auto;
    text-align:center;
    padding-top:0;
  }
  .allon4-text ul{
    text-align:left;
    max-width:420px;
    margin-left:auto;
    margin-right:auto;
  }
  .allon4-section .allon4-cta{
    width:100%;
    max-width:22rem;
    margin-top:6px;
  }
}
@media (max-width:768px){
  .allon4-section{
    padding:clamp(56px,12vw,80px) 20px;
  }
  .allonx-image{
    height:280px;
  }
  .allonx-card{
    border-radius:20px;
  }
  .allonx-testimonial{
    padding:12px 16px 14px;
  }
  .allonx-testimonial p{
    font-size:13px;
    line-height:1.38;
  }
}

.implant-faq-section{
  background:#ffffff;
  padding:clamp(56px,7vw,88px) clamp(18px,4vw,28px) clamp(48px,6vw,76px);
}
.implant-faq-container{
  max-width:1100px;
  margin:0 auto;
}
.implant-faq-heading{
  font-family:var(--font-display);
  font-size:clamp(1.75rem,3vw,2.25rem);
  font-weight:600;
  color:var(--navy);
  text-align:center;
  line-height:1.2;
  margin:0 0 14px;
}
.implant-faq-subtitle{
  font-size:1rem;
  line-height:1.7;
  color:var(--gray);
  text-align:center;
  max-width:640px;
  margin:0 auto clamp(28px,3.5vw,40px);
}
.implant-faq-list{
  max-width:900px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.implant-faq-item{
  background:#ffffff;
  border:1px solid rgba(20,20,40,0.06);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0, 0, 0, 0.04);
  transition:background 0.25s ease, box-shadow 0.25s ease;
}
.implant-faq-item:not(.is-open):hover{
  background:#fafafa;
  box-shadow:0 8px 22px rgba(0, 0, 0, 0.06);
}
.implant-faq-item.is-open{
  background:#ffffff;
  box-shadow:0 10px 28px rgba(0, 0, 0, 0.09);
  border:1px solid rgba(20,20,40,0.06);
}
.implant-faq-item.is-open:hover{
  background:#ffffff;
  box-shadow:0 12px 30px rgba(0, 0, 0, 0.1);
}
.implant-faq-question:focus{
  outline:none;
}
.implant-faq-question:focus-visible{
  outline:2px solid rgba(14, 31, 112, 0.35);
  outline-offset:2px;
}
.implant-faq-question{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
  width:100%;
  margin:0;
  padding:22px 24px;
  border:none;
  background:transparent;
  cursor:pointer;
  text-align:left;
  font-family:var(--font-body);
  font-size:20px;
  font-weight:700;
  color:var(--navy-dark);
  line-height:1.4;
  transition:background 0.25s ease;
}
.implant-faq-q-text{
  flex:1;
  min-width:0;
  padding-top:0.06em;
}
.implant-faq-icon{
  flex-shrink:0;
  font-size:19px;
  font-weight:500;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:24px;
  height:1.4em;
  margin-top:0.04em;
  color:var(--gold);
  transition:transform 0.25s ease;
}
.implant-faq-answer{
  max-height:0;
  opacity:0;
  overflow:hidden;
  padding:0 24px;
  transform:translateY(-6px);
  border-top:none;
  transition:max-height 0.35s ease, opacity 0.3s ease, transform 0.3s ease, padding 0.3s ease, border-top 0.2s ease;
}
.implant-faq-item.is-open .implant-faq-answer,
.implant-faq-question[aria-expanded="true"] + .implant-faq-answer{
  max-height:480px;
  opacity:1;
  padding:12px 24px 22px;
  transform:translateY(0);
  border-top:2px solid rgba(201, 168, 76, 0.8);
}
.implant-faq-a{
  font-size:17px;
  line-height:1.72;
  color:#525a66;
  margin:0;
  font-weight:400;
  letter-spacing:0.01em;
}
@media (max-width:768px){
  .implant-faq-heading{
    font-size:clamp(1.5rem,5vw,1.75rem);
    line-height:1.2;
  }
  .implant-faq-subtitle{
    font-size:0.98rem;
    color:var(--gray);
    margin:0 auto 26px;
  }
  .implant-faq-section{
    padding:clamp(48px,10vw,64px) 20px 48px;
  }
  .implant-faq-question{
    padding:20px 20px;
    font-size:18px;
    line-height:1.4;
  }
  .implant-faq-answer{
    padding:0 20px;
  }
  .implant-faq-item.is-open .implant-faq-answer{
    padding:10px 20px 20px;
  }
  .implant-faq-a{
    font-size:16px;
    line-height:1.72;
    color:#525a66;
  }
}

/* Final CTA — conversie */
.implant-final-cta {
  background: #ffffff;
  padding: clamp(80px, 9vw, 100px) clamp(18px, 4vw, 28px) clamp(88px, 10vw, 112px);
}
.implant-faq-section + .implant-final-cta { padding-top: clamp(56px, 7vw, 72px); }
.implant-final-cta .container { max-width: 1100px; margin: 0 auto; }
.implant-final-cta-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.implant-final-cta .cta-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}
.implant-final-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--navy);
  font-weight: 600;
}
.implant-final-cta-lead {
  max-width: 34em;
  margin: 0 auto 28px;
  font-size: 1.02rem;
  line-height: 1.68;
  color: #5c6370;
}
.implant-final-cta-benefits {
  list-style: none;
  margin: 0 auto 36px;
  padding: 0;
  max-width: 26rem;
  text-align: left;
}
.implant-final-cta-benefits li {
  position: relative;
  padding-left: 1.35em;
  margin-bottom: 10px;
  font-size: 0.94rem;
  line-height: 1.55;
  color: #6b7285;
}
.implant-final-cta-benefits li:last-child {
  margin-bottom: 0;
}
.implant-final-cta-benefits li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0.06em;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9em;
}
.implant-final-cta-actions {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.implant-final-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 32px;
  box-sizing: border-box;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(14, 31, 112, 0.22);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.implant-final-cta .btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  box-shadow: 0 10px 28px rgba(14, 31, 112, 0.28);
  transform: translateY(-2px);
}
.implant-final-cta .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  min-height: 50px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.35px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  border: 2px solid var(--navy);
  box-sizing: border-box;
}
.implant-final-cta .btn-secondary:hover {
  background: rgba(14, 31, 112, 0.06);
  border-color: var(--navy);
  color: var(--navy-dark);
}
.implant-final-cta-trust {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #8b92a3;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .implant-final-cta {
    padding: clamp(64px, 12vw, 88px) clamp(16px, 4.5vw, 22px) clamp(72px, 14vw, 96px);
  }
  .implant-faq-section + .implant-final-cta { padding-top: clamp(40px, 8vw, 56px); }
  .implant-final-cta .cta-eyebrow { font-size: 0.62rem; letter-spacing: 0.12em; margin-bottom: 10px; }
  .implant-final-cta-inner h2 { font-size: clamp(1.35rem, 5vw, 1.85rem); margin-bottom: 14px; }
  .implant-final-cta-lead { font-size: 0.98rem; margin-bottom: 24px; }
  .implant-final-cta-benefits { margin-bottom: 32px; }
  .implant-final-cta-benefits li { font-size: 0.92rem; }
  .implant-final-cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-bottom: 22px;
  }
  .implant-final-cta .btn-primary,
  .implant-final-cta .btn-secondary {
    width: 100%;
    max-width: none;
    min-height: 50px;
    box-sizing: border-box;
  }
  .implant-final-cta-trust { font-size: 0.8rem; padding: 0 4px; }
  .btn-outline { min-height: 44px; align-items: center; justify-content: center; }
}

@media (min-width: 769px) {
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
}
