:root{
  --bg0:#eef2f7;
  --bg1:#e2e8f0;
  --card:#ffffff;
  --card2:#f8fafc;
  --text:#0f172a;
  --muted:rgba(15,23,42,.68);
  --muted2:rgba(15,23,42,.52);
  --line:rgba(15,23,42,.12);
  --navy:#0f1c2e;
  --navy2:#152a45;
  --charcoal:#0a0a0c;
  --gold:#d4a853;
  --gold2:#b8923f;
  --primary:#1e3a5f;
  --primary2:#152a45;
  --cta-red:#dc2626;
  --cta-red2:#b91c1c;
  --good:#10b981;
  --warn:#f59e0b;
  --danger:#ef4444;
  --shadow: 0 20px 60px rgba(15,23,42,.12);
  --radius:16px;
  --radius2:24px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color:var(--text);
  background: linear-gradient(180deg, var(--bg0), var(--bg1));
}

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

.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  background:#fff;
  color:#000;
  padding:10px 14px;
  border-radius:10px;
  z-index:9999;
}
.skip-link:focus{left:10px}

/* Sabit WhatsApp + telefon */
.floatStack{
  position:fixed;
  right:20px;
  bottom:24px;
  z-index:85;
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:center;
}
.floatStack__btn{
  width:56px;
  height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#fff;
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
  border:2px solid rgba(255,255,255,.35);
  transition: transform .15s ease, box-shadow .15s ease;
}
.floatStack__btn:hover{
  transform: scale(1.06);
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
}
.floatStack__btn--wa{
  background: #25d366;
}
.floatStack__btn--tel{
  background: linear-gradient(145deg, #dc2626, #b91c1c);
}
.floatStack__waTxt{
  font-size:9px;
  font-weight:900;
  letter-spacing:.02em;
  text-align:center;
  line-height:1.05;
  padding:0 4px;
}

.siteHeader{
  position:sticky;
  top:0;
  z-index:100;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}

.topInfoBar{
  background: var(--charcoal);
  color: rgba(255,255,255,.88);
  font-size:12.5px;
  font-weight:600;
}
.topInfoBar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  padding:10px 0;
}
.topInfoBar__left{
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}
.topInfoBar__link{
  color:inherit;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition: color .15s ease;
}
.topInfoBar__link:hover{color:var(--gold);}
.topInfoBar__meta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color: rgba(255,255,255,.72);
}
.topInfoBar__icon{
  color:var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
}
.topInfoBar__right{
  display:flex;
  align-items:center;
  gap:10px;
}
.topInfoBar__social{
  width:30px;
  height:30px;
  border-radius:4px;
  border:1px solid rgba(255,255,255,.2);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  font-size:11px;
  font-weight:800;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.topInfoBar__social:hover{
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

.siteHeader__gold{
  height:3px;
  background: linear-gradient(90deg, var(--gold2), var(--gold), var(--gold2));
}

.mainNav{
  position:relative;
  background: linear-gradient(180deg, var(--navy) 0%, #0c1522 100%);
  border-bottom:1px solid rgba(212,168,83,.22);
}
.mainNav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
  min-height:64px;
  flex-wrap:wrap;
}
@media (min-width: 981px){
  .mainNav__inner{flex-wrap:nowrap;}
}

.brandPro{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:#fff;
  flex-shrink:0;
  min-width:0;
  max-width:min(100%, 520px);
}
.brandPro__logo{
  height:56px;
  width:auto;
  max-width:min(200px, 38vw);
  object-fit:contain;
  object-position:left center;
  display:block;
  flex-shrink:0;
}
.brandPro__text{
  display:flex;
  flex-direction:column;
  gap:2px;
  line-height:1.15;
  min-width:0;
  flex:1 1 auto;
}
.brandPro__name{
  font-weight:900;
  font-size:clamp(12px, 1.6vw, 15px);
  letter-spacing:.04em;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:min(280px, 36vw);
}
.brandPro__tag{
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
  color: rgba(255,255,255,.72);
}

.mainNav__burger{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:6px;
  width:44px;
  height:44px;
  padding:0 10px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:10px;
  background: rgba(255,255,255,.06);
  cursor:pointer;
}
.mainNav__burger span{
  display:block;
  height:2px;
  background:#fff;
  border-radius:2px;
  transition: transform .2s ease, opacity .2s ease;
}
.mainNav__burger.is-active span:nth-child(1){transform:translateY(8px) rotate(45deg);}
.mainNav__burger.is-active span:nth-child(2){opacity:0;}
.mainNav__burger.is-active span:nth-child(3){transform:translateY(-8px) rotate(-45deg);}

.navPro{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:4px 6px;
  flex-wrap:wrap;
  flex:1;
  min-width:0;
}
@media (min-width: 981px){
  .navPro{flex-wrap:nowrap; gap:2px 4px;}
}
.navPro__link{
  color:#fff;
  text-decoration:none;
  font-weight:800;
  font-size:11px;
  letter-spacing:.05em;
  padding:8px 8px;
  border-radius:6px;
  border:1px solid transparent;
  background:transparent;
  cursor:pointer;
  font-family:inherit;
  transition: background .15s ease, color .15s ease;
  white-space:nowrap;
}
.navPro__link:hover{
  background: rgba(255,255,255,.1);
  color: var(--gold);
}
.navPro__link--caret::after{
  content:" ▾";
  font-size:9px;
  opacity:.85;
}

.navPro__dropdown{
  position:relative;
}
.navPro__panel{
  display:none;
  position:absolute;
  left:0;
  top:100%;
  margin-top:6px;
  min-width:220px;
  padding:10px 0;
  background: var(--navy2);
  border:1px solid rgba(212,168,83,.35);
  border-radius:10px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  z-index:120;
  flex-direction:column;
}
.navPro__panel a{
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:12px;
  padding:10px 16px;
  letter-spacing:.04em;
}
.navPro__panel a:hover{
  background: rgba(212,168,83,.15);
  color: var(--gold);
}
@media (min-width: 981px){
  .navPro__dropdown:hover .navPro__panel,
  .navPro__dropdown:focus-within .navPro__panel{
    display:flex;
  }
}

/* Tam genişlik hero (referans slider) */
.heroCinematic{
  margin:0;
}
.heroCinematic__slider{
  position:relative;
  min-height: min(78vh, 680px);
  overflow:hidden;
}
.heroCinematic__slide.heroSlider__slide{
  display:none;
  position:relative;
  min-height: min(78vh, 680px);
  background-image: var(--hero-bg);
  background-size:cover;
  background-position:center;
  align-items:center;
  justify-content:center;
  padding:72px 0 96px;
}
.heroCinematic__slide.heroSlider__slide.is-active{
  display:flex;
}
.heroCinematic__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(15,23,42,.82) 0%, rgba(15,28,46,.62) 45%, rgba(15,23,42,.78) 100%);
  z-index:0;
}
.heroCinematic__content{
  position:relative;
  z-index:1;
  width:100%;
  text-align:center;
  color:#fff;
  padding:0 16px;
}
.heroCinematic__title{
  margin:0 0 16px;
  font-size:clamp(28px, 5vw, 52px);
  font-weight:900;
  letter-spacing:.02em;
  line-height:1.08;
  text-shadow: 0 4px 32px rgba(0,0,0,.35);
}
.heroCinematic__sub{
  margin:0 auto 28px;
  max-width:640px;
  font-size:clamp(15px, 2vw, 18px);
  font-weight:600;
  line-height:1.65;
  color: rgba(255,255,255,.9);
}
.heroCinematic__cta{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:center;
  align-items:center;
}
.heroCinematic__telRow{
  margin-top: 14px;
  display:flex;
  flex-wrap:wrap;
  gap:6px 10px;
  justify-content:center;
  align-items:center;
  font-size: clamp(13px, 2.5vw, 15px);
  font-weight: 800;
}
.heroCinematic__telRow a{
  color: rgba(255,255,255,.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.heroCinematic__telRow a:hover{
  color: #fff;
}
.heroCinematic__telSep{
  color: rgba(255,255,255,.45);
  font-weight: 700;
}
.heroCinematic__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 26px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
  letter-spacing:.08em;
  text-decoration:none;
  border:2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.heroCinematic__btn:hover{
  transform: translateY(-2px);
}
.heroCinematic__btn--call{
  background: linear-gradient(145deg, var(--cta-red), var(--cta-red2));
  color:#fff;
  box-shadow: 0 14px 40px rgba(220,38,38,.35);
}
.heroCinematic__btn--outline{
  background: transparent;
  border-color: rgba(255,255,255,.85);
  color:#fff;
}
.heroCinematic__btn--outline:hover{
  background: rgba(255,255,255,.1);
}
.heroCinematic__btnIco{
  display:flex;
  align-items:center;
  justify-content:center;
}
.heroCinematic__arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:15;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.35);
  background: rgba(15,23,42,.45);
  color:#fff;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: background .15s ease, border-color .15s ease;
}
.heroCinematic__arrow:hover{
  background: rgba(212,168,83,.35);
  border-color: var(--gold);
  color: var(--charcoal);
}
.heroCinematic__arrow--prev{left:14px;}
.heroCinematic__arrow--next{right:14px;}

