:root{
  --navy:#0a1f38;
  --blue:#1c6fd6;
  --blue-light:#e8f1fc;
  --sky:#5fa8f0;
  --ink:#2c3a4a;
  --muted:#6b7488;
  --line:#ddd8cf;
  --line-2:#eee7db;
  --num:#b3aa95;
  --paper:#f4f2ee;
  --bg:#ffffff;
  --bg-alt:#faf8f4;
  --surface-2:#faf8f4;
  --white:#ffffff;
  --radius:2px;
  --shadow:0 8px 30px rgba(10,31,56,0.09);
  --shadow-sm:0 2px 10px rgba(10,31,56,0.07);
  --font-body:"Public Sans","Segoe UI",-apple-system,BlinkMacSystemFont,Roboto,Helvetica,Arial,sans-serif;
  --font-display:"Lora","Iowan Old Style","Georgia",serif;
  --font-mono:ui-monospace,"SFMono-Regular",Menlo,Consolas,monospace;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;overflow-x:hidden}
body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--paper);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

/* BLUEPRINT — dot-grid texture for dark navy sections, and the numbered
   monospace section-kicker + hairline-divider pattern used throughout. */
.blueprint-dots{
  position:absolute;inset:0;pointer-events:none;
  background-image:radial-gradient(rgba(255,255,255,.06) 1px,transparent 1px);
  background-size:26px 26px;
}
.blueprint-dots.tight{background-size:22px 22px}
.section-kicker{display:flex;align-items:center;gap:14px;margin-bottom:16px}
.section-kicker span{
  font-family:var(--font-mono);font-size:.75rem;font-weight:700;letter-spacing:.12em;color:var(--blue);
  text-transform:uppercase;
}
.section-kicker .rule{height:1px;flex:1;background:var(--line)}
.section-kicker.on-dark span{color:var(--sky)}
.section-kicker.on-dark .rule{background:rgba(255,255,255,.25)}
.numbered-grid{display:grid;border-top:2px solid var(--navy);margin-top:24px}
.numbered-grid.cols-3{grid-template-columns:repeat(3,1fr)}
.numbered-grid.cols-4{grid-template-columns:repeat(4,1fr)}
.numbered-col{padding:28px 26px 32px;border-right:1px solid var(--line)}
.numbered-col:last-child{border-right:none}
.numbered-col .num{
  display:block;font-family:var(--font-mono);font-size:.75rem;color:var(--num);font-weight:700;margin-bottom:14px;
}
.numbered-col h3{font-size:1.15rem;margin-bottom:8px}
.numbered-col p{color:var(--muted);font-size:.9rem;line-height:1.7}
.home-focus{border-top:1px solid var(--line)}
h1,h2,h3{font-family:var(--font-display);line-height:1.15;color:var(--navy);font-weight:700}
a{color:inherit;text-decoration:none}

/* ICON SYSTEM — one consistent line-icon language replaces emoji throughout */
.icon{width:20px;height:20px;flex-shrink:0;stroke:currentColor;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round;fill:none}

/* Accessibility: always show a clear keyboard-focus ring; respect reduced-motion */
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible{
  outline:2px solid var(--sky);outline-offset:2px;border-radius:4px;
}
@media (prefers-reduced-motion: reduce){
  *{animation-duration:.001ms !important;animation-iteration-count:1 !important;transition-duration:.001ms !important;scroll-behavior:auto !important}
  .btn-primary:hover,.brand-card:hover,.news-card:hover{transform:none}
}
.container{max-width:1160px;margin:0 auto;padding:0 24px}
section{padding:88px 0}
.eyebrow{
  display:inline-block;font-family:var(--font-mono);font-size:.72rem;font-weight:600;letter-spacing:.1em;
  text-transform:uppercase;color:var(--blue);margin-bottom:14px;
}
.section-title{font-size:2.1rem;margin-bottom:16px;font-weight:600}
.section-lead{color:var(--muted);max-width:640px;font-size:1.05rem;margin-bottom:48px}

/* TOPBAR — thin trust strip above the nav, on every page */
.topbar{
  background:var(--navy);color:rgba(255,255,255,.65);font-family:var(--font-body);
  font-size:.78rem;font-weight:600;letter-spacing:.02em;
}
.topbar .container{display:flex;justify-content:space-between;align-items:center;padding:9px 24px}
.topbar-contact{display:flex;gap:8px;flex-shrink:0}
@media(max-width:860px){
  .topbar-contact{display:none}
  .topbar .container{display:block;padding:8px 24px}
  .topbar .container>span:first-child{display:block;font-size:.68rem;line-height:1.5}
}

