/* Home page stylesheet
   Loaded on public home pages.
   Contains hero, globe, category cards, featured products,
   industry cards, process, statistics and support sections.
*/

.hero-bg-lines{
  position:absolute;
  inset:0;
  opacity:.22;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size:80px 80px;
  mask-image:radial-gradient(circle at 62% 42%,#000,transparent 62%);
}

.hero-copy{
  position:relative;
  z-index:2;
  padding-top:24px;
}

.hero-copy h1{
  max-width:610px;
  margin:0 0 18px;
  font-size:clamp(42px,4.5vw,66px);
  line-height:1.05;
  letter-spacing:-.06em;
}

.hero-copy p{
  max-width:560px;
  margin:0 0 24px;
  color:#d6deea;
  font-size:16px;
}

.hero-actions{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:28px;
}

.hero-metrics{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  max-width:560px;
}

.hero-metrics div{
  display:grid;
  grid-template-columns:44px 1fr;
  column-gap:12px;
  align-items:center;
  position:relative;
}

.hero-metrics div:not(:last-child)::after{
  content:"";
  position:absolute;
  right:-8px;
  width:1px;
  height:42px;
  background:rgba(255,255,255,.22);
}

.hero-metrics strong{font-size:17px}
.hero-metrics small{color:#c8d2df;font-size:13px}

.globe-shell{
  position:relative;
  min-height:430px;
}

.globe-base{
  position:absolute;
  left:20%;
  right:20%;
  bottom:18px;
  height:48px;
  border-radius:50%;
  border:2px solid rgba(227,27,35,.55);
  box-shadow:0 0 26px rgba(227,27,35,.32),inset 0 0 28px rgba(227,27,35,.14);
}

.country-stack{
  display:grid;
  gap:10px;
  max-height:318px;
  overflow-y:auto;
  overflow-x:hidden;
  scrollbar-gutter:stable;
  scrollbar-width:thin;
  scrollbar-color:rgba(220,38,38,.72) rgba(255,255,255,.10);
}

.country-stack::-webkit-scrollbar{
  width:7px;
}

.country-stack::-webkit-scrollbar-track{
  background:rgba(255,255,255,.10);
  border-radius:999px;
}

.country-stack::-webkit-scrollbar-thumb{
  background:rgba(220,38,38,.72);
  border-radius:999px;
}

.country-stack::-webkit-scrollbar-thumb:hover{
  background:rgba(220,38,38,.95);
}

.country-card{
  min-height:72px;
  display:grid;
  grid-template-columns:1fr 112px;
  gap:10px;
  align-items:center;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:10px;
  background:linear-gradient(135deg,rgba(255,255,255,.12),rgba(255,255,255,.04));
  box-shadow:0 14px 40px rgba(0,0,0,.18);
  backdrop-filter:blur(14px);
}

.country-text{
  display:grid;
  grid-template-columns:26px 1fr;
  align-items:center;
  column-gap:8px;
}

.country-text span{font-size:16px}
.country-text strong{font-size:15px}
.country-text small{grid-column:2;color:#d5dde8;font-size:12px}

.category-strip{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:10px;
  margin-bottom:10px;
}

.category-card{
  min-height:96px;
  display:grid;
  grid-template-columns:1fr 1.25fr;
  gap:8px;
  align-items:center;
  padding:14px;
  border:1px solid var(--line);
  border-radius:9px;
  background:#fff;
  box-shadow:0 8px 20px rgba(15,23,42,.03);
}

.category-card strong{
  display:block;
  font-size:15px;
  line-height:1.12;
}

.category-card span{
  display:block;
  color:var(--red);
  font-size:22px;
  margin-top:12px;
}

.content-grid{
  display:grid;
  grid-template-columns:minmax(0,2.15fr) minmax(320px,.92fr);
  gap:16px;
}

.featured-panel,
.industry-panel,
.process-strip{
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  box-shadow:0 8px 22px rgba(15,23,42,.035);
}

.featured-panel,
.industry-panel{
  padding:14px;
}

.section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:12px;
}

.section-head h2{
  position:relative;
  margin:0;
  font-size:22px;
  letter-spacing:-.03em;
}

.section-head h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-7px;
  width:34px;
  height:2px;
  background:var(--red);
}

.section-head a{
  font-size:12px;
  color:#475569;
  font-weight:850;
}

.section-head a span{
  color:var(--red);
  font-size:18px;
}

.industry-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
}

.industry-card{
  border:1px solid var(--line);
  border-radius:8px;
  overflow:hidden;
  background:#fff;
}

.industry-card strong{
  display:flex;
  align-items:center;
  gap:6px;
  padding:9px;
  font-size:13px;
}

.industry-card strong::before{
  content:"◎";
  color:#475569;
}

.process-strip{
  margin-top:16px;
  display:grid;
  grid-template-columns:1.25fr repeat(5,1fr) 1.8fr;
  align-items:stretch;
  overflow:hidden;
}

.process-title{
  display:flex;
  align-items:center;
  padding:18px;
  border-right:1px solid var(--line);
}

.process-title h2{
  position:relative;
  margin:0;
  font-size:20px;
}

.process-title h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-9px;
  width:30px;
  height:2px;
  background:var(--red);
}