.heroCinematic__dots.heroSlider__dots{
  position:absolute;
  left:50%;
  bottom:28px;
  transform:translateX(-50%);
  margin:0;
  z-index:15;
  display:flex;
  gap:12px;
  justify-content:center;
}
.heroCinematic__dot.heroSlider__dot{
  width:12px;
  height:12px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.25);
  cursor:pointer;
  padding:0;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.heroCinematic__dot.heroSlider__dot.is-active{
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
  box-shadow: 0 0 0 3px rgba(212,168,83,.25);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 16px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
  border:1px solid transparent;
  font-family:inherit;
  font-size:13px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
}
.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15,23,42,.12);
}
.btn:active{transform: translateY(1px)}
.btn:focus-visible{
  outline: 3px solid rgba(212,168,83,.55);
  outline-offset: 3px;
}
.btn__icon{opacity:.95}
.btn--primary{
  background: linear-gradient(135deg, var(--cta-red), var(--cta-red2));
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 14px 36px rgba(220,38,38,.22);
  color:#fff;
}
.btn--primary:hover{
  filter: brightness(1.05);
}
.btn--ghost{
  background: #fff;
  border-color: var(--line);
  color: var(--navy);
}
.btn--ghost:hover{
  border-color: var(--gold);
  background: var(--card2);
}
.btn--whatsapp{
  background: #25d366;
  border-color: rgba(255,255,255,.25);
  color: #fff;
  box-shadow: 0 12px 32px rgba(37,211,102,.22);
}
.btn--whatsapp:hover{
  filter: brightness(1.06);
  color: #fff;
}
.btn--lg{
  padding: 14px 22px;
  font-size: 14px;
  border-radius: 14px;
}