/* NAV */
header{
  position:sticky;top:0;z-index:100;background:rgba(244,242,238,.94);
  backdrop-filter:blur(10px);border-bottom:1px solid var(--line);
}
.nav{display:flex;align-items:center;justify-content:space-between;height:72px}
.logo{display:flex;align-items:center;gap:11px;font-weight:800;font-size:1.35rem;color:var(--navy)}
.logo-img{height:38px;width:auto;max-width:180px;object-fit:contain;display:block}
footer .logo-img{filter:brightness(0) invert(1)}
.logo .mark{
  width:38px;height:38px;border-radius:9px;
  background:linear-gradient(135deg,var(--blue),var(--sky));
  display:flex;align-items:center;justify-content:center;color:#fff;font-weight:800;font-size:1.1rem;
  box-shadow:0 4px 12px rgba(20,103,184,.3);
}
.logo .seven{color:var(--blue)}
.nav-links{display:flex;gap:34px;align-items:center}
.nav-links > a,.nav-links > .nav-item-dropdown > a{
  position:relative;font-size:.95rem;font-weight:500;color:var(--ink);
  padding-bottom:4px;transition:color .2s;
}
.nav-links > a::after,.nav-links > .nav-item-dropdown > a::after{
  content:"";position:absolute;left:0;right:0;bottom:0;height:2px;background:var(--blue);
  transform:scaleX(0);transform-origin:right;transition:transform .25s cubic-bezier(.4,0,.2,1);
}
.nav-links > a:hover,.nav-links > .nav-item-dropdown > a:hover{color:var(--blue)}
.nav-links > a:hover::after,.nav-links > .nav-item-dropdown > a:hover::after{transform:scaleX(1);transform-origin:left}
.nav-links > a.active,.nav-links > .nav-item-dropdown > a.active{color:var(--blue)}
.nav-links > a.active::after,.nav-links > .nav-item-dropdown > a.active::after{transform:scaleX(1);transform-origin:left}
.nav-item-dropdown{position:relative;display:flex;align-items:center}
.nav-link-caret{display:inline-flex;align-items:center;gap:4px}
.nav-link-caret .icon{width:14px;height:14px;transition:transform .2s cubic-bezier(.4,0,.2,1)}
.nav-item-dropdown:hover .nav-link-caret .icon{transform:rotate(180deg)}
.nav-dropdown-menu{
  display:none;position:absolute;top:100%;left:50%;transform:translateX(-50%);
  padding-top:14px;z-index:50;
}
.nav-item-dropdown:hover .nav-dropdown-menu{display:block}
.nav-dropdown-panel{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);
  padding:8px;min-width:210px;
}
.nav-dropdown-panel a{
  display:block;padding:9px 14px;border-radius:2px;font-size:.9rem;font-weight:500;
  white-space:nowrap;color:var(--ink);
}
.nav-dropdown-panel a:hover{background:var(--blue-light);color:var(--blue)}
.lang-toggle{display:flex;align-items:center;gap:4px;font-family:var(--font-mono);font-size:.78rem;font-weight:600}
.lang-toggle a{color:var(--num);padding:4px 2px;transition:color .2s}
.lang-toggle a:hover{color:var(--blue)}
.lang-toggle a.active{color:var(--ink)}
.lang-toggle span{color:var(--num)}
.nav-cta{
  display:inline-block;font-family:var(--font-body);font-size:.85rem;font-weight:600;
  color:var(--paper);background:var(--navy);padding:9px 18px;border-radius:var(--radius);
  transition:background .2s;
}
.nav-cta:hover{background:var(--blue)}
.menu-btn{display:none;background:none;border:none;cursor:pointer;color:var(--navy);padding:4px}
.menu-btn .icon{width:24px;height:24px}