.process-step{
  display:grid;
  grid-template-columns:44px 1fr 14px;
  gap:9px;
  align-items:center;
  padding:14px;
  border-right:1px solid var(--line);
}

.process-step small{
  display:block;
  font-size:11px;
  font-weight:950;
}

.process-step strong{
  display:block;
  font-size:13px;
}

.process-step p{
  margin:2px 0 0;
  color:#667085;
  font-size:11px;
  line-height:1.32;
}

.process-step b{
  color:var(--red);
  font-size:24px;
}

.support-card{
  display:grid;
  grid-template-columns:54px 1fr 32px;
  gap:12px;
  align-items:center;
  margin:8px;
  border-radius:9px;
  background:#07111e;
  color:#fff;
  padding:14px;
}

.support-card > span{
  width:52px;
  height:52px;
  border-radius:50%;
  display:grid;
  place-items:center;
  border:2px solid rgba(255,255,255,.6);
  font-size:28px;
}

.support-card strong{font-size:15px}

.support-card p{
  margin:3px 0 0;
  color:#d0d8e2;
  font-size:12px;
}

.support-card a{
  width:32px;
  height:32px;
  display:grid;
  place-items:center;
  border-radius:6px;
  background:rgba(227,27,35,.14);
  color:var(--red);
  font-size:22px;
}

.stats-band{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:0;
  padding:22px clamp(18px,5vw,100px);
  background:linear-gradient(180deg,#08111d,#02060c);
  color:#fff;
}

.stats-band div{
  display:grid;
  grid-template-columns:50px 1fr;
  column-gap:12px;
  align-items:center;
  padding:0 24px;
  border-right:1px solid rgba(255,255,255,.13);
}

.stats-band div:last-child{border-right:0}
.stats-band span{grid-row:1/3;color:var(--red);font-size:32px}
.stats-band strong{font-size:30px;line-height:1}
.stats-band small{color:#d4dbe6;font-size:13px}

@media(max-width:1320px){
.globe-hero{grid-template-columns:1fr}
  .globe-area{grid-template-columns:1fr 300px}
  .category-strip{grid-template-columns:repeat(3,1fr)}
  .content-grid{grid-template-columns:1fr}
  .product-showcase{grid-template-columns:repeat(3,1fr)}
  .process-strip{grid-template-columns:1fr}
  .process-title,.process-step{border-right:0;border-bottom:1px solid var(--line)}
  .stats-band{grid-template-columns:repeat(3,1fr);row-gap:20px}
}

@media(max-width:900px){
.globe-hero{padding-top:24px}
  .hero-metrics{grid-template-columns:1fr}
  .hero-metrics div::after{display:none}
  .category-strip,.industry-grid{grid-template-columns:repeat(2,1fr)}
  .product-showcase{grid-template-columns:repeat(2,1fr)}
  .stats-band{grid-template-columns:1fr 1fr}
}

@media(max-width:560px){
.hero-copy h1{font-size:38px}
  .category-strip,.industry-grid,.product-showcase,.stats-band{grid-template-columns:1fr}
  .category-card{grid-template-columns:1fr}
}

.globe-shell{
  min-height:460px;
  isolation:isolate;
}

.globe-base{
  pointer-events:none;
}

.globe-shell > .pin{
  display:block;
  width:14px;
  height:14px;
  gap:0;
  pointer-events:auto;
  cursor:pointer;
  will-change:transform,opacity;
  backface-visibility:hidden;
}

.globe-shell > .pin > i{
  display:block;
  width:14px;
  height:14px;
}

.globe-shell > .pin > span{
  position:absolute;
  top:50%;
  left:20px;
  white-space:nowrap;
  transform:translateY(
    calc(-50% + var(--country-label-shift,0px))
  );
}

.globe-shell > .pin[data-country-label-side="left"] > span{
  left:auto;
  right:20px;
}

.country-stack{
  z-index:9;
}

.globe-shell::before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:min(430px,78vw);
  height:min(350px,62vw);
  transform:translate(-50%,-50%);
  border-radius:50%;
  background:
    radial-gradient(circle at 32% 26%,rgba(132,197,255,.42),transparent 18%),
    radial-gradient(circle at 50% 50%,rgba(22,58,103,.76),rgba(3,10,20,.92) 68%,rgba(0,0,0,0) 72%);
  box-shadow:
    0 0 60px rgba(68,151,255,.38),
    inset -30px -30px 70px rgba(0,0,0,.45);
  z-index:1;
}

.country-card .mini-image{
  height:58px;
  background:rgba(255,255,255,.08);
  color:transparent;
  font-size:0;
}

.country-card .mini-image img{
  display:block;
  color:transparent;
  font-size:0;
  filter:drop-shadow(0 10px 18px rgba(0,0,0,.28));
}

.featured-empty{
  grid-column:1/-1;
  min-height:120px;
  display:grid;
  align-content:center;
  gap:6px;
  padding:24px;
  border:1px dashed #cbd5e1;
  border-radius:12px;
  background:#f8fafc;
}

.featured-empty h3{
  margin:0;
}

.featured-empty p{
  margin:0;
}

.category-card > div:first-child{
  position:relative;
  z-index:2;
}

.category-card strong{
  font-size:16px;
}

.category-card .mini-image{
  height:86px;
  min-height:86px;
  margin-top:8px;
}

.category-card .mini-image{
  border:1px solid #eef2f7;
  background:linear-gradient(180deg,#ffffff,#f8fafc);
}

.category-card .mini-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:6px;
}

.category-card:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(15,23,42,.08);
  border-color:#dbe3ef;
}