.randevuPage{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:start;
}
.randevuPage__main{min-width:0;}
.randevuPage__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}
.randevuPage__info{
  margin-top:28px;
  padding-top:22px;
  border-top:1px solid var(--line);
}
.randevuPage__infoTitle{
  margin:0 0 14px;
  font-size:17px;
  font-weight:900;
  color: var(--text);
}
.randevuPage__list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:14px;
}
.randevuPage__list li{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.randevuPage__ico{
  width:40px;
  height:40px;
  border-radius:12px;
  background: rgba(10,110,189,.1);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  font-size:18px;
}
.randevuPage__list strong{
  display:block;
  font-size:13px;
  margin-bottom:2px;
  color: var(--text);
}
.randevuPage__list span{
  font-size:14px;
  color: var(--muted);
  font-weight:600;
  line-height:1.45;
}

main{padding-bottom:42px}

.hero{
  padding:38px 0 10px;
}

.hero--landing{
  padding: 32px 0 18px;
  background:
    radial-gradient(900px 520px at 20% -10%, rgba(255,255,255,.55), transparent 55%),
    radial-gradient(780px 440px at 90% 0%, rgba(255,255,255,.35), transparent 60%),
    linear-gradient(90deg, rgba(14,165,233,.98) 0%, rgba(2,132,199,.95) 60%, rgba(14,165,233,.85) 100%);
  border-bottom: 1px solid rgba(255,255,255,.25);
}

.heroLanding__grid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 22px;
  align-items:center;
  color:#fff;
}

.heroLanding__left{
  padding: 10px 0;
}

.heroLanding__tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  font-weight:900;
  letter-spacing:.1px;
  font-size:13.5px;
}
.heroLanding__tagDot{
  width:10px;height:10px;border-radius:999px;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255,255,255,.18);
}

.heroLanding__title{
  margin: 14px 0 10px;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 54px;
  line-height: 1.02;
  letter-spacing: -1px;
}
.heroLanding__titleAccent{
  color: #dff7ff;
}

.heroLanding__lead{
  margin:0;
  color: rgba(255,255,255,.92);
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 560px;
}

.heroLanding__cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 18px;
}

.btn--big{
  padding: 12px 16px;
  border-radius: 16px;
  font-weight: 950;
}

.heroLanding__facts{
  margin-top: 16px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.factPill{
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  font-weight: 900;
  font-size: 13.2px;
}

.heroLanding__right{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.heroLanding__imageFrame{
  background: rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.26);
  border-radius: 28px;
  padding: 14px;
  box-shadow: 0 22px 70px rgba(0,0,0,.14);
  position:relative;
  overflow:hidden;
}
.heroLanding__imageFrame::after{
  content:'';
  position:absolute;
  inset:-60px -60px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  transform: rotate(18deg);
}
.heroLanding__img{
  width:100%;
  height:auto;
  display:block;
  border-radius: 22px;
  object-fit: cover;
  aspect-ratio: 4/3;
  position:relative;
  z-index:1;
}
.heroSlider .heroLanding__img{
  object-fit: contain;
  background: #fff;
}

.heroSlider{
  position:relative;
}
.heroSlider__slide{
  display:none;
  position:relative;
  border-radius: 22px;
  overflow:hidden;
  background: rgba(0,0,0,.08);
}
.heroSlider__slide.is-active{
  display:block;
}
.heroSlider__overlay{
  position:absolute;
  left:12px;
  bottom:12px;
  padding:10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.85);
  border:1px solid rgba(2,132,199,.20);
  color:#062134;
  font-weight:900;
  font-size:13.5px;
  box-shadow: 0 18px 40px rgba(2,132,199,.12);
  max-width: calc(100% - 24px);
}
.heroSlider__dots{
  display:flex;
  gap:10px;
  margin-top:12px;
  justify-content:flex-start;
}
.heroSlider__dot{
  width:12px;
  height:12px;
  border-radius:999px;
  border:1px solid rgba(2,132,199,.30);
  background: rgba(255,255,255,.55);
  cursor:pointer;
  padding:0;
}
.heroSlider__dot.is-active{
  background: rgba(14,165,233,.95);
  border-color: rgba(14,165,233,.95);
}

