
:root{
  --green:#69bd45;
  --green-dark:#478f2e;
  --orange:#f39a1d;
  --orange-dark:#ca7100;
  --ink:#17202d;
  --line:#e8edf2;
  --white:#fff;
  --page:#f4f6f8;
  --header-shadow:0 8px 26px rgba(17,24,39,.07);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:linear-gradient(180deg,#eef3f6 0%, #f7fafc 100%);
  color:var(--ink);
  font-family:"Segoe UI","Helvetica Neue",Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img{display:block;max-width:100%}
button,a{font:inherit}
.container{width:min(1280px,calc(100% - 30px));margin:auto}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  overflow:hidden;
  background:
    radial-gradient(circle at 10% 50%, rgba(105,189,69,.18), transparent 26%),
    radial-gradient(circle at 88% 44%, rgba(105,189,69,.18), transparent 30%),
    linear-gradient(90deg,#eaf4e5 0%, #f3f8ef 34%, #eaf4e5 100%);
  border-bottom:1px solid #cbd5c5;
  box-shadow:0 12px 30px rgba(17,24,39,.09);
  backdrop-filter:blur(14px);
}

.site-header::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0 18px,
      rgba(17,24,39,.018) 18px 19px
    );
  opacity:.22;
  pointer-events:none;
}

.site-header::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  background:linear-gradient(90deg, rgba(105,189,69,.22), rgba(105,189,69,.22));
  pointer-events:none;
}

.header-inner{
  position:relative;
  z-index:2;
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:12px 0 16px;
}

.logo{
  flex:0 0 auto;
  text-decoration:none;
}

.logo img{
  width:235px;
  height:auto;
}

.main-nav{margin-left:auto}

.menu{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  margin:0;
  padding:0;
  list-style:none;
}