.industry-grid{
  align-items:stretch;
}

.industry-card{
  min-height:158px;
  display:grid;
  grid-template-rows:112px auto;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.industry-card:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(15,23,42,.08);
  border-color:#dbe3ef;
}

.industry-card strong{
  min-height:44px;
  display:flex;
  align-items:center;
  padding:10px;
  font-size:14px;
}

.process-step b:empty{
  display:none;
}

.ay-globe-live-product.is-flash{
  animation:ayCountryFlash .34s ease;
}

.ay-globe-live-media{
  height:132px;
  border-radius:18px;
  background:#f1f5f9;
  border:1px solid #e2e8f0;
  display:grid;
  place-items:center;
  overflow:hidden;
}

.ay-globe-live-media img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:8px;
  display:block;
}

.ay-globe-live-empty{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 30% 20%, rgba(220,38,38,.14), transparent 35%),
    linear-gradient(135deg,#111827,#020617);
}

.ay-globe-live-empty span{
  width:44px;
  height:32px;
  display:grid;
  place-items:center;
  border-radius:8px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:12px;
  font-weight:950;
  letter-spacing:.08em;
}

.ay-globe-live-copy small{
  display:block;
  color:#dc2626;
  font-size:12px;
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:6px;
}

.ay-globe-live-copy strong{
  display:block;
  color:#0f172a;
  font-size:22px;
  letter-spacing:-.035em;
  line-height:1.15;
}

.ay-globe-live-copy p{
  margin:8px 0 14px;
  color:#64748b;
  line-height:1.55;
  font-size:14px;
}

.ay-globe-live-copy a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  background:#111827;
  color:#fff;
  font-size:13px;
  font-weight:950;
}

.country-card[data-country-card]:hover,
.country-card[data-country-card].is-active{
  border-color:#dc2626;
  box-shadow:0 18px 42px rgba(220,38,38,.15);
}

/* Globe country product card */
.ay-globe-live-product{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:210px minmax(0,1fr);
  gap:18px;
  align-items:center;
  padding:16px;
  margin:0 0 18px;
  border-radius:24px;
  background:linear-gradient(135deg,#ffffff,#f8fafc);
  border:1px solid #e5e7eb;
  box-shadow:0 18px 46px rgba(15,23,42,.08);
}

/* Category card layout
   Keeps category title, arrow and media positioning aligned without duplicate visible text. */
.category-strip .category-card{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  min-height:154px;
  display:block;
}

.category-strip .category-card > div:first-child{
  position:relative;
  z-index:4;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:8px;
  width:100%;
  max-width:100%;
  min-width:0;
  flex-wrap:nowrap;
}

/* Title can be either direct strong or wrapped in the first child block. */
.category-strip .category-card > strong,
.category-strip .category-card > div:first-child strong{
  position:relative;
  z-index:4;
  display:inline-flex;
  align-items:center;
  justify-content:flex-start;
  width:auto;
  max-width:calc(100% - 38px);
  min-width:0;
  min-height:30px;
  margin:0;
  padding:0 10px;
  border-radius:999px;
  background:#fff;
  color:#0f172a;
  border:1px solid rgba(14,165,168,.26);
  box-shadow:0 7px 16px rgba(15,35,55,.07);
  font-size:13px;
  line-height:30px;
  font-weight:900;
  letter-spacing:-.02em;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  vertical-align:top;
}

/* Arrow can be either direct span or wrapped in the first child block. */
.category-strip .category-card > span,
.category-strip .category-card > div:first-child span{
  position:relative;
  z-index:4;
  inset:auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:26px;
  height:26px;
  min-width:26px;
  margin:0 0 0 8px;
  padding:0;
  border-radius:999px;
  background:#0ea5a8;
  color:#fff;
  font-size:14px;
  line-height:1;
  font-weight:950;
  box-shadow:0 7px 16px rgba(14,165,168,.18);
  transform:none;
  vertical-align:top;
}

/* Some old category data can repeat the title as small/p text. Keep the card clean visually. */
.category-strip .category-card > small,
.category-strip .category-card > p{
  display:none;
}

.category-strip .category-card:hover > strong,
.category-strip .category-card:hover > div:first-child strong{
  border-color:rgba(14,165,168,.42);
  box-shadow:0 9px 20px rgba(15,35,55,.10);
}

.category-strip .category-card:hover > span,
.category-strip .category-card:hover > div:first-child span{
  background:#0f6b8f;
  transform:none;
}

.category-strip .category-card .mini-image{
  position:absolute;
  z-index:1;
  right:12px;
  bottom:8px;
  width:58%;
  height:82%;
  max-width:260px;
  margin:0;
  pointer-events:none;
}

.category-strip .category-card .mini-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center right;
}

.category-strip .category-card::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  background:linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 42%, rgba(255,255,255,.18) 72%, rgba(255,255,255,0) 100%);
}