.videoThumbRow{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap:12px;
}
.videoThumb{
  appearance:none;
  border:1px solid var(--line);
  background: #fff;
  border-radius: 18px;
  padding:10px;
  cursor:pointer;
  text-align:left;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.videoThumb:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(2,132,199,.14);
  border-color: rgba(2,132,199,.30);
}
.videoThumb:focus-visible{
  outline: 3px solid rgba(14,165,233,.35);
  outline-offset: 3px;
}
.videoThumb__preview{
  position:relative;
  border-radius: 14px;
  overflow:hidden;
}
.videoThumb__img,
.videoThumb__video{
  width:100%;
  height: 120px;
  display:block;
  object-fit: cover;
  pointer-events: none;
  background: #f1f5f9;
}
.videoThumb__play{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  width:48px;
  height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
  font-size:15px;
  line-height:1;
  color:#0f172a;
  background: rgba(255,255,255,.94);
  border:1px solid rgba(15,23,42,.08);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  pointer-events: none;
}
.videoThumb__caption{
  margin-top:10px;
  font-weight:950;
  color:#062134;
}

.videoModal{
  position:fixed;
  inset:0;
  z-index:120;
  opacity:0;
  pointer-events:none;
  transition: opacity .18s ease;
}
.videoModal.is-open{
  opacity:1;
  pointer-events:auto;
}
.videoModal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(2,6,23,.65);
}
.videoModal__dialog{
  position:relative;
  width:min(980px, calc(100% - 28px));
  margin: 6vh auto 0;
  background: #fff;
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.2);
  box-shadow: 0 30px 120px rgba(0,0,0,.35);
}
.videoModal__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding: 14px 14px;
  background: linear-gradient(90deg, rgba(14,165,233,.95), rgba(2,132,199,.95));
  color:#fff;
}
.videoModal__title{
  font-weight:1000;
}
.videoModal__close{
  appearance:none;
  border:1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.18);
  color:#fff;
  width:42px;
  height:42px;
  border-radius: 16px;
  cursor:pointer;
  font-weight:1000;
  transition: transform .12s ease, background .12s ease;
}
.videoModal__close:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.28);
}
.videoModal__close:focus-visible{
  outline: 3px solid rgba(255,255,255,.35);
  outline-offset: 3px;
}
.videoModal__body{
  padding: 14px;
  background: #f2fbff;
}
.videoModal__player{
  width:100%;
  border-radius: 18px;
  background: #000;
  display:block;
}


.heroLanding__mini{
  display:grid;
  gap:10px;
}
.miniItem{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.22);
}
.miniItem__ico{
  width:38px;height:38px;border-radius: 16px;
  display:grid;place-items:center;
  background: rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.25);
  flex:0 0 auto;
}
.miniItem span{
  display:block;
  color: rgba(255,255,255,.95);
  font-weight: 850;
  margin-top: 2px;
  line-height:1.3;
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:start;
}
.hero__card{
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(248,252,255,1));
  border:1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero__cardInner{
  padding:26px;
}
.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:7px 12px;
  border-radius: 999px;
  background: rgba(14,165,233,.12);
  border: 1px solid rgba(14,165,233,.22);
  color: rgba(7,17,36,.92);
  font-weight:800;
  font-size:13px;
}
.kicker .dot{
  width:8px;height:8px;border-radius:50%;
  background: var(--good);
  box-shadow: 0 0 0 6px rgba(52,211,153,.15);
}

.hero__title{
  margin:14px 0 10px;
  font-size:40px;
  line-height:1.05;
  letter-spacing:-.4px;
}
.hero__lead{
  margin:0;
  color:var(--muted);
  font-size:16.5px;
  line-height:1.65;
}
.hero__actions{
  margin-top:18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.trustRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}
.badge{
  background: rgba(14,165,233,.10);
  border:1px solid rgba(14,165,233,.20);
  border-radius: 999px;
  padding:9px 12px;
  color:rgba(7,17,36,.78);
  font-weight:750;
  font-size:13px;
}
.badge strong{color:var(--text)}

.sideCard{
  padding:18px;
  background: #fff;
  border:1px solid var(--line);
  border-radius: var(--radius2);
}
.sideCard__title{
  font-weight:900;
  font-size:16px;
}
.sideCard__sub{
  color:var(--muted);
  margin-top:6px;
  line-height:1.6;
}
.sideCard__list{
  margin:14px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.sideCard__item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  background: rgba(14,165,233,.06);
  border:1px solid var(--line);
  border-radius: 16px;
  padding:12px;
}
.sideCard__item .ico{
  width:36px;height:36px;border-radius: 14px;
  display:grid;place-items:center;
  border:1px solid rgba(2,132,199,.22);
  background: rgba(14,165,233,.12);
  color: var(--primary2);
  flex: 0 0 auto;
}
.sideCard__item b{display:block}
.sideCard__item span{
  display:block;
  color:var(--muted);
  margin-top:2px;
  font-size:13.5px;
  line-height:1.45;
}