/* ANNOUNCEMENTS — editorial carousel; on the homepage it doubles as the hero (isHero flag) */
.announcements{background-color:var(--navy);padding:64px 0 56px;position:relative;overflow:hidden}
.announcements .section-title{margin-bottom:36px;max-width:640px}
.announcement-track{position:relative}
.announcement-slide{display:none;grid-template-columns:1fr 1fr;gap:52px;align-items:center}
.announcement-slide.active{display:grid}
.announcement-hero-media{position:relative}
.announcement-media{
  position:relative;border-radius:0;overflow:hidden;aspect-ratio:16/10;background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
}
.announcement-media img,.announcement-media iframe{width:100%;height:100%;object-fit:cover;border:0;display:block}
.announcement-media-fallback{width:100%;height:100%;display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.35)}
.announcement-media-fallback .icon{width:48px;height:48px;stroke-width:1.25}
.carousel-arrow{
  position:absolute;top:50%;transform:translateY(-50%);width:38px;height:38px;border-radius:50%;
  border:none;background:rgba(10,26,46,.55);color:#fff;display:flex;align-items:center;justify-content:center;
  cursor:pointer;transition:background .2s;z-index:5;
}
.carousel-arrow:hover{background:rgba(10,26,46,.8)}
.carousel-arrow.prev{left:12px}
.carousel-arrow.next{right:12px}
.carousel-arrow .icon{width:20px;height:20px}
.announcement-text h3{font-family:var(--font-display);color:#fff;font-size:2.6rem;font-weight:600;margin:14px 0 18px;line-height:1.1}
.announcement-text p{color:rgba(255,255,255,.72);font-size:1rem;line-height:1.7;max-width:440px}
.announcement-text .news-date{color:var(--sky)}
.hero-ctas{display:flex;gap:14px;margin-top:28px}
.btn-hero-primary,.btn-hero-secondary{
  font-family:var(--font-body);font-weight:600;font-size:.92rem;padding:13px 26px;border-radius:var(--radius);
  transition:background .2s,border-color .2s;
}
.btn-hero-primary{background:#fff;color:var(--navy)}
.btn-hero-primary:hover{background:var(--paper)}
.btn-hero-secondary{color:#fff;border:1px solid rgba(255,255,255,.3)}
.btn-hero-secondary:hover{border-color:#fff}
.announcement-float-card{
  position:absolute;left:-24px;bottom:28px;width:270px;background:var(--paper);padding:22px 24px;
  border-radius:var(--radius);box-shadow:0 20px 50px rgba(0,0,0,.35);
}
.float-card-title{font-family:var(--font-display);font-size:1.1rem;font-weight:600;color:var(--navy);margin-bottom:4px}
.float-card-sub{font-size:.82rem;color:var(--muted)}
@media(max-width:1240px){ .announcement-float-card{left:24px} }
.announcement-dots{display:flex;gap:10px;margin-top:40px;justify-content:center}
.dot{width:8px;height:8px;padding:0;border-radius:50%;border:none;background:rgba(255,255,255,.25);cursor:pointer;transition:width .25s cubic-bezier(.4,0,.2,1),background .25s}
.dot:hover{background:rgba(255,255,255,.45)}
.dot.active{width:26px;border-radius:5px;background:var(--sky)}

.btn{
  display:inline-block;padding:14px 28px;border-radius:10px;font-weight:600;font-size:.98rem;
  cursor:pointer;transition:transform .25s cubic-bezier(.4,0,.2,1),box-shadow .25s cubic-bezier(.4,0,.2,1),background .2s;border:none;
}

/* DISTRIBUTORS — horizontal logo+text cards; auto-fit/minmax so this looks
   right whether there are 2 brands or 12, no fixed column count. */
.distributors{padding:64px 0;border-top:1px solid var(--line)}
.distributors-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(340px,1fr));gap:24px;margin-top:24px;
}
.distributor-item{
  display:flex;gap:26px;align-items:center;
  padding:32px;border-radius:var(--radius);background:#fff;border:1px solid var(--line);
  transition:border-color .25s;
}
.distributor-item:hover{border-color:var(--blue)}
.distributor-item .logo-slot{width:120px;height:88px;flex-shrink:0;display:flex;align-items:center;justify-content:center}
.distributor-item img{max-height:88px;max-width:120px;object-fit:contain}
.logo-slot-fallback{
  width:72px;height:72px;border-radius:0;background:var(--blue-light);color:var(--blue);
  font-family:var(--font-display);font-size:1.8rem;font-weight:600;
  display:flex;align-items:center;justify-content:center;
}
.distributor-item .body{display:flex;flex-direction:column;align-items:flex-start;gap:12px}
.distributor-item .name{font-family:var(--font-display);font-size:1.2rem;font-weight:600;color:var(--navy)}
.distributor-item .region{
  font-family:var(--font-mono);font-size:.68rem;font-weight:700;letter-spacing:.06em;
  color:var(--blue);
}

/* STATS — an inset navy blueprint card, not full-bleed (matches the hero/footer dark palette) */
.stats{background:var(--navy);border-radius:var(--radius);padding:44px 40px;margin:40px 0;position:relative;overflow:hidden}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);position:relative}
.stat{text-align:center;padding:0 12px;border-right:1px solid rgba(255,255,255,.12)}
.stat:last-child{border-right:none}
.stat b{display:block;font-family:var(--font-display);font-size:2.4rem;color:#fff;font-weight:600;line-height:1}
.stat span{color:rgba(255,255,255,.6);font-size:.85rem;margin-top:6px;display:block}

/* ABOUT — hero (text + photo) / Biz Kimiz (2-col) / Değerlerimiz (numbered-grid) */
.about-hero{background:var(--navy);padding:0;position:relative;overflow:hidden}
.about-hero-grid{display:grid;grid-template-columns:1.1fr 1fr;min-height:420px;position:relative}
.about-hero-text{padding:64px 48px 64px 0;display:flex;flex-direction:column;justify-content:center}
.about-hero-text h1{font-size:2.4rem;font-weight:600;color:#fff;line-height:1.15;margin-bottom:20px}
.about-hero-text p{font-size:1.05rem;line-height:1.7;color:rgba(255,255,255,.72);max-width:440px}
.about-hero-media{position:relative}
.about-hero-media img{width:100%;height:100%;min-height:420px;object-fit:cover;display:block}
.about-hero-media-fallback{
  position:absolute;inset:0;background-color:#0d2645;
  background-image:repeating-linear-gradient(135deg,rgba(255,255,255,.04) 0 12px,rgba(255,255,255,.07) 12px 24px);
}

.about-kimiz{border-top:1px solid var(--line)}
.about-kimiz-grid{display:grid;grid-template-columns:1fr 1.3fr;gap:56px;align-items:start}
.about-kimiz-heading{font-size:1.7rem;font-weight:600;line-height:1.25}
.about-kimiz-text-col p{color:var(--muted);font-size:1rem;line-height:1.8;margin-bottom:18px}
.about-kimiz-text-col p:last-child{margin-bottom:0}

.about-values{border-top:1px solid var(--line)}

/* PAGE HEADER — navy blueprint band used on the simple listing pages
   (Ürünler, Etkinlikler, Blog, İletişim); About/Product-Detail have their own bespoke hero. */
.page-header{background:var(--navy);padding:64px 0;position:relative;overflow:hidden}
.page-header-breadcrumb{font-family:var(--font-mono);font-size:.75rem;color:rgba(255,255,255,.5);letter-spacing:.05em;margin-bottom:20px;position:relative}
.page-header-title{font-size:2.4rem;font-weight:600;color:#fff;max-width:640px;margin-bottom:16px;position:relative}
.page-header-desc{font-size:1rem;line-height:1.7;color:rgba(255,255,255,.72);max-width:520px;position:relative}
.page-header .section-kicker{position:relative}

/* FILTERS — brand tabs + focus-area (odak) chips, shared row above listing grids */
.filter-row{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:16px;padding:32px 0;border-bottom:1px solid var(--line)}
.filter-chips{display:flex;flex-wrap:wrap;gap:10px}
.filter-chips a{
  font-family:var(--font-body);font-size:.85rem;font-weight:600;
  padding:9px 16px;border-radius:var(--radius);border:1px solid var(--line);color:var(--ink);background:#fff;
  transition:border-color .2s,color .2s,background .2s;
}
.filter-chips a:hover{border-color:var(--blue);color:var(--blue)}
.filter-chips a.active{background:var(--navy);border-color:var(--navy);color:#fff}

/* PRODUCT GROUP — brand divider + compact card grid (replaces the old full-width product-split) */
.product-group{padding:44px 0 20px}
.product-group-header{display:flex;align-items:baseline;gap:12px;margin-bottom:24px}
.product-group-logo{height:34px;max-width:130px;object-fit:contain}
.product-group-name{font-family:var(--font-display);font-size:1.1rem;font-weight:600;color:var(--navy);white-space:nowrap}
.product-group-count{font-family:var(--font-mono);font-size:.72rem;font-weight:700;color:var(--num);white-space:nowrap}
.product-card-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.product-card{border:1px solid var(--line);border-radius:var(--radius);background:#fff;overflow:hidden;display:block;transition:border-color .2s}
.product-card:hover{border-color:var(--blue)}
.product-card-media{height:150px;background:var(--blue-light);color:var(--blue);opacity:.6;display:flex;align-items:center;justify-content:center}
.product-card-media img{width:100%;height:100%;object-fit:contain;opacity:1;padding:12px;box-sizing:border-box}
.product-card-media .icon{width:32px;height:32px;stroke-width:1.25}
.product-card-body{padding:18px}
.product-card-body .kicker{font-family:var(--font-mono);font-size:.68rem;font-weight:700;letter-spacing:.06em;color:var(--blue);margin-bottom:8px;display:block}
.product-card-body h3{font-family:var(--font-display);font-size:1rem;font-weight:600;color:var(--navy);margin-bottom:6px;line-height:1.3}
.product-card-body p{font-size:.82rem;color:var(--muted);line-height:1.5}
@media(max-width:1024px){ .product-card-grid{grid-template-columns:repeat(2,1fr)} }
@media(max-width:860px){ .product-card-grid{grid-template-columns:1fr} }

/* BRANDS / PRODUCTS — brand intro block (logo, description, gallery) above each group */
.brands{border-top:1px solid var(--line)}
.brand-tabs{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:40px}
.brand-tabs a{
  font-family:var(--font-mono);font-size:.78rem;font-weight:600;letter-spacing:.03em;
  padding:9px 18px;border-radius:var(--radius);border:1px solid var(--line);color:var(--muted);background:#fff;
  transition:border-color .2s,color .2s,background .2s;
}
.brand-tabs a:hover{border-color:var(--blue);color:var(--blue)}
.brand-tabs a.active{background:var(--navy);border-color:var(--navy);color:#fff}
.brand-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:40px;margin-bottom:24px;box-shadow:var(--shadow-sm);
}
.brand-head{display:flex;align-items:center;gap:20px;margin-bottom:24px;padding-bottom:24px;border-bottom:1px solid var(--line);flex-wrap:wrap}
.brand-logo{
  font-family:var(--font-display);font-weight:600;font-size:1.9rem;color:var(--navy);
  padding:18px 26px;background:var(--blue-light);border-radius:0;
}
.brand-logo-img{
  max-height:72px;max-width:220px;object-fit:contain;
}
.brand-region{
  font-family:var(--font-mono);font-size:.7rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;
  color:var(--blue);background:#fff;border:1px solid var(--blue);padding:4px 11px;border-radius:var(--radius);
}
.brand-desc{color:var(--muted);margin-bottom:20px;max-width:720px;white-space:pre-line}
.brand-intro{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:start;margin-bottom:20px}
.brand-gallery{position:relative;width:100%;aspect-ratio:4/3;border-radius:0;overflow:hidden;border:1px solid var(--line)}
.gallery-slide{position:absolute;inset:0;width:100%;height:100%;object-fit:contain;box-sizing:border-box;padding:28px;opacity:0;transition:opacity .3s}
.gallery-slide.active{opacity:1}
/* PRODUCT SPLIT — one full-width image+text section per product, stacked;
   image side (left/right) is per-product, set from the admin panel. */
.product-list{margin-top:8px}
.product-split{
  display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;
  padding:48px 0;border-top:1px solid var(--line);
}
.product-list .product-split:first-child{border-top:none;padding-top:8px}
.product-split.image-left .product-split-media{order:-1}
.product-split-media{
  aspect-ratio:4/3;border-radius:0;border:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;overflow:hidden;
}
.product-split-media img{width:100%;height:100%;object-fit:contain;box-sizing:border-box;padding:28px}
.product-split-media .icon{width:56px;height:56px;color:var(--line);stroke-width:1.25}
.tag{
  display:inline-block;font-family:var(--font-mono);font-size:.7rem;font-weight:600;color:var(--blue);
  background:var(--blue-light);padding:4px 11px;border-radius:5px;letter-spacing:.03em;
}
.product-split-text .tag{margin-bottom:14px}
.product-split-text h3{font-family:var(--font-display);font-size:1.6rem;font-weight:600;color:var(--navy);margin-bottom:16px;line-height:1.25}
.product-split-text p{color:var(--muted);font-size:1rem;line-height:1.7;margin-bottom:26px;white-space:pre-line}
.catalog-btn{
  display:inline-flex;align-items:center;gap:8px;padding:12px 22px;border-radius:10px;
  background:var(--navy);color:#fff;font-weight:600;font-size:.92rem;transition:background .2s;
}
.catalog-btn:hover{background:var(--blue)}
.catalog-btn .icon{width:18px;height:18px}

/* CLINICAL STUDIES — a small accordion under the catalog button; list of clickable PDFs */
.clinical-studies{margin-top:16px}
.clinical-studies summary{
  display:inline-flex;align-items:center;gap:6px;cursor:pointer;list-style:none;
  font-family:var(--font-mono);font-size:.85rem;font-weight:600;color:var(--navy);
}
.clinical-studies summary::-webkit-details-marker{display:none}
.clinical-studies .chevron{width:16px;height:16px;color:var(--muted);transition:transform .2s cubic-bezier(.4,0,.2,1)}
.clinical-studies[open] .chevron{transform:rotate(180deg)}
.clinical-studies-list{margin-top:12px;padding-left:0;list-style:none;display:flex;flex-direction:column;gap:8px}
.clinical-studies-list a{
  display:flex;align-items:center;gap:8px;padding:10px 14px;border-radius:8px;border:1px solid var(--line);
  font-size:.88rem;color:var(--ink);transition:border-color .2s,background .2s;
}
.clinical-studies-list a:hover{border-color:var(--blue);background:var(--blue-light)}
.clinical-studies-list .icon{width:16px;height:16px;color:var(--blue);flex-shrink:0}

.news-date{font-family:var(--font-mono);font-size:.72rem;color:var(--blue);font-weight:600;letter-spacing:.03em;text-transform:uppercase}
.news-body h3{font-size:1.12rem;margin:8px 0 8px}
.news-body p{font-size:.92rem;color:var(--muted)}

/* EVENTS PAGE — featured + date-block list (upcoming), row list (past) */
.events-upcoming-grid{display:grid;grid-template-columns:1.3fr 1fr;gap:28px;margin-bottom:28px}
.event-featured{border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;background:#fff}
.event-featured-media{height:240px;background:var(--blue-light);color:var(--blue);opacity:.6;display:flex;align-items:center;justify-content:center}
.event-featured-media img{width:100%;height:100%;object-fit:cover;opacity:1}
.event-featured-body{padding:28px}
.event-featured-body .meta{display:flex;gap:10px;margin-bottom:14px;align-items:center}
.event-featured-body .kicker{font-family:var(--font-mono);font-size:.7rem;font-weight:700;color:var(--blue);background:var(--blue-light);padding:5px 9px;border-radius:var(--radius);letter-spacing:.04em}
.event-featured-body .loc{font-family:var(--font-mono);font-size:.72rem;color:var(--num);font-weight:600}
.event-featured-body h3{font-family:var(--font-display);font-size:1.4rem;color:var(--navy);font-weight:600;margin-bottom:10px}
.event-featured-body p{font-size:.9rem;color:var(--muted);line-height:1.6}
.event-date-list{display:flex;flex-direction:column;gap:16px}
.event-date-row{border:1px solid var(--line);border-radius:var(--radius);background:#fff;display:flex;gap:20px;padding:20px;align-items:center}
.event-date-block{text-align:center;flex-shrink:0;border-right:1px solid var(--line-2);padding-right:20px}
.event-date-block .day{font-family:var(--font-display);font-size:1.8rem;color:var(--navy);font-weight:600;line-height:1}
.event-date-block .mon{font-family:var(--font-mono);font-size:.68rem;font-weight:700;color:var(--blue)}
.event-date-row .kicker{font-family:var(--font-mono);font-size:.68rem;font-weight:700;color:var(--num);margin-bottom:6px;display:block}
.event-date-row h4{font-family:var(--font-display);font-size:.95rem;font-weight:600;color:var(--navy)}
.event-row-list{border-top:1px solid var(--line)}
.event-row{display:grid;grid-template-columns:120px 1fr 160px;gap:20px;padding:18px 0;border-bottom:1px solid var(--line);align-items:center}
.event-row:last-child{border-bottom:none}
.event-row .when{font-family:var(--font-mono);font-size:.72rem;color:var(--num);font-weight:600}
.event-row .title{font-family:var(--font-display);font-size:.95rem;color:var(--navy);font-weight:600}
.event-row .loc{font-size:.82rem;color:var(--muted);text-align:right}
@media(max-width:860px){
  .events-upcoming-grid{grid-template-columns:1fr}
  .event-row{grid-template-columns:1fr;gap:6px;text-align:left}
  .event-row .loc{text-align:left}
}

/* PRODUCT DETAIL — single-product page (hero, indications, clinical data, mechanism, specs, publications) */
.product-hero{background:var(--navy);position:relative;overflow:hidden}
.product-hero-grid{display:grid;grid-template-columns:1.1fr 1fr;min-height:440px;position:relative}
.product-hero-text{padding:52px 44px 52px 0;display:flex;flex-direction:column;justify-content:center}
.product-hero-breadcrumb{font-family:var(--font-mono);font-size:.75rem;color:rgba(255,255,255,.5);letter-spacing:.05em;margin-bottom:20px}
.product-hero-brand{font-family:var(--font-mono);font-size:.75rem;font-weight:700;color:var(--sky);letter-spacing:.1em;margin-bottom:14px}
.product-hero-text h1{font-size:2.6rem;font-weight:600;color:#fff;line-height:1.05;margin-bottom:16px}
.product-hero-tagline{font-family:var(--font-display);font-size:1.15rem;font-style:italic;font-weight:500;color:rgba(255,255,255,.85);margin-bottom:18px}
.product-hero-desc{font-size:.95rem;line-height:1.7;color:rgba(255,255,255,.68);max-width:460px;margin-bottom:28px}
.product-hero-media{position:relative;display:flex;align-items:center;justify-content:center;padding:40px}
.product-hero-media img{width:100%;max-height:340px;object-fit:contain}
.product-hero-media-fallback{
  width:100%;height:300px;border-radius:var(--radius);background:#0d2645;color:rgba(255,255,255,.35);
  display:flex;align-items:center;justify-content:center;
}
.product-ready-badge{background:var(--blue-light);padding:20px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.product-ready-badge .inner{display:flex;align-items:center;gap:16px}
.product-ready-badge .label{font-family:var(--font-mono);font-size:.75rem;font-weight:700;color:var(--blue);letter-spacing:.06em;flex-shrink:0}
.product-ready-badge p{font-size:.95rem;color:var(--ink)}

.product-section{border-top:1px solid var(--line)}
.product-indications-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:56px;align-items:start}
.product-indications-heading{font-size:1.7rem;font-weight:600;line-height:1.25}
.indication-list{list-style:none;border-top:1px solid var(--line)}
.indication-list li{display:flex;gap:16px;padding:18px 0;border-bottom:1px solid var(--line)}
.indication-list li:last-child{border-bottom:none}
.indication-list .num{font-family:var(--font-mono);font-size:.72rem;font-weight:700;color:var(--num);flex-shrink:0;padding-top:3px}
.indication-list span:last-child{font-size:.95rem;line-height:1.6;color:var(--ink)}

.clinical-stats-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-bottom:28px}
.clinical-stat-card{background:var(--navy);border-radius:var(--radius);padding:32px 28px;position:relative;overflow:hidden}
.clinical-stat-card .value{font-family:var(--font-display);font-size:2.6rem;color:var(--sky);font-weight:600;margin-bottom:10px;position:relative}
.clinical-stat-card .label{font-family:var(--font-display);font-size:1rem;color:#fff;font-weight:600;margin-bottom:8px;position:relative}
.clinical-stat-card .desc{font-size:.82rem;line-height:1.6;color:rgba(255,255,255,.65);position:relative}
.clinical-charts-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.clinical-chart-img{width:100%;height:200px;object-fit:contain;border-radius:var(--radius);border:1px solid var(--line);background:#fff}
.clinical-source{font-size:.78rem;color:var(--num);margin-top:16px}

.spec-table{border:1px solid var(--line);border-radius:var(--radius);background:#fff;overflow:hidden}
.spec-row{display:grid;grid-template-columns:1fr 2fr;border-bottom:1px solid var(--line-2)}
.spec-row:last-child{border-bottom:none}
.spec-row .param{padding:18px 24px;font-weight:700;font-size:.9rem;color:var(--navy);background:var(--surface-2);border-right:1px solid var(--line-2)}
.spec-row .value{padding:18px 24px;font-size:.9rem;color:var(--ink);line-height:1.6}

.publications-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.publication-card{border:1px solid var(--line);border-radius:var(--radius);background:#fff;display:flex;gap:20px;padding:20px}
.publication-cover{width:110px;height:100px;flex-shrink:0;border-radius:var(--radius);background:var(--blue-light);color:var(--blue);display:flex;align-items:center;justify-content:center}
.publication-citation{font-family:var(--font-mono);font-size:.7rem;color:var(--num);margin-bottom:8px}
.publication-title{font-family:var(--font-display);font-size:.95rem;font-weight:600;color:var(--navy);line-height:1.35;margin-bottom:10px}
.publication-links{font-family:var(--font-mono);font-size:.75rem;font-weight:700;color:var(--blue);display:flex;gap:10px}
@media(max-width:860px){
  .product-hero-grid{grid-template-columns:1fr;min-height:0}
  .product-hero-text{padding:44px 0}
  .product-hero-text h1{font-size:1.9rem}
  .product-indications-grid{grid-template-columns:1fr;gap:24px}
  .clinical-stats-grid{grid-template-columns:1fr}
  .clinical-charts-grid{grid-template-columns:1fr}
  .spec-row{grid-template-columns:1fr}
  .spec-row .param{border-right:none;border-bottom:1px solid var(--line-2)}
  .publications-grid{grid-template-columns:1fr}
}

/* CONTACT — light paper section below the dark page-header band */
.contact-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:56px;margin-top:24px}
.contact-info{display:flex;flex-direction:column}
.contact-item{padding:20px 0;border-bottom:1px solid var(--line)}
.contact-item:last-child{border-bottom:none}
.contact-item .ci{display:none}
.contact-item b{display:block;font-family:var(--font-mono);font-size:.7rem;text-transform:uppercase;letter-spacing:.06em;color:var(--num);margin-bottom:8px;font-weight:700}
.contact-item span{color:var(--ink);font-size:.95rem;line-height:1.6}
.contact-form{background:#fff;padding:32px;border-radius:var(--radius);border:1px solid var(--line)}
.contact-form label{display:block;font-size:.8rem;font-weight:600;color:var(--ink);margin-bottom:8px;margin-top:16px}
.contact-form label:first-child{margin-top:0}
.contact-form input,.contact-form textarea{
  width:100%;padding:12px 14px;border-radius:var(--radius);border:1px solid var(--line);
  background:var(--surface-2);color:var(--ink);font-family:inherit;font-size:.95rem;
}
.contact-form input::placeholder,.contact-form textarea::placeholder{color:var(--num)}
.contact-form input:focus,.contact-form textarea:focus{outline:none;border-color:var(--blue)}
.contact-form .btn{margin-top:20px;background:var(--navy);color:#fff;width:100%;border-radius:var(--radius)}
.contact-form .btn:hover{background:var(--blue)}
.contact-form .form-success{
  background:var(--blue-light);border:1px solid var(--blue);border-radius:var(--radius);padding:14px 16px;
  color:var(--navy);font-size:.9rem;margin-bottom:16px;
}
.contact-form .form-error{
  background:#fdecea;border:1px solid #e08080;border-radius:var(--radius);padding:14px 16px;
  color:#a33;font-size:.9rem;margin-bottom:16px;
}
.contact-map{margin-top:40px;border-radius:var(--radius);overflow:hidden;border:1px solid var(--line)}
.contact-map iframe{width:100%;height:320px;border:0;display:block}
@media(max-width:860px){ .contact-grid{grid-template-columns:1fr;gap:32px} }

/* HOME BLOG HIGHLIGHTS — 1 featured + 2 list cards on the paper background. */
.home-blog{border-top:1px solid var(--line)}
.home-blog-link{
  font-family:var(--font-mono);font-size:.82rem;font-weight:600;color:var(--blue);white-space:nowrap;
}
.home-blog-link:hover{color:var(--navy)}
.home-blog-grid{display:grid;grid-template-columns:1.4fr 1fr;gap:28px}
.home-blog-featured{border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;background:#fff}
.home-blog-featured-media{height:280px;background:var(--blue-light);color:var(--blue);opacity:.6;display:flex;align-items:center;justify-content:center}
.home-blog-featured-media img{width:100%;height:100%;object-fit:cover;opacity:1}
.home-blog-featured-media .icon{width:40px;height:40px;stroke-width:1.25}
.home-blog-featured-body{padding:28px}
.home-blog-featured-body .kicker{font-family:var(--font-mono);font-size:.7rem;font-weight:700;letter-spacing:.06em;color:var(--blue);margin-bottom:10px;display:block}
.home-blog-featured-body h3{font-family:var(--font-display);font-size:1.5rem;font-weight:600;color:var(--navy);margin-bottom:10px;line-height:1.25}
.home-blog-featured-body p{color:var(--muted);font-size:.92rem;line-height:1.6}
.home-blog-list{display:flex;flex-direction:column;gap:20px}
.home-blog-list-item{display:flex;gap:16px;border:1px solid var(--line);border-radius:var(--radius);padding:16px;background:#fff}
.home-blog-list-media{width:120px;height:100px;flex-shrink:0;background:var(--blue-light);color:var(--blue);opacity:.6;display:flex;align-items:center;justify-content:center}
.home-blog-list-media img{width:100%;height:100%;object-fit:cover;opacity:1}
.home-blog-list-media .icon{width:26px;height:26px;stroke-width:1.25}
.home-blog-list-item .kicker{font-family:var(--font-mono);font-size:.68rem;font-weight:700;letter-spacing:.06em;color:var(--blue);margin-bottom:8px;display:block}
.home-blog-list-item h3{font-family:var(--font-display);font-size:1.05rem;font-weight:600;color:var(--navy);line-height:1.3}
@media(max-width:860px){ .home-blog-grid{grid-template-columns:1fr} }

/* CONTACT WIDGET — a thin horizontal strip along the bottom of the homepage.
   Full details + form live on their own page (/iletisim). */
.contact-widget-section{background:var(--bg-alt);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.contact-widget{
  display:flex;flex-wrap:wrap;align-items:center;gap:32px;padding:22px 0;
}
.contact-widget .eyebrow{margin-bottom:0;margin-right:8px}
.contact-widget-item{display:flex;align-items:center;gap:8px;font-size:.85rem;color:var(--muted);white-space:nowrap}
.contact-widget-item .icon{width:16px;height:16px;color:var(--blue);flex-shrink:0}
.contact-widget-link{
  display:inline-flex;align-items:center;gap:6px;margin-left:auto;font-family:var(--font-mono);
  font-size:.78rem;font-weight:600;letter-spacing:.03em;text-transform:uppercase;color:var(--blue);white-space:nowrap;
}
.contact-widget-link:hover{color:var(--sky)}

/* BLOG */
.blog-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px}
.blog-card{
  display:block;border:1px solid var(--line);border-radius:0;overflow:hidden;background:#fff;
  box-shadow:var(--shadow-sm);transition:transform .25s cubic-bezier(.4,0,.2,1),box-shadow .25s cubic-bezier(.4,0,.2,1);
}
.blog-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.blog-card-media{
  height:170px;background:var(--blue-light);color:var(--blue);opacity:.5;
  display:flex;align-items:center;justify-content:center;overflow:hidden;
}
.blog-card-media img{width:100%;height:100%;object-fit:cover;opacity:1}
.blog-card-media .icon{width:40px;height:40px;stroke-width:1.25}
.blog-card-body{padding:22px}
.blog-card-body h3{font-family:var(--font-display);color:var(--navy);font-size:1.15rem;margin:8px 0 8px;line-height:1.3}
.blog-card-body p{font-size:.9rem;color:var(--muted);line-height:1.55}
.blog-card-meta{display:flex;flex-wrap:wrap;align-items:center;gap:10px}
.reading-time{font-family:var(--font-mono);font-size:.72rem;color:var(--muted);letter-spacing:.03em}

.blog-post{padding:72px 0 96px}
.blog-back{
  display:inline-flex;align-items:center;gap:6px;margin-bottom:24px;font-family:var(--font-mono);
  font-size:.82rem;font-weight:600;color:var(--blue);
}
.blog-back .icon{width:16px;height:16px}
.blog-post h1{font-family:var(--font-display);font-size:2.3rem;font-weight:600;margin:10px 0 28px;max-width:820px}
.blog-post-cover{width:100%;max-height:420px;object-fit:cover;border-radius:0;margin-bottom:36px}
.blog-post-body{max-width:720px}
.blog-post-body p,.blog-post-body div{color:var(--ink);font-size:1.05rem;line-height:1.75;margin-bottom:22px}
.blog-post-body ul,.blog-post-body ol{margin:0 0 22px 1.3em;color:var(--ink);font-size:1.05rem;line-height:1.75}
.blog-post-body strong,.blog-post-body b{font-weight:700}
.blog-post-body em,.blog-post-body i{font-style:italic}
.blog-post-body u{text-decoration:underline}

/* FOOTER */
footer{background:var(--navy);color:rgba(255,255,255,.7);padding:56px 0 40px;position:relative;overflow:hidden}
footer .container{position:relative}
footer .logo{margin-bottom:16px;color:#fff}
footer a{color:rgba(255,255,255,.7);transition:color .2s}
footer a:hover{color:#fff}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:40px;padding-bottom:36px;border-bottom:1px solid rgba(255,255,255,.12)}
.footer-address{font-size:.92rem;line-height:1.7;color:rgba(255,255,255,.6);max-width:320px}
.footer-col-label{
  font-family:var(--font-mono);font-size:.7rem;font-weight:700;letter-spacing:.1em;
  color:var(--sky);margin-bottom:16px;text-transform:uppercase;
}
.footer-col div{font-size:.92rem;line-height:2}
.footer-bottom{
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:8px;
  padding-top:24px;font-size:.8rem;color:rgba(255,255,255,.45);
}
@media(max-width:860px){
  .footer-grid{grid-template-columns:1fr;gap:28px}
  .footer-bottom{flex-direction:column}
}

@media(max-width:860px){
  .nav-links{display:none}
  .nav-cta{display:none}
  .menu-btn{display:block}
  .contact-grid{grid-template-columns:1fr;gap:32px}
  .about-hero-grid{grid-template-columns:1fr;min-height:0}
  .about-hero-text{padding:48px 0}
  .about-hero-media img,.about-hero-media-fallback{min-height:260px}
  .about-hero-media{min-height:260px}
  .about-kimiz-grid{grid-template-columns:1fr;gap:32px}
  .numbered-grid.cols-3,.numbered-grid.cols-4{grid-template-columns:1fr}
  .numbered-col{border-right:none;border-bottom:1px solid var(--line);padding-bottom:28px;margin-bottom:0}
  .numbered-col:last-child{border-bottom:none}
  .stats-grid{grid-template-columns:repeat(2,1fr);gap:26px 0}
  .stat{border-bottom:1px solid rgba(255,255,255,.12);padding-bottom:16px;margin-bottom:16px}
  .announcement-slide{grid-template-columns:1fr;gap:24px}
  .announcement-text h3{font-size:1.8rem}
  .announcement-float-card{position:static;width:auto;margin-top:16px}
  .about-hero-text h1{font-size:1.8rem}
  .page-header-title{font-size:1.8rem}
  .hero-ctas{flex-wrap:wrap}
  .product-hero-text h1{font-size:1.9rem}
  .product-group-header{flex-wrap:wrap}
  .product-group-header .section-kicker{display:none}
  .distributor-item{flex-direction:column;text-align:center}
  .distributor-item .body{align-items:center}
  .distributors-grid{grid-template-columns:1fr}
  .home-blog-grid{grid-template-columns:1fr}
  .product-split{grid-template-columns:1fr;gap:24px;padding:32px 0}
  .product-split-media{order:-1}
  .brand-intro{grid-template-columns:1fr;gap:24px}
  .blog-mosaic{grid-template-columns:1fr}
  .blog-mosaic .mosaic-tile:first-child{grid-column:span 1}
  section{padding:60px 0}
  .mobile-nav.open{display:flex}
}
.mobile-nav{
  display:none;flex-direction:column;gap:4px;padding:12px 24px 20px;border-top:1px solid var(--line);background:#fff;
}
.mobile-nav a{padding:10px 0;font-weight:500;border-bottom:1px solid var(--line-2)}
.mobile-nav a.mobile-nav-sub{padding-left:16px;font-size:.9rem;color:var(--muted);font-weight:400}

@media(max-width:420px){
  .container{padding:0 16px}
  .logo{font-size:1.1rem;gap:8px}
  .logo .mark{width:32px;height:32px;font-size:.95rem}
  .logo-img{height:32px;max-width:110px}
  .lang-toggle{font-size:.7rem}
  .nav > div[style]{gap:6px !important}
  .nav{height:60px}
}