@media (max-width:768px){
  .category-strip .category-card{
    min-height:140px;
  }

  .category-strip .category-card > strong,
  .category-strip .category-card > div:first-child{
    max-width:62%;
  }

  .category-strip .category-card .mini-image{
    right:8px;
    bottom:8px;
    width:54%;
    height:76%;
  }
}
/* End category card layout */

/* Industry cards layout
   Keeps the industry solution cards, media frame and CTA button in one maintainable block. */
.content-grid{
  grid-template-columns:minmax(0,1fr) minmax(500px,560px);
  gap:28px;
  align-items:start;
}

.industry-panel{
  min-width:0;
  padding:24px;
  border-radius:28px;
  background:linear-gradient(180deg,#ffffff 0%,#f7f9fc 100%);
  border:1px solid rgba(15,35,55,.08);
  box-shadow:0 18px 50px rgba(15,35,55,.08);
}

.industry-panel .section-head{
  margin-bottom:18px;
}

.industry-panel .section-head h2{
  font-size:clamp(22px,2vw,30px);
  letter-spacing:-.03em;
}

.industry-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.industry-card{
  position:relative;
  display:grid;
  grid-template-rows:auto auto;
  gap:12px;
  min-height:auto;
  padding:12px;
  overflow:hidden;
  border-radius:22px;
  text-decoration:none;
  background:#fff;
  border:1px solid #e4eaf2;
  box-shadow:0 10px 28px rgba(15,35,55,.06);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.industry-card:hover{
  transform:translateY(-4px);
  border-color:rgba(190,18,31,.22);
  box-shadow:0 22px 48px rgba(15,35,55,.14);
}

.industry-card::before,
.industry-card strong::before{
  content:none;
  display:none;
}

.industry-card .industry-image{
  width:100%;
  aspect-ratio:16 / 10;
  min-height:132px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border-radius:18px;
  background:linear-gradient(180deg,#fdfefe 0%,#f3f6fa 100%);
  border:1px solid #e6ebf2;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.8);
}

.industry-card .industry-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  transform:scale(1.08);
}

.industry-card strong{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin:0;
  padding:0 2px;
  min-height:32px;
  font-size:17px;
  line-height:1.15;
  font-weight:800;
  color:#10243a;
  text-align:left;
}

.industry-card strong::after{
  content:"→";
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  min-width:30px;
  border-radius:999px;
  background:#d71920;
  color:#fff;
  font-size:16px;
  font-weight:700;
  box-shadow:0 10px 18px rgba(215,25,32,.22);
}

@media (max-width:1180px){
  .content-grid{
    grid-template-columns:1fr;
  }

  .industry-grid{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }
}

@media (max-width:900px){
  .industry-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:560px){
  .industry-panel{
    padding:18px;
    border-radius:22px;
  }

  .industry-grid{
    grid-template-columns:1fr;
  }

  .industry-card .industry-image{
    aspect-ratio:16 / 9;
    min-height:160px;
  }
}

.home-wrap .industry-panel#cozumler .industry-card .industry-image.real{
  display:flex;
}

.home-wrap .industry-panel#cozumler .industry-card strong{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1fr) 24px;
  align-items:center;
  column-gap:8px;
  width:150px;
  min-width:150px;
  max-width:150px;
  height:38px;
  min-height:38px;
  margin:10px auto 0;
  padding:0 7px 0 13px;
  box-sizing:border-box;
  border-radius:999px;
  background:#fff;
  color:#0f172a;
  border:1px solid rgba(14,165,168,.30);
  box-shadow:0 8px 18px rgba(15,35,55,.08);
  font-size:14px;
  line-height:1;
  font-weight:950;
  letter-spacing:-.01em;
  text-align:left;
  white-space:nowrap;
  overflow:hidden;
}

.home-wrap .industry-panel#cozumler .industry-card strong::before{
  display:none;
  content:none;
}

.home-wrap .industry-panel#cozumler .industry-card strong::after{
  content:"→";
  position:static;
  inset:auto;
  justify-self:end;
  display:flex;
  align-items:center;
  justify-content:center;
  width:24px;
  height:24px;
  min-width:24px;
  margin:0;
  padding:0;
  border-radius:999px;
  background:#0ea5a8;
  color:#fff;
  font-size:13px;
  line-height:1;
  font-weight:950;
  box-shadow:0 7px 16px rgba(14,165,168,.18);
  transform:none;
}

.home-wrap .industry-panel#cozumler .industry-card.food strong{
  border-color:rgba(245,158,11,.42);
}

.home-wrap .industry-panel#cozumler .industry-card.cosmetic strong{
  border-color:rgba(34,211,238,.48);
}

.home-wrap .industry-panel#cozumler .industry-card.chemical strong{
  border-color:rgba(59,130,246,.42);
}

.home-wrap .industry-panel#cozumler .industry-card.pharma strong{
  border-color:rgba(52,211,153,.48);
}

.home-wrap .industry-panel#cozumler .industry-card:hover strong::after{
  background:#0f6b8f;
  transform:none;
}


.all-sectors{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:max-content;
  max-width:100%;
  min-height:42px;
  margin-top:18px;
  padding:0 16px;
  border-radius:999px;
  background:#123b63;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  line-height:1;
  font-weight:900;
  box-shadow:0 12px 30px rgba(18,59,99,.18);
}