.section{
  margin-top:22px;
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin: 28px 0 12px;
}
.section__title{
  font-size:20px;
  font-weight:900;
}
.section__desc{
  color:var(--muted);
  margin:0;
  line-height:1.6;
  max-width: 620px;
  font-size:14px;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.grid2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.card{
  background: #fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  color: var(--text);
}
.card__title{
  font-weight:900;
  margin:0 0 8px;
}
.muted{color:var(--muted)}
.muted2{color:var(--muted2)}
.link{
  color: var(--primary2);
  text-decoration:none;
  font-weight:800;
}
.link:hover{text-decoration:underline}
.pillRow{
  display:flex; gap:10px; flex-wrap:wrap; margin-top:10px;
}
.pill{
  padding:8px 11px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(14,165,233,.08);
  color:var(--muted);
  font-weight:800;
  font-size:13px;
}

.form{
  display:grid;
  gap:12px;
}
.field label{
  display:block;
  font-weight:850;
  font-size:13.5px;
  margin-bottom:7px;
  color:rgba(7,17,36,.9);
}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  background: #fff;
  border:1px solid var(--line);
  color: var(--text);
  outline:none;
  transition:border-color .12s ease, background .12s ease;
}
input::placeholder, textarea::placeholder{color: rgba(7,17,36,.45)}
textarea{min-height:110px; resize:vertical}
input:focus, select:focus, textarea:focus{
  border-color: rgba(2,132,199,.55);
  background: #f6fdff;
}
.field--inline{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.note{
  font-size:13.2px;
  color:var(--muted2);
  line-height:1.6;
}
.hr{
  border-top:1px solid var(--line);
  margin: 18px 0;
}

.callout{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px;
  border-radius: var(--radius);
  background: rgba(14,165,233,.12);
  border:1px solid rgba(14,165,233,.18);
}
.callout .mark{
  width:40px;height:40px;border-radius: 16px;
  display:grid;place-items:center;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(14,165,233,.2);
  color: var(--primary2);
  flex:0 0 auto;
}
.callout b{display:block}
.callout span{
  color:var(--muted);
  display:block;
  margin-top:3px;
  line-height:1.55;
  font-size:13.8px;
}

.footer{
  padding: 36px 0 28px;
  border-top:3px solid var(--gold);
  background: linear-gradient(180deg, var(--navy) 0%, #0a1018 100%);
  color: rgba(255,255,255,.88);
}
.footer .muted{color: rgba(255,255,255,.62) !important;}
.footer .link{color: var(--gold);}
.footer .link:hover{color:#fff;}
.footer__grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap:18px;
}
.footer__title{
  font-weight:950;
  margin-bottom:10px;
  color:#fff;
  letter-spacing:.04em;
}
.footer__links{display:grid; gap:10px}
.footer__contact{display:grid; gap:10px; margin-top:12px}
.footer__bottom{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}
.bullets{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}
.bullets li{margin:8px 0}
.footer .bullets{color: rgba(255,255,255,.65);}

.toast{
  background: rgba(52,211,153,.12);
  border:1px solid rgba(52,211,153,.2);
  color: rgba(7,17,36,.95);
  border-radius: 16px;
  padding:12px 14px;
}
.toast--danger{
  background: rgba(251,113,133,.12);
  border-color: rgba(251,113,133,.22);
}

.pageGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}

.mediaSection{
  margin-top: 10px;
}

.mediaGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:stretch;
}

.mediaCard{
  background: #fff;
  border:1px solid var(--line);
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: 0 18px 50px rgba(2,132,199,.12);
}

.mediaCard__inner{
  padding: 16px;
}

.ustaImg{
  width:100%;
  height:100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display:block;
}

.videoWrap{
  position:relative;
  width:100%;
  background: rgba(0,0,0,.25);
}
.videoWrap video{
  width:100%;
  height:auto;
  display:block;
}

.kpiRow{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top: 12px;
}
.kpi{
  padding: 12px;
  border-radius: 16px;
  background: rgba(14,165,233,.06);
  border:1px solid rgba(14,165,233,.16);
}
.kpi b{display:block; font-size:15px}
.kpi span{
  display:block;
  color: var(--muted);
  margin-top: 6px;
  line-height:1.45;
  font-size:13.2px;
}

.list{
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap:10px;
}
.list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 12px;
  border-radius: 16px;
  background: rgba(14,165,233,.05);
  border:1px solid var(--line);
}
.list .tick{
  width:34px;height:34px;border-radius:14px;
  display:grid;place-items:center;
  background: rgba(52,211,153,.14);
  border:1px solid rgba(52,211,153,.25);
  flex:0 0 auto;
}

.ribbon{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  background: #fff;
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding:14px 16px;
  margin-top:14px;
}
.ribbon b{font-size:16px}