/* Kullanıcının son attığı referansa uygun beyaz gövdeli, solda renkli eğimli alanlı menü */
.menu-link{
  --accent:#f15b97;
  --accent-dark:#d54d84;
  --bg1:rgba(241,91,151,.15);
  --bg2:rgba(241,91,151,.07);
  --text:#111111;

  position:relative;
  min-width:156px;
  height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  padding:0 18px 0 78px;
  overflow:hidden;
  border:1px solid #dde4ea;
  border-radius:999px;
  color:var(--text);
  text-decoration:none;
  background:linear-gradient(180deg,#ffffff 0%, #f5f7f9 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    0 2px 0 rgba(0,0,0,.04),
    0 10px 18px rgba(18,26,41,.11);
  transition:transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

.menu-link::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:64px;
  height:100%;
  background:linear-gradient(180deg,#9fdd86 0%, #69bd45 100%);
  border-radius:999px 0 0 999px;
}

.menu-link::after{
  content:"";
  position:absolute;
  left:44px;
  top:0;
  width:24px;
  height:100%;
  background:linear-gradient(180deg,#8ccf72 0%, #56a93a 100%);
  transform:skewX(24deg);
  box-shadow:10px 0 14px rgba(86,169,58,.20);
}

.menu-link:hover{
  transform:translateY(-2px);
  filter:brightness(1.01) saturate(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 2px 0 rgba(0,0,0,.05),
    0 14px 24px rgba(18,26,41,.14);
}

.menu-link:active{
  transform:translateY(1px);
  box-shadow:
    0 1px 0 rgba(0,0,0,.05),
    0 4px 8px rgba(18,26,41,.12);
}

.menu-link.orange{--accent:#f68b1f;--accent-dark:#d86f09;--bg1:#fff;--bg2:#f5f7f9;--text:#111111}
.menu-link.green{--accent:#48bd4e;--accent-dark:#379a3d;--bg1:#fff;--bg2:#f5f7f9;--text:#111111}
.menu-link.purple{--accent:#a565bc;--accent-dark:#8d52a2;--bg1:#fff;--bg2:#f5f7f9;--text:#111111}
.menu-link.red{--accent:#f2453f;--accent-dark:#d6322c;--bg1:#fff;--bg2:#f5f7f9;--text:#111111}
.menu-link.mint{--accent:#62cdb1;--accent-dark:#4ab59a;--bg1:#fff;--bg2:#f5f7f9;--text:#111111}
.menu-link.yellow{--accent:#111111;--accent-dark:#000000;--bg1:#fff;--bg2:#f5f7f9;--text:#111111}

.menu-icon{
  position:absolute;
  left:15px;
  top:50%;
  transform:translateY(-50%);
  z-index:2;
  width:24px;
  height:24px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  color:#fff;
  filter:drop-shadow(0 1px 0 rgba(0,0,0,.10));
}

.menu-icon svg{
  width:24px;
  height:24px;
  fill:none;
  stroke:currentColor;
  fill:none;
  stroke-width:2.35;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.menu-text{
  position:relative;
  z-index:2;
  font-size:13.5px;
  line-height:1;
  font-weight:800;
  letter-spacing:.02px;
  white-space:nowrap;
}

.mobile-toggle{
  display:none;
  width:42px;
  height:38px;
  padding:0;
  border:1px solid #dde4ea;
  border-radius:999px;
  background:linear-gradient(180deg,#ffffff 0%, #fbfbfb 100%);
  color:var(--green);
  box-shadow:
    0 2px 0 rgba(0,0,0,.05),
    0 8px 16px rgba(18,26,41,.10);
  cursor:pointer;
}

.mobile-toggle svg{
  width:24px;
  height:22px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.1;
}
/* SLIDER */
.hero-slider{
  position:relative;
  width:100%;
  overflow:hidden;
  background:linear-gradient(90deg,#edf6eb 0%, #ffffff 50%, #fff5ea 100%);
  border-top:1px solid #e5ece5;
  border-bottom:1px solid #e8ecef;
  box-shadow:0 14px 34px rgba(18,26,41,.08);
}

.slides{
  position:relative;
  width:100%;
  aspect-ratio:1916/821;
  min-height:430px;
  max-height:760px;
  overflow:hidden;
}

.slide{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transform:scale(1.012);
  transition:opacity .75s ease,transform 1.1s ease,visibility .75s;
}

.slide.active{
  opacity:1;
  visibility:visible;
  transform:scale(1);
  z-index:2;
}

.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

/* Görsellerde çizilmiş CTA butonlarının üzerine gerçek bağlantı */
.slide-actions{
  position:absolute;
  left:6.55%;
  bottom:13.2%;
  z-index:6;
  display:flex;
  align-items:center;
  gap:1vw;
}

.slide-action{
  display:block;
  width:14.3vw;
  max-width:274px;
  min-width:154px;
  height:4.35vw;
  max-height:84px;
  min-height:48px;
  border-radius:10px;
  color:transparent;
  font-size:0;
  text-decoration:none;
  cursor:pointer;
}

.slide-action.contact{
  width:14.7vw;
  max-width:282px;
}

.slider-arrow{
  position:absolute;
  top:50%;
  z-index:10;
  width:56px;
  height:56px;
  display:grid;
  place-items:center;
  padding:0;
  border:1px solid rgba(255,255,255,.82);
  border-radius:50%;
  color:#203040;
  background:linear-gradient(180deg,rgba(255,255,255,.95) 0%, rgba(243,248,246,.92) 100%);
  box-shadow:0 16px 34px rgba(19,31,41,.18), 0 3px 10px rgba(19,31,41,.08);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  transform:translateY(-50%);
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  overflow:hidden;
}

.slider-arrow::before{
  content:"";
  position:absolute;
  inset:4px;
  border-radius:50%;
  border:1px solid rgba(111,181,73,.18);
  pointer-events:none;
}

.slider-arrow::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.4) 0%, rgba(255,255,255,0) 42%);
  pointer-events:none;
}

.slider-arrow:hover{
  color:#1a7e54;
  background:linear-gradient(180deg,#ffffff 0%, #f4fbf6 100%);
  box-shadow:0 20px 40px rgba(19,31,41,.22), 0 6px 16px rgba(19,31,41,.1);
  transform:translateY(-50%) scale(1.08);
}

.slider-arrow:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(111,181,73,.22), 0 18px 38px rgba(19,31,41,.22);
}

.slider-arrow.prev{left:18px}
.slider-arrow.next{right:18px}
.slider-arrow svg{
  position:relative;
  z-index:1;
  width:24px;
  height:24px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.slider-dots{
  position:absolute;
  z-index:10;
  left:50%;
  bottom:18px;
  display:flex;
  gap:8px;
  transform:translateX(-50%);
}

.slider-dot{
  width:10px;
  height:10px;
  padding:0;
  border:0;
  border-radius:24px;
  background:rgba(255,255,255,.65);
  box-shadow:0 2px 7px rgba(0,0,0,.15);
  cursor:pointer;
  transition:.22s ease;
}

.slider-dot.active{
  width:30px;
  background:var(--green);
}

.slider-progress{
  position:absolute;
  z-index:12;
  left:0;
  right:0;
  bottom:0;
  height:4px;
  background:rgba(255,255,255,.25);
}

.slider-progress span{
  display:block;
  width:0;
  height:100%;
  background:linear-gradient(90deg,var(--green),var(--orange));
}

.slider-progress span.run{
  animation:sliderProgress 5.5s linear forwards;
}

@keyframes sliderProgress{
  from{width:0}
  to{width:100%}
}

/* RESPONSIVE */
@media(max-width:1180px){
  .header-inner{
    align-items:flex-start;
    flex-wrap:wrap;
  }

  .main-nav{
    width:100%;
    margin-left:0;
  }

  .menu{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  .menu-link{width:100%}
}

@media(max-width:680px){
  .container{width:min(100% - 20px,1280px)}

  .header-inner{
    min-height:72px;
    align-items:center;
  }

  .logo img{width:198px}

  .mobile-toggle{
    display:grid;
    place-items:center;
  }

  .main-nav{
    display:none;
    order:3;
  }

  .main-nav.open{display:block}

  .menu{
    grid-template-columns:repeat(2,minmax(0,1fr));
    padding-top:4px;
  }

  .hero-slider{
    background:linear-gradient(180deg,#edf6eb 0%, #ffffff 55%, #fff5ea 100%);
  }

  .slides{
    height:auto;
    min-height:0;
    aspect-ratio:1916 / 821;
    background:linear-gradient(180deg,#edf6eb 0%, #ffffff 55%, #fff5ea 100%);
  }

  .slide{
    transform:none;
  }

  .slide img{
    object-fit:contain;
    object-position:center center;
    padding:0;
  }

  .slide-actions{
    left:6%;
    right:6%;
    bottom:10%;
    gap:8px;
  }

  .slide-action{
    width:22vw;
    min-width:128px;
    height:6vw;
    min-height:44px;
  }

  .slide-action.contact{width:23vw}

  .slider-arrow{
    display:none;
  }

  .slider-dots{
    bottom:7px;
  }
}

@media(max-width:520px){
  .logo img{width:176px}
  .menu{grid-template-columns:1fr}

  .slides{
    height:auto;
    min-height:0;
    aspect-ratio:1916 / 821;
  }

  .slide img{
    object-fit:contain;
    object-position:center center;
    padding:0;
  }

  .slide-actions{
    left:5%;
    right:5%;
    bottom:8%;
    gap:7px;
  }

  .slide-action,
  .slide-action.contact{
    width:calc(50% - 3.5px);
    min-width:0;
    height:44px;
  }

  .slider-dots{bottom:6px}
}




/* Uzun menü başlıkları için daha geniş alan */
.menu li:nth-child(3) .menu-link{
  min-width:178px;
}
.menu li:nth-child(5) .menu-link{
  min-width:170px;
}
.menu li:nth-child(6) .menu-link{
  min-width:150px;
}


/* Menü ile slider arasındaki boşluk kaldırıldı */
main{
  padding-top:0;
  background:linear-gradient(180deg,#eef3f6 0%, #f7fafc 100%);
}

@media(max-width:680px){
  .site-header{
    background:
      radial-gradient(circle at 18% 30%, rgba(105,189,69,.17), transparent 28%),
      radial-gradient(circle at 82% 30%, rgba(105,189,69,.17), transparent 30%),
      linear-gradient(90deg,#eaf4e5 0%, #f3f8ef 34%, #eaf4e5 100%);
  }
}


/* EKLENEN İÇERİK BÖLÜMLERİ — mevcut header ve slider stillerine dokunmaz */
.content-section{padding:88px 20px}.section-inner{width:min(1220px,100%);margin:auto}.section-heading{text-align:center;margin-bottom:44px}.section-kicker{display:inline-flex;align-items:center;gap:9px;color:#1587b8;font-size:13px;font-weight:800;letter-spacing:.14em;text-transform:uppercase}.section-heading h2,.cta-copy h2{margin:12px 0 0;font-size:clamp(34px,4vw,54px);line-height:1.06;letter-spacing:-.035em}.section-heading p{max-width:720px;margin:15px auto 0;color:#6b7785;font-size:17px;line-height:1.7}


.about-section{
  position:relative;
  overflow:hidden;
  padding:105px 20px 96px;
  background:
    radial-gradient(circle at 12% 14%, rgba(123,198,77,.08), transparent 22%),
    radial-gradient(circle at 88% 86%, rgba(244,155,29,.09), transparent 22%),
    linear-gradient(180deg,#f7f8f4 0%, #f3f4f2 100%);
}
.about-section::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:linear-gradient(rgba(20,29,40,.028) 1px,transparent 1px),linear-gradient(90deg,rgba(20,29,40,.028) 1px,transparent 1px);
  background-size:38px 38px;
  mask-image:linear-gradient(180deg,transparent,black 12%,black 88%,transparent);
  pointer-events:none;
}
.about-inner{position:relative;z-index:1}
.about-grid{
  display:grid;
  grid-template-columns:minmax(0,.88fr) minmax(500px,1.12fr);
  gap:42px;
  align-items:center;
}
.about-content{max-width:620px}
.about-kicker{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 18px;
  border-radius:999px;
  color:#3f9630;
  background:#edf6e9;
  border:1px solid #d4e7c8;
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.about-content h2{
  margin:18px 0 16px;
  color:#17202d;
  font-size:clamp(36px,3.9vw,56px);
  line-height:1.02;
  letter-spacing:-.04em;
  font-weight:900;
}
.about-lead{
  margin:0 0 18px;
  color:#2c8b32 !important;
  font-size:20px !important;
  line-height:1.62 !important;
  font-weight:700;
}
.about-content p{
  margin:0 0 14px;
  color:#5d6a77;
  font-size:15px;
  line-height:1.78;
}
.about-button{
  display:inline-flex;
  align-items:center;
  gap:14px;
  margin-top:16px;
  min-height:56px;
  padding:0 24px;
  border-radius:14px;
  color:#fff;
  background:linear-gradient(135deg,#69bd45,#4e9f34);
  text-decoration:none;
  font-weight:900;
  box-shadow:0 16px 32px rgba(76,155,53,.22);
  transition:transform .2s ease, box-shadow .2s ease;
}
.about-button:hover{transform:translateY(-3px);box-shadow:0 20px 38px rgba(76,155,53,.28)}
.about-button svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

.about-visual{
  display:flex;
  justify-content:flex-end;
  padding-right:0;
}
.about-visual-board{
  position:relative;
  width:min(660px,100%);
  min-height:740px;
  overflow:visible;
}
.about-visual-board::before{
  content:"";
  position:absolute;
  left:138px;
  top:98px;
  width:360px;
  height:500px;
  border-radius:50%;
  background:radial-gradient(circle at center, rgba(123,198,77,.12) 0%, rgba(123,198,77,.06) 44%, rgba(123,198,77,0) 72%);
  pointer-events:none;
}
.about-center-disc{
  position:absolute;
  left:32px;
  top:206px;
  width:262px;
  height:262px;
  border-radius:50%;
  background:linear-gradient(180deg,#ffffff 0%, #fcfcfc 100%);
  box-shadow:0 24px 48px rgba(31,45,61,.10);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:34px 26px;
  z-index:3;
}
.about-center-disc::after{
  content:"";
  position:absolute;
  inset:-16px;
  border-radius:50%;
  border:1px solid rgba(105,189,69,.18);
  z-index:-1;
}
.about-center-disc img{width:min(205px,90%);height:auto}
.about-center-disc strong{
  display:block;
  margin-top:14px;
  color:#1f2937;
  font-size:18px;
  line-height:1.35;
  font-weight:900;
}
.about-center-disc span{
  display:block;
  margin-top:8px;
  color:#7a8591;
  font-size:13px;
  line-height:1.55;
  font-weight:600;
}
.about-curve,
.about-dot{display:none}
.about-card{
  position:absolute;
  width:160px;
  height:160px;
  min-height:160px;
  padding:24px 20px;
  border-radius:50%;
  background:linear-gradient(180deg,#ffffff 0%, #fcfcfc 100%);
  border:1px solid rgba(105,189,69,.14);
  box-shadow:0 18px 40px rgba(28,42,58,.11);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  transition:transform .22s ease, box-shadow .22s ease;
}
.about-card::before{
  content:"";
  width:40px;
  height:4px;
  border-radius:999px;
  background:linear-gradient(90deg,#69bd45,#f49b1d);
  margin-bottom:8px;
}
.about-card:hover{
  transform:scale(1.16);
  box-shadow:0 32px 60px rgba(28,42,58,.20);
  z-index:8;
}
.about-card:hover::after{
  content:"";
  position:absolute;
  inset:-16px;
  border-radius:50%;
  border:1px solid rgba(105,189,69,.28);
  box-shadow:0 0 0 12px rgba(105,189,69,.06);
  pointer-events:none;
}
.about-card h3{
  margin:0 0 6px;
  color:#2e8d31;
  font-size:15px;
  line-height:1.14;
  font-weight:900;
}
.about-card p{
  margin:0;
  color:#75808b;
  font-size:10.5px;
  line-height:1.42;
  font-weight:600;
}
.point-1{left:274px;top:14px;transform:none}
.point-2{left:391px;top:131px;transform:none}
.point-3{left:434px;top:291px;transform:none}
.point-4{left:391px;top:451px;transform:none}
.point-5{left:274px;top:568px;transform:none}

@media(max-width:1180px){
  .about-grid{grid-template-columns:1fr;gap:48px}
  .about-content{max-width:none;text-align:center}
  .about-button{margin-inline:auto}
  .about-visual{justify-content:center;padding-right:0}
  .about-visual-board{width:min(660px,100%)}
}
@media(max-width:760px){
  .about-section{padding:80px 14px 72px}
  .about-content h2{font-size:38px}
  .about-content p{font-size:15px;line-height:1.76}
  .about-lead{font-size:18px !important}
  .about-visual-board{width:100%;min-height:790px}
  .about-visual-board::before{left:50%;top:188px;transform:translateX(-8%);width:238px;height:408px}
  .about-center-disc{position:relative;left:auto;top:auto;margin:0 auto 28px;width:240px;height:240px}
  .about-card{width:156px;height:156px;min-height:156px;padding:22px 18px;border-radius:50%}
  .about-card::before{width:36px;height:4px;margin-bottom:8px}
  .about-card h3{font-size:14px}
  .about-card p{font-size:10.5px;line-height:1.42}
  .point-1{left:16px;top:18px;transform:none}
  .point-2{right:16px;top:136px;transform:none}
  .point-3{right:22px;top:294px;transform:none}
  .point-4{right:16px;top:452px;transform:none}
  .point-5{left:16px;top:610px;transform:none}
}
@media(max-width:520px){
  .about-section{padding:72px 12px 64px}
  .about-content h2{font-size:32px}
  .about-kicker{font-size:11px;letter-spacing:.1em}
  .about-visual-board{min-height:800px}
  .about-visual-board::before{left:50%;top:206px;transform:translateX(-10%);width:210px;height:360px}
  .about-center-disc{width:220px;height:220px;padding:28px 18px}
  .about-center-disc strong{font-size:16px}
  .about-center-disc span{font-size:12px}
  .about-card{width:146px;height:146px;min-height:146px;padding:18px 14px;border-radius:50%}
  .about-card::before{width:40px;height:4px;margin-bottom:8px}
  .about-card h3{font-size:15px}
  .about-card p{font-size:10px;line-height:1.38}
  .point-1{left:6px;top:18px}
  .point-2{right:6px;top:132px}
  .point-3{right:10px;top:280px}
  .point-4{right:6px;top:428px}
  .point-5{left:6px;top:576px}
}

.medical-check-section{
  position:relative;
  overflow:hidden;
  padding:56px 20px 28px;
  background:#f7f7f7;
}
.medical-check-inner{width:min(1180px,100%);margin:0 auto;position:relative;z-index:1}
.medical-header-bar{
  position:relative;
  background:linear-gradient(180deg,#28aa3f 0%, #39b545 100%);
  border-radius:26px 26px 0 0;
  padding:34px 40px 32px;
  overflow:hidden;
}
.medical-header-bar::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 16% 12%, rgba(255,255,255,.08), transparent 18%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0 2px, transparent 2px 82px);
  opacity:.32;
  pointer-events:none;
}
.medical-content-grid{
  display:grid;
  grid-template-columns:minmax(0,1.02fr) minmax(0,.98fr);
  gap:34px;
  align-items:start;
  background:#f7f7f7;
  border-radius:0 0 26px 26px;
  padding:26px 34px 10px;
  box-shadow:0 20px 40px rgba(17,24,39,.08);
}
.medical-copy-side{display:flex;flex-direction:column;align-items:flex-start}
.medical-title-wrap{position:relative;z-index:1;display:flex;align-items:flex-start;justify-content:flex-start;gap:16px;text-align:left}
.medical-icon-badge{width:58px;height:58px;border-radius:15px;display:grid;place-items:center;font-size:30px;background:linear-gradient(180deg,#46cdf2,#14a9dd);box-shadow:0 14px 24px rgba(10,98,126,.20);transform:rotate(-8deg);flex:0 0 auto}
.medical-heading span{display:block;color:#16351f;font-size:clamp(18px,1.6vw,26px);text-transform:uppercase;letter-spacing:.14em;font-weight:800}
.medical-heading h2{margin:4px 0 0;color:#ffffff;font-size:clamp(34px,3.4vw,54px);line-height:1.02;text-transform:uppercase;letter-spacing:.04em;font-weight:900}
.medical-tests{width:100%;margin:0;display:flex;flex-wrap:wrap;gap:10px;justify-content:flex-start}
.medical-tests span{min-width:140px;min-height:42px;display:inline-flex;align-items:center;justify-content:center;padding:0 14px;border-radius:10px;background:linear-gradient(180deg,#5fb654 0%, #489c40 58%, #378334 100%);color:#ffffff;font-family:Arial,Helvetica,sans-serif;font-size:clamp(14px,1vw,17px);font-weight:700;line-height:1.15;letter-spacing:.01em;text-align:center;border:2px solid #ffffff;box-shadow:0 10px 18px rgba(34,84,28,.24), inset 0 1px 0 rgba(255,255,255,.22);text-shadow:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}

.medical-tests span:hover{transform:translateY(-1px);box-shadow:0 12px 22px rgba(34,84,28,.26), inset 0 1px 0 rgba(255,255,255,.22)}
.medical-note{position:relative;margin-top:22px;width:min(460px,100%);background:linear-gradient(180deg,rgba(188,20,36,.92),rgba(150,16,28,.93));color:#fff;border-radius:18px;padding:18px 18px;box-shadow:0 14px 24px rgba(123,14,24,.24)}
.medical-note p{margin:0;font-size:clamp(13px,0.95vw,15px);line-height:1.65;font-weight:500}
.medical-visual{display:flex;justify-content:flex-end}
.medical-photo-shell{position:relative;width:min(520px,100%)}
.medical-photo-shell img{width:100%;height:560px;object-fit:cover;object-position:center top;display:block;border-radius:22px;box-shadow:0 18px 34px rgba(17,24,39,.14)}
@media(max-width:980px){.medical-check-section{padding:48px 16px 22px}.medical-header-bar{padding:28px 24px 26px}.medical-content-grid{grid-template-columns:1fr;gap:24px;padding:22px 22px 6px}.medical-copy-side{align-items:center}.medical-title-wrap{justify-content:center;text-align:center}.medical-icon-badge{width:52px;height:52px;font-size:27px}.medical-heading span{font-size:18px}.medical-heading h2{font-size:40px}.medical-tests{justify-content:center}.medical-tests span{min-width:132px;min-height:40px;font-size:13px}.medical-note{width:min(560px,100%);margin-top:18px}.medical-photo-shell{width:min(680px,100%)}.medical-photo-shell img{height:500px}.medical-visual{justify-content:center}}
@media(max-width:760px){.medical-check-section{padding:42px 14px 18px}.medical-header-bar{padding:24px 18px 22px;border-radius:22px 22px 0 0}.medical-content-grid{padding:18px 16px 4px;border-radius:0 0 22px 22px}.medical-title-wrap{flex-direction:column;align-items:center}.medical-heading span{font-size:16px;letter-spacing:.08em}.medical-heading h2{font-size:30px}.medical-tests{gap:8px;justify-content:center}.medical-tests span{min-width:calc(50% - 6px);padding:0 10px;min-height:40px;font-size:13px}.medical-photo-shell img{height:auto;max-height:none;border-radius:18px}.medical-note{margin-top:14px;border-radius:16px;padding:16px 14px}}
@media(max-width:520px){.medical-tests span{min-width:100%}}

.services-section{
  position:relative;
  overflow:hidden;
  background:#f1f1ee;
}
.services-section .section-inner{
  width:min(1220px,100%);
  margin:0 auto;
}
.services-heading{
  position:relative;
  text-align:center;
  margin-bottom:54px;
  padding-top:40px;
}
.services-mark{
  position:absolute;
  left:50%;
  top:-72px;
  transform:translateX(-50%);
  font-size:clamp(98px,14.5vw,166px);
  font-weight:900;
  letter-spacing:.04em;
  color:rgba(198,211,183,.42);
  line-height:.8;
  text-shadow:0 10px 24px rgba(88,109,73,.18), 0 2px 0 rgba(255,255,255,.22);
  pointer-events:none;
  user-select:none;
}
.services-heading h2{
  position:relative;
  z-index:1;
  display:inline-block;
  margin:28px 0 0;
  padding:0;
  color:#2d3137;
  background:transparent;
  border-radius:0;
  font-size:clamp(34px,4vw,54px);
  line-height:1.05;
  letter-spacing:.04em;
  font-weight:900;
  box-shadow:none;
}
.services-panels{
  width:min(1100px,100%);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:36px;
  align-items:start;
}
.service-panel{
  background:#f7f7f2;
  border-radius:0 0 30px 30px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(37,48,62,.10);
}
.service-panel-image{
  aspect-ratio: 16 / 9;
  overflow:hidden;
  background:#dfe5dd;
}
.service-panel-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.service-panel-title{
  padding:14px 20px;
  color:#fff;
  font-size:clamp(21px,1.9vw,24px);
  line-height:1.15;
  font-weight:800;
}
.title-green{background:#69bd45}
.title-orange{background:#f39a1d}
.service-button-list{
  list-style:none;
  margin:0;
  padding:24px 22px 26px;
  display:grid;
  gap:14px;
}
.service-button-list li{margin:0}
.service-button-list span{
  position:relative;
  min-height:56px;
  display:flex;
  align-items:center;
  padding:0 18px 0 64px;
  border-radius:999px;
  color:#ffffff;
  font-family:"Segoe UI","Helvetica Neue",Arial,sans-serif;
  font-size:clamp(17px,1.35vw,19px);
  line-height:1;
  font-weight:800;
  letter-spacing:.02px;
  text-shadow:none;
  -webkit-font-smoothing:auto;
  -moz-osx-font-smoothing:auto;
  text-rendering:optimizeLegibility;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 12px 24px rgba(44,53,61,.14), inset 0 1px 0 rgba(255,255,255,.12);
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.service-button-list span::before{
  content:"✓";
  position:absolute;
  left:9px;
  top:50%;
  transform:translateY(-50%);
  width:38px;
  height:38px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.20);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.24), 0 8px 16px rgba(0,0,0,.16);
  font-family:"Segoe UI","Helvetica Neue",Arial,sans-serif;
  font-size:22px;
  font-weight:900;
  line-height:1;
  text-shadow:none;
  -webkit-font-smoothing:auto;
  text-rendering:optimizeLegibility;
  color:#ffffff;
}
.service-button-list span:hover{
  transform:translateY(-2px);
  filter:saturate(1.04);
  box-shadow:0 16px 30px rgba(44,53,61,.18), inset 0 1px 0 rgba(255,255,255,.16);
}
.tone-green li:nth-child(1) span{background:linear-gradient(135deg,#22b573 0%, #169d6a 48%, #127f74 100%)}
.tone-green li:nth-child(2) span{background:linear-gradient(135deg,#22b573 0%, #169d6a 48%, #127f74 100%)}
.tone-green li:nth-child(3) span{background:linear-gradient(135deg,#22b573 0%, #169d6a 48%, #127f74 100%)}
.tone-green li:nth-child(4) span{background:linear-gradient(135deg,#22b573 0%, #169d6a 48%, #127f74 100%)}
.tone-green li:nth-child(5) span{background:linear-gradient(135deg,#22b573 0%, #169d6a 48%, #127f74 100%)}
.tone-green li:nth-child(6) span{background:linear-gradient(135deg,#22b573 0%, #169d6a 48%, #127f74 100%)}
.tone-green li:nth-child(7) span{background:linear-gradient(135deg,#22b573 0%, #169d6a 48%, #127f74 100%)}
.tone-orange li:nth-child(1) span{background:linear-gradient(135deg,#f2a82d 0%, #ea9120 48%, #d97814 100%)}
.tone-orange li:nth-child(2) span{background:linear-gradient(135deg,#f2a82d 0%, #ea9120 48%, #d97814 100%)}
.tone-orange li:nth-child(3) span{background:linear-gradient(135deg,#f2a82d 0%, #ea9120 48%, #d97814 100%)}
.tone-orange li:nth-child(4) span{background:linear-gradient(135deg,#f2a82d 0%, #ea9120 48%, #d97814 100%)}
.tone-orange li:nth-child(5) span{background:linear-gradient(135deg,#f2a82d 0%, #ea9120 48%, #d97814 100%)}
.tone-orange li:nth-child(6) span{background:linear-gradient(135deg,#f2a82d 0%, #ea9120 48%, #d97814 100%)}
.tone-orange li:nth-child(7) span{background:linear-gradient(135deg,#f2a82d 0%, #ea9120 48%, #d97814 100%)}
@media(max-width:980px){
  .services-panels{gap:24px}
  .service-panel-title{font-size:20px}
  .service-button-list span{min-height:50px;padding-left:58px;font-size:16px;line-height:1.12}
  .service-button-list span::before{width:34px;height:34px;font-size:20px}
}
@media(max-width:760px){
  .services-heading{margin-bottom:34px;padding-top:14px}
  .services-mark{top:-34px;font-size:82px;text-shadow:0 8px 20px rgba(88,109,73,.16), 0 2px 0 rgba(255,255,255,.18)}
  .services-heading h2{font-size:34px;margin-top:24px;padding:0;background:transparent;box-shadow:none}
  .services-panels{grid-template-columns:1fr;gap:24px;width:min(560px,100%)}
}
@media(max-width:560px){
  .content-section{padding:70px 14px}
  .services-mark{font-size:60px;top:-18px;text-shadow:0 6px 16px rgba(88,109,73,.14), 0 1px 0 rgba(255,255,255,.14)}
  .services-heading h2{font-size:28px;margin-top:20px;padding:0;background:transparent;box-shadow:none}
  .service-panel-title{padding:12px 16px;font-size:18px}
  .service-button-list{padding:18px 14px 22px;gap:12px}
  .service-button-list span{min-height:48px;padding:0 16px 0 54px;font-size:15px}
  .service-button-list span::before{left:7px;width:32px;height:32px;font-size:18px}
}
.references-section{position:relative;overflow:hidden;background:radial-gradient(circle at 10% 10%,rgba(21,135,184,.11),transparent 34%),radial-gradient(circle at 92% 85%,rgba(105,189,69,.10),transparent 32%),linear-gradient(180deg,#f4f8fb 0%,#eef5f8 100%)}.honeycomb{--hex:clamp(140px,16vw,200px);width:min(1120px,100%);margin:auto;display:grid;grid-template-columns:repeat(8,calc(var(--hex)/2));grid-auto-rows:calc(var(--hex)*.76);justify-content:center;align-items:center;padding:10px 0 30px}.hex{width:var(--hex);aspect-ratio:1.1547/1;position:relative;grid-column:span 2;opacity:0;transform:translateY(55px) scale(.78);filter:blur(5px);transition:opacity .85s ease,transform 1.05s cubic-bezier(.16,1,.3,1),filter .8s ease}.hex:nth-child(1){grid-column:2/span 2}.hex:nth-child(2){grid-column:4/span 2}.hex:nth-child(3){grid-column:6/span 2}.hex:nth-child(4){grid-column:1/span 2}.hex:nth-child(5){grid-column:3/span 2}.hex:nth-child(6){grid-column:5/span 2}.hex:nth-child(7){grid-column:7/span 2}.hex:nth-child(8){grid-column:2/span 2}.hex:nth-child(9){grid-column:4/span 2}.hex:nth-child(10){grid-column:6/span 2}.honeycomb.is-visible .hex{opacity:1;transform:none;filter:none}.honeycomb.is-visible .hex:nth-child(1){transition-delay:0ms}.honeycomb.is-visible .hex:nth-child(2){transition-delay:350ms}.honeycomb.is-visible .hex:nth-child(3){transition-delay:700ms}.honeycomb.is-visible .hex:nth-child(4){transition-delay:1050ms}.honeycomb.is-visible .hex:nth-child(5){transition-delay:1400ms}.honeycomb.is-visible .hex:nth-child(6){transition-delay:1750ms}.honeycomb.is-visible .hex:nth-child(7){transition-delay:2100ms}.honeycomb.is-visible .hex:nth-child(8){transition-delay:2450ms}.honeycomb.is-visible .hex:nth-child(9){transition-delay:2800ms}.honeycomb.is-visible .hex:nth-child(10){transition-delay:3150ms}.hex-shell{position:absolute;inset:0;display:grid;place-items:center;padding:23%;clip-path:polygon(25% 0,75% 0,100% 50%,75% 100%,25% 100%,0 50%);isolation:isolate;filter:drop-shadow(0 15px 22px rgba(30,50,65,.13));transition:.3s ease}.hex-shell::before{content:"";position:absolute;inset:0;clip-path:inherit;background:linear-gradient(135deg,#1587b8,rgba(105,189,69,.45));z-index:-2}.hex-shell::after{content:"";position:absolute;inset:2px;clip-path:inherit;background:linear-gradient(145deg,#fff,#f2f7f9);z-index:-1}.hex img{width:100%;height:100%;object-fit:contain}.hex:hover .hex-shell{transform:translateY(-7px) scale(1.035);filter:drop-shadow(0 22px 28px rgba(30,50,65,.18))}
.contact-cta{padding:75px 20px;background:#172033;color:#fff}.cta-inner{width:min(1160px,100%);margin:auto;display:flex;align-items:center;justify-content:space-between;gap:35px}.section-kicker.light{color:#82d55e}.cta-copy h2{font-size:clamp(30px,3.4vw,46px)}.cta-copy p{margin:14px 0 0;color:#bdc6d3;font-size:17px}.cta-actions{display:flex;gap:12px;flex:0 0 auto}.cta-button{display:inline-flex;align-items:center;justify-content:center;min-height:52px;padding:0 25px;border-radius:10px;text-decoration:none;font-weight:800}.cta-button.primary{background:#69bd45;color:#fff}.cta-button.secondary{background:#fff;color:#ca7100}
.reveal{opacity:0;transform:translateY(28px);transition:opacity .7s ease var(--reveal-delay,0ms),transform .7s cubic-bezier(.2,.8,.2,1) var(--reveal-delay,0ms)}.reveal.is-visible{opacity:1;transform:none}
@media(max-width:900px){.services-infographic-grid{grid-template-columns:1fr;max-width:720px;gap:32px}.services-hero{margin-bottom:40px}.service-card{min-height:0}.service-body{min-height:208px}.honeycomb{grid-template-columns:repeat(2,minmax(0,1fr));grid-auto-rows:auto;gap:14px;width:min(560px,100%)}.hex,.hex:nth-child(n){grid-column:auto;width:100%}.cta-inner{align-items:flex-start;flex-direction:column}}
@media(max-width:560px){.content-section{padding:70px 14px}.services-hero h2{font-size:44px}.services-subtitle{font-size:20px}.services-bars{gap:8px}.services-bars .bar{width:28px;height:3px}.services-infographic-grid{gap:28px}.service-card::before{left:0;right:0;top:10px;bottom:0}.service-body{grid-template-columns:72px 1fr;gap:10px;min-height:0;margin-left:10px;margin-top:18px;padding:22px 18px 20px 18px;border-radius:18px}.service-badge{width:92px;height:72px;padding:12px 0 0 20px;font-size:27px;border-radius:12px 12px 0 0}.service-badge::after{bottom:-18px;height:18px;width:20px}.service-icon{width:62px;height:62px;margin-top:16px}.service-icon svg{width:54px;height:54px}.service-content{padding-top:6px}.service-content strong{font-size:20px;margin-bottom:9px;white-space:normal !important}.service-content span{font-size:14px;line-height:1.48}.honeycomb{grid-template-columns:1fr;width:min(250px,100%)}.cta-actions{width:100%;flex-direction:column}.cta-button{width:100%}}
@media(prefers-reduced-motion:reduce){.reveal,.hex{opacity:1;transform:none;filter:none;transition:none}}

.menu-link.yellow{border-color:#d4dde4; box-shadow:inset 0 1px 0 rgba(255,255,255,.92), 0 2px 0 rgba(0,0,0,.05), 0 10px 18px rgba(18,26,41,.10)}



.tone-green .service-button-list span::before{background:rgba(255,255,255,.20);}
.tone-orange .service-button-list span::before{background:rgba(255,255,255,.22);}


/* FOOTER */
.site-footer{
  position:relative;
  overflow:hidden;
  color:#dce5ec;
  background:
    radial-gradient(circle at 12% 18%,rgba(105,189,69,.12),transparent 25%),
    radial-gradient(circle at 88% 12%,rgba(243,154,29,.10),transparent 24%),
    linear-gradient(135deg,#111a28 0%,#172234 48%,#101827 100%);
}
.site-footer::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.16;
  background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:34px 34px;
}
.footer-accent{height:5px;background:linear-gradient(90deg,#69bd45 0%,#94d86c 45%,#f39a1d 100%)}
.footer-inner{
  position:relative;z-index:1;width:min(1220px,calc(100% - 40px));margin:auto;padding:58px 0 48px;
  display:grid;grid-template-columns:1.35fr .8fr .95fr 1.35fr;gap:46px;
}
.footer-brand{max-width:360px}.footer-logo{display:inline-block}.footer-logo img{width:220px;height:auto;filter:drop-shadow(0 10px 20px rgba(0,0,0,.18))}
.footer-brand p{margin:20px 0 0;color:#aeb9c7;font-size:15px;line-height:1.72}
.footer-column h3{position:relative;margin:5px 0 23px;color:#fff;font-size:17px;line-height:1.2;font-weight:800}
.footer-column h3::after{content:"";position:absolute;left:0;bottom:-10px;width:38px;height:3px;border-radius:4px;background:linear-gradient(90deg,#69bd45,#f39a1d)}
.footer-column ul{list-style:none;margin:0;padding:0;display:grid;gap:12px}
.footer-column li{margin:0}.footer-column li a{position:relative;color:#afbbc9;text-decoration:none;font-size:14.5px;line-height:1.35;padding-left:15px;transition:.18s ease}
.footer-column li a::before{content:"";position:absolute;left:0;top:.56em;width:5px;height:5px;border-radius:50%;background:#69bd45;box-shadow:0 0 0 3px rgba(105,189,69,.1)}
.footer-column li a:hover{color:#fff;padding-left:19px}
.footer-contact{display:flex;flex-direction:column;gap:13px}.footer-contact h3{margin-bottom:18px}
.footer-contact-item{display:flex;align-items:flex-start;gap:12px;color:#afbbc9;text-decoration:none;font-size:14px;line-height:1.55;transition:.18s ease}
.footer-contact-item:hover{color:#fff}.footer-icon{width:34px;height:34px;flex:0 0 34px;display:grid;place-items:center;border-radius:9px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.08);color:#85d761}
.footer-icon svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.footer-bottom{position:relative;z-index:1;border-top:1px solid rgba(255,255,255,.08);background:rgba(7,12,20,.26)}
.footer-bottom-inner{width:min(1220px,calc(100% - 40px));min-height:62px;margin:auto;display:flex;align-items:center;justify-content:space-between;gap:24px}
.footer-bottom p{margin:0;color:#8f9aaa;font-size:13.5px}.footer-bottom-links{display:flex;gap:20px}.footer-bottom-links a{color:#8f9aaa;text-decoration:none;font-size:13.5px}.footer-bottom-links a:hover{color:#fff}
@media(max-width:1050px){.footer-inner{grid-template-columns:1.25fr 1fr 1fr;gap:40px}.footer-contact{grid-column:1/-1;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));align-items:start}.footer-contact h3{grid-column:1/-1}}
@media(max-width:760px){.footer-inner{width:min(100% - 28px,1220px);padding:46px 0 38px;grid-template-columns:1fr 1fr;gap:36px 24px}.footer-brand{grid-column:1/-1;max-width:none}.footer-contact{grid-template-columns:1fr;grid-column:1/-1}.footer-contact h3{grid-column:auto}.footer-bottom-inner{width:min(100% - 28px,1220px);padding:18px 0;min-height:0;flex-direction:column;text-align:center;gap:10px}}
@media(max-width:480px){.footer-inner{grid-template-columns:1fr;gap:32px}.footer-brand{grid-column:auto}.footer-logo img{width:195px}.footer-bottom-links{gap:14px;flex-wrap:wrap;justify-content:center}}