.all-sectors span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  color:#fff;
  line-height:1;
}

.all-sectors:hover{
  background:#0ea5a8;
}

/* End industry cards layout */

/* Featured product cards
   Maintains the home page product cards, media frame and action buttons in one block. */
.featured-panel{
  min-width:0;
  padding:24px;
  border-radius:28px;
  background:
    radial-gradient(circle at 8% 0%, rgba(14,165,168,.075), transparent 34%),
    linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
  border:1px solid rgba(15,35,55,.08);
  box-shadow:0 18px 50px rgba(15,35,55,.075);
}

.featured-panel .section-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
}

.featured-panel .section-head h2{
  position:relative;
  margin:0;
  padding-bottom:12px;
  color:#0d2238;
  font-size:clamp(23px,2vw,32px);
  line-height:1.05;
  letter-spacing:-.04em;
  font-weight:900;
}

.featured-panel .section-head h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:42px;
  height:3px;
  border-radius:999px;
  background:#0ea5a8;
}

.featured-panel .section-head > a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 13px;
  border-radius:999px;
  color:#0d2238;
  background:#fff;
  border:1px solid #e3eaf2;
  box-shadow:0 8px 22px rgba(15,35,55,.06);
  font-size:13px;
  font-weight:850;
  text-decoration:none;
  white-space:nowrap;
}

.featured-panel .section-head > a span{
  color:#0ea5a8;
  font-size:16px;
}

.product-showcase{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(245px,1fr));
  gap:20px;
  align-items:stretch;
}

.featured-card{
  position:relative;
  display:grid;
  grid-template-rows:190px auto 1fr auto;
  gap:12px;
  min-width:0;
  padding:14px;
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  border:1px solid #e3eaf2;
  box-shadow:0 12px 34px rgba(15,35,55,.075);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.featured-card:hover{
  transform:translateY(-4px);
  border-color:rgba(14,165,168,.22);
  box-shadow:0 24px 54px rgba(15,35,55,.14);
}

.featured-card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(135deg,rgba(255,255,255,.75),rgba(255,255,255,0) 44%);
  z-index:0;
}

.featured-card > *{
  position:relative;
  z-index:1;
}

.featured-card .product-visual,
.featured-card > .product-visual{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:190px;
  overflow:hidden;
  border-radius:20px;
  background:linear-gradient(180deg,#ffffff 0%,#f2f6fa 100%);
  border:1px solid #e5ebf3;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.8);
  text-decoration:none;
}

.featured-card .product-visual img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  transform:scale(1.08);
  transition:transform .28s ease;
}

.featured-card:hover .product-visual img{
  transform:scale(1.13);
}

.featured-card h3{
  margin:2px 2px 0;
  color:#0d2238;
  font-size:18px;
  line-height:1.15;
  letter-spacing:-.025em;
  font-weight:900;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.featured-card p{
  margin:0 2px;
  color:#526173;
  font-size:14px;
  line-height:1.55;
  display:-webkit-box;
  -webkit-line-clamp:4;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.featured-card .card-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:4px;
}

.featured-card .card-actions a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:10px 12px;
  border-radius:14px;
  font-size:14px;
  font-weight:900;
  text-decoration:none;
  color:#0d2238;
  background:#fff;
  border:1px solid #dfe7f1;
  box-shadow:0 8px 18px rgba(15,35,55,.055);
}

.featured-card .card-actions a:hover{
  transform:translateY(-1px);
}