/* ——— Referans ana sayfa blokları (lp-) ——— */
.lp-section{padding:64px 0;}
.lp-section--white{background:#fff;}
.lp-section--gray{background:#f3f4f6;}
.lp-section--dark{background:linear-gradient(180deg,#0a1628 0%,#060d16 100%);}
.lp-noteIzmir{
  text-align:center;
  max-width:820px;
  margin:-12px auto 28px;
  padding:14px 18px;
  border-radius:14px;
  background: rgba(8,105,180,.08);
  border:1px solid rgba(8,105,180,.18);
  color:#0f172a;
  font-size:14px;
  font-weight:700;
  line-height:1.55;
}
.lp-head{text-align:center; max-width:800px; margin:0 auto 40px;}
.lp-badge{
  display:inline-block;
  padding:8px 18px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.1em;
  margin-bottom:14px;
}
.lp-badge--blue{background:#0a6ebd; color:#fff;}
.lp-badge--navy{background:#0f2744; color:#fff;}
.lp-badge--gold{background:var(--gold); color:#0f172a;}
.lp-title{
  margin:0 0 12px;
  font-size:clamp(26px,4vw,38px);
  font-weight:900;
  color:#1a1a1a;
  line-height:1.15;
}
.lp-title__accent{color:#0a6ebd;}
.lp-title--galleryGold{
  background:linear-gradient(165deg,#e8c85a 0%,#c9a227 32%,#8b6914 72%,#5c4309 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  filter:drop-shadow(0 1px 0 rgba(255,255,255,.35));
}
@supports not ((-webkit-background-clip:text) or (background-clip:text)){
  .lp-title--galleryGold{
    background:none;
    -webkit-text-fill-color:unset;
    color:#8b6914;
    text-shadow:0 1px 0 rgba(255,255,255,.5),0 2px 12px rgba(139,105,20,.25);
  }
}
.lp-section--dark .lp-title{color:#fff;}
.lp-section--dark .lp-title__accent{color:var(--gold);}
.lp-sub{
  margin:0;
  color:#64748b;
  font-size:15px;
  font-weight:600;
  line-height:1.6;
}
.lp-section--dark .lp-sub{color:rgba(255,255,255,.7);}
.lp-cardGrid6{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.lp-sCard{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 40px rgba(15,23,42,.08);
  border:1px solid rgba(15,23,42,.06);
  transition:transform .18s ease, box-shadow .18s ease;
}
.lp-sCard:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 50px rgba(15,23,42,.12);
}
.lp-sCard__imgWrap{
  position:relative;
  aspect-ratio:4/3;
  overflow:hidden;
}
.lp-sCard__img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.lp-sCard__icon{
  position:absolute;
  right:14px;
  bottom:14px;
  width:44px;
  height:44px;
  border-radius:50%;
  background:#0a6ebd;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:900;
  box-shadow:0 6px 20px rgba(10,110,189,.4);
}
.lp-sCard__body{padding:18px 18px 20px;}
.lp-sCard__body h3{
  margin:0 0 10px;
  font-size:17px;
  font-weight:900;
  color:#00334e;
}
.lp-sCard__body p{
  margin:0 0 14px;
  font-size:13.5px;
  line-height:1.55;
  color:#64748b;
  font-weight:600;
}
.lp-sCard__more{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:13px;
  font-weight:800;
  color:#0a6ebd;
  text-decoration:none;
}
.lp-sCard__more:hover{text-decoration:underline;}

.lp-why{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}
.lp-why__visual{position:relative;}
.lp-why__img{
  width:100%;
  border-radius:20px;
  display:block;
  aspect-ratio:4/3;
  object-fit:cover;
  box-shadow:0 20px 60px rgba(15,23,42,.15);
}
.lp-why__badge{
  position:absolute;
  right:16px;
  bottom:16px;
  background:linear-gradient(145deg,var(--cta-red),var(--cta-red2));
  color:#fff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.04em;
  padding:12px 14px;
  border-radius:12px;
  box-shadow:0 12px 30px rgba(220,38,38,.35);
  max-width:160px;
  line-height:1.25;
  text-align:center;
}
.lp-why__content .lp-badge{margin-bottom:12px;}
.lp-why__title{
  margin:0 0 16px;
  font-size:clamp(26px,3.8vw,38px);
  font-weight:900;
  line-height:1.15;
  letter-spacing:-.02em;
  color:#6b4f0c;
  background:linear-gradient(165deg,#e8c85a 0%,#c9a227 32%,#8b6914 72%,#5c4309 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  filter:drop-shadow(0 1px 0 rgba(255,255,255,.35));
}
@supports not ((-webkit-background-clip:text) or (background-clip:text)){
  .lp-why__title{
    background:none;
    -webkit-text-fill-color:unset;
    color:#8b6914;
    text-shadow:0 1px 0 rgba(255,255,255,.5),0 2px 12px rgba(139,105,20,.25);
  }
}
.lp-why__lead{
  color:#475569;
  font-size:15px;
  line-height:1.7;
  font-weight:600;
  margin:0 0 22px;
}
.lp-checkGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 20px;
  margin-bottom:24px;
}
.lp-check{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:13.5px;
  font-weight:700;
  color:#1e293b;
}
.lp-check::before{
  content:"";
  width:22px;
  height:22px;
  flex-shrink:0;
  margin-top:1px;
  border-radius:50%;
  background:#22c55e;
  box-shadow:0 0 0 3px rgba(34,197,94,.2);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size:14px;
  background-position:center;
  background-repeat:no-repeat;
}
.lp-why__cta{display:flex; flex-wrap:wrap; gap:12px; align-items:stretch;}
@media (max-width: 520px){
  .lp-why__cta{flex-direction:column;}
  .lp-why__cta .lp-btnCall{text-align:center; justify-content:center;}
}
.lp-btnCall{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 22px;
  border-radius:999px;
  background:linear-gradient(145deg,var(--cta-red),var(--cta-red2));
  color:#fff;
  font-weight:900;
  font-size:12px;
  letter-spacing:.08em;
  text-decoration:none;
  box-shadow:0 12px 32px rgba(220,38,38,.3);
}
.lp-btnMail{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 22px;
  border-radius:999px;
  background:#fff;
  border:2px solid #94a3b8;
  color:#0f2744;
  font-weight:900;
  font-size:12px;
  letter-spacing:.06em;
  text-decoration:none;
}
.lp-btnMail:hover{border-color:#0a6ebd;color:#0a6ebd;}

.lp-stats{
  background:linear-gradient(90deg,#0c1f33,#0f2744);
  padding:48px 0;
  color:#fff;
}
.lp-stats__grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  text-align:center;
}
.lp-stat__ico{
  font-size:28px;
  margin-bottom:10px;
  filter:grayscale(.1);
}
.lp-stat__num{
  display:block;
  font-size:clamp(26px,4vw,38px);
  font-weight:900;
  margin-bottom:4px;
}
.lp-stat__lbl{
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
  opacity:.88;
  text-transform:uppercase;
}

.lp-gallery__frame{
  margin-top:8px;
  padding:18px 20px 20px;
  border:2px solid rgba(15,39,68,.14);
  border-radius:20px;
  background:linear-gradient(180deg,#fafbfc 0%,#ffffff 40%);
  box-shadow:
    inset 0 0 0 1px rgba(212,168,83,.22),
    0 0 0 3px rgba(212,168,83,.1),
    0 18px 50px rgba(15,23,42,.06);
}
.lp-gGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.lp-gItem{
  border-radius:16px;
  overflow:hidden;
  aspect-ratio:4/3;
  opacity:1;
  transition:opacity .2s ease, transform .2s ease;
  box-shadow:0 4px 14px rgba(15,23,42,.08);
  border:1px solid rgba(15,23,42,.06);
}
.lp-gItem img{width:100%;height:100%;object-fit:cover;display:block;}

.lp-promoSlider{margin:0;}
.lp-promoSlider__track{
  position:relative;
  overflow:hidden;
  min-height:280px;
}
.lp-promoSlider__slide.heroSlider__slide{
  display:none;
  position:relative;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-height:280px;
  padding:48px 0 56px;
  background-image:var(--lp-promo-bg);
  background-size:cover;
  background-position:center;
}
.lp-promoSlider__slide.heroSlider__slide.is-active{
  display:flex;
}
.lp-promoSlider__overlay{
  position:absolute;
  inset:0;
  z-index:0;
  background:linear-gradient(135deg,rgba(185,28,28,.88) 0%,rgba(15,23,42,.82) 55%,rgba(15,23,42,.9) 100%);
}
.lp-promoSlider__inner{
  position:relative;
  z-index:1;
  text-align:center;
  color:#fff;
  max-width:720px;
  margin:0 auto;
  padding:0 20px;
}
.lp-promoSlider__title{
  margin:0 0 12px;
  font-size:clamp(22px,3.8vw,32px);
  font-weight:900;
  line-height:1.15;
  text-shadow:0 2px 24px rgba(0,0,0,.35);
}
.lp-promoSlider__text{
  margin:0 0 22px;
  font-size:15px;
  font-weight:600;
  line-height:1.6;
  color:rgba(255,255,255,.94);
  text-shadow:0 1px 12px rgba(0,0,0,.25);
}
.lp-promoSlider__btns{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:center;
}
.lp-promoSlider__dots.heroCinematic__dots{
  bottom:18px;
  z-index:12;
}
.lp-ctaRed__tel{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 24px;
  border-radius:999px;
  background:#fff;
  color:#dc2626;
  font-weight:900;
  text-decoration:none;
  font-size:14px;
}
.lp-ctaRed__wa{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 24px;
  border-radius:999px;
  background:#25d366;
  color:#fff;
  font-weight:900;
  text-decoration:none;
  font-size:14px;
}

.lp-testi__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:8px;
}
.lp-testiCard{
  background:#fff;
  border-radius:16px;
  padding:22px;
  box-shadow:0 12px 36px rgba(15,23,42,.08);
  border-left:4px solid #0f2744;
  position:relative;
}
.lp-testiCard__stars{color:#fbbf24;font-size:14px;letter-spacing:2px;margin-bottom:12px;}
.lp-testiCard__quote{
  position:absolute;
  top:16px;
  right:18px;
  font-size:42px;
  line-height:1;
  color:#e2e8f0;
  font-family:Georgia,serif;
}
.lp-testiCard p{
  margin:0 0 18px;
  font-size:14px;
  line-height:1.6;
  color:#64748b;
  font-style:italic;
  font-weight:600;
  padding-right:24px;
}
.lp-testiCard__who{display:flex;align-items:center;gap:12px;}
.lp-testiCard__av{
  width:44px;
  height:44px;
  border-radius:50%;
  background:#0a6ebd;
  color:#fff;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
}
.lp-testiCard__name{font-weight:900;color:#0f172a;font-size:14px;}
.lp-testiCard__loc{font-size:12px;color:#94a3b8;font-weight:600;}

.lp-izmGrid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
  margin-top:8px;
}
.lp-izmCard{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 16px;
  background:#fff;
  border-radius:14px;
  box-shadow:0 8px 28px rgba(15,23,42,.07);
  border:1px solid rgba(15,23,42,.06);
  font-weight:900;
  font-size:13px;
  color:#0f172a;
}
.lp-izmCard__pin{
  width:36px;
  height:36px;
  border-radius:50%;
  background:#0a6ebd;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  flex-shrink:0;
}
.lp-izmCta{
  text-align:center;
  margin-top:28px;
}
.lp-izmCta .btn{font-size:12px;letter-spacing:.06em;padding:14px 28px;border-radius:999px;}

.footer__grid--4{
  grid-template-columns:1.2fr 1fr 1fr 1.1fr;
  gap:28px;
}
.footer__lead{color:rgba(255,255,255,.72);font-size:14px;line-height:1.65;margin:12px 0 18px;}
.footer__socialRow{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px;}
.footer__soc{
  width:40px;
  height:40px;
  border-radius:50%;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.2);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:12px;
  font-weight:900;
}
.footer__soc:hover{background:var(--gold);color:#0f172a;border-color:var(--gold);}
.footer__colTitle{
  color:#fff;
  font-weight:900;
  font-size:15px;
  margin-bottom:14px;
  letter-spacing:.04em;
}
.footer__colTitle::after{
  content:"";
  display:block;
  width:36px;
  height:3px;
  background:var(--gold);
  margin-top:8px;
  border-radius:2px;
}
.footer__chev{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer__chev a{
  color:rgba(255,255,255,.82);
  text-decoration:none;
  font-size:13.5px;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:8px;
}
.footer__chev a::before{
  content:"›";
  color:var(--gold);
  font-weight:900;
  font-size:16px;
}
.footer__chev a:hover{color:var(--gold);}
.footer__contactLine{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-bottom:12px;
  font-size:13.5px;
  color:rgba(255,255,255,.78);
  line-height:1.5;
}
.footer__contactLine svg,.footer__contactLine .footer__ci{
  flex-shrink:0;
  color:var(--gold);
  margin-top:2px;
}
.footer__phoneSep{
  color: rgba(255,255,255,.45);
}

@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr}
  .heroLanding__grid{grid-template-columns: 1fr}
  .mainNav__burger{display:flex; margin-left:auto;}
  .navPro{
    display:none;
    position:absolute;
    left:0;
    right:0;
    top:100%;
    flex-direction:column;
    align-items:stretch;
    background: var(--navy2);
    padding:12px 20px 20px;
    border-bottom:2px solid var(--gold);
    box-shadow: 0 24px 50px rgba(0,0,0,.35);
  }
  .navPro.is-open{display:flex;}
  .navPro__link{
    width:100%;
    text-align:left;
    white-space:normal;
    border:1px solid rgba(255,255,255,.12);
  }
  .navPro__dropdown{width:100%;}
  .navPro__panel{
    position:static;
    display:none;
    margin-top:8px;
    box-shadow:none;
    border:1px solid rgba(255,255,255,.15);
  }
  .navPro__dropdown.is-open .navPro__panel{display:flex;}
  .brandPro__name{max-width:100%; white-space:normal;}
  .brandPro__logo{height:48px; max-width:min(160px, 44vw);}
  .brandPro__name{max-width:min(200px, 52vw);}
  .topInfoBar__inner{padding:8px 0;}
  .heroCinematic__arrow{width:40px;height:40px;font-size:22px;}
  .heroCinematic__arrow--prev{left:6px;}
  .heroCinematic__arrow--next{right:6px;}
  .grid3{grid-template-columns: 1fr}
  .grid2{grid-template-columns: 1fr}
  .field--inline{grid-template-columns: 1fr}
  .heroLanding__title{font-size:38px}
  .heroLanding__imageFrame{border-radius: 22px}
  .heroSlider__overlay{left:10px; bottom:10px}
  .videoThumbRow{grid-template-columns: 1fr; }
  .videoThumb__img,
  .videoThumb__video{height: 160px;}
  .mediaGrid{grid-template-columns: 1fr}
  .kpiRow{grid-template-columns: 1fr}
  .randevuPage{grid-template-columns:1fr}
  .randevuPage__actions{flex-direction:column}
  .randevuPage__actions .btn{width:100%;justify-content:center}
  .footer__grid{grid-template-columns: 1fr}
  .footer__bottom{justify-content:flex-start}
  .hero__title{font-size:32px}
  .lp-cardGrid6{grid-template-columns:1fr}
  .lp-why{grid-template-columns:1fr}
  .lp-checkGrid{grid-template-columns:1fr}
  .lp-stats__grid{grid-template-columns:repeat(2,1fr)}
  .lp-gGrid{grid-template-columns:repeat(2,1fr)}
  .lp-testi__grid{grid-template-columns:1fr}
  .lp-izmGrid{grid-template-columns:repeat(2,1fr)}
  .footer__grid--4{grid-template-columns:1fr}
}