.featured-card .card-actions a.red{
  color:#fff;
  background:linear-gradient(135deg,#123b63,#0ea5a8);
  border-color:rgba(14,165,168,.25);
  box-shadow:0 12px 24px rgba(18,59,99,.18);
}

@media (max-width:1180px){
  .product-showcase{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media (max-width:820px){
  .featured-panel{
    padding:18px;
    border-radius:22px;
  }

  .product-showcase{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .featured-card{
    grid-template-rows:170px auto 1fr auto;
  }

  .featured-card .product-visual{
    min-height:170px;
  }
}

@media (max-width:560px){
  .featured-panel .section-head{
    flex-direction:column;
  }

  .product-showcase{
    grid-template-columns:1fr;
  }

  .featured-card{
    display:flex;
    flex-direction:column;
    grid-template-rows:none;
    gap:12px;
    min-width:0;
  }

  .featured-card .product-visual,
  .featured-card > .product-visual{
    flex:0 0 190px;
    width:100%;
    height:190px;
    min-height:190px;
    max-height:190px;
    overflow:hidden;
    contain:paint;
    transform:translateZ(0);
  }

  .featured-card .product-visual img{
    display:block;
    width:100%;
    height:100%;
    min-height:0;
    max-height:190px;
    object-fit:contain;
    object-position:center;
    transform:none;
  }

  .featured-card:hover{
    transform:none;
  }

  .featured-card:hover .product-visual img{
    transform:none;
  }

  .featured-card h3,
  .featured-card p,
  .featured-card .card-actions{
    flex:none;
    min-width:0;
  }
}
/* End featured product cards */

/* Globe product detail button
   Keeps the dynamic product detail button cleanly aligned on the right side of the live product text area. */
.ay-globe-live-product .ay-globe-live-copy{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  column-gap:18px;
  align-items:center;
  min-width:0;
}

.ay-globe-live-product .ay-globe-live-copy small,
.ay-globe-live-product .ay-globe-live-copy strong,
.ay-globe-live-product .ay-globe-live-copy p{
  grid-column:1;
}

.ay-globe-live-product .ay-globe-live-copy a[data-country-live-link]{
  grid-column:2;
  grid-row:1 / 4;
  justify-self:end;
  align-self:center;
  position:static;
  transform:none;
  z-index:3;
  pointer-events:auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-width:104px;
  min-height:40px;
  margin:0;
  padding:0 14px;
  white-space:nowrap;
}

/* End globe product detail button */

/* Globe vertical alignment
   Moves only the globe visual layers downward; product card, admin link and country list stay untouched. */
.globe-shell{
  --globe-down-1cm:38px;
}

.globe-shell > canvas#globalGlobe{
  transform:translateY(var(--globe-down-1cm));
}

.globe-shell::before{
  top:calc(50% + var(--globe-down-1cm));
}

.globe-shell > .pin{
  top:calc(var(--y) + var(--globe-down-1cm));
}

.globe-shell > .globe-base{
  bottom:-20px;
}
/* End globe vertical alignment */

/* Globe responsive layout
   Keeps globe, live product and country cards in separate mobile rows. */
@media (max-width:900px){
  .globe-area{
    grid-template-columns:minmax(0,1fr);
    gap:16px;
    min-width:0;
  }

  .globe-shell{
    --globe-mobile-height:clamp(340px,68vw,420px);
    --globe-down-1cm:0px;
    min-width:0;
    min-height:0;
    padding-top:var(--globe-mobile-height);
  }

  .globe-shell > canvas#globalGlobe{
    top:0;
    right:0;
    bottom:auto;
    left:0;
    width:100%;
    height:var(--globe-mobile-height);
    transform:none;
  }

  .globe-shell::before{
    top:calc(var(--globe-mobile-height) / 2);
    width:min(430px,90vw);
    height:min(350px,72vw);
  }

  .globe-shell > .globe-base{
    top:calc(var(--globe-mobile-height) - 44px);
    bottom:auto;
  }

  .ay-globe-live-product{
    width:100%;
    max-width:100%;
    box-sizing:border-box;
    grid-template-columns:160px minmax(0,1fr);
    gap:14px;
    margin:0 0 16px;
  }

  .ay-globe-live-media{
    height:118px;
  }

  .country-stack{
    width:100%;
    max-width:100%;
    grid-template-columns:repeat(2,minmax(0,1fr));
    max-height:none;
    overflow:visible;
    scrollbar-gutter:auto;
  }

  .country-card{
    min-width:0;
    grid-template-columns:minmax(0,1fr) 92px;
  }

  .country-text{
    min-width:0;
  }

  .country-text strong,
  .country-text small{
    min-width:0;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }
}

@media (max-width:720px){
  .globe-shell{
    --globe-mobile-height:clamp(310px,92vw,380px);
  }

  .globe-shell::before{
    width:min(430px,94vw);
    height:min(350px,76vw);
  }

  .ay-globe-live-product{
    grid-template-columns:1fr;
    gap:12px;
    padding:12px;
    border-radius:18px;
  }

  .ay-globe-live-media{
    height:150px;
  }

  .ay-globe-live-product .ay-globe-live-copy{
    display:block;
  }

  .ay-globe-live-copy strong{
    font-size:19px;
  }

  .ay-globe-live-product .ay-globe-live-copy a[data-country-live-link]{
    margin-top:8px;
  }

  .country-stack{
    grid-template-columns:1fr;
    gap:8px;
  }

  .country-card{
    min-height:68px;
    grid-template-columns:minmax(0,1fr) 84px;
    padding:8px 10px;
  }

  .country-card .mini-image{
    height:52px;
  }
}

@media (max-width:480px){
  .globe-shell{
    --globe-mobile-height:clamp(288px,94vw,340px);
  }

  .globe-shell > .pin > span{
    max-width:112px;
    padding:4px 6px;
    overflow:hidden;
    text-overflow:ellipsis;
    font-size:11px;
  }
}
/* End globe responsive layout */

/* Home product videos
   Keeps the home page video showcase, two-column grid and mobile layout in one block. */
.home-video-showcase{
  grid-column:1 / -1;
  width:100%;
  max-width:100%;
  margin-top:8px;
  padding:22px;
  border:1px solid rgba(15,23,42,.10);
  border-radius:28px;
  background:
    radial-gradient(circle at 94% 8%, rgba(14,165,168,.08), transparent 32%),
    linear-gradient(135deg,#ffffff 0%,#f8fafc 100%);
  box-shadow:0 18px 48px rgba(15,23,42,.07);
}

.home-video-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
}

.home-video-head h3{
  margin:6px 0 0;
  color:#0f172a;
  font-size:26px;
  line-height:1.15;
  letter-spacing:-.025em;
}

.home-wrap .home-video-showcase .home-video-head > a,
.home-wrap .home-video-showcase .home-video-copy > a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  width:max-content;
  min-height:38px;
  padding:0 15px;
  border-radius:999px;
  background:#0ea5a8;
  color:#fff;
  border:1px solid rgba(14,165,168,.28);
  box-shadow:0 8px 18px rgba(14,165,168,.16);
  text-decoration:none;
  font-size:13px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.01em;
  white-space:nowrap;
}

.home-wrap .home-video-showcase .home-video-head > a span,
.home-wrap .home-video-showcase .home-video-copy > a span{
  display:inline;
  width:auto;
  height:auto;
  border-radius:0;
  background:transparent;
  color:inherit;
  line-height:1;
}

.home-wrap .home-video-showcase .home-video-head > a:hover,
.home-wrap .home-video-showcase .home-video-copy > a:hover{
  background:#0f6b8f;
  box-shadow:0 10px 22px rgba(15,107,143,.18);
  transform:none;
}

.home-video-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
  align-items:stretch;
}

.home-video-card{
  min-width:0;
  border:1px solid rgba(15,23,42,.09);
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 14px 32px rgba(15,23,42,.06);
}

.home-video-frame{
  position:relative;
  aspect-ratio:16 / 9;
  background:#0f172a;
}

.home-video-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:block;
}

.home-video-copy{
  min-height:82px;
  padding:16px 18px 18px;
}

.home-video-copy strong{
  display:block;
  color:#111827;
  font-size:16px;
  line-height:1.35;
  margin-bottom:10px;
}

@media (max-width:760px){
  .home-video-showcase{
    padding:16px;
    border-radius:22px;
  }

  .home-video-head{
    align-items:flex-start;
    flex-direction:column;
    gap:10px;
  }

  .home-video-head h3{
    font-size:22px;
  }

  .home-video-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .home-video-copy{
    min-height:auto;
  }
}
/* End home product videos */

/* Home video and reference background normalization */

/* Video bölümü: pembe/radial arka plan yok */
.home-video-showcase{
    background:#ffffff;
    border-color:rgba(15,23,42,.10);
    box-shadow:0 14px 34px rgba(15,23,42,.065);
}

.home-video-card,
.home-video-copy{
    background:#ffffff;
}

.home-video-head{
    background:transparent;
}

/* End home video and reference background normalization */

/* Support card contact layout
   Keeps the process support card aligned without override-heavy rules. */
.process-strip .support-card{
  display:grid;
  grid-template-columns:44px minmax(0,1fr);
  grid-template-areas:
    "icon text"
    "icon button";
  column-gap:14px;
  row-gap:10px;
  align-items:start;
  text-align:left;
}

.process-strip .support-card > span{
  grid-area:icon;
  margin:0;
}

.process-strip .support-card > div{
  grid-area:text;
  min-width:0;
  text-align:left;
}

.process-strip .support-card > a{
  grid-area:button;
  justify-self:start;
  align-self:start;
  margin:0;
  width:auto;
  max-width:max-content;
  text-align:left;
}
/* End support card contact layout */

/* Home references
   Keeps the home page reference showcase, white background, grid and cards in one block. */
.home-wrap .reference-showcase{
  width:100%;
  margin:34px 0 0;
  padding:0;
  background:#fff;
  background-image:none;
  overflow:visible;
}

html body .home-wrap section#referans.reference-showcase,
html body section#referans.reference-showcase,
html body #referans.reference-showcase{
  background:#fff;
  background-image:none;
  background-color:#fff;
  box-shadow:0 0 0 100vmax #fff;
  clip-path:inset(0 -100vmax);
}

html body .home-wrap section#referans.reference-showcase::before,
html body .home-wrap section#referans.reference-showcase::after,
html body section#referans.reference-showcase::before,
html body section#referans.reference-showcase::after,
html body #referans.reference-showcase::before,
html body #referans.reference-showcase::after{
  display:none;
  content:none;
  opacity:0;
  background:none;
  background-image:none;
  box-shadow:none;
}

.home-wrap .reference-head{
  width:100%;
  margin:0 0 22px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:22px;
  background:transparent;
}

.home-wrap .reference-head > div{
  min-width:0;
}

.home-wrap .reference-head .kicker{
  display:inline-flex;
  align-items:center;
  width:max-content;
  max-width:100%;
  padding:7px 11px;
  border-radius:999px;
  background:#e6f7f8;
  color:#0f6b8f;
  font-size:12px;
  line-height:1;
  font-weight:900;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.home-wrap .reference-head h2{
  margin:12px 0 8px;
  color:#0f172a;
  font-size:clamp(26px,3.2vw,40px);
  line-height:1.08;
  letter-spacing:-.04em;
  font-weight:950;
}

.home-wrap .reference-head p{
  margin:0;
  max-width:620px;
  color:#64748b;
  font-size:16px;
  line-height:1.65;
}

.home-wrap .reference-head .section-link{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:44px;
  padding:0 17px;
  border-radius:999px;
  background:#123b63;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:900;
  box-shadow:0 12px 30px rgba(18,59,99,.18);
}

.home-wrap .reference-head .section-link:hover{
  background:#0ea5a8;
}

.home-wrap .reference-showcase-grid{
  width:100%;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
  align-items:stretch;
  background:transparent;
}

.home-wrap .reference-showcase-card{
  min-width:0;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  box-shadow:0 12px 34px rgba(15,23,42,.075);
  text-decoration:none;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.home-wrap .reference-showcase-card:hover{
  transform:translateY(-3px);
  border-color:rgba(14,165,168,.28);
  box-shadow:0 18px 48px rgba(18,59,99,.14);
}

.home-wrap .reference-showcase-img{
  width:100%;
  aspect-ratio:16 / 10;
  padding:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:#fff;
  border-bottom:1px solid rgba(15,23,42,.08);
}

.home-wrap .reference-showcase-img img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  border-radius:13px;
  background:#fff;
  transform:none;
  filter:none;
}

.home-wrap .reference-showcase-copy{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:7px;
  padding:15px 15px 17px;
  background:#fff;
}

.home-wrap .reference-showcase-copy span{
  display:inline-flex;
  width:max-content;
  max-width:100%;
  padding:6px 9px;
  border-radius:999px;
  background:#e6f7f8;
  color:#0f6b8f;
  font-size:10px;
  line-height:1;
  font-weight:900;
  letter-spacing:.045em;
  text-transform:uppercase;
}

.home-wrap .reference-showcase-copy h3{
  margin:0;
  color:#0f172a;
  font-size:15px;
  line-height:1.28;
  font-weight:900;
  letter-spacing:-.015em;
}

.home-wrap .reference-showcase-copy p{
  margin:0;
  color:#64748b;
  font-size:12.5px;
  line-height:1.55;
}

@media (max-width:760px){
  .home-wrap .reference-head{
    align-items:flex-start;
    flex-direction:column;
  }

  .home-wrap .reference-showcase-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
  }
}

@media (max-width:520px){
  .home-wrap .reference-showcase-grid{
    grid-template-columns:1fr;
  }
}
/* End home references */

/* Home product orbit under globe
   Uses /urunler product data. Globe/canvas/base dimensions stay untouched. */
.machine-orbit-stage{
  position:absolute;
  left:50%;
  bottom:-22px;
  width:min(780px,94%);
  height:210px;
  transform:translateX(-50%);
  z-index:8;
  pointer-events:none;
}

.machine-orbit-item{
  position:absolute;
  left:50%;
  bottom:0;
  display:grid;
  grid-template-columns:58px minmax(0,1fr);
  gap:10px;
  align-items:center;
  width:188px;
  min-height:66px;
  padding:8px 10px;
  border:1px solid rgba(255,255,255,.70);
  border-radius:16px;
  background:rgba(255,255,255,.90);
  box-shadow:0 12px 30px rgba(2,6,23,.16);
  backdrop-filter:blur(10px);
  color:#0f172a;
  font:inherit;
  cursor:pointer;
  pointer-events:auto;
  opacity:.70;
  transition:transform .72s ease, opacity .72s ease, box-shadow .72s ease;
  will-change:transform;
}

.machine-orbit-media{
  width:58px;
  height:46px;
  border-radius:12px;
  background:#f8fafc;
  display:grid;
  place-items:center;
  overflow:hidden;
}

.machine-orbit-media img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:4px;
  display:block;
}

.machine-orbit-copy{
  min-width:0;
}

.machine-orbit-copy strong{
  display:block;
  font-size:12px;
  line-height:1.15;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.machine-orbit-copy small{
  display:block;
  margin-top:3px;
  color:#64748b;
  font-size:11px;
  line-height:1.2;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.machine-orbit-item[data-machine-orbit-slot="0"]{
  width:360px;
  min-height:148px;
  grid-template-columns:152px minmax(0,1fr);
  transform:translateX(-50%) translateY(-66px) scale(1);
  opacity:1;
  z-index:6;
  border-color:rgba(220,38,38,.38);
  box-shadow:0 26px 70px rgba(2,6,23,.32), 0 0 0 1px rgba(220,38,38,.10);
}

.machine-orbit-item[data-machine-orbit-slot="0"] .machine-orbit-media{
  width:152px;
  height:118px;
  border-radius:18px;
}

.machine-orbit-item[data-machine-orbit-slot="0"] .machine-orbit-copy strong{
  font-size:18px;
  line-height:1.12;
  white-space:normal;
}

.machine-orbit-item[data-machine-orbit-slot="0"] .machine-orbit-copy small{
  font-size:12px;
  line-height:1.35;
  white-space:normal;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
}

.machine-orbit-item[data-machine-orbit-slot="-1"]{
  transform:translateX(-348px) translateY(8px) scale(.82);
  z-index:3;
}

.machine-orbit-item[data-machine-orbit-slot="1"]{
  transform:translateX(160px) translateY(8px) scale(.82);
  z-index:3;
}

.machine-orbit-item[data-machine-orbit-slot="-2"]{
  transform:translateX(-520px) translateY(40px) scale(.66);
  opacity:.46;
  z-index:2;
}

.machine-orbit-item[data-machine-orbit-slot="2"]{
  transform:translateX(350px) translateY(40px) scale(.66);
  opacity:.46;
  z-index:2;
}

.machine-orbit-item[data-machine-orbit-hidden="1"]{
  opacity:0;
  pointer-events:none;
  transform:translateX(-50%) translateY(62px) scale(.54);
}

@media (max-width:720px){
  .machine-orbit-stage{
    display:none;
  }
}
/* End home product orbit under globe */
