@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root{
  --blue-950:#06243d;
  --blue-900:#07375f;
  --blue-800:#075985;
  --blue-700:#0369a1;
  --blue-600:#0284c7;
  --blue-500:#0ea5e9;
  --blue-300:#7dd3fc;
  --blue-100:#e0f2fe;
  --ice:#f4fbff;
  --white:#ffffff;
  --text:#0f172a;
  --muted:#5b6b7d;
  --line:#d9eef9;
  --shadow:0 24px 70px rgba(7,55,95,.16);
  --radius:28px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(125,211,252,.35), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(14,165,233,.20), transparent 30%),
    linear-gradient(180deg,#f7fcff 0%,#fff 46%,#eef9ff 100%);
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{width:min(1180px,92%);margin:0 auto}
.topbar{
  background:linear-gradient(90deg,var(--blue-950),var(--blue-800));
  color:#dff7ff;
  font-size:14px;
  padding:10px 0;
}
.topbar .container{display:flex;justify-content:space-between;gap:18px;align-items:center;flex-wrap:wrap}
.header{
  position:sticky;top:0;z-index:1000;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(125,211,252,.34);
}
.nav{height:78px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.logo{display:flex;align-items:center;gap:12px;font-weight:900;color:var(--blue-950);font-size:24px}
.logo-mark{
  width:42px;height:42px;border-radius:14px;
  display:grid;place-items:center;color:white;font-weight:900;
  background:linear-gradient(135deg,var(--blue-700),var(--blue-300));
  box-shadow:0 12px 30px rgba(14,165,233,.28)
}
.menu{display:flex;align-items:center;gap:6px;list-style:none;margin:0;padding:0}
.menu a{padding:12px 13px;border-radius:999px;font-weight:700;color:#17324a;font-size:15px}
.menu a:hover,.menu a.active{background:var(--blue-100);color:var(--blue-800)}
.dropdown{position:relative}
.dropdown-panel{
  position:absolute;top:48px;left:0;width:290px;
  background:#fff;border:1px solid var(--line);border-radius:22px;
  box-shadow:var(--shadow);padding:10px;display:none
}
.dropdown:hover .dropdown-panel{display:grid}
.dropdown-panel a{border-radius:14px;padding:12px 14px}
.nav-actions{display:flex;align-items:center;gap:10px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:13px 18px;border-radius:999px;border:1px solid transparent;
  font-weight:800;cursor:pointer;transition:.25s ease
}
.btn-primary{background:linear-gradient(135deg,var(--blue-700),var(--blue-500));color:#fff;box-shadow:0 16px 36px rgba(14,165,233,.24)}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 22px 44px rgba(14,165,233,.32)}
.btn-ghost{border-color:var(--line);background:#fff;color:var(--blue-800)}
.mobile-toggle{display:none;border:0;background:var(--blue-100);border-radius:12px;font-size:24px;padding:8px 12px;color:var(--blue-900)}
.hero{position:relative;padding:86px 0 68px;overflow:hidden}
.hero-grid{display:grid;grid-template-columns:1.02fr .98fr;gap:46px;align-items:center}
.eyebrow{display:inline-flex;gap:8px;align-items:center;background:#e7f7ff;color:var(--blue-800);padding:8px 13px;border-radius:999px;font-weight:800;margin-bottom:18px}
h1{font-size:clamp(38px,5vw,70px);line-height:1.03;margin:0 0 22px;letter-spacing:-2px;color:var(--blue-950)}
.lead{font-size:19px;line-height:1.75;color:#334155;margin:0 0 28px}
.hero-buttons{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:28px}
.metrics{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.metric{background:rgba(255,255,255,.8);border:1px solid var(--line);border-radius:20px;padding:18px;box-shadow:0 12px 34px rgba(7,55,95,.08)}
.metric strong{font-size:28px;color:var(--blue-800);display:block}
.metric span{font-size:13px;color:var(--muted);font-weight:700}
.hero-visual{position:relative}
.hero-card{position:relative;background:rgba(255,255,255,.72);border:1px solid rgba(125,211,252,.45);border-radius:34px;padding:16px;box-shadow:var(--shadow);overflow:hidden}
.hero-card img{border-radius:24px;width:100%}
.scan-line{position:absolute;left:6%;right:6%;top:16%;height:3px;background:linear-gradient(90deg,transparent,#38bdf8,transparent);animation:scan 3.4s infinite}
.floating-badge{
  position:absolute;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow);
  border-radius:18px;padding:13px 15px;font-weight:900;color:var(--blue-900)
}
.badge-one{left:-12px;top:42px;animation:float 4s ease-in-out infinite}
.badge-two{right:-10px;bottom:54px;animation:float 4.5s ease-in-out infinite reverse}
@keyframes scan{0%{top:14%;opacity:0}15%,80%{opacity:1}100%{top:82%;opacity:0}}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-13px)}}
.section{padding:76px 0}
.section-head{display:flex;justify-content:space-between;align-items:end;gap:24px;margin-bottom:34px}
.kicker{font-weight:900;color:var(--blue-700);text-transform:uppercase;letter-spacing:.11em;font-size:13px}
h2{font-size:clamp(30px,3vw,48px);line-height:1.12;margin:8px 0 0;color:var(--blue-950);letter-spacing:-1px}
.section-text{max-width:720px;color:#475569;line-height:1.75;font-size:17px}
.service-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.service-card{
  background:#fff;border:1px solid var(--line);border-radius:28px;overflow:hidden;
  box-shadow:0 15px 50px rgba(7,55,95,.08);transition:.3s ease;position:relative
}
.service-card:hover{transform:translateY(-8px);box-shadow:0 24px 70px rgba(7,55,95,.17)}
.service-card img{height:210px;width:100%;object-fit:cover;background:#e0f2fe}
.service-content{padding:24px}
.service-content h3{font-size:23px;margin:0 0 12px;color:var(--blue-950)}
.service-content p{color:#475569;line-height:1.65;margin:0 0 16px}
.tick-list{padding:0;margin:0 0 18px;list-style:none;display:grid;gap:8px}
.tick-list li{position:relative;padding-left:25px;color:#334155}
.tick-list li:before{content:"✓";position:absolute;left:0;color:var(--blue-600);font-weight:900}
.link{font-weight:900;color:var(--blue-700)}
.ai-strip{
  background:linear-gradient(135deg,var(--blue-950),var(--blue-700));
  color:#fff;border-radius:36px;padding:42px;display:grid;grid-template-columns:1.1fr .9fr;gap:30px;align-items:center;box-shadow:var(--shadow);overflow:hidden;position:relative
}
.ai-strip:before{content:"";position:absolute;inset:-30%;background:radial-gradient(circle,rgba(125,211,252,.25),transparent 32%);animation:pulse 6s infinite}
.ai-strip>*{position:relative}
@keyframes pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.08)}}
.process{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.step{background:#fff;border:1px solid var(--line);border-radius:24px;padding:24px}
.step b{display:grid;place-items:center;width:42px;height:42px;border-radius:14px;background:var(--blue-100);color:var(--blue-800);margin-bottom:14px}
.faq{display:grid;gap:14px}
.faq details{background:#fff;border:1px solid var(--line);border-radius:20px;padding:18px 20px;box-shadow:0 10px 30px rgba(7,55,95,.06)}
.faq summary{font-weight:900;cursor:pointer;color:var(--blue-950)}
.faq p{color:#475569;line-height:1.7}
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.blog-card{background:#fff;border:1px solid var(--line);border-radius:28px;overflow:hidden;box-shadow:0 15px 50px rgba(7,55,95,.08)}
.blog-card img{height:190px;width:100%;object-fit:cover}
.blog-card div{padding:22px}
.blog-card h3{margin:0 0 10px;color:var(--blue-950)}
.cta{background:#fff;border:1px solid var(--line);border-radius:36px;padding:44px;box-shadow:var(--shadow);display:grid;grid-template-columns:1fr auto;gap:24px;align-items:center}
.form-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
input,select,textarea{width:100%;border:1px solid var(--line);border-radius:16px;padding:14px 15px;font:inherit;background:#fff;color:var(--text)}
textarea{min-height:140px;grid-column:1/-1}
.footer{background:var(--blue-950);color:#dff7ff;margin-top:60px;padding:58px 0 0}
.footer-grid{display:grid;grid-template-columns:1.3fr .8fr .8fr 1fr;gap:34px}
.footer h3,.footer h4{color:#fff;margin-top:0}
.footer p,.footer a{color:#b9e9ff;line-height:1.75}
.footer ul{list-style:none;padding:0;margin:0;display:grid;gap:9px}
.footer-bottom{border-top:1px solid rgba(255,255,255,.13);margin-top:38px;padding:20px 0;display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;color:#9bdcff}
.reveal{opacity:0;transform:translateY(26px);transition:.7s ease}
.reveal.visible{opacity:1;transform:none}
.page-hero{padding:64px 0;background:linear-gradient(135deg,#eaf8ff,#fff);border-bottom:1px solid var(--line)}
.content-layout{display:grid;grid-template-columns:1fr 330px;gap:34px}
.sidebar{position:sticky;top:104px;align-self:start;background:#fff;border:1px solid var(--line);border-radius:26px;padding:22px;box-shadow:0 15px 45px rgba(7,55,95,.08)}
.sidebar a{display:block;padding:12px 14px;border-radius:14px;color:var(--blue-900);font-weight:800}
.sidebar a:hover{background:var(--blue-100)}
.rich-content{background:#fff;border:1px solid var(--line);border-radius:30px;padding:34px;box-shadow:0 15px 45px rgba(7,55,95,.08)}
.rich-content h2,.rich-content h3{color:var(--blue-950)}
.rich-content p{line-height:1.8;color:#475569}
.rich-content table{width:100%;border-collapse:collapse;margin:20px 0;background:#fff;border-radius:18px;overflow:hidden}
.rich-content th,.rich-content td{border:1px solid var(--line);padding:14px;text-align:left}
.rich-content th{background:#eaf8ff;color:var(--blue-950)}
@media (max-width:980px){
  .menu{position:fixed;inset:88px 16px auto 16px;background:#fff;border:1px solid var(--line);border-radius:24px;padding:16px;display:none;flex-direction:column;align-items:stretch;box-shadow:var(--shadow)}
  .menu.open{display:flex}
  .dropdown-panel{position:static;width:auto;box-shadow:none;border-radius:16px;margin-top:6px;display:grid}
  .mobile-toggle{display:block}
  .nav-actions .btn{display:none}
  .hero-grid,.ai-strip,.content-layout,.cta{grid-template-columns:1fr}
  .service-grid,.blog-grid{grid-template-columns:repeat(2,1fr)}
  .process{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:640px){
  .topbar .container{display:block}
  .hero{padding-top:52px}
  .service-grid,.blog-grid,.process,.metrics,.form-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  h1{letter-spacing:-1px}
  .ai-strip,.cta{padding:28px}
}

/* Modern dynamic homepage additions */
.quick-finder{
  margin-top:28px;
  background:rgba(255,255,255,.86);
  border:1px solid var(--line);
  border-radius:28px;
  padding:18px;
  box-shadow:0 20px 60px rgba(7,55,95,.12);
}
.quick-finder-title{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  margin-bottom:14px;
  color:var(--blue-950);
  font-weight:900;
}
.finder-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}
.finder-item{
  border:1px solid #ccefff;
  background:linear-gradient(180deg,#fff,#f1fbff);
  border-radius:18px;
  padding:14px;
  min-height:96px;
  transition:.25s ease;
}
.finder-item:hover{
  transform:translateY(-4px);
  background:linear-gradient(135deg,#e0f2fe,#ffffff);
  box-shadow:0 16px 34px rgba(14,165,233,.16);
}
.finder-item b{
  display:block;
  color:var(--blue-900);
  margin-bottom:6px;
  font-size:15px;
}
.finder-item span{
  color:#587084;
  font-size:13px;
  line-height:1.45;
}
.problem-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
.problem-card{
  position:relative;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  padding:28px;
  box-shadow:0 16px 48px rgba(7,55,95,.08);
}
.problem-card:before{
  content:"";
  position:absolute;
  right:-70px;
  top:-70px;
  width:190px;
  height:190px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(14,165,233,.20),transparent 70%);
}
.problem-card h3{
  font-size:25px;
  color:var(--blue-950);
  margin:0 0 12px;
}
.problem-card p{
  color:#475569;
  line-height:1.75;
}
.solution-tags{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin-top:18px;
}
.solution-tags span{
  background:var(--blue-100);
  color:var(--blue-800);
  border:1px solid #bae6fd;
  border-radius:999px;
  padding:8px 11px;
  font-size:13px;
  font-weight:800;
}
.choice-panel{
  background:linear-gradient(135deg,#ffffff,#eefaff);
  border:1px solid var(--line);
  border-radius:34px;
  padding:34px;
  box-shadow:var(--shadow);
}
.choice-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:24px;
}
.choice-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  transition:.25s ease;
}
.choice-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 44px rgba(7,55,95,.13);
}
.choice-icon{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:16px;
  color:#fff;
  font-weight:900;
  background:linear-gradient(135deg,var(--blue-700),var(--blue-300));
  margin-bottom:14px;
}
.choice-card h3{
  margin:0 0 10px;
  color:var(--blue-950);
}
.choice-card p{
  color:#475569;
  line-height:1.65;
  margin:0 0 14px;
}
.live-route{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:center;
}
.route-visual{
  min-height:360px;
  border-radius:34px;
  border:1px solid var(--line);
  background:
    linear-gradient(90deg,rgba(2,132,199,.12) 0 2px, transparent 2px 58px),
    linear-gradient(180deg,rgba(2,132,199,.10) 0 2px, transparent 2px 58px),
    linear-gradient(135deg,#f4fbff,#fff);
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.route-door{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:220px;
  height:250px;
  border-radius:22px;
  background:#eaf8ff;
  border:10px solid #0b4f79;
  box-shadow:inset 0 0 0 4px rgba(255,255,255,.9);
}
.route-strip{
  position:absolute;
  top:0;
  bottom:0;
  width:20px;
  background:linear-gradient(180deg,rgba(14,165,233,.62),rgba(125,211,252,.30));
  animation:sway 2.4s ease-in-out infinite;
}
.route-strip:nth-child(1){left:32px;animation-delay:.1s}
.route-strip:nth-child(2){left:62px;animation-delay:.2s}
.route-strip:nth-child(3){left:92px;animation-delay:.3s}
.route-strip:nth-child(4){left:122px;animation-delay:.4s}
.route-strip:nth-child(5){left:152px;animation-delay:.5s}
.route-strip:nth-child(6){left:182px;animation-delay:.6s}
@keyframes sway{
  0%,100%{transform:skewX(0deg)}
  50%{transform:skewX(-4deg)}
}
.wind-line{
  position:absolute;
  height:7px;
  border-radius:99px;
  background:linear-gradient(90deg,transparent,#0284c7,transparent);
  left:-140px;
  opacity:.34;
  animation:wind 4.2s linear infinite;
}
.wind-line.one{top:90px;width:190px}
.wind-line.two{top:170px;width:240px;animation-delay:.9s}
.wind-line.three{top:265px;width:170px;animation-delay:1.7s}
@keyframes wind{
  to{left:110%}
}
.blocked-bug{
  position:absolute;
  right:80px;
  top:86px;
  font-size:26px;
  animation:float 3.8s ease-in-out infinite;
}
.heat-core{
  position:absolute;
  right:86px;
  bottom:92px;
  width:92px;
  height:92px;
  border-radius:50%;
  background:radial-gradient(circle,#fff 0 20%,#bae6fd 21% 52%,rgba(14,165,233,.16) 53% 100%);
  animation:pulseHeat 2.8s ease-in-out infinite;
}
@keyframes pulseHeat{
  0%,100%{transform:scale(1);opacity:.9}
  50%{transform:scale(1.12);opacity:1}
}
.sticky-cta{
  position:fixed;
  right:24px;
  bottom:100px;
  z-index:999;
  display:flex;
  gap:10px;
  align-items:center;
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  padding:10px 10px 10px 16px;
  box-shadow:0 18px 46px rgba(7,55,95,.22);
}
.sticky-cta span{
  color:var(--blue-950);
  font-weight:900;
  font-size:14px;
}
@media (max-width:980px){
  .finder-grid,.choice-grid{grid-template-columns:repeat(2,1fr)}
  .problem-grid,.live-route{grid-template-columns:1fr}
}
@media (max-width:640px){
  .finder-grid,.choice-grid{grid-template-columns:1fr}
  .sticky-cta{left:14px;right:14px;bottom:14px;justify-content:space-between}
}

/* PREMIUM INDUSTRIAL REDESIGN OVERRIDES */
:root{
  --blue-950:#071827;
  --blue-900:#0b2638;
  --blue-800:#0f3a55;
  --blue-700:#14506f;
  --blue-600:#1f6f93;
  --blue-500:#2a93bd;
  --blue-300:#8fd0e8;
  --blue-100:#e8f5fa;
  --ice:#f6fbfd;
  --white:#ffffff;
  --text:#10202d;
  --muted:#657789;
  --line:#d7e9f1;
  --shadow:0 24px 70px rgba(7,24,39,.14);
}
body{
  background:
    radial-gradient(circle at 12% 3%, rgba(143,208,232,.26), transparent 25%),
    radial-gradient(circle at 88% 0%, rgba(31,111,147,.12), transparent 28%),
    linear-gradient(180deg,#f8fcfe 0%,#ffffff 44%,#f3f9fc 100%);
}
.topbar{
  background:#071827;
  color:#cfe9f4;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar .container span:first-child:before{
  content:"●";
  color:#54c4e8;
  margin-right:8px;
}
.header{
  background:rgba(255,255,255,.92);
  border-bottom:1px solid rgba(15,58,85,.12);
  box-shadow:0 8px 28px rgba(7,24,39,.05);
}
.nav{height:88px}
.logo{
  font-size:23px;
  letter-spacing:-.4px;
}
.logo-mark{
  background:linear-gradient(135deg,#071827,#1f6f93);
  box-shadow:0 12px 26px rgba(7,24,39,.18);
}
.menu{
  background:rgba(246,251,253,.72);
  border:1px solid rgba(215,233,241,.8);
  padding:6px;
  border-radius:999px;
}
.menu a{
  color:#173246;
  font-size:14px;
  padding:11px 13px;
}
.menu a:hover,.menu a.active{
  background:#ffffff;
  color:#0f3a55;
  box-shadow:0 8px 20px rgba(7,24,39,.08);
}
.dropdown-panel{
  top:54px;
  width:360px;
  padding:12px;
  border-radius:24px;
}
.dropdown-panel:before{
  content:"Hizmet kategorileri";
  display:block;
  padding:10px 14px 8px;
  color:#657789;
  font-weight:900;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.1em;
}
.dropdown-panel a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  border:1px solid transparent;
}
.dropdown-panel a:after{
  content:"→";
  color:#2a93bd;
}
.dropdown-panel a:hover{
  border-color:#d7e9f1;
  background:#f6fbfd;
}
.btn-primary{
  background:linear-gradient(135deg,#0b2638,#1f6f93);
  box-shadow:0 16px 36px rgba(15,58,85,.22);
}
.btn-primary:hover{
  box-shadow:0 22px 48px rgba(15,58,85,.30);
}
.btn-ghost{
  background:#fff;
  border-color:#cfe2eb;
  color:#0f3a55;
}
.hero{
  padding:92px 0 76px;
}
.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(15,58,85,.04) 1px,transparent 1px),
    linear-gradient(180deg,rgba(15,58,85,.04) 1px,transparent 1px);
  background-size:72px 72px;
  mask-image:linear-gradient(180deg,#000,transparent 80%);
  pointer-events:none;
}
.eyebrow{
  background:#e8f5fa;
  color:#0f3a55;
  border:1px solid #cce5ef;
}
h1{
  color:#071827;
  letter-spacing:-2.4px;
}
.lead{
  color:#405466;
}
.metric{
  background:rgba(255,255,255,.92);
  border-color:#d7e9f1;
}
.metric strong{color:#0f3a55}
.hero-card{
  background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(246,251,253,.88));
  border-color:#d7e9f1;
}
.floating-badge{
  color:#0b2638;
  border-color:#d7e9f1;
}
.quick-finder{
  border-radius:30px;
  background:#ffffff;
  border-color:#d7e9f1;
}
.finder-item{
  background:linear-gradient(180deg,#ffffff,#f7fbfd);
  border-color:#d7e9f1;
}
.finder-item:hover{
  background:#eef7fb;
  box-shadow:0 16px 34px rgba(15,58,85,.13);
}
.finder-item b{color:#0b2638}
.route-visual{
  background:
    linear-gradient(90deg,rgba(15,58,85,.07) 0 1px, transparent 1px 56px),
    linear-gradient(180deg,rgba(15,58,85,.06) 0 1px, transparent 1px 56px),
    linear-gradient(135deg,#f7fbfd,#ffffff);
}
.route-door{
  border-color:#0b2638;
  background:#eef7fb;
}
.route-strip{
  background:linear-gradient(180deg,rgba(42,147,189,.58),rgba(143,208,232,.28));
}
.section{
  padding:84px 0;
}
.kicker{
  color:#1f6f93;
}
h2{
  color:#071827;
}
.choice-panel{
  background:linear-gradient(135deg,#ffffff,#f6fbfd);
  border-color:#d7e9f1;
}
.choice-card{
  border-color:#d7e9f1;
}
.choice-card:hover{
  box-shadow:0 22px 50px rgba(7,24,39,.12);
}
.choice-icon{
  background:linear-gradient(135deg,#0b2638,#2a93bd);
}
.problem-card{
  border-color:#d7e9f1;
}
.solution-tags span{
  background:#e8f5fa;
  border-color:#cce5ef;
  color:#0f3a55;
}
.service-card{
  border-color:#d7e9f1;
}
.service-card:hover{
  box-shadow:0 26px 70px rgba(7,24,39,.14);
}
.ai-strip{
  background:
    radial-gradient(circle at 80% 20%,rgba(143,208,232,.20),transparent 28%),
    linear-gradient(135deg,#071827,#0f3a55);
}
.footer{
  background:#071827;
  padding-top:0;
}
.footer-premium-top{
  background:linear-gradient(135deg,#0b2638,#14506f);
  border-radius:36px;
  padding:34px;
  transform:translateY(-44px);
  margin-bottom:0;
  display:grid;
  grid-template-columns:1fr auto;
  gap:24px;
  align-items:center;
  box-shadow:0 24px 60px rgba(0,0,0,.18);
}
.footer-premium-top h2{
  color:#fff;
  margin:0 0 8px;
  font-size:34px;
}
.footer-premium-top p{
  color:#d9f1fa;
  margin:0;
}
.footer-grid{
  padding-top:10px;
  grid-template-columns:1.25fr .75fr .75fr 1.1fr;
}
.footer-brand-box{
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.10);
  border-radius:28px;
  padding:24px;
}
.footer h3,.footer h4{
  letter-spacing:-.3px;
}
.footer h4{
  border-bottom:1px solid rgba(255,255,255,.10);
  padding-bottom:12px;
}
.footer a:hover{
  color:#fff;
}
.footer-contact-card{
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.12);
  border-radius:26px;
  padding:22px;
}
.footer-bottom{
  background:rgba(255,255,255,.035);
  border-top:1px solid rgba(255,255,255,.09);
  padding:22px 0;
}
.header-call{
  display:inline-flex;
  flex-direction:column;
  gap:2px;
  line-height:1.1;
  color:#0b2638;
  font-weight:900;
  margin-right:8px;
}
.header-call small{
  font-size:11px;
  color:#657789;
  font-weight:800;
}
.nav-actions{
  gap:12px;
}
.industry-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}
.industry-tabs a{
  padding:12px 15px;
  border-radius:999px;
  border:1px solid #d7e9f1;
  background:#fff;
  color:#0f3a55;
  font-weight:900;
  box-shadow:0 8px 22px rgba(7,24,39,.05);
}
.industry-tabs a:hover{
  background:#0b2638;
  color:#fff;
}
.premium-home-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
  align-items:stretch;
}
.premium-panel{
  background:#fff;
  border:1px solid #d7e9f1;
  border-radius:32px;
  padding:30px;
  box-shadow:0 18px 56px rgba(7,24,39,.09);
}
.premium-panel.dark{
  background:linear-gradient(135deg,#071827,#0f3a55);
  color:#fff;
}
.premium-panel.dark h3,.premium-panel.dark h2{color:#fff}
.premium-panel.dark p{color:#d7edf6}
.signal-list{
  display:grid;
  gap:14px;
  margin-top:18px;
}
.signal-list div{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px;
  border:1px solid rgba(215,233,241,.8);
  border-radius:18px;
  background:#f7fbfd;
}
.signal-list b{
  color:#0f3a55;
}
.signal-list span{
  color:#657789;
  line-height:1.55;
}
.dark .signal-list div{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.12);
}
.dark .signal-list b{color:#fff}
.dark .signal-list span{color:#d7edf6}
@media (max-width:1120px){
  .header-call{display:none}
}
@media (max-width:980px){
  .menu{
    border-radius:24px;
    background:#fff;
    padding:14px;
  }
  .footer-premium-top,.premium-home-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width:640px){
  .footer-premium-top{
    padding:24px;
    border-radius:26px;
  }
  .footer-premium-top h2{font-size:26px}
}

/* Professional upgrade pass */
.skip-link{position:absolute;left:-999px;top:12px;background:#0b2638;color:#fff;padding:12px 16px;border-radius:12px;z-index:9999;font-weight:900}
.skip-link:focus{left:16px}
:focus-visible{outline:3px solid #38bdf8;outline-offset:3px}
img{max-width:100%;height:auto}
.trust-section{background:linear-gradient(180deg,#ffffff,#f1fbff)}
.trust-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;align-items:center;background:#fff;border:1px solid var(--line);border-radius:34px;padding:34px;box-shadow:0 20px 70px rgba(7,55,95,.09)}
.trust-cards{display:grid;gap:14px}
.trust-cards article,.contact-card{background:linear-gradient(180deg,#fff,#f7fbfd);border:1px solid #d7e9f1;border-radius:24px;padding:22px;box-shadow:0 12px 34px rgba(7,24,39,.06)}
.trust-cards b,.contact-card b{display:block;color:var(--blue-950);font-size:18px;margin-bottom:8px}
.trust-cards span,.contact-card span{display:block;color:#587084;line-height:1.65}
.contact-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.contact-card a{display:block;color:var(--blue-800);font-weight:900;font-size:18px;margin:8px 0}
.quote-form label{display:grid;gap:7px}
.quote-form label span{font-weight:900;color:var(--blue-950);font-size:14px}
.quote-form .full{grid-column:1/-1}
.form-note{margin:0;color:#64748b;font-size:14px;line-height:1.6;background:#f8fafc;border:1px solid var(--line);border-radius:16px;padding:12px 14px}
button.btn{border:0;cursor:pointer}
@media (prefers-reduced-motion: reduce){*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;scroll-behavior:auto!important;transition-duration:.01ms!important}.reveal{opacity:1;transform:none}}
@media (max-width:980px){.trust-grid,.contact-grid{grid-template-columns:1fr}.finder-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:640px){.finder-grid{grid-template-columns:1fr}.trust-grid{padding:24px;border-radius:26px}.hero-buttons .btn{width:100%;justify-content:center}}


/* Menu and homepage banner upgrade */
.nav-pro{height:92px;gap:18px}
.menu-pro{gap:4px;background:rgba(246,251,253,.82);border:1px solid rgba(215,233,241,.95);box-shadow:0 12px 34px rgba(7,24,39,.05)}
.menu-pro>li>a{display:flex;align-items:center;min-height:42px;padding:11px 14px;font-size:14px;white-space:nowrap}
.menu-pro>li>a:hover{transform:translateY(-1px)}
.mega-panel{width:650px;grid-template-columns:230px 1fr;gap:12px;left:50%;transform:translateX(-38%);padding:14px;border-radius:28px}
.dropdown:hover .mega-panel{display:grid}
.mega-panel:before,.use-panel:before{display:none!important;content:none!important}
.mega-intro{border-radius:22px;padding:20px;background:linear-gradient(135deg,#071827,#14506f);color:#fff;display:flex;flex-direction:column;justify-content:space-between;min-height:190px}
.mega-intro b{font-size:22px;letter-spacing:-.5px}.mega-intro span{color:#d9f1fa;line-height:1.6;font-size:14px;margin-top:14px}
.mega-links{display:grid;grid-template-columns:1fr 1fr;gap:10px}.mega-links a{display:block!important;border:1px solid #d7e9f1!important;background:#fff;border-radius:18px!important;padding:15px!important}.mega-links a b{display:block;color:#071827;margin-bottom:6px}.mega-links a span{display:block;color:#657789;font-size:13px;line-height:1.45}.mega-links a:hover{background:#f2f9fc!important;transform:translateY(-2px)}
.use-panel{width:260px}.use-panel a{font-weight:900}.nav-actions-pro .btn{padding-inline:17px}.nav-phone{display:flex;flex-direction:column;gap:2px;line-height:1.05;color:#071827;padding:10px 14px;border:1px solid #d7e9f1;border-radius:18px;background:#fff}.nav-phone small{color:#657789;font-weight:800;font-size:11px}.nav-phone b{font-size:15px}.mobile-toggle{width:46px;height:42px;place-items:center;gap:5px;padding:0}.mobile-toggle span{display:block;width:21px;height:2px;background:#0b2638;border-radius:999px}
.hero-premium{padding:88px 0 82px;background:radial-gradient(circle at 16% 10%,rgba(143,208,232,.36),transparent 26%),linear-gradient(135deg,#f7fcfe 0%,#eaf7fc 52%,#ffffff 100%)}
.hero-premium:after{content:"";position:absolute;right:-12%;top:8%;width:540px;height:540px;background:radial-gradient(circle,rgba(31,111,147,.18),transparent 64%);pointer-events:none}.hero-grid-premium{grid-template-columns:1fr .92fr;gap:58px}.hero-copy{position:relative;z-index:2}.hero-eyebrow{background:#fff;border:1px solid #cde7f0;box-shadow:0 12px 30px rgba(7,24,39,.06)}.hero-copy h1 span{color:#0f3a55}.hero-proof-row{display:flex;gap:10px;flex-wrap:wrap;margin:0 0 24px}.hero-proof-row span{background:#fff;border:1px solid #d7e9f1;border-radius:999px;padding:10px 13px;color:#0b2638;font-weight:900;font-size:13px;box-shadow:0 8px 22px rgba(7,24,39,.05)}.btn-xl{padding:16px 22px;font-size:16px}.hero-buttons-pro{margin-bottom:24px}.hero-mini-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:20px}.hero-mini-cards a{background:rgba(255,255,255,.92);border:1px solid #d7e9f1;border-radius:22px;padding:16px;box-shadow:0 14px 36px rgba(7,24,39,.07);transition:.25s ease}.hero-mini-cards a:hover{transform:translateY(-4px);box-shadow:0 22px 48px rgba(7,24,39,.12)}.hero-mini-cards b{display:block;color:#071827;margin-bottom:7px}.hero-mini-cards span{display:block;color:#657789;font-size:13px;line-height:1.5}
.hero-visual-pro{min-height:520px}.industrial-frame{position:relative;border-radius:38px;padding:16px;background:linear-gradient(180deg,#fff,rgba(246,251,253,.94));border:1px solid #d7e9f1;box-shadow:0 34px 90px rgba(7,24,39,.16);overflow:hidden}.frame-top{height:34px;display:flex;gap:8px;align-items:center;padding:0 10px}.frame-top span{width:10px;height:10px;border-radius:99px;background:#9ecddd}.door-scene{height:430px;border-radius:28px;background:linear-gradient(180deg,#0b2638 0%,#123d58 54%,#e8f5fa 54%,#f7fbfd 100%);position:relative;overflow:hidden;display:grid;place-items:center}.warehouse-door{position:relative;width:64%;height:72%;border:10px solid rgba(255,255,255,.18);border-bottom:0;border-radius:18px 18px 0 0;display:flex;align-items:stretch;justify-content:center;background:rgba(255,255,255,.06);box-shadow:inset 0 0 0 1px rgba(255,255,255,.13)}.warehouse-door i{display:block;flex:1;margin:0 2px;background:linear-gradient(180deg,rgba(143,208,232,.82),rgba(143,208,232,.28));border-radius:0 0 14px 14px;box-shadow:0 0 24px rgba(143,208,232,.20);animation:stripMove 3.8s ease-in-out infinite}.warehouse-door i:nth-child(even){animation-delay:.45s}.air-flow{position:absolute;left:-90px;width:170px;height:3px;background:linear-gradient(90deg,transparent,#8fd0e8,transparent);border-radius:99px;animation:airMove 4s linear infinite}.flow-a{top:32%}.flow-b{top:43%;animation-delay:.7s}.flow-c{top:56%;animation-delay:1.3s}.forklift-box{position:absolute;right:34px;bottom:42px;background:#fff;color:#0b2638;border:1px solid #d7e9f1;border-radius:16px;padding:13px 15px;font-weight:900;box-shadow:0 18px 44px rgba(7,24,39,.18)}.hero-stat{position:absolute;background:#fff;border:1px solid #d7e9f1;border-radius:24px;padding:16px 18px;box-shadow:0 22px 54px rgba(7,24,39,.15);z-index:2}.hero-stat strong{display:block;color:#0f3a55;font-size:28px;line-height:1}.hero-stat span{display:block;color:#657789;font-weight:800;font-size:12px;margin-top:5px}.stat-top{right:-8px;top:42px}.stat-bottom{left:-18px;bottom:132px}.hero-alert-card{position:absolute;left:38px;right:38px;bottom:0;transform:translateY(36%);background:#071827;color:#fff;border:1px solid rgba(255,255,255,.1);border-radius:26px;padding:20px 22px;box-shadow:0 28px 70px rgba(7,24,39,.26)}.hero-alert-card b{display:block;font-size:18px;margin-bottom:6px}.hero-alert-card span{color:#d7edf6;line-height:1.55}
@keyframes airMove{0%{transform:translateX(0);opacity:0}15%,80%{opacity:1}100%{transform:translateX(700px);opacity:0}}@keyframes stripMove{0%,100%{transform:skewX(0)}50%{transform:skewX(-4deg)}}
@media (max-width:1180px){.nav-phone{display:none}.mega-panel{transform:translateX(-48%)}}
@media (max-width:980px){.nav-pro{height:82px}.mobile-toggle{display:grid}.menu-pro{position:fixed;inset:88px 16px auto 16px;max-height:calc(100vh - 110px);overflow:auto;border-radius:26px;background:#fff;padding:14px;display:none;flex-direction:column;align-items:stretch}.menu-pro.open{display:flex}.menu-pro>li>a{border-radius:16px;justify-content:space-between}.mega-panel,.use-panel{position:static!important;display:grid!important;width:auto!important;transform:none!important;box-shadow:none!important;border-radius:20px;margin-top:6px}.mega-panel{grid-template-columns:1fr}.mega-intro{min-height:auto}.mega-links{grid-template-columns:1fr}.hero-grid-premium{grid-template-columns:1fr}.hero-mini-cards{grid-template-columns:1fr 1fr}.hero-visual-pro{min-height:500px}.nav-actions-pro .btn{display:none}}
@media (max-width:640px){.hero-premium{padding:54px 0 70px}.hero-mini-cards{grid-template-columns:1fr}.hero-proof-row span{width:100%;text-align:center}.door-scene{height:350px}.warehouse-door{width:76%}.hero-alert-card{position:relative;left:auto;right:auto;bottom:auto;transform:none;margin-top:16px}.hero-stat{position:static;margin-top:12px}.hero-visual-pro{min-height:auto}.industrial-frame{border-radius:28px}.hero-copy h1{font-size:38px}.topbar{display:none}}
.mega-links a:after,.mega-intro:after,.hero-mini-cards a:after,.nav-phone:after{content:none!important;display:none!important}
@media (min-width:981px){.mega-menu:hover .mega-panel{display:grid}.use-menu:hover .use-panel{display:grid}}

/* === PREMIUM HEADER / MENU FIX - 2026 B2B INDUSTRIAL === */
.header{
  position:sticky;
  top:0;
  z-index:1200;
  background:rgba(255,255,255,.96)!important;
  border-bottom:1px solid rgba(7,24,39,.08)!important;
  box-shadow:0 10px 34px rgba(7,24,39,.06)!important;
  backdrop-filter:blur(18px);
}
.header .container{
  width:min(1680px,94%);
}
.nav.nav-pro{
  height:82px!important;
  display:grid!important;
  grid-template-columns:auto minmax(620px,1fr) auto!important;
  align-items:center!important;
  gap:26px!important;
}
.logo{
  display:flex!important;
  align-items:center!important;
  gap:12px!important;
  min-width:238px!important;
  max-width:238px!important;
  color:#071827!important;
  font-weight:950!important;
  letter-spacing:-.7px!important;
  line-height:1.02!important;
  white-space:nowrap!important;
}
.logo-mark{
  width:52px!important;
  height:52px!important;
  min-width:52px!important;
  border-radius:17px!important;
  font-size:25px!important;
  background:linear-gradient(135deg,#071827 0%,#145f7d 100%)!important;
  box-shadow:0 16px 34px rgba(7,24,39,.18)!important;
}
.logo > span:not(.logo-mark){
  display:flex!important;
  flex-direction:column!important;
  gap:4px!important;
  font-size:24px!important;
}
.logo > span:not(.logo-mark)::after{
  content:"Endüstriyel PVC Sistemleri";
  display:block;
  color:#64798a;
  font-size:11px;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.menu.menu-pro{
  justify-self:center!important;
  width:auto!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  border-radius:0!important;
  padding:0!important;
  gap:4px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
}
.menu-pro > li{
  position:relative!important;
}
.menu-pro > li > a{
  min-height:46px!important;
  padding:0 15px!important;
  border-radius:14px!important;
  color:#173247!important;
  font-size:15px!important;
  font-weight:850!important;
  letter-spacing:-.2px!important;
  background:transparent!important;
  box-shadow:none!important;
  transition:background .2s ease,color .2s ease,transform .2s ease!important;
}
.menu-pro > li > a:hover,
.menu-pro > li.dropdown.open > a{
  background:#eef7fb!important;
  color:#0f6585!important;
  transform:none!important;
}
.menu-pro > li > a::before{
  content:"";
  position:absolute;
  left:16px;
  right:16px;
  bottom:-14px;
  height:3px;
  border-radius:99px;
  background:#1f6f93;
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .2s ease;
}
.menu-pro > li > a:hover::before,
.menu-pro > li.dropdown.open > a::before{
  transform:scaleX(1);
}
.menu-pro > li.dropdown > a::after{
  content:""!important;
  width:7px;
  height:7px;
  margin-left:9px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg) translateY(-2px);
  opacity:.7;
}
.dropdown-panel,
.mega-panel,
.use-panel{
  display:grid!important;
  opacity:0!important;
  visibility:hidden!important;
  pointer-events:none!important;
  top:calc(100% + 18px)!important;
  border:1px solid rgba(207,226,235,.95)!important;
  background:rgba(255,255,255,.98)!important;
  box-shadow:0 30px 80px rgba(7,24,39,.17)!important;
  transform:translateY(12px)!important;
  transition:opacity .22s ease,transform .22s ease,visibility .22s ease!important;
  z-index:2000!important;
}
.dropdown:hover > .dropdown-panel,
.dropdown.open > .dropdown-panel{
  opacity:1!important;
  visibility:visible!important;
  pointer-events:auto!important;
  transform:translateY(0)!important;
}
.mega-panel{
  left:50%!important;
  width:720px!important;
  grid-template-columns:240px 1fr!important;
  gap:14px!important;
  padding:14px!important;
  border-radius:28px!important;
  transform:translate(-40%,12px)!important;
}
.dropdown:hover > .mega-panel,
.dropdown.open > .mega-panel{
  transform:translate(-40%,0)!important;
}
.mega-panel::after,
.use-panel::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-18px;
  height:18px;
}
.mega-intro{
  min-height:205px!important;
  border-radius:22px!important;
  padding:22px!important;
  background:
    radial-gradient(circle at 20% 0%,rgba(84,196,232,.24),transparent 38%),
    linear-gradient(135deg,#071827 0%,#104c68 100%)!important;
}
.mega-intro b{
  font-size:23px!important;
  line-height:1.08!important;
}
.mega-intro span{
  font-size:13.5px!important;
  line-height:1.65!important;
  color:#d9f1fa!important;
}
.mega-links{
  display:grid!important;
  grid-template-columns:1fr 1fr!important;
  gap:10px!important;
}
.mega-links a{
  position:relative!important;
  min-height:88px!important;
  padding:16px 16px 16px 18px!important;
  border-radius:18px!important;
  border:1px solid #dcecf3!important;
  background:#fff!important;
  transition:background .2s ease,border-color .2s ease,transform .2s ease!important;
}
.mega-links a:hover{
  background:#f3f9fc!important;
  border-color:#b7dce9!important;
  transform:translateY(-2px)!important;
}
.mega-links a b{
  color:#071827!important;
  font-size:15px!important;
}
.mega-links a span{
  color:#64798a!important;
  font-size:12.5px!important;
}
.use-panel{
  left:0!important;
  width:310px!important;
  padding:10px!important;
  border-radius:22px!important;
}
.use-panel a{
  border-radius:15px!important;
  padding:14px 15px!important;
  color:#173247!important;
  font-size:14px!important;
  font-weight:850!important;
  background:#fff!important;
}
.use-panel a:hover{
  background:#eef7fb!important;
  color:#0f6585!important;
}
.nav-actions.nav-actions-pro{
  display:flex!important;
  align-items:center!important;
  justify-content:flex-end!important;
  gap:12px!important;
  min-width:312px!important;
}
.nav-phone{
  display:flex!important;
  flex-direction:column!important;
  justify-content:center!important;
  min-width:146px!important;
  height:54px!important;
  padding:0 16px!important;
  border-radius:18px!important;
  border:1px solid #d7e9f1!important;
  background:#fff!important;
  box-shadow:0 12px 30px rgba(7,24,39,.06)!important;
}
.nav-phone small{
  font-size:11px!important;
  letter-spacing:.02em!important;
  color:#64798a!important;
  font-weight:900!important;
}
.nav-phone b{
  font-size:16px!important;
  color:#071827!important;
  line-height:1.05!important;
  letter-spacing:-.2px!important;
}
.nav-actions-pro .btn.btn-primary{
  min-width:138px!important;
  height:54px!important;
  padding:0 22px!important;
  border-radius:18px!important;
  font-size:15px!important;
  line-height:1!important;
  white-space:nowrap!important;
  background:linear-gradient(135deg,#071827 0%,#1f6f93 100%)!important;
  box-shadow:0 18px 38px rgba(15,58,85,.23)!important;
}
.nav-actions-pro .btn.btn-primary:hover{
  transform:translateY(-2px)!important;
  box-shadow:0 24px 48px rgba(15,58,85,.31)!important;
}
.mobile-toggle{
  display:none!important;
  justify-self:end!important;
  width:48px!important;
  height:48px!important;
  border:1px solid #d7e9f1!important;
  background:#fff!important;
  border-radius:16px!important;
  box-shadow:0 12px 26px rgba(7,24,39,.08)!important;
}
.mobile-toggle span{
  background:#071827!important;
}
@media (max-width:1320px){
  .nav.nav-pro{grid-template-columns:auto 1fr auto!important;gap:16px!important}
  .logo{min-width:210px!important;max-width:210px!important}
  .logo > span:not(.logo-mark){font-size:21px!important}
  .menu-pro > li > a{font-size:14px!important;padding:0 10px!important}
  .nav-phone{display:none!important}
  .nav-actions.nav-actions-pro{min-width:150px!important}
}
@media (max-width:1080px){
  .nav.nav-pro{grid-template-columns:auto auto!important;height:76px!important}
  .mobile-toggle{display:grid!important;place-items:center!important}
  .menu.menu-pro{
    position:fixed!important;
    left:18px!important;
    right:18px!important;
    top:92px!important;
    display:none!important;
    flex-direction:column!important;
    align-items:stretch!important;
    justify-content:flex-start!important;
    max-height:calc(100vh - 112px)!important;
    overflow:auto!important;
    padding:14px!important;
    border:1px solid #d7e9f1!important;
    border-radius:24px!important;
    background:#fff!important;
    box-shadow:0 30px 80px rgba(7,24,39,.18)!important;
    z-index:1500!important;
  }
  .menu.menu-pro.open{display:flex!important}
  .menu-pro > li > a{
    width:100%!important;
    min-height:48px!important;
    justify-content:space-between!important;
    border-radius:16px!important;
    padding:0 16px!important;
  }
  .menu-pro > li > a::before{display:none!important}
  .dropdown-panel,.mega-panel,.use-panel{
    position:static!important;
    width:100%!important;
    opacity:1!important;
    visibility:visible!important;
    pointer-events:auto!important;
    transform:none!important;
    box-shadow:none!important;
    border-radius:18px!important;
    border:0!important;
    background:#f3f9fc!important;
    margin:6px 0 10px!important;
    display:none!important;
  }
  .dropdown.open > .dropdown-panel{display:grid!important}
  .mega-panel{grid-template-columns:1fr!important;padding:10px!important}
  .mega-intro{display:none!important}
  .mega-links{grid-template-columns:1fr!important}
  .mega-links a{min-height:auto!important}
  .nav-actions.nav-actions-pro{display:none!important}
}
@media (max-width:640px){
  .header .container{width:min(100% - 28px,1680px)!important}
  .logo{min-width:auto!important;max-width:240px!important}
  .logo-mark{width:46px!important;height:46px!important;min-width:46px!important;font-size:22px!important}
  .logo > span:not(.logo-mark){font-size:19px!important}
  .logo > span:not(.logo-mark)::after{font-size:9px!important;letter-spacing:.06em!important}
  .menu.menu-pro{left:14px!important;right:14px!important;top:84px!important}
}


/* === Dynamic sector-rich homepage upgrade === */
.hero-command{position:relative;padding:96px 0 82px;overflow:hidden;background:linear-gradient(135deg,#f7fcff 0%,#eaf7fc 48%,#ffffff 100%)}
.hero-bg-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(7,24,39,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(7,24,39,.055) 1px,transparent 1px);background-size:44px 44px;mask-image:linear-gradient(180deg,#000,transparent 88%)}
.command-grid{position:relative;display:grid;grid-template-columns:1fr .95fr;gap:54px;align-items:center}.hero-status{display:inline-flex;align-items:center;gap:10px;padding:9px 14px;margin-bottom:18px;border:1px solid #cde6f1;border-radius:999px;background:#fff;color:#0e5d7a;font-weight:900;box-shadow:0 14px 34px rgba(7,24,39,.06)}
.pulse-dot{width:10px;height:10px;border-radius:50%;background:#1f6f93;box-shadow:0 0 0 0 rgba(31,111,147,.55);animation:pulse 1.7s infinite}.command-copy h1{font-size:clamp(42px,5.5vw,78px);line-height:.98;letter-spacing:-2.8px}.command-copy h1 span{color:#1f6f93}.hero-action-stack{display:flex;gap:14px;flex-wrap:wrap;margin:28px 0}.btn-xl{min-height:58px;padding-inline:24px}.command-metrics{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin:28px 0}.command-metrics div{padding:18px;border:1px solid #d7e9f1;border-radius:22px;background:rgba(255,255,255,.82);box-shadow:0 16px 42px rgba(7,24,39,.07)}.command-metrics strong{display:block;font-size:31px;color:#071827;letter-spacing:-1px}.command-metrics span{font-weight:800;color:#64798a;font-size:13px}.hero-trust-line{display:flex;gap:10px;flex-wrap:wrap}.hero-trust-line span{padding:10px 13px;border-radius:999px;background:#eef7fb;color:#0f3a55;font-weight:850;font-size:13px}.command-visual{position:relative;min-height:520px;border-radius:38px;border:1px solid rgba(198,222,232,.9);background:rgba(255,255,255,.72);box-shadow:0 34px 90px rgba(7,24,39,.14);overflow:hidden;padding:18px}.visual-toolbar{height:44px;border-radius:20px;background:#071827;color:#e6f7fc;display:flex;align-items:center;gap:8px;padding:0 16px;font-size:13px;font-weight:900}.visual-toolbar span{width:10px;height:10px;border-radius:50%;background:#74cce6}.visual-toolbar b{margin-left:auto}.factory-scene{position:absolute;left:18px;right:18px;top:76px;bottom:18px;border-radius:30px;overflow:hidden;background:linear-gradient(90deg,#dff4fb 0 48%,#f9fbfc 48% 100%)}.ceiling{position:absolute;left:0;right:0;top:0;height:64px;background:repeating-linear-gradient(90deg,#0d2a3d 0 24px,#123a53 24px 48px)}.cold-zone,.warm-zone{position:absolute;top:92px;padding:16px 18px;border-radius:18px;background:rgba(255,255,255,.82);border:1px solid #cde6f1}.cold-zone{left:30px}.warm-zone{right:30px}.cold-zone b,.warm-zone b{display:block;color:#071827}.cold-zone small,.warm-zone small{font-weight:850;color:#64798a}.strip-gate{position:absolute;left:50%;top:70px;bottom:22px;width:166px;transform:translateX(-50%);display:flex;gap:4px;align-items:stretch;padding:14px;background:rgba(7,24,39,.1);border-radius:24px}.strip-gate i{flex:1;border-radius:999px;background:linear-gradient(180deg,rgba(31,111,147,.82),rgba(116,204,230,.34));box-shadow:inset 0 0 18px rgba(255,255,255,.35);animation:stripMove 3.2s ease-in-out infinite}.strip-gate i:nth-child(2n){animation-delay:.25s}.forklift-shape{position:absolute;right:52px;bottom:58px;width:128px;height:58px;border-radius:16px;background:#f59e0b;box-shadow:0 20px 36px rgba(7,24,39,.18);animation:forklift 5s ease-in-out infinite}.forklift-shape:before,.forklift-shape:after{content:"";position:absolute;bottom:-18px;width:28px;height:28px;border-radius:50%;background:#071827}.forklift-shape:before{left:18px}.forklift-shape:after{right:18px}.forklift-shape span{position:absolute;right:-32px;top:10px;width:38px;height:7px;background:#071827;border-radius:4px}.air-wave{position:absolute;left:36px;right:36px;height:2px;background:linear-gradient(90deg,transparent,#38bdf8,transparent);animation:airFlow 3.8s linear infinite}.wave-1{top:160px}.wave-2{top:224px;animation-delay:.8s}.wave-3{top:288px;animation-delay:1.6s}.floating-spec{position:absolute;z-index:2;max-width:220px;padding:15px 17px;border-radius:20px;background:#fff;border:1px solid #d7e9f1;box-shadow:0 24px 60px rgba(7,24,39,.13)}.floating-spec strong{display:block;color:#071827}.floating-spec span{font-size:12.5px;font-weight:750;color:#64798a}.spec-a{left:-8px;top:112px}.spec-b{right:-4px;top:184px}.spec-c{left:44px;bottom:34px}@keyframes pulse{70%{box-shadow:0 0 0 12px rgba(31,111,147,0)}}@keyframes stripMove{0%,100%{transform:skewX(0)}50%{transform:skewX(-5deg)}}@keyframes airFlow{0%{transform:translateX(-35%);opacity:0}20%,80%{opacity:1}100%{transform:translateX(35%);opacity:0}}@keyframes forklift{0%,100%{transform:translateX(0)}50%{transform:translateX(-28px)}}
.smart-selector{background:#fff}.selector-grid{display:grid;grid-template-columns:.95fr 1.05fr;gap:34px;align-items:center}.selector-card{padding:18px;border:1px solid #d7e9f1;border-radius:32px;background:linear-gradient(180deg,#fff,#f4fbff);box-shadow:0 24px 70px rgba(7,24,39,.1)}.selector-tabs{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;margin-bottom:16px}.selector-tabs button{border:1px solid #d7e9f1;background:#fff;color:#173247;border-radius:16px;padding:13px 10px;font-weight:900;cursor:pointer}.selector-tabs button.active{background:linear-gradient(135deg,#071827,#1f6f93);color:#fff;border-color:transparent}.selector-result{min-height:190px;padding:24px;border-radius:24px;background:#071827;color:#fff}.selector-result.hidden{display:none}.selector-result b{font-size:26px;letter-spacing:-.5px}.selector-result p{line-height:1.75;color:#dff7ff}.selector-result a{font-weight:900;color:#8fd0e8}.industry-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.industry-grid article{padding:24px;border-radius:26px;background:#fff;border:1px solid #d7e9f1;box-shadow:0 16px 44px rgba(7,24,39,.07);transition:.25s ease}.industry-grid article:hover{transform:translateY(-5px);box-shadow:0 24px 60px rgba(7,24,39,.13)}.industry-grid b{font-size:20px;color:#071827}.industry-grid p{color:#64798a;line-height:1.7}.specs-panel{display:grid;grid-template-columns:1fr 1fr;gap:28px;padding:38px;border-radius:34px;background:linear-gradient(135deg,#071827,#0f3a55 62%,#1f6f93);color:#fff;box-shadow:0 30px 80px rgba(7,24,39,.18)}.specs-panel h2{color:#fff}.specs-panel .section-text{color:#dff7ff}.spec-list{display:grid;gap:12px}.spec-list div{padding:18px;border-radius:20px;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.16)}.spec-list b{display:block}.spec-list span{color:#dff7ff;font-size:14px;line-height:1.6}
@media(max-width:980px){.command-grid,.selector-grid,.specs-panel{grid-template-columns:1fr}.command-visual{min-height:460px}.industry-grid{grid-template-columns:1fr 1fr}.selector-tabs{grid-template-columns:1fr 1fr}}
@media(max-width:640px){.hero-command{padding:62px 0}.command-copy h1{font-size:42px;letter-spacing:-1.6px}.command-metrics{grid-template-columns:1fr}.command-visual{min-height:420px}.floating-spec{display:none}.industry-grid{grid-template-columns:1fr}.selector-tabs{grid-template-columns:1fr}.hero-trust-line span{width:100%}}


/* === Arama NORMAL MENU + PROJECT GALLERY REVISION === */
.header-clean{background:rgba(255,255,255,.96);backdrop-filter:blur(18px);border-bottom:1px solid rgba(15,58,85,.10)}
.nav.nav-clean{height:86px;display:grid!important;grid-template-columns:auto 1fr auto;gap:24px;align-items:center}
.logo-clean{min-width:218px}.logo-copy strong{display:block;font-size:27px;line-height:1;color:#071827;letter-spacing:-.7px}.logo-copy small{display:block;margin-top:6px;font-size:12px;color:#64798a;font-weight:850;letter-spacing:.2px}
.menu-clean{justify-self:center;display:flex!important;align-items:center;gap:4px;padding:8px 10px;border:1px solid #d5e8f0;border-radius:999px;background:#f7fcff;box-shadow:0 14px 40px rgba(7,24,39,.05)}
.menu-clean>li{position:static!important}.menu-clean>li>a{height:46px;display:flex;align-items:center;padding:0 17px;border-radius:999px;color:#173247;font-weight:900;text-decoration:none;white-space:nowrap;transition:.22s ease}.menu-clean>li>a:hover,.menu-clean>li>a:focus-visible{background:#fff;color:#0f6d92;box-shadow:0 10px 24px rgba(7,24,39,.08)}
.menu-clean .dropdown-panel,.menu-clean .mega-panel,.menu-clean .use-panel{display:none!important}.menu-clean>li>a::after,.menu-clean>li>a::before{display:none!important;content:none!important}.nav-actions-clean{display:flex;align-items:center;gap:12px}.nav-actions-clean .btn{min-height:54px;border-radius:999px;padding:0 22px}.nav-actions-clean .nav-phone{border:1px solid #d5e8f0;background:#fff;border-radius:18px;padding:10px 14px;min-width:150px}
.project-hero{background:radial-gradient(circle at 18% 20%,rgba(31,111,147,.16),transparent 30%),linear-gradient(135deg,#f7fcff,#eaf7fc)}.gallery-intro{display:grid;grid-template-columns:1fr auto;gap:24px;align-items:end;margin-bottom:26px}.project-gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.gallery-card{position:relative;display:block;overflow:hidden;border-radius:28px;background:#fff;border:1px solid #d5e8f0;box-shadow:0 18px 54px rgba(7,24,39,.10);text-decoration:none;color:#071827}.gallery-card img{width:100%;height:260px;object-fit:cover;display:block;transition:.35s ease}.gallery-card:hover img{transform:scale(1.055)}.gallery-card div{padding:18px 20px}.gallery-card b{display:block;font-size:20px;margin-bottom:5px}.gallery-card span{color:#64798a;font-weight:800}.gallery-card:after{content:"Büyüt";position:absolute;right:16px;top:16px;background:#071827;color:#fff;border-radius:999px;padding:9px 13px;font-weight:900;font-size:12px;opacity:0;transform:translateY(-6px);transition:.25s ease}.gallery-card:hover:after{opacity:1;transform:none}.lightbox-modal{position:fixed;inset:0;z-index:2000;background:rgba(7,24,39,.88);display:none;align-items:center;justify-content:center;padding:28px}.lightbox-modal.open{display:flex}.lightbox-inner{position:relative;max-width:min(1080px,96vw);width:100%}.lightbox-inner img{width:100%;max-height:78vh;object-fit:contain;border-radius:24px;background:#fff}.lightbox-caption{margin-top:12px;color:#fff;font-weight:900;text-align:center}.lightbox-close{position:absolute;right:-10px;top:-48px;width:42px;height:42px;border:0;border-radius:50%;background:#fff;color:#071827;font-size:26px;cursor:pointer}.usecase-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.usecase-card{background:#fff;border:1px solid #d5e8f0;border-radius:28px;padding:26px;box-shadow:0 18px 54px rgba(7,24,39,.08)}.usecase-card h2{margin-top:0;color:#071827}.usecase-card p{color:#526779;line-height:1.75}
@media(max-width:1180px){.nav.nav-clean{grid-template-columns:auto auto;justify-content:space-between;height:auto;padding-top:14px;padding-bottom:14px}.menu-clean{grid-column:1/-1;justify-self:stretch;justify-content:center;overflow:auto}.nav-actions-clean{display:none}}
@media(max-width:980px){.mobile-toggle{display:grid}.menu-clean{position:fixed!important;inset:82px 16px auto 16px!important;display:none!important;flex-direction:column!important;align-items:stretch!important;justify-content:flex-start!important;border-radius:24px!important;background:#fff!important;padding:14px!important;box-shadow:0 28px 80px rgba(7,24,39,.18)!important;overflow:visible!important}.menu-clean.open{display:flex!important}.menu-clean>li>a{width:100%;justify-content:flex-start;border-radius:16px}.project-gallery,.usecase-grid{grid-template-columns:repeat(2,1fr)}.gallery-intro{grid-template-columns:1fr}}
@media(max-width:640px){.logo-clean{min-width:0}.logo-copy strong{font-size:22px}.logo-copy small{display:none}.project-gallery,.usecase-grid{grid-template-columns:1fr}.gallery-card img{height:230px}}


/* === NEXT REVISION: Arama service dropdown + clean trend slider === */
.header-next{background:rgba(255,255,255,.95);backdrop-filter:blur(18px)}
.nav-next{height:86px;display:grid;grid-template-columns:auto 1fr auto;gap:24px}.menu-next{justify-self:center;overflow:visible!important}.menu-next>li{position:relative!important}.menu-next .service-dropdown>a::after{content:"";width:8px;height:8px;border-right:2px solid currentColor;border-bottom:2px solid currentColor;transform:rotate(45deg);margin-left:9px;margin-top:-4px;display:inline-block}.service-submenu{position:absolute;top:calc(100% + 14px);left:50%;transform:translateX(-50%) translateY(10px);width:320px;background:#fff;border:1px solid #d5e8f0;border-radius:24px;padding:10px;box-shadow:0 28px 80px rgba(7,24,39,.18);opacity:0;visibility:hidden;pointer-events:none;transition:.22s ease;z-index:2000}.service-submenu:before{content:"";position:absolute;left:0;right:0;top:-16px;height:16px}.service-dropdown:hover .service-submenu,.service-dropdown.open .service-submenu{opacity:1;visibility:visible;pointer-events:auto;transform:translateX(-50%) translateY(0)}.service-submenu a{display:flex!important;height:auto!important;justify-content:space-between;align-items:center;border-radius:16px;padding:14px 15px!important;color:#123047;font-weight:900}.service-submenu a:after{content:"→";color:#0f6d92}.service-submenu a:hover{background:#edf8fd;color:#0f6d92;box-shadow:none!important}
.trend-hero{padding:54px 0 62px;background:linear-gradient(135deg,#f8fcff 0%,#eaf7fc 52%,#fff 100%)}.trend-slider{position:relative}.trend-slides{position:relative;min-height:560px;border:1px solid #d5e8f0;border-radius:42px;background:linear-gradient(145deg,#fff,#eef8fd);box-shadow:0 28px 90px rgba(7,24,39,.12);overflow:hidden}.trend-slide{position:absolute;inset:0;display:grid;grid-template-columns:1.04fr .96fr;gap:30px;align-items:center;padding:58px;opacity:0;transform:translateX(28px);pointer-events:none;transition:.55s ease}.trend-slide.active{opacity:1;transform:none;pointer-events:auto}.trend-copy h1{font-size:clamp(42px,5vw,68px);letter-spacing:-2.2px;max-width:720px}.trend-actions{display:flex;gap:14px;flex-wrap:wrap}.trend-visual{position:relative;border-radius:34px;background:linear-gradient(180deg,#dff4fd,#fff);border:1px solid #c9e6f2;padding:18px;box-shadow:inset 0 0 0 8px rgba(255,255,255,.42)}.trend-visual img{width:100%;height:390px;object-fit:contain}.trend-nav{display:flex;gap:10px;justify-content:center;margin-top:18px}.trend-nav button{border:1px solid #cfe8f2;background:#fff;color:#173247;border-radius:999px;padding:12px 18px;font-weight:900;cursor:pointer}.trend-nav button.active{background:#0f5f80;color:#fff;border-color:#0f5f80}.service-hub-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.service-hub-card{background:#fff;border:1px solid var(--line);border-radius:30px;padding:28px;box-shadow:0 15px 45px rgba(7,55,95,.08);transition:.25s ease}.service-hub-card:hover{transform:translateY(-6px);box-shadow:0 24px 70px rgba(7,55,95,.14)}.service-hub-card span{font-weight:900;color:#0f6d92;text-transform:uppercase;letter-spacing:.1em;font-size:12px}.service-hub-card h2{font-size:28px;margin:10px 0}.service-hub-card p{color:#526579;line-height:1.7}.service-hub-card b{color:#0f6d92}.seo-product-hero{padding:72px 0}.product-hero-grid{display:grid;grid-template-columns:1fr 420px;gap:38px;align-items:center}.product-hero-grid img{background:#fff;border:1px solid var(--line);border-radius:34px;padding:22px;box-shadow:0 18px 60px rgba(7,55,95,.10)}.product-list{grid-template-columns:repeat(2,1fr);display:grid;gap:12px}.sidebar strong{display:block;color:var(--blue-950);margin-bottom:10px;font-size:20px}
@media(max-width:1180px){.nav-next{grid-template-columns:auto auto}.menu-next{grid-column:1/-1;justify-self:stretch;justify-content:center}.nav-actions-next{display:none}}@media(max-width:980px){.menu-next{overflow:auto!important}.service-submenu{position:static;transform:none!important;width:100%;box-shadow:none;border-radius:18px;margin-top:8px;display:none;opacity:1;visibility:visible;pointer-events:auto}.service-dropdown.open .service-submenu{display:grid}.service-dropdown:hover .service-submenu{display:none}.trend-slides{min-height:760px}.trend-slide{grid-template-columns:1fr;padding:34px}.service-hub-grid,.product-hero-grid{grid-template-columns:1fr}.product-list{grid-template-columns:1fr}}@media(max-width:640px){.trend-slides{min-height:790px;border-radius:28px}.trend-slide{padding:24px}.trend-visual img{height:260px}.trend-nav{overflow:auto;justify-content:flex-start}.service-hub-grid{grid-template-columns:1fr}}

/* 2026 EDITORIAL SLIDER AND RICH Arama PAGES */
.hero-editorial{position:relative;overflow:hidden;background:radial-gradient(circle at 75% 20%,rgba(24,139,177,.24),transparent 35%),linear-gradient(135deg,#eef9fd 0%,#fff 48%,#e9f6fb 100%);padding:72px 0 64px;border-bottom:1px solid rgba(11,68,94,.09)}
.hero-editorial-wrap{display:grid;grid-template-columns:minmax(0,1.04fr) minmax(420px,.96fr);align-items:center;gap:54px}.hero-copy h1{font-size:clamp(38px,5vw,72px);line-height:.98;letter-spacing:-2.8px;margin:14px 0;color:#071d2e}.hero-copy .lead{font-size:clamp(18px,2vw,23px);max-width:760px;color:#40596a;line-height:1.65}.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:26px}.hero-proof{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:34px;max-width:690px}.hero-proof span{background:rgba(255,255,255,.72);border:1px solid rgba(14,82,116,.12);border-radius:22px;padding:16px 18px;color:#456071;font-weight:800}.hero-proof b{display:block;color:#0b5d7a;font-size:30px;line-height:1}.hero-stage{position:relative}.stage-card{position:relative;border-radius:42px;padding:24px;background:linear-gradient(145deg,#fff,#dff3fa);box-shadow:0 34px 90px rgba(5,42,63,.18);border:1px solid rgba(13,97,132,.12);min-height:430px;display:grid;place-items:center}.stage-card img{width:100%;max-height:390px;object-fit:contain;filter:drop-shadow(0 20px 34px rgba(10,65,94,.16))}.floating-badge{position:absolute;left:28px;bottom:28px;background:#08263b;color:#fff;border-radius:999px;padding:13px 18px;font-weight:900;box-shadow:0 16px 35px rgba(8,38,59,.24)}.hero-tabs{display:flex;gap:10px;justify-content:center;margin-top:18px}.hero-tabs button{border:1px solid rgba(12,92,124,.15);background:#fff;border-radius:999px;padding:12px 18px;font-weight:900;color:#14324a;cursor:pointer}.hero-tabs button.active{background:#0d5d7d;color:#fff}.two-col{display:grid;grid-template-columns:1fr 440px;gap:48px;align-items:center}.page-visual{width:100%;border-radius:34px;background:#eff9fd;box-shadow:0 20px 50px rgba(7,42,61,.12)}.content-layout{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:40px;align-items:start}.content-main{background:#fff;border:1px solid rgba(9,61,87,.1);border-radius:34px;padding:34px;box-shadow:0 18px 60px rgba(4,47,70,.07)}.content-main h2{font-size:30px;margin:22px 0 12px;color:#071d2e}.content-main p{font-size:17px;line-height:1.9;color:#4a6272}.check-list{padding:0;list-style:none;display:grid;gap:12px}.check-list li{position:relative;padding-left:30px;color:#344d5d;line-height:1.65;font-weight:650}.check-list li:before{content:'✓';position:absolute;left:0;top:0;color:#0b779d;font-weight:1000}.spec-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin:20px 0}.spec-grid div{background:#f1f9fc;border:1px solid rgba(11,98,132,.12);border-radius:22px;padding:18px}.spec-grid b{display:block;color:#0a4d6c;margin-bottom:8px}.spec-grid span{color:#506978;line-height:1.6}.content-side{display:grid;gap:18px;position:sticky;top:112px}.quote-card,.mini-card{background:#08263b;color:#fff;border-radius:30px;padding:26px;box-shadow:0 20px 50px rgba(8,38,59,.18)}.quote-card p{color:#d8eff7;line-height:1.75}.mini-card{background:#fff;color:#08263b;border:1px solid rgba(9,61,87,.1)}.mini-card a{display:block;color:#0b7195;text-decoration:none;font-weight:850;padding:10px 0;border-bottom:1px solid #edf5f8}.faq-grid{display:grid;gap:14px}.faq-grid details{background:#fff;border:1px solid rgba(9,61,87,.1);border-radius:22px;padding:20px}.faq-grid summary{cursor:pointer;font-weight:900;color:#08263b}.faq-grid p{color:#4a6272;line-height:1.75}.service-hub-grid.rich .service-hub-card{min-height:0}.service-hub-card img{width:100%;height:180px;object-fit:contain;margin-bottom:18px;background:#eef9fd;border-radius:22px}.project-gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.project-gallery a{display:block;background:#fff;border:1px solid rgba(9,61,87,.1);border-radius:28px;padding:14px;text-decoration:none;color:#08263b;box-shadow:0 18px 50px rgba(4,47,70,.08);transition:.25s}.project-gallery a:hover{transform:translateY(-4px)}.project-gallery img{width:100%;height:240px;object-fit:contain;background:#eef9fd;border-radius:20px}.project-gallery span{display:block;padding:14px 8px 4px;font-weight:900}.form-shell{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:28px}.quote-form{background:#fff;border:1px solid rgba(9,61,87,.1);border-radius:34px;padding:30px;display:grid;gap:18px}.quote-form label{display:grid;gap:8px;font-weight:900;color:#08263b}.quote-form input,.quote-form select,.quote-form textarea{width:100%;border:1px solid #d7e8ef;border-radius:16px;padding:15px 16px;font:inherit}.quote-form textarea{min-height:140px}.service-submenu{z-index:1000}
@media(max-width:980px){.hero-editorial-wrap,.two-col,.content-layout,.form-shell{grid-template-columns:1fr}.hero-proof{grid-template-columns:1fr}.stage-card{min-height:300px}.project-gallery{grid-template-columns:1fr}.content-side{position:static}.spec-grid{grid-template-columns:1fr}.hero-tabs{overflow-x:auto;justify-content:flex-start}.hero-copy h1{letter-spacing:-1.4px}}


/* === PROFESSIONAL CINEMATIC HERO SLIDER FIX === */
.cinematic-hero{position:relative;padding:46px 0 58px;background:linear-gradient(135deg,#eef9fd 0%,#ffffff 48%,#e7f6fb 100%);border-bottom:1px solid rgba(8,49,72,.08);overflow:hidden}
.cinematic-hero:before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(11,95,125,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(11,95,125,.055) 1px,transparent 1px);background-size:72px 72px;mask-image:linear-gradient(to bottom,rgba(0,0,0,.55),rgba(0,0,0,.04));pointer-events:none}
.cinematic-shell{position:relative;border:1px solid rgba(12,92,124,.16);border-radius:42px;background:rgba(255,255,255,.88);box-shadow:0 32px 90px rgba(8,54,76,.14);padding:28px;overflow:hidden;min-height:660px}
.cinematic-progress{height:5px;border-radius:99px;background:#dceff6;overflow:hidden;margin:0 0 26px}.cinematic-progress span{display:block;height:100%;width:0;background:linear-gradient(90deg,#0e7598,#42c4ef);border-radius:99px;animation:cinematicProgress 6s linear infinite}
.cinematic-slides{position:relative;min-height:540px}.cinematic-slide{position:absolute;inset:0;display:grid;grid-template-columns:minmax(420px,.9fr) minmax(520px,1.1fr);gap:46px;align-items:center;opacity:0;visibility:hidden;pointer-events:none;transform:translateX(18px);transition:opacity .45s ease,transform .45s ease,visibility .45s ease}.cinematic-slide.active{opacity:1;visibility:visible;pointer-events:auto;transform:none}
.cinematic-copy{align-self:center;padding:18px 0 24px;max-width:690px}.cinematic-kicker{display:inline-flex;align-items:center;border:1px solid #cbe7f1;background:#ecf8fc;color:#0a5f80;border-radius:999px;padding:10px 17px;font-size:15px;font-weight:950;margin-bottom:22px}.cinematic-copy h1{font-size:clamp(42px,4.8vw,78px);line-height:.98;letter-spacing:-3px;color:#071827;margin:0 0 22px;max-width:720px}.cinematic-copy p{font-size:clamp(17px,1.5vw,22px);line-height:1.68;color:#4d6577;margin:0 0 26px;max-width:680px}.cinematic-actions{display:flex;gap:14px;flex-wrap:wrap;margin:0 0 24px}.cinematic-benefits{display:flex;gap:12px;flex-wrap:wrap}.cinematic-benefits span{background:#fff;border:1px solid #d7eaf2;color:#123149;border-radius:999px;padding:12px 16px;font-weight:900;box-shadow:0 10px 26px rgba(7,55,81,.06)}
.cinematic-scene{position:relative;min-height:500px;border-radius:34px;overflow:hidden;border:1px solid #cbe7f1;background:#eaf7fc;box-shadow:inset 0 0 0 12px rgba(255,255,255,.48),0 24px 70px rgba(8,54,76,.13)}
.scene-warehouse{background:linear-gradient(180deg,#effaff 0 53%,#d8edf5 53% 100%)}.scene-warehouse:before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(10,78,105,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(10,78,105,.08) 1px,transparent 1px);background-size:82px 82px}.warehouse-floor{position:absolute;left:0;right:0;bottom:0;height:42%;background:linear-gradient(180deg,rgba(180,222,236,.42),rgba(222,242,248,.92))}.door-frame{position:absolute;right:28%;top:24%;width:250px;height:320px;border:20px solid #d9eef6;border-radius:30px;background:#08263b;box-shadow:0 26px 60px rgba(8,38,59,.18);display:flex;gap:7px;align-items:stretch;justify-content:center;padding:36px 22px 30px}.door-frame:before{content:"";position:absolute;inset:10px;border-radius:20px;border:1px solid rgba(255,255,255,.10)}.strip{flex:1;border-radius:22px;background:linear-gradient(90deg,#0b5f7c,#52c6e9 48%,#0b5f7c);opacity:.94;transform-origin:top;animation:curtainSwing 3.8s ease-in-out infinite}.strip.s2{animation-delay:.18s}.strip.s3{animation-delay:.35s}.strip.s4{animation-delay:.52s}.strip.s5{animation-delay:.7s}.wind,.blocked-flow{position:absolute;height:8px;border-radius:99px;background:linear-gradient(90deg,transparent,#38bdf8,#98e6ff,transparent);filter:drop-shadow(0 0 8px rgba(56,189,248,.4));opacity:.9}.wind{left:-180px;width:360px;animation:windToDoor 4.2s linear infinite}.wind-one{top:34%}.wind-two{top:48%;animation-delay:.9s}.wind-three{top:62%;animation-delay:1.7s}.blocked-flow{left:58%;width:230px;opacity:.32;background:linear-gradient(90deg,transparent,#0a789f,transparent);animation:blockedWind 4.2s linear infinite}.flow-one{top:35%;animation-delay:.3s}.flow-two{top:52%;animation-delay:1.2s}.forklift-real{position:absolute;right:58px;bottom:70px;width:170px;height:78px;background:#f5a615;border-radius:18px 18px 8px 8px;box-shadow:inset 0 -7px 0 rgba(0,0,0,.08)}.forklift-real:before{content:"";position:absolute;right:8px;top:-42px;width:58px;height:58px;background:#ffb21d;border-radius:12px}.forklift-real:after{content:"";position:absolute;right:-44px;top:28px;width:58px;height:8px;background:#08263b;border-radius:99px}.forklift-real span:before,.forklift-real span:after{content:"";position:absolute;bottom:-28px;width:42px;height:42px;background:#071827;border-radius:50%}.forklift-real span:before{left:22px}.forklift-real span:after{right:22px}.scene-label{position:absolute;z-index:4;left:28px;font-weight:950;color:#0d5671;background:rgba(255,255,255,.72);border:1px solid #d0e8f1;border-radius:999px;padding:10px 14px}.scene-label.top{top:28px}.scene-label.bottom{bottom:28px}.scene-card{position:absolute;z-index:5;background:rgba(255,255,255,.92);backdrop-filter:blur(12px);border:1px solid #d6e9f1;border-radius:20px;padding:15px 18px;box-shadow:0 18px 46px rgba(8,54,76,.16)}.scene-card b{display:block;color:#08364e;font-size:20px}.scene-card small{display:block;color:#647b8b;font-weight:800;margin-top:4px}.scene-card.left{left:40px;bottom:86px}.scene-card.right{right:42px;top:58px}
.scene-welding{background:linear-gradient(180deg,#0b2638 0 66%,#d8edf5 66% 100%)}.welding-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);background-size:90px 90px}.worker{position:absolute;left:118px;bottom:98px;width:82px;height:106px;background:#243d4f;border-radius:24px 24px 16px 16px}.worker:before{content:"";position:absolute;left:16px;top:-54px;width:48px;height:48px;background:#1d3445;border-radius:50%}.worker:after{content:"";position:absolute;left:2px;bottom:-82px;width:22px;height:88px;background:#243d4f;border-radius:14px;transform:rotate(19deg);box-shadow:68px -8px 0 #243d4f}.worker i{position:absolute;right:-78px;top:48px;width:98px;height:10px;background:#273d4e;border-radius:99px;transform:rotate(28deg)}.torch{position:absolute;left:290px;bottom:135px;width:135px;height:8px;background:#263d4e;border-radius:99px;transform:rotate(0deg);transform-origin:left}.spark.core{position:absolute;left:420px;bottom:136px;width:38px;height:38px;background:#67e8f9;border-radius:50%;box-shadow:0 0 38px #67e8f9,0 0 86px rgba(103,232,249,.75);animation:sparkPulse 1.2s ease-in-out infinite}.ray{position:absolute;left:440px;bottom:153px;height:7px;border-radius:99px;background:linear-gradient(90deg,#80f2ff,rgba(128,242,255,.08));transform-origin:left;filter:drop-shadow(0 0 7px rgba(128,242,255,.5));animation:rayPulse 1.4s ease-in-out infinite}.ray-a{width:210px;transform:rotate(-24deg)}.ray-b{width:190px;transform:rotate(14deg);animation-delay:.2s}.ray-c{width:150px;transform:rotate(-52deg);animation-delay:.35s}.ray-d{width:170px;transform:rotate(48deg);animation-delay:.5s}.welding-curtain{position:absolute;right:185px;top:110px;width:260px;height:330px;border:20px solid rgba(255,255,255,.25);border-radius:34px;background:rgba(73,35,21,.72);display:flex;gap:8px;padding:36px 22px 28px;box-shadow:0 26px 70px rgba(0,0,0,.25);z-index:4}.welding-curtain span{flex:1;border-radius:24px;background:linear-gradient(90deg,#8e3218,#f28b2d 54%,#743014);opacity:.82;animation:curtainGlow 2.8s ease-in-out infinite}.welding-curtain span:nth-child(even){animation-delay:.45s}.safe-side{position:absolute;right:0;top:0;bottom:0;width:26%;background:linear-gradient(90deg,rgba(242,139,45,.20),rgba(255,255,255,.08));z-index:3}.scene-welding .scene-card.left{left:58px;top:48px;bottom:auto}.scene-welding .scene-card.right{right:70px;top:66px}.cinematic-nav{position:relative;z-index:10;display:flex;gap:12px;flex-wrap:wrap;margin-top:24px}.cinematic-nav button{border:1px solid #d4e9f1;background:#fff;color:#0a2c42;border-radius:18px;padding:14px 20px;font-weight:950;cursor:pointer;box-shadow:0 12px 30px rgba(7,55,81,.06);transition:.25s ease}.cinematic-nav button small{display:block;color:#0a91be;margin-bottom:3px}.cinematic-nav button.active{background:#071827;color:#fff;border-color:#071827}.cinematic-nav button.active small{color:#7dd3fc}
@keyframes cinematicProgress{from{width:0}to{width:100%}}@keyframes curtainSwing{0%,100%{transform:skewX(0deg)}45%{transform:skewX(-5deg)}70%{transform:skewX(3deg)}}@keyframes windToDoor{0%{transform:translateX(0);opacity:0}12%{opacity:.95}70%{opacity:.95}100%{transform:translateX(58vw);opacity:0}}@keyframes blockedWind{0%,35%{transform:translateX(-30px);opacity:0}55%{opacity:.35}100%{transform:translateX(100px);opacity:0}}@keyframes sparkPulse{0%,100%{transform:scale(.78);opacity:.72}50%{transform:scale(1.2);opacity:1}}@keyframes rayPulse{0%,100%{opacity:.35}50%{opacity:1}}@keyframes curtainGlow{0%,100%{filter:brightness(.88)}50%{filter:brightness(1.18)}}
@media(max-width:1180px){.cinematic-shell{min-height:880px}.cinematic-slides{min-height:760px}.cinematic-slide{grid-template-columns:1fr;gap:28px}.cinematic-copy{max-width:100%;padding-right:0}.cinematic-scene{min-height:430px}.door-frame{right:34%;transform:scale(.9)}.welding-curtain{right:140px;transform:scale(.9)}}
@media(max-width:760px){.cinematic-hero{padding:28px 0 42px}.cinematic-shell{padding:18px;border-radius:30px;min-height:900px}.cinematic-slides{min-height:760px}.cinematic-slide{gap:22px}.cinematic-copy h1{font-size:40px;letter-spacing:-1.5px}.cinematic-copy p{font-size:16px}.cinematic-actions .btn{width:100%;justify-content:center}.cinematic-benefits span{width:100%;text-align:center}.cinematic-scene{min-height:350px;border-radius:24px}.door-frame{right:25%;top:22%;width:175px;height:245px;border-width:14px;padding:28px 15px 24px}.forklift-real{right:26px;bottom:54px;transform:scale(.72);transform-origin:right bottom}.scene-card{display:none}.scene-label{font-size:12px}.worker{left:58px;transform:scale(.72);transform-origin:left bottom}.spark.core{left:248px}.ray{left:266px}.welding-curtain{right:28px;top:102px;width:170px;height:230px;border-width:14px;padding:26px 14px 20px}.safe-side{width:30%}.cinematic-nav{display:grid;grid-template-columns:1fr}.cinematic-nav button{text-align:left}}


/* === ACAMAR INSPIRED HEADER + SLIDER REVISION === */
.topbar,.header{display:none!important}
.ac-header{position:sticky;top:0;z-index:5000;background:#fff;border-bottom:1px solid rgba(7,24,39,.08);box-shadow:0 10px 32px rgba(7,24,39,.06)}
.ac-top{background:#071827;color:#dbeef6;font-size:13px}.ac-top-inner{height:38px;display:flex;align-items:center;justify-content:space-between;gap:20px}.ac-top a{color:#dbeef6;text-decoration:none;font-weight:750}.ac-top-links,.ac-top-cta{display:flex;align-items:center;gap:22px}.ac-callback{background:#1f6f93;color:#fff!important;border-radius:999px;padding:7px 13px}.ac-main-inner{height:82px;display:grid;grid-template-columns:auto 1fr auto auto;align-items:center;gap:28px}.ac-logo{display:flex;align-items:center;gap:13px;text-decoration:none;color:#071827;min-width:225px}.ac-logo-mark{width:54px;height:54px;border-radius:17px;background:linear-gradient(135deg,#071827,#1f6f93);color:#fff;display:grid;place-items:center;font-weight:950;font-size:25px}.ac-logo b{display:block;font-size:28px;line-height:1;letter-spacing:-.8px}.ac-logo small{display:block;margin-top:6px;font-size:12px;color:#607282;font-weight:800}.ac-nav>ul{display:flex;align-items:center;justify-content:center;gap:3px;list-style:none;padding:0;margin:0}.ac-nav a{height:48px;padding:0 14px;border-radius:999px;display:flex;align-items:center;text-decoration:none;color:#173247;font-size:15px;font-weight:900;transition:.2s ease}.ac-nav>ul>li>a:hover,.ac-nav>ul>li:hover>a{background:#edf7fb;color:#0d6d91}.ac-primary{height:54px;padding:0 25px;border-radius:999px;background:#071827;color:#fff;display:grid;place-items:center;text-decoration:none;font-weight:950;box-shadow:0 16px 35px rgba(7,24,39,.18)}.ac-mobile{display:none;width:48px;height:48px;border:0;border-radius:14px;background:#071827}.ac-mobile span{display:block;width:22px;height:2px;background:#fff;margin:5px auto}.ac-mega-item{position:relative}.ac-mega-item>a:after{content:"";width:8px;height:8px;border-right:2px solid currentColor;border-bottom:2px solid currentColor;transform:rotate(45deg);margin-left:9px;margin-top:-4px}.ac-mega{position:absolute;left:50%;top:calc(100% + 14px);transform:translateX(-50%) translateY(12px);width:min(920px,92vw);background:#fff;border:1px solid #d6e9f1;border-radius:26px;box-shadow:0 28px 90px rgba(7,24,39,.18);padding:24px;opacity:0;visibility:hidden;pointer-events:none;transition:.22s ease}.ac-mega:before{content:"";position:absolute;left:0;right:0;top:-16px;height:16px}.ac-mega-item:hover .ac-mega,.ac-mega-item.open .ac-mega{opacity:1;visibility:visible;pointer-events:auto;transform:translateX(-50%) translateY(0)}.ac-mega-head{display:flex;align-items:end;justify-content:space-between;gap:20px;border-bottom:1px solid #e2f0f5;padding-bottom:16px;margin-bottom:16px}.ac-mega-head strong{font-size:22px;color:#071827}.ac-mega-head span{color:#607282;font-weight:800}.ac-mega-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}.ac-mega-grid a{height:auto!important;display:block!important;padding:18px!important;border-radius:18px;background:#f6fbfd;color:#071827!important}.ac-mega-grid a:hover{background:#e8f6fb}.ac-mega-grid b{display:block;margin-bottom:7px}.ac-mega-grid small{display:block;color:#607282;font-weight:750;line-height:1.45}
.acamar-hero{position:relative;background:#eef7fb}.acamar-slider{position:relative;min-height:calc(100vh - 120px);height:760px;max-height:840px;overflow:hidden;background:#071827}.acamar-slide{position:absolute;inset:0;opacity:0;visibility:hidden;transition:opacity .7s ease,visibility .7s ease}.acamar-slide.is-active{opacity:1;visibility:visible}.acamar-slide picture,.acamar-slide img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}.acamar-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(5,18,30,.88) 0%,rgba(5,18,30,.70) 35%,rgba(5,18,30,.16) 67%,rgba(5,18,30,.04) 100%)}.acamar-overlay.welding{background:linear-gradient(90deg,rgba(5,18,30,.90) 0%,rgba(5,18,30,.74) 38%,rgba(5,18,30,.25) 70%,rgba(5,18,30,.08) 100%)}.acamar-slide-content{position:relative;z-index:3;height:100%;display:flex;flex-direction:column;justify-content:center;align-items:flex-start;max-width:760px;color:#fff;padding-top:30px}.acamar-kicker{display:inline-flex;padding:10px 15px;border-radius:999px;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.25);backdrop-filter:blur(10px);font-weight:950;color:#bdefff;margin-bottom:20px}.acamar-slide h1,.acamar-slide h2{font-size:clamp(46px,5.7vw,86px);line-height:.95;letter-spacing:-3px;color:#fff;margin:0 0 22px}.acamar-slide p{max-width:650px;font-size:20px;line-height:1.65;color:rgba(255,255,255,.86);margin:0}.acamar-buttons{display:flex;gap:14px;flex-wrap:wrap;margin-top:32px}.btn-light{background:#fff!important;color:#071827!important;border-color:#fff!important}.acamar-slider-controls{position:absolute;left:50%;bottom:28px;transform:translateX(-50%);z-index:4;display:flex;gap:10px;background:rgba(255,255,255,.18);border:1px solid rgba(255,255,255,.24);backdrop-filter:blur(16px);padding:9px;border-radius:999px}.acamar-slider-controls button{height:44px;padding:0 18px;border:0;border-radius:999px;background:transparent;color:#fff;font-weight:950;cursor:pointer}.acamar-slider-controls button.is-active{background:#fff;color:#071827}.acamar-slider:after{content:"";position:absolute;left:0;right:0;bottom:0;height:5px;background:linear-gradient(90deg,#1f6f93 0 50%,rgba(255,255,255,.25) 50%);z-index:5;animation:acProgress 6.5s linear infinite}@keyframes acProgress{from{background-size:0% 100%}to{background-size:100% 100%}}
@media(max-width:1180px){.ac-top{display:none}.ac-main-inner{height:auto;min-height:76px;grid-template-columns:auto auto;justify-content:space-between}.ac-mobile{display:block}.ac-primary{display:none}.ac-nav{grid-column:1/-1;display:none;width:100%;padding:0 0 16px}.ac-nav.open{display:block}.ac-nav>ul{display:block}.ac-nav a{justify-content:space-between;border-radius:16px}.ac-mega{position:static;width:100%;transform:none!important;box-shadow:none;border-radius:18px;margin:8px 0 12px;display:none;opacity:1;visibility:visible;pointer-events:auto}.ac-mega-item.open .ac-mega{display:block}.ac-mega-grid{grid-template-columns:1fr}.ac-mega-head{display:block}.acamar-slider{height:auto;min-height:720px}.acamar-slide-content{padding:90px 0 140px;max-width:700px}.acamar-overlay{background:linear-gradient(180deg,rgba(5,18,30,.90),rgba(5,18,30,.62),rgba(5,18,30,.18))}.acamar-slide h1,.acamar-slide h2{font-size:clamp(40px,8vw,64px)}}
@media(max-width:640px){.ac-main-inner{gap:12px}.ac-logo{min-width:0}.ac-logo b{font-size:22px}.ac-logo small{display:none}.ac-logo-mark{width:48px;height:48px}.acamar-slider{min-height:680px}.acamar-slide-content{padding:72px 0 140px}.acamar-slide p{font-size:17px}.acamar-buttons{width:100%}.acamar-buttons .btn{width:100%;justify-content:center}.acamar-slider-controls{width:calc(100% - 32px);bottom:18px}.acamar-slider-controls button{flex:1;padding:0 8px}.acamar-slider-controls span{font-size:12px}.acamar-slide h1,.acamar-slide h2{letter-spacing:-1.6px}}


/* ==========================================================
   ACAMAR-LIKE FINAL HEADER + SLIDER (PVC brand language)
   ========================================================== */
.ac2-header{position:sticky;top:0;z-index:1000;background:#fff;box-shadow:0 10px 30px rgba(8,24,39,.08)}
.ac2-top{background:#1c130e;color:#fff;height:45px;font-size:14px}.ac2-top-inner{height:45px;display:flex;align-items:center;justify-content:space-between}.ac2-top-links,.ac2-top-cta{display:flex;align-items:center;gap:30px}.ac2-top a{color:#fff;text-decoration:none;font-weight:800;letter-spacing:-.1px}.ac2-top a span{color:#c69a5b;margin-left:4px}.ac2-top-cta a{display:flex;align-items:center;gap:8px}.ac2-top-cta .ac-callback{color:#fff}
.ac2-main{height:118px;background:#fff;border-bottom:1px solid rgba(15,58,85,.10)}.ac2-main-inner{height:118px;display:grid;grid-template-columns:310px 1fr auto;align-items:center;gap:26px}.ac2-logo{display:flex;align-items:center;gap:14px;text-decoration:none;color:#0a2033;min-width:280px}.ac2-logo-mark{width:58px;height:58px;border-radius:18px;background:linear-gradient(135deg,#0c3148,#1d7392);color:#fff;display:grid;place-items:center;font-size:25px;font-weight:950;box-shadow:0 18px 36px rgba(12,49,72,.22)}.ac2-logo b{display:block;font-size:34px;line-height:1;letter-spacing:-1.2px}.ac2-logo small{display:block;font-size:12px;font-weight:800;color:#647282;margin-top:7px}.ac2-mobile{display:none}
.ac2-nav>ul{display:flex;align-items:center;justify-content:center;gap:8px;list-style:none;margin:0;padding:0}.ac2-nav li{position:relative}.ac2-nav a{height:52px;padding:0 16px;border-radius:999px;display:flex;align-items:center;text-decoration:none;color:#172b3d;font-weight:850;font-size:15px;white-space:nowrap;transition:.22s ease}.ac2-nav a:hover{background:#f0f7fa;color:#0e6686}.ac2-nav .ac-mega-item>a:after{content:'⌄';font-size:13px;margin-left:8px;color:#b38a4b}.ac2-mega{position:absolute;top:calc(100% + 18px);left:50%;transform:translateX(-50%) translateY(12px);width:720px;background:#fff;border:1px solid rgba(15,58,85,.13);border-radius:26px;box-shadow:0 28px 80px rgba(10,32,51,.18);padding:22px;opacity:0;visibility:hidden;pointer-events:none;transition:.24s ease}.ac2-mega:before{content:'';position:absolute;left:0;right:0;top:-20px;height:20px}.ac-mega-item:hover .ac2-mega,.ac-mega-item.open .ac2-mega{opacity:1;visibility:visible;pointer-events:auto;transform:translateX(-50%) translateY(0)}.ac2-mega .ac-mega-head{display:flex;justify-content:space-between;gap:20px;align-items:flex-end;margin-bottom:14px}.ac2-mega .ac-mega-head strong{font-size:21px;color:#08243a}.ac2-mega .ac-mega-head span{font-size:13px;color:#70808d;font-weight:700}.ac2-mega .ac-mega-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}.ac2-mega .ac-mega-grid a{height:auto;border-radius:18px;background:#f6fafc;padding:16px;display:block}.ac2-mega .ac-mega-grid a:hover{background:#eaf6fb;transform:translateY(-2px)}.ac2-mega b{display:block;color:#0b344c;font-size:16px}.ac2-mega small{display:block;color:#697887;margin-top:5px;font-size:13px;line-height:1.4}
.ac2-actions{display:flex;align-items:center;gap:12px}.ac2-actions a{text-decoration:none;font-weight:900;color:#173047}.ac2-service{height:54px;padding:0 24px;border:1px solid rgba(179,138,75,.52);border-radius:999px;display:flex;align-items:center;background:#fff;color:#8a6128!important}.ac2-other{height:54px;padding:0 24px;border-radius:999px;display:flex;align-items:center;background:#f6f1e8;box-shadow:0 12px 28px rgba(116,82,35,.12)}.ac2-search{width:54px;height:54px;border-radius:50%;display:grid;place-items:center;background:#f8f3ea;color:#8a6128!important;font-size:28px;line-height:1}
.ac2-hero{background:#eef7fb}.ac2-slider{position:relative;height:760px;min-height:680px;background:#06121f;overflow:hidden}.ac2-slide{position:absolute;inset:0;opacity:0;visibility:hidden;transition:opacity .75s ease,visibility .75s ease}.ac2-slide.is-active{opacity:1;visibility:visible}.ac2-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;transform:scale(1.02);transition:transform 6.5s ease}.ac2-slide.is-active .ac2-bg{transform:scale(1.06)}.ac2-shade{position:absolute;inset:0;background:linear-gradient(90deg,rgba(5,11,22,.88) 0%,rgba(9,22,34,.70) 37%,rgba(9,22,34,.22) 68%,rgba(9,22,34,.08) 100%)}.ac2-shade.welding{background:linear-gradient(90deg,rgba(7,9,18,.90) 0%,rgba(26,16,12,.72) 38%,rgba(26,16,12,.26) 70%,rgba(26,16,12,.08) 100%)}.ac2-slide-grid{position:relative;z-index:3;height:100%;display:grid;grid-template-columns:minmax(420px,720px) minmax(360px,1fr);align-items:center;gap:60px}.ac2-copy{padding-top:10px;color:#fff;max-width:760px}.ac2-kicker{display:inline-flex;align-items:center;padding:11px 18px;border-radius:999px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.25);backdrop-filter:blur(14px);color:#bdefff;font-weight:950;margin-bottom:20px}.ac2-copy h1,.ac2-copy h2{font-size:clamp(46px,5.2vw,82px);line-height:.98;letter-spacing:-3px;color:#fff;margin:0 0 22px;text-wrap:balance}.ac2-copy p{font-size:18px;line-height:1.65;color:rgba(255,255,255,.88);max-width:720px;margin:0}.ac2-slide-buttons{display:flex;gap:14px;flex-wrap:wrap;margin-top:32px}.ac2-slide-buttons .btn-light{background:#fff!important;color:#071827!important;border-color:#fff!important}.ac2-specs{justify-self:end;width:min(520px,100%);display:grid;grid-template-columns:1fr 1fr;gap:24px;color:#fff}.ac2-specs div{min-height:110px;padding:24px;border-radius:28px;background:rgba(0,0,0,.24);border:1px solid rgba(255,255,255,.12);backdrop-filter:blur(12px);box-shadow:0 20px 50px rgba(0,0,0,.2)}.ac2-specs strong{display:block;font-size:44px;line-height:1;letter-spacing:-1.6px}.ac2-specs span{display:block;margin-top:9px;color:rgba(255,255,255,.82);font-weight:800}.ac2-specs.amber strong{color:#ffc06b}.ac2-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:5;width:58px;height:58px;border-radius:50%;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.28);color:#fff;font-size:38px;cursor:pointer;transition:.2s ease}.ac2-arrow:hover{background:rgba(255,255,255,.18)}.ac2-arrow.prev{left:34px}.ac2-arrow.next{right:34px}.ac2-dots{position:absolute;left:50%;bottom:42px;transform:translateX(-50%);z-index:5;display:flex;gap:30px}.ac2-dots button{width:12px;height:12px;border-radius:50%;border:0;background:rgba(255,255,255,.45);padding:0;cursor:pointer}.ac2-dots button.is-active{background:#fff;box-shadow:0 0 0 8px rgba(255,255,255,.12)}.ac2-bottom-text{position:absolute;left:max(32px,calc((100vw - 1440px)/2 + 24px));bottom:50px;z-index:4;max-width:760px;color:rgba(255,255,255,.86);font-weight:750;line-height:1.45}.ac2-slider:after{content:'';position:absolute;left:0;right:0;bottom:0;height:4px;background:linear-gradient(90deg,#1f8eb0 0 50%,rgba(255,255,255,.25) 50%);z-index:6}.ac2-solution-strip{display:grid;grid-template-columns:repeat(6,1fr);background:#fff;border-bottom:1px solid rgba(10,32,51,.09)}.ac2-solution-strip a{min-height:110px;display:grid;place-items:center;text-align:center;text-decoration:none;color:#172b3d;font-size:22px;font-weight:950;border-right:1px solid rgba(10,32,51,.08);transition:.2s ease}.ac2-solution-strip a:hover{background:#f2f9fc;color:#0e6686}
@media(max-width:1280px){.ac2-main-inner{grid-template-columns:270px 1fr auto;gap:14px}.ac2-actions .ac2-service{display:none}.ac2-nav a{padding:0 12px}.ac2-specs strong{font-size:34px}}
@media(max-width:1120px){.ac2-top{display:none}.ac2-main{height:auto}.ac2-main-inner{min-height:88px;height:auto;grid-template-columns:auto auto}.ac2-mobile{display:block;width:48px;height:48px;border:0;border-radius:15px;background:#0c3148}.ac2-mobile span{display:block;width:22px;height:2px;background:#fff;margin:5px auto}.ac2-actions{display:none}.ac2-nav{display:none;grid-column:1/-1;width:100%;padding-bottom:18px}.ac2-nav.open{display:block}.ac2-nav>ul{display:block}.ac2-nav a{height:50px;justify-content:space-between;border-radius:14px}.ac2-mega{position:static;width:100%;transform:none!important;opacity:1;visibility:visible;pointer-events:auto;display:none;box-shadow:none;border-radius:18px;margin:8px 0}.ac-mega-item.open .ac2-mega{display:block}.ac2-mega .ac-mega-grid{grid-template-columns:1fr}.ac2-slide-grid{grid-template-columns:1fr}.ac2-specs{display:none}.ac2-slider{height:720px}.ac2-shade{background:linear-gradient(90deg,rgba(5,11,22,.91),rgba(5,11,22,.58),rgba(5,11,22,.24))}.ac2-copy{max-width:720px}.ac2-solution-strip{grid-template-columns:repeat(3,1fr)}}
@media(max-width:680px){.ac2-main-inner{padding-block:12px}.ac2-logo b{font-size:25px}.ac2-logo small{display:none}.ac2-logo-mark{width:50px;height:50px}.ac2-slider{height:690px}.ac2-slide-grid{align-items:end;padding-bottom:120px}.ac2-copy h1,.ac2-copy h2{font-size:42px;letter-spacing:-1.4px}.ac2-copy p{font-size:16px}.ac2-slide-buttons .btn{width:100%;justify-content:center}.ac2-arrow{display:none}.ac2-bottom-text{display:none}.ac2-dots{bottom:26px}.ac2-solution-strip{grid-template-columns:repeat(2,1fr)}.ac2-solution-strip a{min-height:78px;font-size:16px}.ac2-kicker{font-size:13px}}

/* ==========================================================
   FINAL PREMIUM POLISH - Acamar inspired, AIPVC design language
   ========================================================== */
:root{
  --final-ink:#071827;
  --final-deep:#0b2538;
  --final-blue:#0e6686;
  --final-sky:#1aa6d6;
  --final-gold:#b88a45;
  --final-line:rgba(9,38,56,.10);
  --final-soft:#f6fafc;
}
body{background:#fff;color:var(--final-ink)}
.container{width:min(1320px,94%)}
.ac2-header{background:#fff;box-shadow:0 8px 24px rgba(7,24,39,.06);border-bottom:0}
.ac2-top{height:36px;background:#17100c;color:#fff;font-size:13px}
.ac2-top-inner{height:36px}.ac2-top-links,.ac2-top-cta{gap:24px}.ac2-top a{font-weight:750;letter-spacing:0}.ac2-top a:hover{color:#e7c48a}.ac2-top a span{font-size:11px;color:#e0b36d}.ac2-top-cta a{opacity:.95}.ac2-top-cta a:first-child::before{content:'☎';font-size:12px;color:#d6ad6a;margin-right:6px}.ac2-top-cta a:first-child{gap:0}.ac2-top-cta .ac-callback::before{content:'◔';font-size:13px;color:#d6ad6a;margin-right:7px}
.ac2-main{height:96px;background:#fff;border-bottom:1px solid rgba(7,24,39,.07)}
.ac2-main-inner{height:96px;grid-template-columns:300px 1fr auto;gap:24px}.ac2-logo{gap:13px;min-width:260px}.ac2-logo-mark{width:50px;height:50px;border-radius:15px;font-size:22px;box-shadow:0 16px 34px rgba(12,49,72,.16);background:linear-gradient(135deg,#0a2638,#1a7898)}.ac2-logo b{font-size:30px;letter-spacing:-.8px}.ac2-logo small{font-size:11px;margin-top:5px;color:#6b7785;font-weight:750}.ac2-nav>ul{gap:4px}.ac2-nav a{height:44px;padding:0 13px;border-radius:0;background:transparent!important;color:#142b3d;font-size:14px;font-weight:800;position:relative}.ac2-nav a::before{content:'';position:absolute;left:13px;right:13px;bottom:1px;height:2px;border-radius:99px;background:var(--final-blue);transform:scaleX(0);transform-origin:left;transition:transform .22s ease}.ac2-nav a:hover{color:var(--final-blue);box-shadow:none!important}.ac2-nav a:hover::before{transform:scaleX(1)}.ac2-nav .ac-mega-item>a:after{content:'⌄';font-size:12px;margin-left:6px;color:var(--final-gold)}
.ac2-mega{top:calc(100% + 12px);width:700px;border-radius:20px;padding:18px;border-color:rgba(7,24,39,.09);box-shadow:0 24px 70px rgba(7,24,39,.14)}.ac2-mega .ac-mega-head strong{font-size:18px}.ac2-mega .ac-mega-head span{font-size:12px}.ac2-mega .ac-mega-grid{gap:8px}.ac2-mega .ac-mega-grid a{border-radius:14px;padding:14px;background:#f7fafc}.ac2-mega b{font-size:15px}.ac2-mega small{font-size:12px}.ac2-actions{gap:10px}.ac2-actions a{font-size:14px;font-weight:850}.ac2-service{height:46px;padding:0 18px;border-color:rgba(184,138,69,.42);color:#8a6128!important;background:#fff;border-radius:999px}.ac2-other{height:46px;padding:0 18px;background:#fbf7ef;border:1px solid rgba(184,138,69,.16);box-shadow:0 8px 20px rgba(116,82,35,.08);border-radius:999px}.ac2-search{width:46px;height:46px;background:#f8f3ea;font-size:16px;color:#8a6128!important}.ac2-service:hover,.ac2-other:hover,.ac2-search:hover{transform:translateY(-1px);box-shadow:0 12px 28px rgba(7,24,39,.09)}
.ac2-hero{background:#fff}.ac2-slider{height:640px;min-height:600px;background:#07111f}.ac2-slide{overflow:hidden}.ac2-bg{object-fit:cover;filter:saturate(1.03) contrast(1.02);transform:scale(1)}.ac2-slide.is-active .ac2-bg{transform:scale(1.035)}.ac2-shade{background:linear-gradient(90deg,rgba(5,9,17,.84) 0%,rgba(8,19,31,.70) 38%,rgba(8,19,31,.28) 64%,rgba(8,19,31,.05) 100%)}.ac2-shade.welding{background:linear-gradient(90deg,rgba(7,8,15,.86) 0%,rgba(24,16,13,.70) 38%,rgba(24,16,13,.28) 64%,rgba(24,16,13,.05) 100%)}.ac2-slide-grid{grid-template-columns:minmax(460px,660px) minmax(420px,1fr);gap:48px}.ac2-copy{max-width:650px;padding-top:0}.ac2-kicker{margin-bottom:18px;padding:8px 13px;font-size:13px;font-weight:900;background:rgba(255,255,255,.13);border-color:rgba(255,255,255,.22);color:#d9f6ff;box-shadow:none}.ac2-copy h1,.ac2-copy h2{font-size:clamp(42px,4.5vw,68px);line-height:1.02;letter-spacing:-2.2px;margin-bottom:18px}.ac2-copy p{font-size:17px;line-height:1.62;max-width:620px;color:rgba(255,255,255,.86)}.ac2-slide-buttons{margin-top:26px;gap:12px}.btn-xl{padding:14px 22px;font-size:15px}.ac2-specs{width:min(470px,100%);gap:14px;align-self:center}.ac2-specs div{min-height:94px;border-radius:18px;padding:20px;background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.16);box-shadow:0 18px 42px rgba(0,0,0,.18)}.ac2-specs strong{font-size:32px;letter-spacing:-.9px}.ac2-specs span{font-size:13px;margin-top:7px;font-weight:700}.ac2-arrow{width:48px;height:48px;font-size:30px;background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.32)}.ac2-arrow.prev{left:28px}.ac2-arrow.next{right:28px}.ac2-dots{bottom:32px;gap:14px}.ac2-dots button{width:9px;height:9px}.ac2-dots button.is-active{box-shadow:0 0 0 7px rgba(255,255,255,.13)}.ac2-bottom-text{left:max(28px,calc((100vw - 1320px)/2));bottom:30px;max-width:620px;font-size:13px;color:rgba(255,255,255,.74)}.ac2-slider:after{height:3px;background:linear-gradient(90deg,var(--final-sky) 0 42%,rgba(255,255,255,.25) 42%)}.ac2-solution-strip{grid-template-columns:repeat(6,1fr);background:#fff;border-top:0;border-bottom:1px solid rgba(7,24,39,.08);box-shadow:0 10px 30px rgba(7,24,39,.04)}.ac2-solution-strip a{min-height:82px;font-size:17px;font-weight:900;color:#1d3446;border-right:1px solid rgba(7,24,39,.07);background:#fff}.ac2-solution-strip a:hover{background:#f7fbfd;color:var(--final-blue)}
.section{padding:76px 0}.choice-panel,.live-route,.cta,.footer-premium-top,.choice-card,.card,.project-card,.content-box{border-radius:22px!important;box-shadow:0 18px 50px rgba(7,24,39,.06)!important;border-color:rgba(7,24,39,.08)!important}.choice-card:hover,.project-card:hover,.card:hover{transform:translateY(-5px);box-shadow:0 24px 60px rgba(7,24,39,.11)!important}.sticky-cta{border-radius:999px!important;box-shadow:0 16px 42px rgba(7,24,39,.15)!important}
@media(max-width:1280px){.ac2-main-inner{grid-template-columns:250px 1fr auto}.ac2-logo b{font-size:27px}.ac2-nav a{font-size:13px;padding:0 10px}.ac2-actions .ac2-other{display:none}.ac2-slide-grid{grid-template-columns:1fr .78fr}.ac2-specs strong{font-size:28px}}
@media(max-width:1120px){.ac2-main{height:auto}.ac2-main-inner{min-height:82px;height:auto;grid-template-columns:auto auto}.ac2-mobile{display:block;width:44px;height:44px;border-radius:13px;background:#0c3148;border:0}.ac2-mobile span{display:block;width:20px;height:2px;background:#fff;margin:5px auto}.ac2-nav.open{display:block}.ac2-nav{grid-column:1/-1}.ac2-nav a{height:48px;border-radius:12px}.ac2-nav a::before{display:none}.ac2-slide-grid{grid-template-columns:1fr;align-items:center}.ac2-slider{height:640px}.ac2-specs{display:none}.ac2-copy{max-width:680px}.ac2-solution-strip{grid-template-columns:repeat(3,1fr)}}
@media(max-width:680px){.ac2-slider{height:620px;min-height:620px}.ac2-copy h1,.ac2-copy h2{font-size:38px;letter-spacing:-1.2px}.ac2-copy p{font-size:15px}.ac2-slide-buttons .btn{width:100%}.ac2-bottom-text{display:none}.ac2-solution-strip{grid-template-columns:repeat(2,1fr)}.ac2-solution-strip a{min-height:66px;font-size:14px}.ac2-bg{object-position:center}.sticky-cta{left:12px;right:12px;bottom:12px}.section{padding:54px 0}}


/* === Final aesthetic header + readable typography overhaul === */
:root{
  --ap-ink:#071827;
  --ap-text:#24384a;
  --ap-muted:#6a7b8a;
  --ap-blue:#0f6283;
  --ap-sky:#23a8d5;
  --ap-gold:#b88a45;
  --ap-line:#e4eef3;
  --ap-soft:#f7fbfd;
}
.ap-header{
  position:sticky;
  top:0;
  z-index:8000;
  background:#fff;
  border-bottom:1px solid rgba(7,24,39,.08);
  box-shadow:0 8px 28px rgba(7,24,39,.055);
}
.ap-topbar{
  height:34px;
  background:#17100c;
  color:#fff;
  font-size:13px;
}
.ap-topbar-inner{
  height:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.ap-top-links,.ap-top-actions{display:flex;align-items:center;gap:24px}
.ap-topbar a{
  color:rgba(255,255,255,.92);
  text-decoration:none;
  font-weight:750;
  letter-spacing:.01em;
}
.ap-topbar a:hover{color:#e7c48a}
.ap-top-actions a:first-child:before{content:'☎';font-size:12px;color:#d9b26f;margin-right:7px}
.ap-top-actions a:last-child:before{content:'◔';font-size:12px;color:#d9b26f;margin-right:7px}
.ap-mainbar{height:86px;background:#fff}
.ap-main-inner{
  height:86px;
  display:grid;
  grid-template-columns:260px minmax(0,1fr) auto;
  align-items:center;
  gap:26px;
}
.ap-logo{
  display:flex;
  align-items:center;
  gap:13px;
  color:var(--ap-ink);
  text-decoration:none;
  min-width:0;
}
.ap-logo-symbol{
  width:48px;
  height:48px;
  min-width:48px;
  border-radius:15px;
  display:grid;
  place-items:center;
  color:#fff;
  font-size:22px;
  font-weight:950;
  letter-spacing:-.7px;
  background:linear-gradient(135deg,#082235 0%,#167594 100%);
  box-shadow:0 14px 30px rgba(9,55,78,.18);
}
.ap-logo-copy strong{
  display:block;
  font-size:25px;
  line-height:1;
  letter-spacing:-.8px;
  font-weight:950;
}
.ap-logo-copy small{
  display:block;
  margin-top:6px;
  color:#667887;
  font-size:11px;
  font-weight:800;
  letter-spacing:.04em;
}
.ap-nav ul{
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:2px;
  margin:0;
  padding:0;
}
.ap-nav li{position:relative}
.ap-nav > ul > li > a{
  position:relative;
  height:44px;
  display:flex;
  align-items:center;
  padding:0 13px;
  color:#182d3f;
  text-decoration:none;
  font-size:14.5px;
  font-weight:820;
  letter-spacing:-.12px;
  border-radius:0;
  transition:color .2s ease;
  white-space:nowrap;
}
.ap-nav > ul > li > a:after{
  content:'';
  position:absolute;
  left:13px;
  right:13px;
  bottom:0;
  height:2px;
  border-radius:99px;
  background:var(--ap-blue);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .2s ease;
}
.ap-nav > ul > li > a:hover{color:var(--ap-blue)}
.ap-nav > ul > li > a:hover:after,.ap-dropdown.open>a:after{transform:scaleX(1)}
.ap-dropdown>a{gap:7px}
.ap-dropdown>a:before{
  content:'';
  order:2;
  width:7px;
  height:7px;
  border-right:1.8px solid currentColor;
  border-bottom:1.8px solid currentColor;
  transform:rotate(45deg) translateY(-2px);
  opacity:.72;
}
.ap-actions{display:flex;align-items:center;gap:11px}
.ap-phone{
  min-width:150px;
  height:48px;
  padding:0 16px;
  border:1px solid #ead9bd;
  border-radius:999px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  color:#1d3040;
  text-decoration:none;
  background:#fff;
}
.ap-phone small{font-size:11px;color:#8a6c3e;font-weight:850;line-height:1.05}
.ap-phone b{font-size:15px;line-height:1.08;margin-top:3px;letter-spacing:-.15px}
.ap-quote{
  height:48px;
  padding:0 23px;
  border-radius:999px;
  display:grid;
  place-items:center;
  color:#fff;
  text-decoration:none;
  font-size:15px;
  font-weight:900;
  background:linear-gradient(135deg,#0b3047,#13789b);
  box-shadow:0 14px 30px rgba(15,98,131,.22);
  transition:transform .2s ease, box-shadow .2s ease;
}
.ap-quote:hover{transform:translateY(-1px);box-shadow:0 18px 36px rgba(15,98,131,.28)}
.ap-mega{
  position:absolute;
  left:50%;
  top:calc(100% + 14px);
  width:min(840px,92vw);
  display:grid;
  grid-template-columns:240px 1fr;
  gap:14px;
  padding:14px;
  border:1px solid rgba(7,24,39,.09);
  border-radius:22px;
  background:rgba(255,255,255,.98);
  box-shadow:0 28px 78px rgba(7,24,39,.16);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateX(-45%) translateY(10px);
  transition:.22s ease;
}
.ap-mega:before{content:'';position:absolute;left:0;right:0;top:-16px;height:16px}
.ap-dropdown:hover .ap-mega,.ap-dropdown.open .ap-mega{
  opacity:1;visibility:visible;pointer-events:auto;transform:translateX(-45%) translateY(0)
}
.ap-mega-intro{
  min-height:220px;
  border-radius:18px;
  padding:22px;
  color:#fff;
  background:radial-gradient(circle at 10% 5%,rgba(41,171,214,.35),transparent 42%),linear-gradient(135deg,#081b2b,#0f5570);
}
.ap-mega-intro span{display:block;color:#9fe5fa;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.08em;margin-bottom:13px}
.ap-mega-intro strong{display:block;font-size:22px;line-height:1.15;letter-spacing:-.45px}
.ap-mega-intro p{margin:14px 0 0;color:#d6edf5;font-size:13.5px;line-height:1.55;font-weight:650}
.ap-mega-links{display:grid;grid-template-columns:repeat(2,1fr);gap:9px}
.ap-mega-links a{
  display:block;
  min-height:80px;
  padding:15px 16px;
  border:1px solid #e4eef3;
  border-radius:16px;
  color:#10283a;
  text-decoration:none;
  background:#fff;
  transition:.2s ease;
}
.ap-mega-links a:hover{background:#f5fafc;border-color:#bee0eb;transform:translateY(-2px)}
.ap-mega-links b{display:block;font-size:15px;margin-bottom:6px;letter-spacing:-.18px}
.ap-mega-links small{display:block;color:#687a89;font-size:12.5px;line-height:1.4;font-weight:700}
.ap-menu-toggle{display:none;width:44px;height:44px;border:0;border-radius:13px;background:#0b3047;cursor:pointer}
.ap-menu-toggle span{display:block;width:20px;height:2px;background:#fff;margin:5px auto;border-radius:999px}

/* Less bulky hero typography while keeping Acamar-style full-width slider */
.ac2-slider{height:590px!important;min-height:560px!important}
.ac2-main,.ac2-top,.ac2-header{display:none!important}
.ac2-copy{max-width:590px!important}
.ac2-copy h1,.ac2-copy h2{font-size:clamp(38px,4.1vw,60px)!important;line-height:1.05!important;letter-spacing:-1.9px!important;margin-bottom:17px!important}
.ac2-copy p{font-size:16.5px!important;line-height:1.62!important;max-width:560px!important}
.ac2-kicker{font-size:12px!important;padding:8px 13px!important;margin-bottom:16px!important}
.ac2-slide-buttons{margin-top:24px!important}
.ac2-specs{width:min(420px,100%)!important;gap:12px!important}
.ac2-specs div{min-height:82px!important;border-radius:16px!important;padding:17px!important;background:rgba(255,255,255,.105)!important}
.ac2-specs strong{font-size:27px!important;letter-spacing:-.7px!important}
.ac2-specs span{font-size:12px!important}
.ac2-solution-strip a{min-height:72px!important;font-size:15.5px!important;font-weight:850!important}
body{color:var(--ap-text)}
h1,h2,h3{letter-spacing:-.75px;color:#071827}
p{color:#4b6072}
.section h2{font-size:clamp(30px,3vw,46px);line-height:1.12;letter-spacing:-1.1px}
.choice-card h3,.service-card h3,.project-card h3{letter-spacing:-.35px}
@media(max-width:1220px){
  .ap-main-inner{grid-template-columns:235px 1fr auto;gap:16px}.ap-logo-copy strong{font-size:22px}.ap-logo-copy small{font-size:10px}.ap-nav>ul>li>a{font-size:13.5px;padding:0 9px}.ap-phone{display:none}
}
@media(max-width:980px){
  .ap-topbar{display:none}.ap-mainbar{height:auto}.ap-main-inner{min-height:76px;height:auto;grid-template-columns:1fr auto;padding-block:12px}.ap-logo-symbol{width:46px;height:46px;min-width:46px}.ap-logo-copy strong{font-size:22px}.ap-logo-copy small{display:none}.ap-menu-toggle{display:block}.ap-nav{grid-column:1/-1;display:none;padding:6px 0 14px}.ap-nav.open{display:block}.ap-nav ul{display:block}.ap-nav>ul>li>a{height:48px;border-radius:14px;padding:0 12px;justify-content:space-between}.ap-nav>ul>li>a:after{display:none}.ap-actions{display:none}.ap-mega{position:static;width:100%;grid-template-columns:1fr;transform:none!important;display:none;opacity:1;visibility:visible;pointer-events:auto;box-shadow:none;margin:6px 0 12px;border-radius:18px}.ap-dropdown.open .ap-mega{display:grid}.ap-mega-intro{min-height:auto}.ap-mega-links{grid-template-columns:1fr}.ac2-slider{height:620px!important}.ac2-slide-grid{grid-template-columns:1fr!important}.ac2-specs{display:none!important}
}
@media(max-width:680px){
  .ac2-slider{height:590px!important;min-height:590px!important}.ac2-copy h1,.ac2-copy h2{font-size:36px!important;letter-spacing:-1.1px!important}.ac2-copy p{font-size:15px!important}.ac2-slide-buttons .btn{width:100%;justify-content:center}.ac2-solution-strip{grid-template-columns:repeat(2,1fr)!important}.ac2-solution-strip a{min-height:62px!important;font-size:13.5px!important}
}

/* FINAL REQUEST: refined menu typography + expanded application slider */
.ap-nav>ul>li>a{
  font-size:13px!important;
  font-weight:760!important;
  letter-spacing:.01em!important;
  padding:0 10px!important;
}
.ap-logo-copy strong{font-size:25px!important;letter-spacing:-.6px!important}
.ap-logo-copy small{font-size:10.5px!important;letter-spacing:.04em!important;text-transform:uppercase!important}
.ap-phone small{font-size:10.5px!important}.ap-phone b{font-size:14px!important}.ap-quote{font-size:13px!important;padding:0 18px!important;height:42px!important}
.ap-main-inner{gap:18px!important}

.ac2-slider{height:620px!important;min-height:600px!important}
.ac2-copy h1,.ac2-copy h2{font-size:clamp(38px,4vw,61px)!important;line-height:1.04!important;letter-spacing:-1.9px!important;max-width:660px!important}
.ac2-copy p{font-size:16px!important;line-height:1.62!important;max-width:575px!important;color:rgba(255,255,255,.88)!important}
.ac2-kicker{font-size:12px!important;letter-spacing:.08em!important;text-transform:uppercase!important}
.ac2-specs{grid-template-columns:repeat(2, minmax(0,1fr))!important;width:min(430px,100%)!important}
.ac2-specs div{min-height:84px!important;padding:16px!important;border-radius:17px!important;backdrop-filter:blur(14px)!important}
.ac2-specs strong{font-size:25px!important}.ac2-specs span{font-size:12px!important}
.ac2-shade.cold{background:linear-gradient(90deg,rgba(5,12,22,.88) 0%,rgba(9,38,58,.70) 39%,rgba(9,85,115,.20) 70%,rgba(9,85,115,.04) 100%)}
.ac2-shade.frigo{background:linear-gradient(90deg,rgba(4,10,18,.88) 0%,rgba(10,33,49,.72) 39%,rgba(30,88,118,.22) 72%,rgba(30,88,118,.04) 100%)}
.ac2-shade.partition{background:linear-gradient(90deg,rgba(5,13,23,.86) 0%,rgba(11,45,64,.70) 38%,rgba(22,110,135,.20) 70%,rgba(22,110,135,.04) 100%)}
.ac2-slide.is-active .ac2-bg{animation:premiumSlideZoom 7s ease both}
@keyframes premiumSlideZoom{from{transform:scale(1)}to{transform:scale(1.035)}}
.ac2-dots button{width:8px!important;height:8px!important}.ac2-dots button.is-active{box-shadow:0 0 0 6px rgba(255,255,255,.14)!important}
@media(max-width:1180px){.ap-nav>ul>li>a{font-size:14px!important;padding:0 12px!important}.ac2-slider{height:650px!important}.ac2-copy h1,.ac2-copy h2{font-size:42px!important}.ac2-specs{display:none!important}}
@media(max-width:680px){.ac2-slider{height:640px!important;min-height:640px!important}.ac2-copy h1,.ac2-copy h2{font-size:34px!important;letter-spacing:-1.1px!important}.ac2-copy p{font-size:14.5px!important}.ac2-slide-grid{padding-bottom:90px!important}.ac2-slide-buttons{gap:8px!important}.btn-xl{padding:12px 16px!important;font-size:13px!important}}


/* FINAL POLISH: clean application slider, no content over scene */
.ap-nav>ul>li>a{font-size:13.2px!important;font-weight:700!important;letter-spacing:-.01em!important;padding:0 10px!important;height:44px!important}
.ap-logo-copy strong{letter-spacing:-.9px!important}.ap-main-inner{gap:22px!important}
.ac2-slider{height:720px!important;min-height:720px!important;background:#071624!important;overflow:hidden!important}
.ac2-slide-grid{height:100%!important;display:grid!important;grid-template-columns:minmax(430px,610px) minmax(430px,1fr)!important;grid-template-rows:1fr auto!important;align-items:center!important;gap:34px 48px!important;padding-top:42px!important;padding-bottom:86px!important;position:relative!important;z-index:2!important}
.ac2-bg{object-fit:cover!important;object-position:center center!important;filter:saturate(1.06) contrast(1.03)!important}
.ac2-shade{background:linear-gradient(90deg,rgba(5,10,18,.88) 0%,rgba(8,23,36,.78) 36%,rgba(8,23,36,.36) 58%,rgba(8,23,36,.06) 100%)!important}
.ac2-copy{grid-column:1!important;grid-row:1!important;align-self:center!important;max-width:610px!important;padding:0!important;position:relative!important;z-index:3!important}
.ac2-copy h1,.ac2-copy h2{font-size:clamp(38px,3.8vw,58px)!important;line-height:1.06!important;letter-spacing:-1.75px!important;margin:0 0 18px!important;max-width:640px!important}
.ac2-copy p{font-size:16px!important;line-height:1.68!important;max-width:570px!important;margin:0!important;color:rgba(255,255,255,.88)!important}
.ac2-kicker{display:inline-flex!important;margin-bottom:18px!important;background:rgba(255,255,255,.12)!important;border:1px solid rgba(255,255,255,.18)!important;color:#dff8ff!important;border-radius:999px!important;padding:9px 14px!important;font-size:11px!important;font-weight:900!important;letter-spacing:.1em!important;text-transform:uppercase!important}
.ac2-slide-buttons{margin-top:28px!important;position:relative!important;z-index:4!important}.btn-xl{padding:13px 20px!important;font-size:14px!important;border-radius:999px!important}
.ac2-specs{grid-column:1 / -1!important;grid-row:2!important;width:100%!important;display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:14px!important;align-self:end!important;position:relative!important;z-index:5!important;margin:0!important;padding:0!important;max-width:1180px!important;justify-self:center!important}
.ac2-specs div{min-height:92px!important;background:rgba(255,255,255,.94)!important;border:1px solid rgba(222,235,242,.95)!important;border-radius:18px!important;padding:18px 20px!important;box-shadow:0 18px 42px rgba(4,22,35,.16)!important;backdrop-filter:blur(10px)!important;color:#0a2235!important;display:flex!important;flex-direction:column!important;justify-content:center!important}
.ac2-specs strong{font-size:20px!important;line-height:1.12!important;letter-spacing:-.45px!important;color:#0b334d!important;display:block!important}.ac2-specs span{font-size:13px!important;line-height:1.35!important;margin-top:7px!important;color:#587083!important;font-weight:700!important}.ac2-specs.amber strong{color:#8a431c!important}
.ac2-bottom-text{display:none!important}.ac2-dots{bottom:28px!important}.ac2-arrow{z-index:8!important}.ac2-solution-strip a{font-size:14.5px!important;font-weight:780!important;min-height:68px!important}
@media(max-width:1180px){.ac2-slider{height:760px!important;min-height:760px!important}.ac2-slide-grid{grid-template-columns:1fr!important;grid-template-rows:1fr auto!important;padding-top:54px!important;padding-bottom:96px!important}.ac2-copy{max-width:720px!important}.ac2-specs{grid-template-columns:repeat(2,minmax(0,1fr))!important;max-width:760px!important}.ac2-bg{object-position:center right!important}.ap-nav>ul>li>a{font-size:13.5px!important}}
@media(max-width:680px){.ac2-slider{height:820px!important;min-height:820px!important}.ac2-slide-grid{padding:36px 18px 92px!important;gap:24px!important}.ac2-copy h1,.ac2-copy h2{font-size:32px!important;letter-spacing:-1px!important}.ac2-copy p{font-size:14.5px!important}.ac2-slide-buttons{display:grid!important}.ac2-specs{grid-template-columns:1fr!important;gap:10px!important}.ac2-specs div{min-height:auto!important;padding:14px 16px!important;border-radius:15px!important}.ac2-specs strong{font-size:17px!important}.ac2-specs span{font-size:12.5px!important}.ac2-dots{bottom:18px!important}.ac2-arrow{display:none!important}}

/* USER REVISION: more realistic industry scenes, scene lifted upward */
.ac2-bg{
  object-position:center top!important;
  transform-origin:center 38%!important;
}
.ac2-slide.is-active .ac2-bg{
  animation:realisticSceneFloat 7.5s ease-in-out both!important;
}
@keyframes realisticSceneFloat{
  0%{transform:scale(1.01) translateY(-10px)}
  100%{transform:scale(1.035) translateY(-22px)}
}
.ac2-shade{
  background:linear-gradient(90deg,rgba(5,10,18,.90) 0%,rgba(7,20,32,.76) 34%,rgba(7,20,32,.25) 56%,rgba(7,20,32,.02) 100%)!important;
}
.ac2-shade.cold,
.ac2-shade.frigo,
.ac2-shade.partition{
  background:linear-gradient(90deg,rgba(5,10,18,.90) 0%,rgba(7,24,36,.76) 34%,rgba(8,55,75,.22) 57%,rgba(8,55,75,.02) 100%)!important;
}
.ac2-copy h1,.ac2-copy h2{
  text-wrap:balance!important;
}
.ac2-specs div{
  background:rgba(255,255,255,.97)!important;
}
@media(max-width:1180px){
  .ac2-bg{object-position:center top!important}
}

/* === TESLIM FINAL: premium, calm header and real-application slider === */
.ap-header{background:#fff!important;box-shadow:0 10px 28px rgba(7,24,39,.045)!important}
.ap-topbar{height:34px!important;background:#071827!important;color:#cdeaf5!important}
.ap-topbar a{font-size:12px!important;color:#d7edf5!important;font-weight:650!important}
.ap-mainbar{height:78px!important;background:#fff!important;border-bottom:1px solid rgba(7,24,39,.075)!important}
.ap-main-inner{height:78px!important;grid-template-columns:245px 1fr auto!important;gap:16px!important}
.ap-logo-symbol{width:48px!important;height:48px!important;border-radius:13px!important;font-size:19px!important;box-shadow:0 12px 26px rgba(8,34,53,.16)!important}
.ap-logo-copy strong{font-size:22px!important;letter-spacing:-.45px!important}.ap-logo-copy small{font-size:10px!important;color:#6d7c87!important}
.ap-nav ul{gap:0!important}.ap-nav>ul>li>a{height:42px!important;padding:0 9px!important;font-size:12.5px!important;font-weight:720!important;letter-spacing:0!important;color:#203443!important}.ap-nav>ul>li>a:after{left:9px!important;right:9px!important;height:2px!important;background:#1583a8!important}.ap-dropdown>a:before{width:6px!important;height:6px!important;border-width:1.5px!important}.ap-phone{height:42px!important;min-width:136px!important;padding:0 13px!important}.ap-phone small{font-size:9.8px!important}.ap-phone b{font-size:13px!important}.ap-quote{height:42px!important;padding:0 17px!important;font-size:12.5px!important;box-shadow:0 12px 24px rgba(15,98,131,.18)!important}.ap-mega{top:calc(100% + 8px)!important;border-radius:18px!important;padding:12px!important;box-shadow:0 22px 60px rgba(7,24,39,.14)!important}.ap-mega-intro{border-radius:15px!important;min-height:200px!important}.ap-mega-links a{border-radius:13px!important;min-height:70px!important;padding:13px 14px!important}.ap-mega-links b{font-size:14px!important}.ap-mega-links small{font-size:12px!important}
.ac2-hero{background:#fff!important}.ac2-slider{height:600px!important;min-height:600px!important;background:#071827!important}.ac2-slide{overflow:hidden!important}.ac2-bg{object-fit:cover!important;object-position:center 38%!important;filter:saturate(1.02) contrast(1.03)!important;transform:scale(1.005)!important}.ac2-slide.is-active .ac2-bg{transform:scale(1.018)!important}.ac2-shade,.ac2-shade.cold,.ac2-shade.frigo,.ac2-shade.partition,.ac2-shade.welding{background:linear-gradient(90deg,rgba(4,8,15,.88) 0%,rgba(7,18,30,.72) 36%,rgba(7,18,30,.30) 62%,rgba(7,18,30,.06) 100%)!important}.ac2-slide-grid{height:100%!important;grid-template-columns:minmax(460px,650px) minmax(360px,1fr)!important;gap:44px!important;align-items:center!important}.ac2-copy{max-width:620px!important;padding-top:0!important}.ac2-kicker{font-size:11.5px!important;letter-spacing:.11em!important;text-transform:uppercase!important;padding:8px 12px!important;background:rgba(255,255,255,.14)!important;border:1px solid rgba(255,255,255,.24)!important;color:#d9f7ff!important}.ac2-copy h1,.ac2-copy h2{font-size:clamp(38px,4vw,58px)!important;line-height:1.05!important;letter-spacing:-1.75px!important;margin-bottom:16px!important;max-width:640px!important}.ac2-copy p{font-size:16px!important;line-height:1.62!important;max-width:560px!important;color:rgba(255,255,255,.87)!important}.ac2-slide-buttons{margin-top:24px!important}.btn-xl{padding:13px 20px!important;font-size:14px!important}.ac2-specs{align-self:end!important;justify-self:end!important;margin-bottom:84px!important;width:min(560px,100%)!important;grid-template-columns:repeat(4,1fr)!important;gap:10px!important}.ac2-specs div{min-height:auto!important;padding:14px 12px!important;border-radius:14px!important;background:rgba(255,255,255,.92)!important;border:1px solid rgba(255,255,255,.7)!important;box-shadow:0 16px 36px rgba(0,0,0,.16)!important;backdrop-filter:blur(8px)!important;color:#071827!important}.ac2-specs strong{font-size:17px!important;line-height:1.1!important;letter-spacing:-.25px!important;color:#0b5873!important}.ac2-specs span{font-size:11px!important;line-height:1.25!important;margin-top:5px!important;color:#526373!important;font-weight:750!important}.ac2-specs.amber strong{color:#b86110!important}.ac2-bottom-text{bottom:28px!important;font-size:12px!important;max-width:640px!important;color:rgba(255,255,255,.72)!important}.ac2-dots{bottom:28px!important}.ac2-arrow{width:44px!important;height:44px!important;font-size:28px!important}.ac2-solution-strip a{min-height:68px!important;font-size:14.5px!important;font-weight:800!important;color:#213747!important}
@media(max-width:1220px){.ap-main-inner{grid-template-columns:220px 1fr auto!important}.ap-nav>ul>li>a{font-size:12px!important;padding:0 7px!important}.ap-phone{display:none!important}.ac2-slide-grid{grid-template-columns:1fr!important}.ac2-specs{display:none!important}.ac2-copy{max-width:680px!important}.ac2-shade,.ac2-shade.cold,.ac2-shade.frigo,.ac2-shade.partition,.ac2-shade.welding{background:linear-gradient(90deg,rgba(4,8,15,.90) 0%,rgba(7,18,30,.62) 58%,rgba(7,18,30,.20) 100%)!important}}
@media(max-width:980px){.ap-mainbar,.ap-main-inner{height:auto!important}.ap-main-inner{grid-template-columns:1fr auto!important;min-height:72px!important}.ap-nav{grid-column:1/-1!important}.ap-nav>ul>li>a{font-size:14px!important;padding:0 12px!important}.ap-mega{margin-top:6px!important}.ac2-slider{height:610px!important;min-height:610px!important}.ac2-slide-grid{align-items:center!important}.ac2-bg{object-position:center!important}.ac2-copy h1,.ac2-copy h2{font-size:40px!important}.ac2-solution-strip{grid-template-columns:repeat(3,1fr)!important}}
@media(max-width:680px){.ac2-slider{height:600px!important;min-height:600px!important}.ac2-copy h1,.ac2-copy h2{font-size:34px!important;letter-spacing:-1px!important}.ac2-copy p{font-size:14.5px!important}.ac2-solution-strip{grid-template-columns:repeat(2,1fr)!important}.ac2-solution-strip a{font-size:13px!important;min-height:58px!important}.ap-logo-copy strong{font-size:20px!important}.ap-logo-symbol{width:44px!important;height:44px!important}}


/* Corporate Acamar-style dropdown and page revamp */
.ap-corporate-nav{position:relative}.ap-corp-dropdown{position:relative}.ap-corp-trigger{display:inline-flex;align-items:center;gap:6px}.ap-corp-trigger span{font-size:12px;color:#cbb28c}.ap-corp-panel{position:fixed;left:0;right:0;top:38px;z-index:1200;background:#fff;border-top:1px solid rgba(15,23,42,.06);border-bottom:1px solid rgba(15,23,42,.08);box-shadow:0 28px 70px rgba(7,24,39,.14);padding:34px max(4vw,34px);display:grid;grid-template-columns:390px minmax(0,1fr);gap:46px;opacity:0;visibility:hidden;transform:translateY(8px);pointer-events:none;transition:.22s ease}.ap-corp-dropdown:hover .ap-corp-panel,.ap-corp-dropdown:focus-within .ap-corp-panel{opacity:1;visibility:visible;transform:translateY(0);pointer-events:auto}.ap-corp-visual{position:relative;min-height:230px;overflow:hidden;background:#071827}.ap-corp-visual img{width:100%;height:260px;object-fit:cover;filter:saturate(.88) contrast(.98);opacity:.86}.ap-corp-visual:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 30%,rgba(7,24,39,.72))}.ap-corp-visual strong{position:absolute;left:28px;right:28px;bottom:24px;z-index:2;color:#fff;font-size:24px;line-height:1.25;font-weight:500;letter-spacing:.2px}.ap-corp-content{padding:4px 0}.ap-corp-quote{position:relative;max-width:760px;color:#1260a0;font-size:28px;line-height:1.45;font-weight:500;margin:0 0 44px;padding-left:58px}.ap-corp-quote:before{content:"“";position:absolute;left:0;top:-22px;font-size:92px;line-height:1;color:#1395ea;font-weight:900}.ap-corp-grid{display:grid;grid-template-columns:1fr 1fr;gap:0 70px;max-width:880px}.ap-corp-grid a{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:19px 0;border-bottom:1px solid #e7eef4;color:#173247;font-weight:700;font-size:17px}.ap-corp-grid a:nth-child(odd){border-right:1px solid #e4ebf1;padding-right:42px}.ap-corp-grid a:nth-child(even){padding-left:28px}.ap-corp-grid i{font-style:normal;color:#128de1;font-size:22px;transition:.2s}.ap-corp-grid a:hover span{color:#0f74b8}.ap-corp-grid a:hover i{transform:translateX(6px)}
.corporate-hero{padding:72px 0 54px;background:linear-gradient(180deg,#fff,#f7fbfd);border-bottom:1px solid rgba(9,61,87,.08)}.corporate-hero.compact{padding:58px 0}.corporate-hero-grid{display:grid;grid-template-columns:minmax(0,1fr) 420px;gap:54px;align-items:center}.corporate-hero-copy h1{font-size:clamp(42px,5vw,72px);line-height:1.02;letter-spacing:-2.4px;color:#071827;margin:12px 0 20px}.corporate-hero-copy .lead{font-size:20px;line-height:1.75;color:#475b6c;max-width:800px}.corporate-hero-card{border-radius:32px;overflow:hidden;background:#fff;box-shadow:0 24px 70px rgba(7,24,39,.12);border:1px solid rgba(13,87,120,.12)}.corporate-hero-card img{width:100%;height:330px;object-fit:cover}.corporate-menu-section{padding:62px 0;background:#fff}.corporate-menu-layout{display:grid;grid-template-columns:43% minmax(0,1fr);gap:54px;align-items:center}.corporate-image-block{position:relative;min-height:320px;border-radius:0;overflow:hidden;background:#071827;box-shadow:0 22px 65px rgba(7,24,39,.12)}.corporate-image-block img{width:100%;height:360px;object-fit:cover;filter:saturate(.86) contrast(.98);opacity:.9}.corporate-image-block:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 35%,rgba(7,24,39,.72))}.corporate-image-caption{position:absolute;left:36px;right:36px;bottom:32px;z-index:2;color:#fff;font-size:28px;line-height:1.25;font-weight:500;text-align:center}.corporate-links-block{position:relative}.corporate-links-block .quote-mark{font-size:100px;line-height:.6;color:#1395ea;font-weight:900;margin-bottom:4px}.corporate-links-block h2{font-size:clamp(30px,3.4vw,46px);font-weight:500;line-height:1.35;color:#1764a5;letter-spacing:-.6px;max-width:880px;margin:0 0 18px}.corporate-links-block p{font-size:18px;line-height:1.8;color:#52677a;max-width:820px;margin:0 0 34px}.corporate-link-grid{display:grid;grid-template-columns:1fr 1fr;gap:0 74px}.corporate-link-grid a{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:20px 0;border-bottom:1px solid #e7eef4;color:#173247;font-weight:700;font-size:18px}.corporate-link-grid a:nth-child(odd){border-right:1px solid #e4ebf1;padding-right:42px}.corporate-link-grid a:nth-child(even){padding-left:28px}.corporate-link-grid i{font-style:normal;color:#128de1;font-size:24px;transition:.2s}.corporate-link-grid a:hover span{color:#0f74b8}.corporate-link-grid a:hover i{transform:translateX(6px)}.corporate-detail-section{background:linear-gradient(180deg,#f7fbfd,#fff)}.corporate-spec-grid div{background:#fff;border-color:#e1edf3;box-shadow:0 12px 34px rgba(7,24,39,.04)}
@media(max-width:980px){.ap-corp-panel{position:absolute;top:100%;left:0;right:auto;width:min(92vw,620px);grid-template-columns:1fr;padding:18px;gap:18px}.ap-corp-grid,.corporate-link-grid{grid-template-columns:1fr;gap:0}.ap-corp-grid a:nth-child(n),.corporate-link-grid a:nth-child(n){border-right:0;padding-left:0;padding-right:0}.ap-corp-quote{font-size:21px;margin-bottom:18px}.corporate-hero-grid,.corporate-menu-layout{grid-template-columns:1fr}.corporate-hero-card img,.corporate-image-block img{height:auto}.corporate-links-block h2{font-size:30px}} 
@media(max-width:640px){.corporate-hero-copy h1{font-size:38px}.corporate-menu-section{padding:38px 0}.corporate-image-caption{font-size:22px}.corporate-links-block .quote-mark{font-size:76px}.corporate-link-grid a,.ap-corp-grid a{font-size:16px}.ap-corp-panel{display:none}}

/* === Corporate dropdown usability + contrast fix === */
.ap-topbar{
  background:#120c08!important;
  color:#ffffff!important;
  overflow:visible!important;
  position:relative!important;
  z-index:1400!important;
}
.ap-topbar-inner{position:relative!important;overflow:visible!important;}
.ap-topbar a,
.ap-corp-trigger{
  color:#ffffff!important;
  text-shadow:none!important;
  opacity:1!important;
}
.ap-corp-trigger{
  min-height:38px!important;
  padding:0 8px!important;
  border-radius:8px!important;
  display:inline-flex!important;
  align-items:center!important;
}
.ap-corp-trigger:hover,
.ap-corp-dropdown.is-open > .ap-corp-trigger{
  background:rgba(255,255,255,.12)!important;
  color:#ffffff!important;
}
.ap-corp-trigger span{
  color:#e7c48a!important;
  transition:.2s ease!important;
}
.ap-corp-dropdown.is-open .ap-corp-trigger span{transform:rotate(180deg)!important;}
.ap-corp-dropdown{position:relative!important;}
.ap-corp-dropdown:after{
  content:"";
  position:fixed;
  left:0;
  right:0;
  top:34px;
  height:26px;
  z-index:1198;
  background:transparent;
  pointer-events:auto;
}
.ap-corp-panel{
  top:34px!important;
  z-index:1300!important;
  background:#ffffff!important;
  color:#11253a!important;
  border-top:1px solid rgba(231,196,138,.38)!important;
  border-bottom:1px solid rgba(12,34,53,.10)!important;
  box-shadow:0 34px 80px rgba(7,24,39,.22)!important;
  opacity:0!important;
  visibility:hidden!important;
  pointer-events:none!important;
  transform:translateY(10px)!important;
  transition:opacity .18s ease, transform .18s ease, visibility .18s ease!important;
}
.ap-corp-dropdown:hover .ap-corp-panel,
.ap-corp-dropdown:focus-within .ap-corp-panel,
.ap-corp-dropdown.is-open .ap-corp-panel{
  opacity:1!important;
  visibility:visible!important;
  pointer-events:auto!important;
  transform:translateY(0)!important;
}
.ap-corp-visual{
  border-radius:0!important;
  background:#071827!important;
  box-shadow:0 18px 44px rgba(7,24,39,.18)!important;
}
.ap-corp-visual img{
  opacity:.82!important;
  filter:saturate(.9) contrast(1.03) brightness(.82)!important;
}
.ap-corp-visual strong{
  color:#ffffff!important;
  text-shadow:0 2px 12px rgba(0,0,0,.45)!important;
  font-weight:600!important;
}
.ap-corp-quote{
  color:#0c4f83!important;
  font-weight:650!important;
}
.ap-corp-grid a{
  color:#132f46!important;
  background:transparent!important;
  transition:background .18s ease, color .18s ease, padding .18s ease!important;
}
.ap-corp-grid a span{color:#132f46!important;}
.ap-corp-grid a i{color:#0c88d8!important;font-weight:800!important;}
.ap-corp-grid a:hover{
  background:#f3f9fc!important;
  color:#075985!important;
  padding-left:16px!important;
}
.ap-corp-grid a:hover span{color:#075985!important;}
.ap-mainbar{
  background:#ffffff!important;
  border-bottom:1px solid rgba(12,34,53,.09)!important;
}
.ap-nav>ul>li>a{
  color:#162b3d!important;
}
.ap-nav>ul>li>a:hover,
.ap-dropdown.open>a{
  color:#075985!important;
}
.ap-mega{
  background:#ffffff!important;
  color:#11253a!important;
  border:1px solid rgba(12,34,53,.10)!important;
  box-shadow:0 30px 76px rgba(7,24,39,.20)!important;
}
.ap-mega-intro{
  background:linear-gradient(135deg,#07375f,#075985)!important;
  color:#ffffff!important;
}
.ap-mega-links a{color:#11253a!important;background:#fff!important;}
.ap-mega-links a:hover{background:#f3f9fc!important;color:#075985!important;}
@media(max-width:980px){
  .ap-corp-dropdown:after{display:none!important;}
  .ap-corp-panel{top:100%!important;}
}

/* === REALISTIC APPLICATION SLIDER FIX ===
   Sahne yazının altına girmesin, sağ taraf dolsun, özellik kartları okunabilir kalsın. */
.ac2-slider{
  height:680px!important;
  min-height:680px!important;
  background:#07111f!important;
}
.ac2-bg{
  object-position:center center!important;
  transform:scale(1)!important;
  filter:saturate(1.05) contrast(1.04)!important;
}
.ac2-slide.is-active .ac2-bg{transform:scale(1.025)!important;}
.ac2-shade{
  background:linear-gradient(90deg,rgba(5,10,18,.96) 0%,rgba(5,10,18,.86) 29%,rgba(5,10,18,.54) 43%,rgba(5,10,18,.12) 66%,rgba(5,10,18,0) 100%)!important;
}
.ac2-shade.cold,
.ac2-shade.frigo,
.ac2-shade.partition{
  background:linear-gradient(90deg,rgba(5,12,22,.96) 0%,rgba(5,18,30,.84) 31%,rgba(8,35,52,.48) 45%,rgba(15,80,110,.10) 68%,rgba(15,80,110,0) 100%)!important;
}
.ac2-shade.welding{
  background:linear-gradient(90deg,rgba(7,8,15,.97) 0%,rgba(18,12,10,.84) 31%,rgba(45,20,12,.45) 45%,rgba(110,50,20,.10) 68%,rgba(110,50,20,0) 100%)!important;
}
.ac2-slide-grid{
  position:relative!important;
  display:block!important;
  height:100%!important;
}
.ac2-copy{
  position:absolute!important;
  left:0!important;
  top:48%!important;
  transform:translateY(-50%)!important;
  width:min(610px,44vw)!important;
  max-width:610px!important;
  z-index:4!important;
}
.ac2-copy h1,
.ac2-copy h2{
  font-size:clamp(42px,4.1vw,66px)!important;
  line-height:1.05!important;
  letter-spacing:-2px!important;
  margin-bottom:18px!important;
}
.ac2-copy p{
  max-width:580px!important;
  font-size:17px!important;
  line-height:1.68!important;
}
.ac2-specs{
  position:absolute!important;
  right:0!important;
  bottom:64px!important;
  width:min(760px,48vw)!important;
  display:grid!important;
  grid-template-columns:repeat(4,1fr)!important;
  gap:12px!important;
  z-index:5!important;
}
.ac2-specs div{
  min-height:82px!important;
  padding:18px 16px!important;
  border-radius:16px!important;
  background:rgba(255,255,255,.94)!important;
  color:#071827!important;
  border:1px solid rgba(255,255,255,.72)!important;
  box-shadow:0 18px 42px rgba(7,24,39,.16)!important;
  backdrop-filter:blur(8px)!important;
}
.ac2-specs strong{
  font-size:20px!important;
  line-height:1.08!important;
  letter-spacing:-.45px!important;
  color:#0f6283!important;
}
.ac2-specs.amber strong{color:#a3541a!important;}
.ac2-specs span{
  font-size:12px!important;
  line-height:1.35!important;
  color:#506474!important;
  margin-top:7px!important;
  font-weight:800!important;
}
.ac2-bottom-text{display:none!important;}
.ac2-dots{bottom:24px!important;}
.ac2-arrow.next{right:24px!important;}
.ac2-arrow.prev{left:24px!important;}
@media(max-width:1180px){
  .ac2-slider{height:650px!important;min-height:650px!important;}
  .ac2-copy{width:min(620px,72vw)!important;top:47%!important;}
  .ac2-specs{display:none!important;}
  .ac2-shade{background:linear-gradient(90deg,rgba(5,10,18,.95),rgba(5,10,18,.68),rgba(5,10,18,.18))!important;}
}
@media(max-width:680px){
  .ac2-slider{height:620px!important;min-height:620px!important;}
  .ac2-copy{left:0!important;width:92%!important;top:50%!important;}
  .ac2-copy h1,.ac2-copy h2{font-size:38px!important;letter-spacing:-1.1px!important;}
  .ac2-copy p{font-size:15px!important;}
  .ac2-kicker{font-size:12px!important;}
}


/* =========================================================
   FINAL PRO PVC MENU + CONTENT + PERFORMANCE REFINEMENT
   Amaç: Kurumsal menü sadece tetikleyici üzerinde açılsın,
   panel kullanılabilir kalsın, renk kontrastı yükselsin.
   ========================================================= */
.ap-corp-dropdown:after{display:none!important;content:none!important;pointer-events:none!important;}
.ap-corp-dropdown:hover .ap-corp-panel,
.ap-corp-dropdown:focus-within .ap-corp-panel{
  opacity:0!important;visibility:hidden!important;pointer-events:none!important;transform:translateY(10px)!important;
}
.ap-corp-dropdown.is-open .ap-corp-panel{
  opacity:1!important;visibility:visible!important;pointer-events:auto!important;transform:translateY(0)!important;
}
.ap-corp-trigger{color:#fff!important;background:transparent!important;line-height:34px!important;}
.ap-corp-trigger:hover,.ap-corp-dropdown.is-open>.ap-corp-trigger{background:rgba(255,255,255,.14)!important;color:#fff!important;}
.ap-corp-panel{top:34px!important;background:#fff!important;color:#10283b!important;}
.ap-corp-panel *{text-shadow:none!important;}
.ap-corp-grid a{color:#10283b!important;font-weight:850!important;}
.ap-corp-quote{color:#0b5790!important;font-weight:700!important;}
.ap-topbar a{color:#fff!important;}
.ap-mainbar{background:#fff!important;}
.ap-nav>ul>li>a{font-size:14px!important;font-weight:760!important;color:#142b3d!important;letter-spacing:-.08px!important;}
.ap-nav>ul>li>a:hover{color:#075985!important;}
.ap-logo-copy strong{font-size:24px!important;}
.ap-logo-copy small{font-size:10.5px!important;}
.ap-mega{top:calc(100% + 10px)!important;}
.ap-dropdown:hover .ap-mega,.ap-dropdown.open .ap-mega{opacity:1!important;visibility:visible!important;pointer-events:auto!important;}

/* Slider readability after content/menu update */
.ac2-copy{width:min(610px,42vw)!important;}
.ac2-copy h1,.ac2-copy h2{max-width:650px!important;}
.ac2-specs{right:max(24px,calc((100vw - 1320px)/2))!important;bottom:56px!important;}
.ac2-bg{object-position:center center!important;}
@media(max-width:1120px){.ac2-copy{position:relative!important;left:auto!important;top:auto!important;transform:none!important;width:auto!important}.ac2-slide-grid{display:grid!important}.ac2-specs{display:none!important}.ap-corp-panel{position:absolute!important;left:0!important;right:auto!important;width:min(94vw,720px)!important;}}

/* Detailed  sections */
.seo-depth-section{background:linear-gradient(180deg,#ffffff 0%,#f7fbfd 100%);padding:82px 0;border-top:1px solid rgba(12,34,53,.07)}
.seo-depth-head{max-width:920px;margin-bottom:34px}.seo-depth-head .kicker{display:inline-flex;margin-bottom:12px}.seo-depth-head h2{font-size:clamp(30px,3.4vw,48px);line-height:1.13;letter-spacing:-1.2px;color:#071827;margin:0 0 14px}.seo-depth-head p{font-size:18px;line-height:1.75;color:#52677a;margin:0}.seo-depth-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.seo-depth-card{background:#fff;border:1px solid #e4eef4;border-radius:22px;padding:24px;box-shadow:0 16px 42px rgba(7,24,39,.055)}.seo-depth-card h3{font-size:21px;line-height:1.25;margin:0 0 12px;color:#0d334e}.seo-depth-card p,.seo-depth-card li{font-size:16px;line-height:1.72;color:#52677a}.seo-depth-card ul{margin:0;padding-left:18px}.seo-depth-card strong{color:#0d334e}.seo-depth-wide{grid-column:span 2}.seo-checklist{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-top:18px}.seo-checklist span{display:flex;gap:8px;align-items:flex-start;background:#f6fafc;border:1px solid #e4eef4;border-radius:14px;padding:12px;color:#173247;font-weight:750}.seo-checklist span:before{content:'✓';color:#0f8db8;font-weight:950}.seo-mini-cta{margin-top:24px;display:flex;gap:12px;flex-wrap:wrap}.seo-mini-cta a{display:inline-flex;align-items:center;justify-content:center;padding:13px 18px;border-radius:999px;text-decoration:none;font-weight:900}.seo-mini-cta a:first-child{background:#0f6283;color:#fff}.seo-mini-cta a:last-child{background:#fff;color:#0f6283;border:1px solid #cfe4ee}.geo-note{margin-top:24px;background:#082235;color:#fff;border-radius:24px;padding:26px}.geo-note h3{color:#fff;margin:0 0 8px}.geo-note p{color:rgba(255,255,255,.82);margin:0;line-height:1.75}@media(max-width:980px){.seo-depth-grid{grid-template-columns:1fr}.seo-depth-wide{grid-column:auto}.seo-checklist{grid-template-columns:1fr}.seo-depth-section{padding:58px 0}}

/* LCP/performance preferences */
img{max-width:100%;height:auto}.ac2-bg{will-change:transform}.ap-header{will-change:transform}.seo-depth-card{contain:content}

/* =========================================================
   FINAL FIX: Slider feature cards placement
   - Kartlar slider ortasında sahneyi kapatmaz.
   - Sağdaki boş alanı kullanır.
   - Alt metin kutusu tamamen kaldırılmıştır.
   - Mobil ve tablet uyumunda kartlar gizlenir, metin okunur kalır.
   ========================================================= */
.ac2-slide-grid{
  position:relative!important;
  display:block!important;
  height:100%!important;
  max-width:1440px!important;
}
.ac2-copy{
  position:absolute!important;
  left:24px!important;
  top:50%!important;
  transform:translateY(-50%)!important;
  width:min(610px,40vw)!important;
  max-width:610px!important;
  z-index:6!important;
}
.ac2-specs{
  position:absolute!important;
  top:50%!important;
  right:24px!important;
  bottom:auto!important;
  transform:translateY(-50%)!important;
  width:min(330px,22vw)!important;
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:10px!important;
  z-index:5!important;
  margin:0!important;
}
.ac2-specs div{
  min-height:64px!important;
  padding:13px 16px!important;
  border-radius:14px!important;
  background:rgba(255,255,255,.90)!important;
  color:#081a29!important;
  border:1px solid rgba(255,255,255,.78)!important;
  box-shadow:0 14px 34px rgba(6,22,35,.18)!important;
  backdrop-filter:blur(10px)!important;
}
.ac2-specs strong{
  font-size:16px!important;
  line-height:1.1!important;
  letter-spacing:-.2px!important;
  color:#0a5f80!important;
}
.ac2-specs span{
  font-size:11.5px!important;
  line-height:1.25!important;
  margin-top:4px!important;
  color:#506372!important;
  font-weight:760!important;
}
.ac2-specs.amber strong{color:#a3541a!important;}
.ac2-bottom-text{display:none!important;}
.ac2-dots{bottom:22px!important;z-index:8!important;}
.ac2-bg{object-position:center center!important;}
.ac2-shade,
.ac2-shade.cold,
.ac2-shade.frigo,
.ac2-shade.partition,
.ac2-shade.welding{
  pointer-events:none!important;
}
@media(max-width:1280px){
  .ac2-copy{left:28px!important;width:min(620px,58vw)!important;}
  .ac2-specs{display:none!important;}
}
@media(max-width:680px){
  .ac2-copy{left:18px!important;right:18px!important;width:auto!important;top:50%!important;}
  .ac2-slider{height:600px!important;min-height:600px!important;}
}

/* Kurumsal menü sadece Kurumsal tetikleyicisinden açılsın; panel rengi ve okunurluk güçlendirildi. */
.ap-corp-dropdown:hover .ap-corp-panel{opacity:0!important;visibility:hidden!important;pointer-events:none!important;}
.ap-corp-dropdown.is-open .ap-corp-panel{opacity:1!important;visibility:visible!important;pointer-events:auto!important;}
.ap-corp-panel{background:#ffffff!important;border-top:1px solid rgba(12,34,53,.08)!important;box-shadow:0 30px 80px rgba(7,24,39,.18)!important;}
.ap-corp-grid a{background:#fff!important;border-bottom:1px solid #e7eef3!important;color:#10283b!important;}
.ap-corp-grid a:hover{color:#08739b!important;background:#f6fbfd!important;}


/* FINAL PROJECT + REFERENCE PAGE UPDATE */
.project-hero-clean,.reference-hero-clean{background:linear-gradient(135deg,#f8fbfd,#eef7fb)!important;border-bottom:1px solid rgba(7,24,39,.08)}
.clean-intro h2{margin:8px 0 10px;font-size:clamp(30px,3vw,46px);line-height:1.06;color:#071827;letter-spacing:-1.2px}.clean-intro p{max-width:760px;color:#536b7b;line-height:1.75;font-weight:650}.project-row-five{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:18px;align-items:stretch}.project-shot{display:grid;grid-template-rows:auto 1fr;min-width:0;text-decoration:none;color:#071827;background:#fff;border:1px solid rgba(7,24,39,.09);border-radius:24px;padding:12px;box-shadow:0 18px 48px rgba(7,24,39,.08);transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease}.project-shot:hover{transform:translateY(-6px);box-shadow:0 28px 70px rgba(7,24,39,.13);border-color:rgba(16,116,155,.26)}.project-shot img{width:100%;height:190px;object-fit:cover;border-radius:18px;background:#eef8fc;display:block}.project-shot span{display:block;margin:14px 4px 4px;font-size:17px;font-weight:950;color:#0b3248;line-height:1.15}.project-shot small{display:block;margin:0 4px 6px;color:#667987;font-weight:800;line-height:1.35}.reference-logo-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:18px}.reference-logo-card{height:132px;background:#fff;border:1px solid rgba(7,24,39,.09);border-radius:24px;padding:18px;display:grid;place-items:center;box-shadow:0 16px 44px rgba(7,24,39,.07);transition:transform .2s ease,box-shadow .2s ease}.reference-logo-card:hover{transform:translateY(-4px);box-shadow:0 22px 58px rgba(7,24,39,.10)}.reference-logo-card img{max-width:100%;max-height:92px;width:100%;height:100%;object-fit:contain;display:block;pointer-events:none}.reference-logo-card a{display:none!important}
@media(max-width:1200px){.project-row-five,.reference-logo-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.project-shot img{height:210px}}
@media(max-width:760px){.project-row-five,.reference-logo-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.project-shot{border-radius:20px}.project-shot img{height:170px}.reference-logo-card{height:116px;border-radius:20px}}
@media(max-width:480px){.project-row-five,.reference-logo-grid{grid-template-columns:1fr}.project-shot img{height:220px}}


/* Final content architecture and Pro PVC polish */
.ap-logo-symbol{font-size:18px;letter-spacing:-.5px}.ap-nav>ul>li>a{font-size:14px!important}.ap-mega{top:100%;margin-top:0}.ap-dropdown{position:relative}.ap-dropdown:before{content:"";position:absolute;left:0;right:0;top:100%;height:16px}.ap-dropdown:hover .ap-mega,.ap-dropdown:focus-within .ap-mega{opacity:1;visibility:visible;pointer-events:auto;transform:translateY(0)}.ap-corp-dropdown:hover .ap-corp-panel,.ap-corp-dropdown:focus-within .ap-corp-panel{opacity:1;visibility:visible;pointer-events:auto;transform:translateY(0)}
.content-hero{padding:72px 0;background:linear-gradient(135deg,#0c2235,#124d73);color:#fff}.content-hero h1{max-width:960px;font-size:clamp(34px,5vw,64px);line-height:1.04;margin:10px 0 18px}.content-hero p{max-width:820px;font-size:18px;line-height:1.75;color:rgba(255,255,255,.88)}.content-section{padding:76px 0}.content-section.soft{background:#f6f9fc}.two-col{display:grid;grid-template-columns:1.05fr .95fr;gap:46px;align-items:center}.align-start{align-items:start}.content-section h2{font-size:clamp(28px,3.2vw,44px);line-height:1.12;margin:0 0 18px;color:#0c2235}.content-section p{font-size:17px;line-height:1.8;color:#475867}.content-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.content-card{background:#fff;border:1px solid rgba(12,34,53,.09);border-radius:22px;padding:26px;box-shadow:0 16px 42px rgba(12,34,53,.07)}.content-card h3{margin:0 0 10px;color:#0c2235;font-size:21px}.content-card p{margin:0}.content-card a{display:inline-block;margin-top:18px;color:#124d73;font-weight:800}.content-visual{border-radius:28px;background:#fff;border:1px solid rgba(12,34,53,.08);box-shadow:0 20px 50px rgba(12,34,53,.1);padding:28px}.content-visual img{width:100%;height:auto;display:block}.content-link-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.content-link-card{display:block;padding:22px;border-radius:18px;background:#fff;border:1px solid rgba(12,34,53,.1);text-decoration:none;color:#0c2235;transition:.2s ease}.content-link-card:hover{transform:translateY(-3px);box-shadow:0 15px 35px rgba(12,34,53,.1)}.content-link-card strong{display:block;font-size:18px;margin-bottom:8px}.content-link-card span{display:block;color:#5d6f7f;line-height:1.55}.process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.process-grid>div{background:#fff;border:1px solid rgba(12,34,53,.1);border-radius:22px;padding:24px}.process-grid b{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:#124d73;color:#fff;margin-bottom:14px}.quote-form{display:grid;gap:14px;background:#fff;border:1px solid rgba(12,34,53,.1);border-radius:24px;padding:24px;box-shadow:0 18px 45px rgba(12,34,53,.08)}.quote-form input,.quote-form textarea,.quote-form select{width:100%;border:1px solid rgba(12,34,53,.14);border-radius:14px;padding:15px 16px;font:inherit}.quote-form textarea{min-height:120px}.project-row-five{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:18px}.project-thumb{margin:0;background:#fff;border-radius:22px;border:1px solid rgba(12,34,53,.1);overflow:hidden;box-shadow:0 18px 44px rgba(12,34,53,.08)}.project-thumb img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block}.project-thumb figcaption{padding:16px}.project-thumb strong{display:block;color:#0c2235;font-size:16px;line-height:1.3}.project-thumb span{display:block;margin-top:6px;color:#667684;font-size:13px}.reference-logo-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:18px}.reference-logo-card{min-height:150px;background:#fff;border:1px solid rgba(12,34,53,.1);border-radius:20px;display:grid;place-items:center;text-align:center;padding:20px;box-shadow:0 14px 34px rgba(12,34,53,.06)}.reference-logo-card img{max-width:130px;max-height:72px;object-fit:contain}.reference-logo-card span{font-weight:700;color:#506272}.cta-band{background:#0c2235;color:#fff;padding:70px 0;text-align:center}.cta-band h2{font-size:clamp(28px,4vw,46px);margin:0 0 12px}.cta-band p{max-width:780px;margin:0 auto 24px;color:rgba(255,255,255,.82);font-size:18px;line-height:1.7}@media(max-width:1024px){.two-col,.content-grid,.content-link-grid{grid-template-columns:1fr 1fr}.process-grid,.project-row-five,.reference-logo-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:680px){.two-col,.content-grid,.content-link-grid,.process-grid,.project-row-five,.reference-logo-grid{grid-template-columns:1fr}.content-section{padding:52px 0}.content-hero{padding:52px 0}.content-card{padding:22px}.ap-top-actions{display:none}}


/* === DESIGN RESTORE + CONTENT POLISH FINAL === */
/* Ana sayfa slider ve görsel hiyerarşi */
.ac2-hero{background:#071827!important;position:relative;overflow:hidden!important;}
.ac2-slider{height:clamp(620px,72vh,760px)!important;min-height:620px!important;border-radius:0!important;overflow:hidden!important;position:relative!important;background:#071827!important;}
.ac2-slide{position:absolute!important;inset:0!important;opacity:0!important;visibility:hidden!important;transition:opacity .75s ease,visibility .75s ease!important;}
.ac2-slide.is-active{opacity:1!important;visibility:visible!important;}
.ac2-bg{position:absolute!important;inset:0!important;width:100%!important;height:100%!important;object-fit:cover!important;object-position:center!important;filter:saturate(.96) contrast(1.02)!important;}
.ac2-shade{position:absolute!important;inset:0!important;background:linear-gradient(90deg,rgba(7,24,39,.90) 0%,rgba(7,24,39,.70) 38%,rgba(7,24,39,.22) 70%,rgba(7,24,39,.08) 100%)!important;}
.ac2-slide-grid{position:relative!important;z-index:3!important;height:100%!important;display:flex!important;align-items:center!important;}
.ac2-copy{position:relative!important;left:auto!important;top:auto!important;transform:none!important;width:min(680px,54vw)!important;color:#fff!important;padding-top:16px!important;}
.ac2-kicker{display:inline-flex!important;align-items:center!important;gap:8px!important;background:rgba(255,255,255,.12)!important;border:1px solid rgba(255,255,255,.28)!important;color:#d7f4ff!important;border-radius:999px!important;padding:10px 14px!important;font-size:12px!important;font-weight:900!important;letter-spacing:.9px!important;text-transform:uppercase!important;backdrop-filter:blur(8px)!important;}
.ac2-copy h1,.ac2-copy h2{font-size:clamp(42px,5.6vw,76px)!important;line-height:.98!important;letter-spacing:-2.6px!important;color:#fff!important;margin:22px 0 22px!important;max-width:760px!important;text-shadow:0 18px 55px rgba(0,0,0,.32)!important;}
.ac2-copy p{max-width:650px!important;color:rgba(255,255,255,.86)!important;font-size:18px!important;line-height:1.75!important;margin:0 0 30px!important;font-weight:550!important;}
.ac2-slide-buttons{display:flex!important;gap:14px!important;flex-wrap:wrap!important;}
.ac2-slide-buttons .btn{border-radius:999px!important;padding:15px 24px!important;font-weight:900!important;}
.ac2-specs{position:absolute!important;right:clamp(28px,5vw,80px)!important;bottom:86px!important;width:min(520px,42vw)!important;display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:12px!important;z-index:5!important;}
.ac2-specs div{padding:16px 18px!important;border-radius:18px!important;background:rgba(255,255,255,.92)!important;border:1px solid rgba(255,255,255,.74)!important;box-shadow:0 18px 44px rgba(0,0,0,.18)!important;backdrop-filter:blur(10px)!important;color:#071827!important;}
.ac2-specs strong{display:block!important;font-size:16px!important;line-height:1.18!important;color:#0a5f80!important;}
.ac2-specs span{display:block!important;margin-top:5px!important;font-size:12px!important;line-height:1.35!important;color:#506372!important;font-weight:750!important;}
.ac2-specs.amber strong{color:#a3541a!important;}
.ac2-arrow{position:absolute!important;z-index:7!important;top:50%!important;transform:translateY(-50%)!important;width:48px!important;height:48px!important;border-radius:50%!important;border:1px solid rgba(255,255,255,.35)!important;background:rgba(255,255,255,.16)!important;color:#fff!important;display:grid!important;place-items:center!important;backdrop-filter:blur(8px)!important;}
.ac2-arrow.prev{left:24px!important}.ac2-arrow.next{right:24px!important}.ac2-dots{position:absolute!important;z-index:7!important;left:50%!important;bottom:28px!important;transform:translateX(-50%)!important;display:flex!important;gap:8px!important}.ac2-dots button{width:34px!important;height:6px!important;border-radius:99px!important;border:0!important;background:rgba(255,255,255,.36)!important;padding:0!important}.ac2-dots button.is-active{background:#fff!important;width:54px!important}.ac2-dots button span{display:none!important}.ac2-bottom-text{display:none!important}.ac2-solution-strip{display:grid!important;grid-template-columns:repeat(6,1fr)!important;gap:0!important;background:#fff!important;box-shadow:0 -1px 0 rgba(7,24,39,.08),0 18px 60px rgba(7,24,39,.08)!important}.ac2-solution-strip a{min-height:74px!important;display:grid!important;place-items:center!important;text-align:center!important;color:#123047!important;font-weight:900!important;border-right:1px solid rgba(7,24,39,.08)!important;text-decoration:none!important;transition:.2s ease!important}.ac2-solution-strip a:hover{background:#f1f8fb!important;color:#0a6f96!important;}

/* İçerik sayfaları: bol metin yerine okunabilir, premium kurumsal yapı */
.content-hero{position:relative!important;overflow:hidden!important;padding:76px 0 70px!important;background:linear-gradient(135deg,#071827 0%,#0c3a57 58%,#145e83 100%)!important;color:#fff!important;}
.content-hero:after{content:"";position:absolute;right:-120px;top:-120px;width:520px;height:520px;border-radius:50%;background:radial-gradient(circle,rgba(143,208,232,.28),transparent 64%);pointer-events:none;}
.content-hero .container{position:relative;z-index:2;}
.content-hero h1{font-size:clamp(38px,5.2vw,68px)!important;letter-spacing:-2px!important;line-height:1.02!important;max-width:980px!important;}
.content-hero p{font-size:18px!important;line-height:1.75!important;max-width:860px!important;color:rgba(255,255,255,.88)!important;}
.content-section{padding:74px 0!important;}
.content-section:nth-of-type(even){background:linear-gradient(180deg,#fff,#f7fbfd)!important;}
.content-section .container>h2:first-child,.content-section h2{letter-spacing:-1.1px!important;}
.two-col{gap:56px!important;}
.two-col>div:first-child p{max-width:780px!important;}
.content-visual{position:relative!important;border-radius:32px!important;padding:18px!important;background:linear-gradient(180deg,#fff,#f4fbfe)!important;box-shadow:0 28px 80px rgba(7,24,39,.11)!important;}
.content-visual:before{content:"Uygulama Odaklı";position:absolute;left:28px;top:28px;z-index:2;background:#fff;color:#0c5978;border:1px solid rgba(12,89,120,.16);border-radius:999px;padding:9px 13px;font-size:12px;font-weight:900;box-shadow:0 10px 24px rgba(7,24,39,.10)}
.content-visual img{border-radius:24px!important;background:#eef8fc!important;}
.content-card,.content-link-card,.process-grid>div{border-radius:24px!important;border:1px solid rgba(12,34,53,.08)!important;box-shadow:0 18px 48px rgba(12,34,53,.07)!important;}
.content-card:hover,.content-link-card:hover,.process-grid>div:hover{transform:translateY(-4px);box-shadow:0 26px 64px rgba(12,34,53,.11)!important;}
.content-card,.content-link-card,.process-grid>div{transition:transform .2s ease,box-shadow .2s ease!important;}
.content-card h3,.content-link-card strong{letter-spacing:-.35px!important;}
.content-section p{font-size:17px!important;line-height:1.78!important;color:#526372!important;}
.content-grid{gap:24px!important;}
.content-link-grid{gap:18px!important;}
.process-grid b{box-shadow:0 12px 26px rgba(18,77,115,.22)!important;}
.cta-band{background:radial-gradient(circle at 20% 10%,rgba(31,134,199,.24),transparent 28%),linear-gradient(135deg,#071827,#0c3a57)!important;}

/* Menüler: arka planla karışmasın ve hover alanı stabil olsun */
.ap-header{background:#fff!important;box-shadow:0 8px 28px rgba(7,24,39,.06)!important;}
.ap-mainbar{background:#fff!important;}
.ap-nav>ul>li>a{color:#132b3d!important;font-size:14px!important;font-weight:800!important;}
.ap-nav>ul>li>a:hover{color:#0b7198!important;}
.ap-dropdown:before{height:22px!important;}
.ap-mega{margin-top:0!important;border:1px solid rgba(12,34,53,.09)!important;box-shadow:0 30px 80px rgba(7,24,39,.16)!important;}
.ap-corp-panel{margin-top:0!important;}
.ap-corp-dropdown>.ap-corp-trigger{color:#10283b!important;font-weight:800!important;}
.ap-corp-dropdown:hover .ap-corp-panel{opacity:0!important;visibility:hidden!important;pointer-events:none!important;}
.ap-corp-dropdown.is-open .ap-corp-panel,.ap-corp-dropdown:focus-within .ap-corp-panel{opacity:1!important;visibility:visible!important;pointer-events:auto!important;transform:translateY(0)!important;}

@media(max-width:1100px){
  .ac2-copy{width:min(680px,72vw)!important;}
  .ac2-specs{display:none!important;}
  .ac2-solution-strip{grid-template-columns:repeat(3,1fr)!important;}
}
@media(max-width:680px){
  .ac2-slider{height:620px!important;min-height:620px!important;}
  .ac2-copy{width:auto!important;padding:0 18px!important;}
  .ac2-copy h1,.ac2-copy h2{font-size:36px!important;letter-spacing:-1.2px!important;}
  .ac2-copy p{font-size:15px!important;}
  .ac2-arrow{display:none!important;}
  .ac2-solution-strip{grid-template-columns:repeat(2,1fr)!important;}
  .ac2-solution-strip a{min-height:58px!important;font-size:13px!important;}
}


/* === FINAL PRODUCTION CLEANUP: contrast, readable cards and professional footer === */
::selection{background:#0b66a1;color:#fff}
body{background:#f7fbfe;color:#071827}
.kicker,.eyebrow{color:#0d638b!important;background:#e9f7fc!important;border:1px solid #ccecf7!important}
.section-text,.lead,p{color:#334155}
.dark .section-text,.dark p,.premium-panel.dark p,.premium-panel.dark span,.footer p{color:#d9f3ff!important}
.premium-panel.dark{background:linear-gradient(135deg,#062033,#0a405e)!important;color:#fff!important}
.premium-panel.dark h2,.premium-panel.dark h3,.premium-panel.dark b{color:#fff!important}
.premium-panel.dark .signal-list div{background:rgba(255,255,255,.08)!important;border-color:rgba(255,255,255,.18)!important;color:#e9f9ff!important}
.content-hero,.page-hero{background:linear-gradient(135deg,#06304a,#0f6e95)!important;color:#fff!important}
.content-hero h1,.content-hero p,.content-hero .eyebrow,.page-hero h1,.page-hero p{color:#fff!important}
.content-hero .eyebrow,.page-hero .eyebrow{background:rgba(255,255,255,.12)!important;border-color:rgba(255,255,255,.25)!important;color:#dff8ff!important}
.acamar-topbar,.topbar{background:#160f0b!important;color:#fff!important}
.header{background:rgba(255,255,255,.95)!important;border-bottom:1px solid rgba(7,24,39,.08)!important}
.menu a{font-size:14px!important;font-weight:700!important;color:#10283c!important}
.menu a:hover,.menu a.active,.dropdown:hover>a{background:#eef8fc!important;color:#075985!important}
.dropdown-panel{top:calc(100% + 10px)!important;z-index:3000!important;color:#10283c!important}
.dropdown-panel:before{content:"";position:absolute;left:0;right:0;top:-14px;height:14px}
.dropdown-panel a{color:#10283c!important;background:transparent!important}
.dropdown-panel a:hover{background:#eef8fc!important;color:#075985!important}
/* Replace old footer visually */
.footer.professional-footer{background:#061826!important;color:#e8f8ff!important;margin-top:0!important;padding:0!important;border-top:0!important}
.footer-cta{background:linear-gradient(135deg,#0b4565,#0e7aa4);padding:44px 0;border-bottom:1px solid rgba(255,255,255,.14)}
.footer-cta-inner{display:flex;justify-content:space-between;align-items:center;gap:28px}
.footer-eyebrow{display:inline-flex;font-size:13px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;color:#b8efff;margin-bottom:10px}
.footer-cta h2{font-size:clamp(26px,3vw,42px);line-height:1.16;letter-spacing:-.8px;color:#fff!important;margin:0;max-width:850px}
.footer-cta-actions{display:flex;gap:12px;flex-wrap:wrap;flex-shrink:0}
.footer-ghost{background:#fff!important;color:#08324a!important;border-color:#fff!important}
.footer-main{display:grid;grid-template-columns:1.35fr .8fr .8fr .8fr;gap:42px;padding:58px 0 44px}
.footer-company{background:rgba(255,255,255,.045);border:1px solid rgba(255,255,255,.10);border-radius:26px;padding:28px;box-shadow:0 22px 60px rgba(0,0,0,.16)}
.footer-logo{display:inline-flex;align-items:center;gap:10px;margin-bottom:18px;color:#fff!important;text-decoration:none!important}
.footer-logo span{width:46px;height:46px;border-radius:14px;background:linear-gradient(135deg,#0a5f85,#43c2ec);display:grid;place-items:center;font-weight:900;color:#fff}
.footer-logo strong{font-size:24px;color:#fff}
.footer-company p{font-size:15px;line-height:1.8;color:#ccefff!important;margin:0 0 20px}
.footer-contact-list{display:grid;gap:10px;font-weight:700;color:#fff}
.footer-contact-list a,.footer-contact-list span{color:#dcf7ff!important}
.footer-col{display:grid;align-content:start;gap:11px}
.footer-col h4{color:#fff!important;margin:0 0 12px;font-size:17px;padding-bottom:12px;border-bottom:1px solid rgba(255,255,255,.13)}
.footer-col a{color:#bdeeff!important;font-size:15px;line-height:1.45;transition:.2s ease;text-decoration:none!important}
.footer-col a:hover{color:#fff!important;transform:translateX(4px)}
.professional-bottom{border-top:1px solid rgba(255,255,255,.12)!important;padding:22px 0!important;color:#aeeaff!important;display:flex;justify-content:space-between;gap:18px;flex-wrap:wrap}
/* homepage cards readability */
.choice-card,.problem-card,.service-card,.content-card,.card{background:#fff!important;color:#071827!important}
.choice-card h3,.problem-card h3,.service-card h3,.content-card h3,.card h3{color:#071827!important}
.choice-card p,.problem-card p,.service-card p,.content-card p,.card p{color:#41556a!important}
.solution-tags span{background:#e7f7ff!important;color:#064b6a!important;border:1px solid #cfeaf4!important}
.ai-strip{background:linear-gradient(135deg,#061826,#0e5270)!important;color:#fff!important}
.ai-strip h2,.ai-strip p{color:#fff!important}
.ai-strip .step-card{background:#fff!important;color:#071827!important}
.ai-strip .step-card span,.ai-strip .step-card strong{color:#071827!important}
@media(max-width:900px){.footer-cta-inner{align-items:flex-start;flex-direction:column}.footer-main{grid-template-columns:1fr 1fr}.footer-company{grid-column:1/-1}}
@media(max-width:620px){.footer-main{grid-template-columns:1fr}.professional-bottom{display:grid}.menu a{font-size:14px!important}}


/* === ONLY FIXES REQUESTED: header contrast, corporate menu trigger, step cards === */
.ap-topbar{background:#160f0b!important;color:#fff!important;overflow:visible!important;position:relative!important;z-index:5000!important}
.ap-topbar-inner{overflow:visible!important}
.ap-topbar a,.ap-topbar .ap-corp-trigger{color:#ffffff!important;text-decoration:none!important;text-shadow:none!important}
.ap-topbar .ap-corp-trigger{height:42px!important;line-height:42px!important;display:inline-flex!important;align-items:center!important;gap:6px!important;padding:0 14px!important;border-radius:0!important;background:transparent!important;font-size:14px!important;font-weight:800!important}
.ap-topbar .ap-corp-trigger span{color:#d7b46d!important}
.ap-topbar .ap-corp-trigger:hover,
.ap-corp-dropdown.is-open>.ap-corp-trigger,
.ap-corp-trigger:focus-visible{background:rgba(255,255,255,.13)!important;color:#fff!important;outline:none!important}
.ap-corp-dropdown:not(.is-open) .ap-corp-panel{opacity:0!important;visibility:hidden!important;pointer-events:none!important;transform:translateY(8px)!important}
.ap-corp-dropdown.is-open .ap-corp-panel{opacity:1!important;visibility:visible!important;pointer-events:auto!important;transform:translateY(0)!important}
.ap-corp-panel{top:42px!important;z-index:4999!important;background:#ffffff!important;color:#10283b!important}
.ap-corp-grid a,.ap-corp-grid a span{color:#10283b!important;background:#fff!important;text-decoration:none!important}
.ap-corp-grid a:hover{background:#f5fbfe!important;color:#075985!important}
.ap-corp-grid a:hover span{color:#075985!important}

.ai-strip{display:grid!important;grid-template-columns:minmax(0,1.05fr) minmax(420px,.95fr)!important;align-items:center!important;gap:44px!important;padding:54px 56px!important;border-radius:34px!important;background:linear-gradient(135deg,#061826 0%,#0b405d 58%,#0f6b8d 100%)!important;color:#fff!important;box-shadow:0 30px 90px rgba(7,24,39,.16)!important;overflow:hidden!important}
.ai-strip .kicker{display:inline-flex!important;background:rgba(255,255,255,.12)!important;color:#c8f3ff!important;border:1px solid rgba(255,255,255,.24)!important}
.ai-strip h2{color:#fff!important;max-width:780px!important;margin:0 0 18px!important}
.ai-strip p{color:#dff7ff!important;max-width:760px!important}
.ai-strip .process{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:18px!important;align-items:stretch!important}
.ai-strip .process .step{min-height:156px!important;background:#ffffff!important;color:#082336!important;border:1px solid rgba(255,255,255,.85)!important;border-radius:22px!important;padding:24px 18px!important;display:flex!important;flex-direction:column!important;justify-content:flex-start!important;align-items:flex-start!important;gap:16px!important;font-size:18px!important;line-height:1.2!important;font-weight:900!important;box-shadow:0 20px 48px rgba(0,0,0,.14)!important;overflow:visible!important;text-align:left!important}
.ai-strip .process .step b{width:48px!important;height:48px!important;min-width:48px!important;border-radius:16px!important;margin:0!important;background:#eaf7fd!important;color:#074b68!important;display:grid!important;place-items:center!important;font-size:18px!important;font-weight:950!important;line-height:1!important}
@media(max-width:1180px){.ai-strip{grid-template-columns:1fr!important;padding:38px 28px!important}.ai-strip .process{grid-template-columns:repeat(2,minmax(0,1fr))!important}.ap-corp-panel{top:100%!important}}
@media(max-width:640px){.ai-strip .process{grid-template-columns:1fr!important}.ai-strip .process .step{min-height:auto!important}.ap-top-actions{display:none!important}}

.footer.professional-footer{background:#061826!important;color:#e8f8ff!important}
.footer-main{max-width:1440px!important}
.footer-col a,.footer-contact-list a,.footer-contact-list span{color:#c7f1ff!important}
.footer-col a:hover{color:#ffffff!important}
.footer-company{background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.035))!important;border:1px solid rgba(255,255,255,.12)!important}
.footer-cta{background:linear-gradient(135deg,#08324a,#0f7198)!important}

/* FINAL TYPOGRAPHY SOFTENING - layout preserved */
:root{
  --type-heading-weight:700;
  --type-subheading-weight:650;
  --type-nav-weight:600;
}

/* Header / menu: slightly smaller and lighter */
.menu a,
.top-menu a,
.nav-link,
.nav a,
.dropdown > a,
.dropdown-trigger,
.header a,
.mega-menu a{
  font-size:14px !important;
  font-weight:600 !important;
  letter-spacing:.01em;
}
.logo{
  font-size:21px !important;
  font-weight:760 !important;
}
.logo-mark{
  font-weight:760 !important;
}
.btn,
.btn-primary,
.btn-secondary,
.btn-ghost,
.nav-actions .btn{
  font-size:14px !important;
  font-weight:650 !important;
}

/* Main titles: keep hierarchy but reduce heavy look */
h1,
.hero h1,
.page-hero h1,
.content-hero h1,
.acamar-hero h1,
.slider-title,
.slide-title,
.hero-title{
  font-size:clamp(34px,4.45vw,62px) !important;
  line-height:1.08 !important;
  font-weight:700 !important;
  letter-spacing:-1.35px !important;
}

h2,
.section h2,
.section-head h2,
.content-section h2,
.rich-content h2,
.ai-strip h2,
.cta h2{
  font-size:clamp(28px,2.65vw,43px) !important;
  line-height:1.14 !important;
  font-weight:700 !important;
  letter-spacing:-.75px !important;
}

h3,
.service-content h3,
.content-card h3,
.problem-card h3,
.blog-card h3,
.footer h3{
  font-size:clamp(20px,1.65vw,25px) !important;
  font-weight:650 !important;
  line-height:1.22 !important;
  letter-spacing:-.25px !important;
}

h4,
.footer h4,
.sidebar h4{
  font-size:18px !important;
  font-weight:650 !important;
}

/* Labels and emphasis: less aggressive */
.eyebrow,
.kicker,
.section-label,
.badge,
.pill,
.quick-finder-title,
.floating-badge,
.metric strong,
.step b,
.faq summary,
.sidebar a,
.link,
.tick-list li:before{
  font-weight:650 !important;
}
.eyebrow,
.kicker,
.section-label{
  font-size:12px !important;
  letter-spacing:.095em !important;
}

/* Body copy: readable but not bulky */
p,
.lead,
.section-text,
.rich-content p,
.content-card p,
.service-content p,
.problem-card p,
.footer p,
.footer a,
li,
input,
select,
textarea{
  font-weight:400 !important;
}
.lead{
  font-size:18px !important;
  line-height:1.72 !important;
}
.section-text,
.rich-content p,
.content-card p,
.service-content p,
.problem-card p{
  font-size:16.5px !important;
  line-height:1.72 !important;
}

/* Cards / steps text */
.step h3,
.process-grid h3,
.finder-item b,
.reference-logo-card span{
  font-weight:650 !important;
}
.finder-item b{font-size:14px !important;}
.finder-item span{font-size:12.5px !important;}

/* Footer: more premium, less heavy */
.footer h3,
.footer h4{
  font-weight:650 !important;
  letter-spacing:-.15px !important;
}
.footer p,
.footer a{
  font-size:15px !important;
  line-height:1.68 !important;
}
.footer-bottom{
  font-size:14px !important;
}

/* Mobile balance */
@media (max-width:640px){
  h1,
  .hero h1,
  .page-hero h1,
  .content-hero h1,
  .slider-title,
  .slide-title,
  .hero-title{
    font-size:clamp(31px,10vw,42px) !important;
    letter-spacing:-.8px !important;
  }
  h2,
  .section h2,
  .content-section h2{
    font-size:clamp(25px,7vw,34px) !important;
  }
  .menu a{font-size:14px !important;}
}

/* FINAL TYPOGRAPHY PASS - Made Tommy ready
   Not: Made Tommy lisansli font dosyalari eklenirse tarayici otomatik kullanir.
   Font yoksa sistem fontlariyla calisir; layout ve tasarim yapisi korunur. */
:root{
  --font-main:"MADE TOMMY", "Made Tommy", "MADE TOMMY Soft", "Made Tommy Soft", Inter, Arial, Helvetica, sans-serif;
}
body,
input,
select,
textarea,
button{
  font-family:var(--font-main);
  font-weight:400;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
.logo{
  font-weight:700;
  font-size:22px;
  letter-spacing:-.35px;
}
.logo-mark{
  font-weight:700;
}
.menu a{
  font-size:14px;
  font-weight:500;
  letter-spacing:.08px;
  padding:11px 12px;
}
.dropdown-panel a{
  font-size:14px;
  font-weight:500;
}
.btn{
  font-size:14px;
  font-weight:600;
  letter-spacing:.05px;
}
.eyebrow,
.kicker{
  font-size:12px;
  font-weight:600;
  letter-spacing:.1em;
}
h1{
  font-size:clamp(34px,4.45vw,62px);
  font-weight:700;
  line-height:1.08;
  letter-spacing:-1.45px;
}
h2{
  font-size:clamp(28px,2.75vw,43px);
  font-weight:700;
  line-height:1.16;
  letter-spacing:-.85px;
}
h3{
  font-weight:600;
  letter-spacing:-.25px;
}
.lead{
  font-size:18px;
  font-weight:400;
  line-height:1.75;
}
.section-text,
.rich-content p,
.service-content p,
.faq p,
.footer p,
.footer a{
  font-size:16px;
  font-weight:400;
  line-height:1.75;
}
.service-content h3,
.blog-card h3,
.rich-content h3{
  font-size:21px;
  font-weight:600;
}
.rich-content h2{
  font-size:34px;
  font-weight:700;
}
.rich-content h3{
  font-size:23px;
}
.faq summary{
  font-size:16px;
  font-weight:600;
}
.metric strong{
  font-size:25px;
  font-weight:700;
}
.metric span,
.tick-list li,
.sidebar a{
  font-weight:500;
}
.sidebar a{
  font-size:15px;
}
.footer h3{
  font-size:24px;
  font-weight:700;
  letter-spacing:-.45px;
}
.footer h4{
  font-size:17px;
  font-weight:600;
}
.page-hero h1{
  font-size:clamp(34px,4vw,56px);
}
.hero-slider-title,
.hero-slide h1,
.slider-title{
  font-size:clamp(34px,4.45vw,62px) !important;
  font-weight:700 !important;
  line-height:1.08 !important;
  letter-spacing:-1.45px !important;
}
.hero-slide p,
.slider-description{
  font-size:18px !important;
  font-weight:400 !important;
  line-height:1.7 !important;
}
@media (max-width:980px){
  .menu a{font-size:14px;font-weight:500;padding:12px 14px}
  .logo{font-size:20px}
}
@media (max-width:640px){
  h1,.page-hero h1,.hero-slider-title,.hero-slide h1,.slider-title{
    font-size:clamp(31px,9vw,42px) !important;
    letter-spacing:-.9px !important;
  }
  h2{font-size:clamp(25px,7vw,34px)}
  .lead,.hero-slide p,.slider-description{font-size:16px !important}
}

/* FINAL TYPOGRAPHY TUNING - layout preserved */
:root{
  --site-font:'MADE TOMMY','Made Tommy','Manrope','Inter',Arial,Helvetica,sans-serif;
}
html,body{
  font-family:var(--site-font)!important;
  font-weight:400!important;
}
body,p,li,span,small,dd,td,th,input,textarea,select,button{
  font-family:var(--site-font)!important;
}
/* Navigation: medium, not bold */
.menu a,
.menu-clean>li>a,
.menu-pro>li>a,
.nav a,
.topbar a,
.nav-actions a,
.nav-actions-clean a,
.nav-phone,
.mobile-toggle{
  font-weight:500!important;
  font-size:14.5px!important;
  letter-spacing:.05px!important;
}
.logo,
.logo-copy strong{
  font-weight:700!important;
}
.logo-copy small{
  font-weight:500!important;
}
/* Headings: strong but not heavy */
h1,.h1,.page-hero h1,.hero h1,.hero-copy h1,.command-copy h1,.slider-title,.hero-slide h1,.hero-slider-title{
  font-weight:700!important;
  letter-spacing:-1.2px!important;
}
h2,.h2,.section-title,.rich-content h2{
  font-weight:650!important;
  letter-spacing:-.7px!important;
}
h3,.h3,.service-card h3,.choice-card h3,.problem-card h3,.blog-card h3,.product-card h3,.usecase-card h2,.gallery-card b{
  font-weight:600!important;
  letter-spacing:-.35px!important;
}
h4,h5,h6,.footer h3,.footer h4,.kicker,.eyebrow,.hero-eyebrow{
  font-weight:600!important;
}
/* Body copy and card descriptions: normal weight */
p,
.section-text,
.lead,
.rich-content p,
.content p,
.hero-slide p,
.slider-description,
.service-card p,
.choice-card p,
.problem-card p,
.product-card p,
.usecase-card p,
.industry-grid p,
.trust-cards span,
.contact-card span,
.footer p,
.footer li,
.footer a,
.mega-links span,
.hero-mini-cards span,
.card p,
article p{
  font-weight:400!important;
  line-height:1.72!important;
}
/* Strong labels remain readable but not oversized */
.choice-card b,
.problem-card b,
.metric span,
.tick-list li,
.sidebar a,
.faq summary,
.link,
.btn,
.quote-btn,
.selector-tabs button,
.gallery-card span,
.contact-card a{
  font-weight:500!important;
}
/* Product group cards in the screenshot */
.choice-card h3,
.product-card h3,
.service-card h3{
  font-size:clamp(20px,1.45vw,25px)!important;
}
.choice-card p,
.product-card p,
.service-card p{
  font-size:clamp(15px,1.05vw,17px)!important;
  color:#5f7080!important;
}
/* Hero and page typography slightly smaller without changing layout */
.hero-copy h1,
.command-copy h1,
.hero-slider-title,
.hero-slide h1,
.slider-title{
  font-size:clamp(36px,4.25vw,60px)!important;
  line-height:1.08!important;
}
.page-hero h1,
.inner-hero h1,
main h1{
  font-size:clamp(34px,3.85vw,54px)!important;
}
main h2,.section-title{
  font-size:clamp(28px,3vw,42px)!important;
}
/* Footer: cleaner professional weight */
.footer h3{
  font-size:22px!important;
  font-weight:600!important;
}
.footer h4{
  font-size:16px!important;
  font-weight:600!important;
}
.footer a,.footer p,.footer li{
  font-size:15.5px!important;
  font-weight:400!important;
}
@media(max-width:980px){
  .menu a,.menu-clean>li>a,.menu-pro>li>a{font-size:14px!important;font-weight:500!important}
}
@media(max-width:640px){
  .hero-copy h1,.command-copy h1,.hero-slider-title,.hero-slide h1,.slider-title{font-size:clamp(31px,8.2vw,40px)!important}
  main h1,.page-hero h1,.inner-hero h1{font-size:clamp(30px,8vw,39px)!important}
  main h2,.section-title{font-size:clamp(24px,6.8vw,32px)!important}
}


/* FINAL TOPBAR LINK REVISION - Montaj/Hizmet Bolgeleri */
.ap-topbar a,
.ap-top-links a,
.ap-top-actions a{
  font-weight:500!important;
  font-size:13px!important;
  letter-spacing:.01em!important;
}
.ap-top-actions a:before{content:none!important;}
.ap-top-actions{gap:22px!important;}
.ap-top-links{gap:22px!important;}
.ap-corp-trigger{font-weight:500!important;}
@media(max-width:980px){.ap-topbar{display:none!important;}}

/* FINAL CORPORATE MENU TYPOGRAPHY + CLEAN CHEVRON FIX */
.ap-nav > ul > li > a{
  font-weight:500!important;
  font-size:14px!important;
  letter-spacing:.01em!important;
}
.ap-topbar a,
.ap-topbar .ap-corp-trigger{
  font-weight:500!important;
  font-size:14px!important;
  letter-spacing:.01em!important;
}
.ap-corp-dropdown > .ap-corp-trigger,
.ap-topbar .ap-corp-trigger{
  font-weight:500!important;
  color:#fff!important;
  gap:7px!important;
}
.ap-corp-trigger .ap-corp-chevron{
  width:12px!important;
  height:12px!important;
  color:#d7b46d!important;
  margin-left:1px!important;
  transition:transform .22s ease,color .22s ease!important;
  flex:0 0 auto!important;
}
.ap-corp-dropdown.is-open > .ap-corp-trigger .ap-corp-chevron,
.ap-corp-dropdown:focus-within > .ap-corp-trigger .ap-corp-chevron{
  transform:rotate(180deg)!important;
}
.ap-corp-trigger span{display:none!important;}
.ap-corp-grid a{
  font-weight:500!important;
  font-size:16px!important;
}
.ap-corp-grid a span{
  font-weight:500!important;
}
.ap-corp-grid a i{
  font-weight:500!important;
}
.ap-corp-trigger:hover,
.ap-corp-dropdown.is-open > .ap-corp-trigger,
.ap-corp-trigger:focus-visible{
  background:rgba(255,255,255,.10)!important;
}
@media(max-width:1220px){
  .ap-nav > ul > li > a{font-size:13.5px!important;font-weight:500!important;}
}


/* FINAL BRANCH CALL DROPDOWN - no layout break */
.ap-top-actions{
  margin-left:auto!important;
  display:flex!important;
  align-items:center!important;
  justify-content:flex-end!important;
  gap:0!important;
  position:relative!important;
  overflow:visible!important;
}
.ap-top-links{
  display:flex!important;
  align-items:center!important;
  gap:30px!important;
}
.ap-top-links > a,
.ap-topbar .ap-corp-trigger{
  font-weight:500!important;
  font-size:14px!important;
  line-height:1!important;
}
.ap-branch-dropdown{
  position:relative!important;
  display:inline-flex!important;
  align-items:center!important;
  z-index:7000!important;
}
.ap-branch-trigger{
  appearance:none!important;
  border:0!important;
  background:transparent!important;
  color:#fff!important;
  cursor:pointer!important;
  height:34px!important;
  display:inline-flex!important;
  align-items:center!important;
  gap:8px!important;
  padding:0 2px!important;
  font-family:inherit!important;
  font-size:14px!important;
  font-weight:500!important;
  letter-spacing:.01em!important;
  white-space:nowrap!important;
}
.ap-branch-trigger:before{
  content:'☎'!important;
  color:#d7b46d!important;
  font-size:13px!important;
}
.ap-branch-trigger:after{
  content:''!important;
  width:7px!important;
  height:7px!important;
  border-right:1.5px solid #d7b46d!important;
  border-bottom:1.5px solid #d7b46d!important;
  transform:rotate(45deg) translateY(-2px)!important;
  transition:transform .2s ease!important;
  margin-left:2px!important;
}
.ap-branch-dropdown:hover .ap-branch-trigger:after,
.ap-branch-dropdown:focus-within .ap-branch-trigger:after{
  transform:rotate(225deg) translateY(-1px)!important;
}
.ap-branch-panel{
  position:absolute!important;
  top:calc(100% + 8px)!important;
  right:0!important;
  width:285px!important;
  background:#fff!important;
  border:1px solid rgba(12,34,53,.11)!important;
  border-radius:18px!important;
  padding:10px!important;
  box-shadow:0 24px 70px rgba(7,24,39,.18)!important;
  opacity:0!important;
  visibility:hidden!important;
  transform:translateY(8px)!important;
  pointer-events:none!important;
  transition:.22s ease!important;
}
.ap-branch-panel:before{
  content:''!important;
  position:absolute!important;
  top:-10px!important;
  left:0!important;
  right:0!important;
  height:10px!important;
}
.ap-branch-dropdown:hover .ap-branch-panel,
.ap-branch-dropdown:focus-within .ap-branch-panel{
  opacity:1!important;
  visibility:visible!important;
  transform:translateY(0)!important;
  pointer-events:auto!important;
}
.ap-branch-panel a{
  display:flex!important;
  justify-content:space-between!important;
  align-items:center!important;
  gap:16px!important;
  min-height:52px!important;
  padding:10px 12px!important;
  border-radius:13px!important;
  color:#0c2235!important;
  text-decoration:none!important;
  font-weight:400!important;
  transition:.18s ease!important;
}
.ap-branch-panel a:hover{
  background:#f1f8fb!important;
  color:#124d73!important;
}
.ap-branch-panel strong{
  font-size:14px!important;
  font-weight:500!important;
  color:#0c2235!important;
}
.ap-branch-panel span{
  font-size:13px!important;
  font-weight:400!important;
  color:#5d6f7f!important;
  white-space:nowrap!important;
}
.ap-main-inner .ap-phone{display:none!important;}
.ap-actions{gap:10px!important;}
@media(max-width:980px){
  .ap-topbar{display:none!important;}
}

/* FINAL TOP MENU SPACING POLISH
   Amaç: Kurumsal, Montaj ve Nakliye, Hizmet Bölgeleri menülerinin
   aralıklarını eşitlemek; mevcut tasarım, renk ve yapı bozulmadan. */
.ap-topbar .ap-topbar-inner{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  overflow:visible!important;
}
.ap-topbar .ap-top-links,
.ap-topbar .ap-corporate-nav{
  display:flex!important;
  align-items:center!important;
  gap:42px!important;
  column-gap:42px!important;
  row-gap:0!important;
}
.ap-topbar .ap-top-links > a,
.ap-topbar .ap-corporate-nav > a,
.ap-topbar .ap-corp-dropdown{
  margin:0!important;
  padding:0!important;
}
.ap-topbar .ap-corp-trigger,
.ap-topbar .ap-top-links > a,
.ap-topbar .ap-corporate-nav > a{
  margin:0!important;
  padding:0!important;
  height:42px!important;
  line-height:42px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  font-size:14px!important;
  font-weight:500!important;
  letter-spacing:.01em!important;
  white-space:nowrap!important;
}
.ap-topbar .ap-corp-trigger{
  gap:8px!important;
}
.ap-topbar .ap-corp-chevron{
  margin-left:2px!important;
  width:12px!important;
  height:12px!important;
  flex:0 0 12px!important;
}
.ap-topbar .ap-corp-trigger:hover,
.ap-topbar .ap-corp-dropdown.is-open > .ap-corp-trigger,
.ap-topbar .ap-corp-trigger:focus-visible{
  background:transparent!important;
  color:#ffffff!important;
}
@media(max-width:980px){
  .ap-topbar{display:none!important;}
}

/* === FINAL SMALL FIX: solution strip hover underline only === */
.ac2-solution-strip a{
  position:relative!important;
  overflow:hidden!important;
  background:#fff!important;
  transition:color .22s ease!important;
}
.ac2-solution-strip a::after{
  content:"";
  position:absolute;
  left:50%;
  right:50%;
  bottom:0;
  height:3px;
  background:linear-gradient(90deg,#0f6c9c,#19a8d8);
  border-radius:999px 999px 0 0;
  transition:left .24s ease,right .24s ease;
}
.ac2-solution-strip a:hover,
.ac2-solution-strip a:focus-visible{
  background:#fff!important;
  color:#0a5f82!important;
}
.ac2-solution-strip a:hover::after,
.ac2-solution-strip a:focus-visible::after,
.ac2-solution-strip a.is-active::after{
  left:22%;
  right:22%;
}
.ac2-solution-strip a.is-active{
  color:#0a5f82!important;
}

/* === FINAL FIX: premium selection criteria panel alignment/readability === */
.premium-panel.dark{
  padding:clamp(32px,4vw,50px)!important;
  border-radius:30px!important;
}
.premium-panel.dark .kicker,
.premium-panel.dark span.kicker{
  display:inline-flex!important;
  align-items:center!important;
  width:auto!important;
  max-width:max-content!important;
  background:rgba(255,255,255,.94)!important;
  color:#0b5f83!important;
  border:1px solid rgba(255,255,255,.7)!important;
  border-radius:4px!important;
  padding:5px 9px!important;
  font-size:12px!important;
  line-height:1!important;
  font-weight:700!important;
  letter-spacing:.13em!important;
  text-transform:uppercase!important;
  box-shadow:none!important;
  margin-bottom:18px!important;
}
.premium-panel.dark h2{
  max-width:760px!important;
  margin-bottom:30px!important;
  font-size:clamp(34px,4vw,58px)!important;
  line-height:1.08!important;
  letter-spacing:-1.5px!important;
  font-weight:700!important;
}
.premium-panel.dark .signal-list{
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:14px!important;
  margin-top:0!important;
}
.premium-panel.dark .signal-list div{
  display:grid!important;
  grid-template-columns:92px 1fr!important;
  align-items:center!important;
  gap:18px!important;
  min-height:74px!important;
  padding:18px 22px!important;
  border-radius:18px!important;
  background:rgba(255,255,255,.075)!important;
  border:1px solid rgba(255,255,255,.16)!important;
}
.premium-panel.dark .signal-list b{
  display:block!important;
  color:#fff!important;
  font-size:18px!important;
  line-height:1.2!important;
  font-weight:650!important;
  min-width:0!important;
}
.premium-panel.dark .signal-list span{
  color:#e3f6ff!important;
  font-size:17px!important;
  line-height:1.55!important;
  font-weight:400!important;
  margin:0!important;
}
@media(max-width:760px){
  .premium-panel.dark .signal-list div{
    grid-template-columns:1fr!important;
    gap:6px!important;
  }
  .premium-panel.dark h2{
    font-size:34px!important;
  }
}

/* Quick product selection panel - only fills the empty selection area */
.quick-product-panel{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:18px;
}
.quick-product-panel .kicker{
  color:#8fd0e8!important;
  background:rgba(255,255,255,.08)!important;
  border-color:rgba(255,255,255,.18)!important;
  align-self:flex-start;
}
.quick-product-panel h2{
  margin-bottom:2px!important;
}
.quick-panel-text{
  margin:0 0 2px!important;
  color:#d9f3ff!important;
  max-width:620px;
  font-size:18px!important;
  line-height:1.65!important;
  font-weight:400!important;
}
.quick-product-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.quick-product-list a{
  display:block;
  text-decoration:none;
  color:#fff;
  padding:18px 18px;
  border-radius:18px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  transition:transform .22s ease,background .22s ease,border-color .22s ease;
}
.quick-product-list a:hover{
  transform:translateY(-3px);
  background:rgba(255,255,255,.13);
  border-color:rgba(143,208,232,.5);
}
.quick-product-list strong{
  display:block;
  color:#fff;
  font-size:18px;
  line-height:1.25;
  font-weight:600;
  margin-bottom:6px;
}
.quick-product-list span{
  display:block;
  color:#c8eaf7!important;
  font-size:14px;
  line-height:1.45;
  font-weight:400!important;
}
.quick-panel-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  background:#fff;
  color:#08354e!important;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 14px 32px rgba(0,0,0,.14);
}
.quick-panel-btn:hover{transform:translateY(-2px)}
@media(max-width:760px){
  .quick-product-list{grid-template-columns:1fr}
  .quick-panel-btn{width:100%}
}

/* === FINAL REQUEST: fill only the left empty area; keep right panel as previous === */
.selection-mini-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-top:22px;
}
.selection-mini-grid a{
  display:block;
  min-height:96px;
  padding:18px 18px 16px;
  border-radius:18px;
  border:1px solid rgba(11,95,131,.14);
  background:linear-gradient(180deg,#ffffff 0%,#f5fbfe 100%);
  text-decoration:none;
  color:#0b2638;
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}
.selection-mini-grid a:hover{
  transform:translateY(-2px);
  border-color:rgba(11,95,131,.35);
  box-shadow:0 16px 36px rgba(7,24,39,.08);
}
.selection-mini-grid strong{
  display:block;
  margin-bottom:7px;
  color:#07324a;
  font-size:17px;
  line-height:1.25;
  font-weight:650;
}
.selection-mini-grid span{
  display:block;
  color:#607486;
  font-size:14px;
  line-height:1.55;
  font-weight:400;
}
@media(max-width:760px){
  .selection-mini-grid{grid-template-columns:1fr}
}


/* Projects page final expansion - design-safe */
.project-summary{padding-top:42px;padding-bottom:18px;background:#f6f9fc}
.project-stat-row{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.project-stat-row>div{background:#fff;border:1px solid rgba(12,34,53,.09);border-radius:22px;padding:22px 24px;box-shadow:0 14px 34px rgba(12,34,53,.06)}
.project-stat-row strong{display:block;color:#0c2235;font-size:24px;line-height:1.1;font-weight:650;margin-bottom:6px}
.project-stat-row span{display:block;color:#5b6d7b;font-size:15px;line-height:1.45;font-weight:400}
.project-heading{margin-bottom:28px}.project-heading h2{margin-bottom:12px}.project-heading p{max-width:880px}
.project-gallery-expanded{row-gap:26px}.project-gallery-expanded .project-thumb{transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease}.project-gallery-expanded .project-thumb:hover{transform:translateY(-4px);box-shadow:0 24px 58px rgba(12,34,53,.12);border-color:rgba(15,108,156,.26)}
.project-gallery-expanded .project-thumb strong{font-weight:650}.project-gallery-expanded .project-thumb span{font-weight:400;color:#5f7180}
@media(max-width:1024px){.project-stat-row{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:680px){.project-stat-row{grid-template-columns:1fr}.project-summary{padding-top:32px}}


/* Reference page 50-card extension - layout preserved */
.reference-overview{padding-bottom:24px}
.reference-stat-row{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.reference-stat-row>div{background:#fff;border:1px solid rgba(12,34,53,.09);border-radius:22px;padding:22px 24px;box-shadow:0 14px 34px rgba(12,34,53,.06)}
.reference-stat-row strong{display:block;color:#0c2235;font-size:24px;line-height:1.1;font-weight:650;margin-bottom:6px}
.reference-stat-row span{display:block;color:#5b6d7b;font-size:15px;line-height:1.45;font-weight:400}
.reference-filter-bar{display:flex;flex-wrap:wrap;gap:10px;margin:22px 0 28px}
.reference-filter-bar button{border:1px solid rgba(12,34,53,.12);background:#fff;color:#0c2235;border-radius:999px;padding:10px 15px;font:inherit;font-size:14px;font-weight:500;cursor:pointer;transition:.2s ease;box-shadow:0 8px 20px rgba(12,34,53,.04)}
.reference-filter-bar button:hover,.reference-filter-bar button.active{background:#0f5f83;color:#fff;border-color:#0f5f83;box-shadow:0 12px 30px rgba(15,95,131,.18)}
.reference-grid-50{align-items:stretch}
.ref-detail-card{min-height:220px!important;grid-template-rows:auto auto auto auto!important;gap:7px!important;padding:18px!important;position:relative;overflow:hidden}
.ref-detail-card:after{content:"";position:absolute;left:18px;right:18px;bottom:0;height:3px;background:#0f6d92;transform:scaleX(0);transform-origin:left;transition:.22s ease;border-radius:99px 99px 0 0}
.ref-detail-card:hover:after{transform:scaleX(1)}
.ref-detail-card img{max-width:190px!important;max-height:88px!important;margin-bottom:8px}
.ref-detail-card span{font-size:18px!important;font-weight:600!important;color:#0c2235!important;line-height:1.25;text-align:center}
.ref-detail-card small{display:block;color:#6a7b88;font-size:13px;font-weight:400;line-height:1.35;text-align:center}
.ref-detail-card em{display:inline-flex;align-items:center;justify-content:center;min-height:34px;margin-top:4px;padding:7px 10px;border-radius:999px;background:#eef8fc;color:#0f5f83;font-style:normal;font-size:12px;font-weight:500;text-align:center;line-height:1.25}
.reference-logo-card.is-hidden{display:none!important}
.reference-application-area{padding-top:64px}
.reference-service-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;margin-top:26px}
.reference-service-grid>div{background:#fff;border:1px solid rgba(12,34,53,.09);border-radius:22px;padding:22px;box-shadow:0 14px 34px rgba(12,34,53,.06)}
.reference-service-grid strong{display:block;color:#0c2235;font-size:18px;font-weight:600;margin-bottom:8px;line-height:1.25}
.reference-service-grid span{display:block;color:#5b6d7b;font-size:15px;font-weight:400;line-height:1.6}
@media(max-width:1100px){.reference-stat-row,.reference-service-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:680px){.reference-stat-row,.reference-service-grid{grid-template-columns:1fr}.ref-detail-card{min-height:205px!important}.reference-filter-bar{gap:8px}.reference-filter-bar button{font-size:13px;padding:9px 12px}}

/* Reference card text-fit correction - keeps current design, prevents overflow */
.reference-grid-50 .ref-detail-card{
  min-height:236px!important;
  grid-template-rows:auto auto auto auto!important;
  align-content:start!important;
  justify-items:center!important;
  overflow:hidden!important;
}
.reference-grid-50 .ref-detail-card img{
  max-width:176px!important;
  max-height:78px!important;
  margin-bottom:6px!important;
}
.reference-grid-50 .ref-detail-card span{
  width:100%!important;
  max-width:100%!important;
  min-height:48px!important;
  display:-webkit-box!important;
  -webkit-line-clamp:2!important;
  -webkit-box-orient:vertical!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
  white-space:normal!important;
  word-break:normal!important;
  overflow-wrap:anywhere!important;
  font-size:16px!important;
  line-height:1.22!important;
  font-weight:600!important;
}
.reference-grid-50 .ref-detail-card small{
  width:100%!important;
  max-width:100%!important;
  min-height:34px!important;
  display:-webkit-box!important;
  -webkit-line-clamp:2!important;
  -webkit-box-orient:vertical!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
  white-space:normal!important;
  overflow-wrap:anywhere!important;
  font-size:12.5px!important;
  line-height:1.35!important;
}
.reference-grid-50 .ref-detail-card em{
  max-width:100%!important;
  width:auto!important;
  min-height:30px!important;
  padding:7px 12px!important;
  white-space:normal!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
  overflow-wrap:anywhere!important;
  font-size:11.5px!important;
  line-height:1.2!important;
}
@media(max-width:760px){
  .reference-grid-50 .ref-detail-card{min-height:220px!important}
  .reference-grid-50 .ref-detail-card img{max-width:164px!important;max-height:70px!important}
  .reference-grid-50 .ref-detail-card span{font-size:15.5px!important;min-height:44px!important}
}

/* Reference CTA contrast fix - preserves layout */
.cta-band{
  background:linear-gradient(135deg,#08283d 0%,#0f5f83 100%)!important;
}
.cta-band h2{
  color:#ffffff!important;
  text-shadow:0 2px 14px rgba(0,0,0,.18);
  font-weight:650!important;
}
.cta-band p{
  color:rgba(255,255,255,.9)!important;
  font-weight:400!important;
}
.cta-band .btn,
.cta-band .btn-primary{
  color:#ffffff!important;
}


/* Service page application insight fix - keeps existing design, replaces loose text blocks with structured content */
.application-insight{background:#f6f9fc;padding:76px 0;}
.insight-panel{display:grid;grid-template-columns:minmax(0,1fr) minmax(420px,.92fr);gap:28px;align-items:stretch;}
.insight-copy{background:#fff;border:1px solid rgba(12,34,53,.08);border-radius:30px;padding:34px;box-shadow:0 18px 48px rgba(12,34,53,.06);}
.insight-copy h2{font-size:clamp(30px,3.4vw,46px);line-height:1.08;margin:10px 0 18px;color:#071827;letter-spacing:-1.1px;}
.insight-copy p{font-size:17px;line-height:1.78;color:#405266;margin:0 0 14px;max-width:860px;}
.insight-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;}
.insight-grid article{background:#fff;border:1px solid rgba(12,34,53,.09);border-radius:24px;padding:22px;box-shadow:0 16px 42px rgba(12,34,53,.06);display:grid;gap:9px;align-content:start;min-height:172px;}
.insight-grid b{width:38px;height:38px;border-radius:13px;background:#e9f7fc;color:#0c5d7d;display:grid;place-items:center;font-weight:700;font-size:15px;}
.insight-grid strong{display:block;color:#071827;font-size:20px;line-height:1.22;font-weight:650;letter-spacing:-.3px;}
.insight-grid span{display:block;color:#52677a;font-size:15px;line-height:1.62;font-weight:400;}
@media(max-width:980px){.insight-panel{grid-template-columns:1fr}.insight-grid{grid-template-columns:1fr 1fr}}
@media(max-width:680px){.application-insight{padding:52px 0}.insight-copy{padding:24px}.insight-grid{grid-template-columns:1fr}.insight-grid article{min-height:0}}


/* Blog knowledge base upgrade */
.blog-filter-row{display:flex;gap:10px;flex-wrap:wrap;margin:0 0 28px}
.blog-filter-row span{display:inline-flex;align-items:center;border:1px solid rgba(12,34,53,.1);background:#fff;border-radius:999px;padding:10px 14px;color:#124d73;font-weight:650;font-size:14px}
.blog-index-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
.blog-index-card{background:#fff;border:1px solid rgba(12,34,53,.09);border-radius:26px;overflow:hidden;box-shadow:0 16px 42px rgba(12,34,53,.07);text-decoration:none;color:#0c2235;transition:.22s ease;display:flex;flex-direction:column;min-height:100%}
.blog-index-card:hover{transform:translateY(-4px);box-shadow:0 26px 64px rgba(12,34,53,.11)}
.blog-index-card img{width:100%;height:178px;object-fit:contain;background:#eef9fd;padding:16px;border-bottom:1px solid rgba(12,34,53,.06)}
.blog-index-card div{padding:22px;display:grid;gap:10px;align-content:start}
.blog-index-card small{color:#0f6e95;font-weight:700;letter-spacing:.4px;text-transform:uppercase;font-size:12px}
.blog-index-card h3{margin:0;color:#071827;font-size:22px;line-height:1.18;font-weight:650;letter-spacing:-.35px}
.blog-index-card p{margin:0;color:#526372;font-size:16px;line-height:1.65;font-weight:400}
.blog-index-card b{margin-top:6px;color:#0f6e95;font-weight:700}
.article-shell{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:34px;align-items:start}
.article-main{background:#fff;border:1px solid rgba(12,34,53,.09);border-radius:34px;padding:38px;box-shadow:0 16px 48px rgba(12,34,53,.06)}
.article-main .lead{font-size:19px;line-height:1.8;color:#405466;margin:0 0 22px;font-weight:400}
.article-main h2{font-size:clamp(25px,3vw,36px);line-height:1.18;margin:34px 0 14px;color:#071827;font-weight:700;letter-spacing:-.7px}
.article-main p,.article-main li{font-size:17px;line-height:1.8;color:#43576a;font-weight:400}
.article-main ul{padding-left:20px}
.article-note{background:#f1f9fc;border:1px solid rgba(15,110,149,.14);border-radius:24px;padding:22px;margin:24px 0;color:#24475d}
.article-side{position:sticky;top:110px;display:grid;gap:18px}
.article-side-card{background:#08263b;color:#fff;border-radius:28px;padding:24px;box-shadow:0 18px 50px rgba(8,38,59,.16)}
.article-side-card h3{margin:0 0 12px;color:#fff;font-size:22px;font-weight:650}
.article-side-card a{display:block;color:#dff7ff;text-decoration:none;border-top:1px solid rgba(255,255,255,.15);padding:11px 0;font-weight:500}
.article-side-card p{color:#d9eef5;line-height:1.7;font-size:15px}
.article-faq{display:grid;gap:12px;margin-top:22px}
.article-faq details{background:#f8fbfd;border:1px solid rgba(12,34,53,.09);border-radius:18px;padding:18px}
.article-faq summary{cursor:pointer;color:#071827;font-weight:650}
.article-faq p{margin:12px 0 0;font-size:16px}
.related-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:24px}
.related-grid a{background:#fff;border:1px solid rgba(12,34,53,.09);border-radius:20px;padding:18px;text-decoration:none;color:#071827;font-weight:650;box-shadow:0 12px 32px rgba(12,34,53,.05)}
@media(max-width:1024px){.blog-index-grid,.related-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.article-shell{grid-template-columns:1fr}.article-side{position:static}}
@media(max-width:680px){.blog-index-grid,.related-grid{grid-template-columns:1fr}.article-main{padding:24px;border-radius:26px}.blog-index-card img{height:150px}}


/* PRO PVC Perde logo placement - final */
.ap-logo{
  min-width:160px!important;
  max-width:205px!important;
  gap:0!important;
}
.ap-logo-img{
  display:block!important;
  width:auto!important;
  height:58px!important;
  max-width:160px!important;
  object-fit:contain!important;
}
.footer-logo-img{
  display:inline-flex!important;
  align-items:center!important;
  margin-bottom:18px!important;
}
.footer-logo-img img{
  width:auto!important;
  height:54px!important;
  max-width:170px!important;
  object-fit:contain!important;
}
@media(max-width:980px){
  .ap-logo{min-width:auto!important;max-width:170px!important;}
  .ap-logo-img{height:50px!important;max-width:145px!important;}
}
@media(max-width:640px){
  .ap-logo-img{height:44px!important;max-width:132px!important;}
  .footer-logo-img img{height:48px!important;max-width:150px!important;}
}

.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important;}


/* Teklif Al quick contact panel - final */
.quick-contact-panel{
  margin-top:26px;
  background:linear-gradient(145deg,#ffffff 0%,#f7fbfd 100%);
  border:1px solid rgba(12,34,53,.09);
  border-radius:30px;
  padding:28px;
  box-shadow:0 18px 54px rgba(12,34,53,.08);
}
.quick-contact-head span{
  display:inline-flex;
  align-items:center;
  width:max-content;
  padding:7px 12px;
  border-radius:999px;
  background:#eaf7fc;
  color:#0f6e95;
  font-size:12px;
  line-height:1;
  font-weight:700;
  letter-spacing:.7px;
  text-transform:uppercase;
}
.quick-contact-head h3{
  margin:14px 0 8px;
  color:#071827;
  font-size:clamp(24px,2.4vw,32px);
  line-height:1.12;
  font-weight:700;
  letter-spacing:-.6px;
}
.quick-contact-head p{
  margin:0;
  color:#52677a;
  font-size:16px;
  line-height:1.65;
  font-weight:400;
}
.quick-contact-grid{
  display:grid;
  gap:13px;
  margin-top:20px;
}
.quick-contact-card{
  position:relative;
  display:grid;
  gap:5px;
  padding:18px 20px 18px 22px;
  border:1px solid rgba(15,110,149,.14);
  border-radius:22px;
  background:#fff;
  color:#071827;
  text-decoration:none;
  box-shadow:0 12px 32px rgba(12,34,53,.05);
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
  overflow:hidden;
}
.quick-contact-card:before{
  content:"";
  position:absolute;
  left:0;
  top:18px;
  bottom:18px;
  width:4px;
  border-radius:0 999px 999px 0;
  background:#0f6e95;
}
.quick-contact-card:hover{
  transform:translateY(-2px);
  border-color:rgba(15,110,149,.28);
  box-shadow:0 18px 44px rgba(12,34,53,.09);
}
.quick-contact-card b{
  color:#0f6e95;
  font-size:14px;
  font-weight:650;
  letter-spacing:.2px;
}
.quick-contact-card strong{
  color:#071827;
  font-size:22px;
  line-height:1.1;
  font-weight:700;
}
.quick-contact-card small{
  color:#637789;
  font-size:14px;
  line-height:1.45;
  font-weight:400;
}
@media(max-width:680px){
  .quick-contact-panel{padding:22px;border-radius:24px}
  .quick-contact-card strong{font-size:20px}
}

/* Mobile services dropdown scroll fix - design preserved */
@media (max-width: 980px){
  .ap-nav.open{
    max-height:calc(100vh - 96px)!important;
    overflow-y:auto!important;
    overflow-x:hidden!important;
    -webkit-overflow-scrolling:touch!important;
    overscroll-behavior:contain!important;
    padding-bottom:26px!important;
  }
  .ap-nav.open ul{
    padding-bottom:10px!important;
  }
  .ap-dropdown.open .ap-mega{
    display:grid!important;
    max-height:none!important;
    overflow:visible!important;
  }
  .ap-dropdown.open .ap-mega-links{
    max-height:none!important;
    overflow:visible!important;
  }
  .ap-dropdown.open .ap-mega-links a{
    min-height:auto!important;
  }
}

/* FINAL MOBILE DROPDOWN SCROLL CONTROL - design preserved */
@media (max-width: 980px){
  .ap-header,
  .ap-mainbar,
  .ap-main-inner{
    overflow:visible!important;
  }
  .ap-nav.open{
    display:block!important;
    overflow-y:auto!important;
    overflow-x:hidden!important;
    -webkit-overflow-scrolling:touch!important;
    touch-action:pan-y!important;
    overscroll-behavior-y:contain!important;
    padding-bottom:72px!important;
  }
  .ap-nav.open > ul{
    display:block!important;
    padding-bottom:44px!important;
  }
  .ap-dropdown.open .ap-mega,
  .ap-dropdown.open .ap-mega-links{
    overflow:visible!important;
    max-height:none!important;
  }
}

/* === MOBILE HERO SLIDER REFINEMENT FINAL === */
@media(max-width:680px){
  .ac2-hero{background:#071827!important;}
  .ac2-slider{
    height:585px!important;
    min-height:585px!important;
    overflow:hidden!important;
    background:#071827!important;
  }
  .ac2-slide-grid{
    height:100%!important;
    display:flex!important;
    align-items:flex-start!important;
    justify-content:flex-start!important;
    padding:42px 22px 76px!important;
  }
  .ac2-bg{
    object-fit:cover!important;
    object-position:66% center!important;
    opacity:.58!important;
    filter:saturate(.92) contrast(1.05)!important;
    transform:scale(1.01)!important;
  }
  .ac2-slide.is-active .ac2-bg{transform:scale(1.018)!important;}
  .ac2-shade,
  .ac2-shade.cold,
  .ac2-shade.frigo,
  .ac2-shade.partition,
  .ac2-shade.welding{
    background:
      linear-gradient(180deg,rgba(7,24,39,.96) 0%,rgba(7,24,39,.82) 48%,rgba(7,24,39,.66) 100%),
      linear-gradient(90deg,rgba(7,24,39,.96) 0%,rgba(7,24,39,.76) 62%,rgba(7,24,39,.42) 100%)!important;
  }
  .ac2-copy{
    width:100%!important;
    max-width:100%!important;
    padding:0!important;
    color:#fff!important;
  }
  .ac2-kicker{
    max-width:100%!important;
    white-space:normal!important;
    font-size:10.5px!important;
    line-height:1.25!important;
    letter-spacing:.08em!important;
    padding:8px 12px!important;
    margin-bottom:16px!important;
    background:rgba(255,255,255,.13)!important;
  }
  .ac2-copy h1,
  .ac2-copy h2{
    font-size:31px!important;
    line-height:1.08!important;
    letter-spacing:-.8px!important;
    margin:0 0 16px!important;
    max-width:360px!important;
    text-shadow:0 16px 44px rgba(0,0,0,.42)!important;
  }
  .ac2-copy p{
    font-size:14.5px!important;
    line-height:1.58!important;
    max-width:350px!important;
    margin:0 0 22px!important;
    color:rgba(255,255,255,.88)!important;
    font-weight:500!important;
  }
  .ac2-slide-buttons{
    display:flex!important;
    flex-direction:column!important;
    align-items:flex-start!important;
    gap:10px!important;
    margin-top:0!important;
  }
  .ac2-slide-buttons .btn,
  .ac2-slide-buttons .btn-xl{
    width:min(275px,100%)!important;
    min-height:50px!important;
    padding:13px 18px!important;
    font-size:14px!important;
    justify-content:center!important;
    border-radius:999px!important;
  }
  .ac2-slide-buttons .btn-light{
    width:min(245px,100%)!important;
    background:rgba(255,255,255,.96)!important;
  }
  .ac2-specs{display:none!important;}
  .ac2-arrow{display:none!important;}
  .ac2-dots{bottom:18px!important;gap:7px!important;}
  .ac2-dots button{width:22px!important;height:5px!important;}
  .ac2-dots button.is-active{width:38px!important;}
  .sticky-cta{z-index:20!important;}
}

@media(max-width:390px){
  .ac2-slider{height:600px!important;min-height:600px!important;}
  .ac2-copy h1,.ac2-copy h2{font-size:29px!important;max-width:330px!important;}
  .ac2-copy p{font-size:14px!important;max-width:320px!important;}
}

/* === FINAL MOBILE SLIDER REWORK - desktop preserved === */
@media (max-width: 680px){
  .ac2-hero{
    background:#071827!important;
  }
  .ac2-slider{
    height:600px!important;
    min-height:600px!important;
    border-radius:0!important;
    overflow:hidden!important;
    background:linear-gradient(180deg,#071827,#0b3047)!important;
  }
  .ac2-slide-grid{
    width:100%!important;
    max-width:100%!important;
    height:100%!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    padding:26px 18px 52px!important;
    box-sizing:border-box!important;
  }
  .ac2-bg{
    object-fit:cover!important;
    object-position:72% center!important;
    opacity:.40!important;
    filter:saturate(.92) contrast(1.03)!important;
    transform:scale(1.02)!important;
  }
  .ac2-slide.is-active .ac2-bg{
    transform:scale(1.02)!important;
  }
  .ac2-shade,
  .ac2-shade.cold,
  .ac2-shade.frigo,
  .ac2-shade.partition,
  .ac2-shade.welding{
    background:
      radial-gradient(circle at 78% 36%,rgba(133,211,235,.20),transparent 36%),
      linear-gradient(180deg,rgba(7,24,39,.80) 0%,rgba(7,24,39,.92) 70%,rgba(7,24,39,.98) 100%),
      linear-gradient(90deg,rgba(7,24,39,.98) 0%,rgba(7,24,39,.78) 58%,rgba(7,24,39,.45) 100%)!important;
  }
  .ac2-copy{
    position:relative!important;
    width:100%!important;
    max-width:420px!important;
    left:auto!important;
    top:auto!important;
    transform:none!important;
    padding:22px 18px 20px!important;
    border-radius:28px!important;
    background:rgba(7,24,39,.58)!important;
    border:1px solid rgba(255,255,255,.16)!important;
    box-shadow:0 22px 70px rgba(0,0,0,.26)!important;
    backdrop-filter:blur(12px)!important;
    -webkit-backdrop-filter:blur(12px)!important;
    color:#fff!important;
  }
  .ac2-kicker{
    display:inline-flex!important;
    max-width:100%!important;
    white-space:normal!important;
    font-size:10px!important;
    line-height:1.25!important;
    letter-spacing:.08em!important;
    padding:8px 11px!important;
    margin:0 0 14px!important;
    color:#dff8ff!important;
    background:rgba(255,255,255,.12)!important;
    border:1px solid rgba(255,255,255,.22)!important;
    border-radius:999px!important;
  }
  .ac2-copy h1,
  .ac2-copy h2{
    font-size:29px!important;
    line-height:1.08!important;
    letter-spacing:-.7px!important;
    max-width:100%!important;
    margin:0 0 14px!important;
    color:#fff!important;
    text-shadow:none!important;
  }
  .ac2-copy p{
    font-size:14px!important;
    line-height:1.56!important;
    max-width:100%!important;
    margin:0 0 18px!important;
    color:rgba(255,255,255,.86)!important;
    font-weight:450!important;
  }
  .ac2-slide-buttons{
    display:flex!important;
    flex-direction:column!important;
    gap:10px!important;
    margin:0!important;
    width:100%!important;
  }
  .ac2-slide-buttons .btn,
  .ac2-slide-buttons .btn-xl{
    width:100%!important;
    min-height:48px!important;
    padding:12px 16px!important;
    font-size:14px!important;
    border-radius:999px!important;
    justify-content:center!important;
  }
  .ac2-slide-buttons .btn-light{
    background:rgba(255,255,255,.96)!important;
    color:#071827!important;
  }
  .ac2-specs,
  .ac2-arrow{
    display:none!important;
  }
  .ac2-dots{
    bottom:18px!important;
    gap:7px!important;
  }
  .ac2-dots button{
    width:22px!important;
    height:5px!important;
    background:rgba(255,255,255,.34)!important;
  }
  .ac2-dots button.is-active{
    width:38px!important;
    background:#fff!important;
  }
  .sticky-cta{
    display:none!important;
  }
}
@media (max-width:390px){
  .ac2-slider{height:590px!important;min-height:590px!important;}
  .ac2-slide-grid{padding:22px 14px 48px!important;}
  .ac2-copy{border-radius:24px!important;padding:20px 16px 18px!important;}
  .ac2-copy h1,.ac2-copy h2{font-size:27px!important;}
  .ac2-copy p{font-size:13.5px!important;}
}


/* === ONLY SLIDER SECTOR VISUAL UPDATE - FINAL ===
   Mevcut sayfa tasarımı korunur; sadece ana sayfa slider arka planları ve mobil slider dengesi revize edilir. */
.ac2-hero{background:#071827!important;}
.ac2-slider{height:clamp(620px,72vh,760px)!important;min-height:620px!important;background:#071827!important;}
.ac2-bg{object-fit:cover!important;object-position:center center!important;filter:saturate(1.05) contrast(1.04) brightness(.94)!important;transform:scale(1.01)!important;}
.ac2-slide.is-active .ac2-bg{transform:scale(1.035)!important;transition:transform 7s ease!important;}
.ac2-shade{background:linear-gradient(90deg,rgba(7,24,39,.95) 0%,rgba(7,24,39,.82) 34%,rgba(7,24,39,.48) 54%,rgba(7,24,39,.16) 76%,rgba(7,24,39,.06) 100%)!important;}
.ac2-shade.cold,.ac2-shade.frigo,.ac2-shade.partition{background:linear-gradient(90deg,rgba(4,20,34,.96) 0%,rgba(7,45,68,.82) 35%,rgba(13,82,110,.42) 58%,rgba(13,82,110,.12) 78%,rgba(13,82,110,.04) 100%)!important;}
.ac2-shade.welding{background:linear-gradient(90deg,rgba(13,13,18,.96) 0%,rgba(30,17,14,.84) 35%,rgba(82,34,16,.42) 58%,rgba(140,72,24,.14) 78%,rgba(140,72,24,.06) 100%)!important;}
.ac2-copy{max-width:660px!important;}
.ac2-copy h1,.ac2-copy h2{text-shadow:0 18px 54px rgba(0,0,0,.42)!important;}
.ac2-copy p{font-weight:450!important;color:rgba(255,255,255,.88)!important;text-shadow:0 10px 28px rgba(0,0,0,.32)!important;}
.ac2-specs div{background:rgba(255,255,255,.90)!important;}
@media(max-width:680px){
  .ac2-slider{height:640px!important;min-height:640px!important;}
  .ac2-bg{object-position:64% center!important;filter:saturate(1.02) contrast(1.02) brightness(.72)!important;}
  .ac2-shade,.ac2-shade.cold,.ac2-shade.frigo,.ac2-shade.partition,.ac2-shade.welding{background:linear-gradient(180deg,rgba(7,24,39,.86) 0%,rgba(7,24,39,.72) 44%,rgba(7,24,39,.52) 100%)!important;}
  .ac2-slide-grid{align-items:flex-start!important;padding-top:96px!important;}
  .ac2-copy{width:auto!important;max-width:none!important;padding:0 18px!important;}
  .ac2-kicker{font-size:10px!important;padding:8px 11px!important;max-width:100%!important;}
  .ac2-copy h1,.ac2-copy h2{font-size:34px!important;line-height:1.08!important;letter-spacing:-1.1px!important;margin:18px 0 16px!important;}
  .ac2-copy p{font-size:15px!important;line-height:1.62!important;margin-bottom:20px!important;}
  .ac2-slide-buttons{gap:10px!important;}
  .ac2-slide-buttons .btn{width:auto!important;min-height:46px!important;padding:12px 16px!important;font-size:13px!important;}
  .ac2-dots{bottom:18px!important;}
}
@media(max-width:420px){
  .ac2-slider{height:610px!important;min-height:610px!important;}
  .ac2-slide-grid{padding-top:82px!important;}
  .ac2-copy h1,.ac2-copy h2{font-size:31px!important;}
  .ac2-copy p{font-size:14px!important;}
}


/* === REGION PAGES PROFESSIONAL Hizmet Bölgesi LAYOUT === */
.region-page{background:#fff;color:#0c2235}.region-hero{position:relative;overflow:hidden;background:radial-gradient(circle at 72% 20%,rgba(15,110,149,.18),transparent 34%),linear-gradient(135deg,#eef8ff 0%,#fff 58%,#f6fbff 100%);border-bottom:1px solid rgba(12,34,53,.08);padding:58px 0 44px}.region-hero:after{content:"";position:absolute;inset:auto -8% -38% 52%;height:420px;background:url('../img/proje-depo-kapisi-pvc-perde.svg') center/contain no-repeat;opacity:.13;pointer-events:none}.region-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1.18fr) 390px;gap:42px;align-items:center}.region-breadcrumb{display:flex;flex-wrap:wrap;gap:9px;align-items:center;font-size:13px;font-weight:700;margin-bottom:22px;color:#53697b}.region-breadcrumb a{color:#53697b;text-decoration:none}.region-breadcrumb strong{color:#0c2235}.region-badge,.section-kicker,.quote-mini{display:inline-flex;align-items:center;gap:8px;border:1px solid rgba(18,77,115,.14);background:rgba(255,255,255,.72);color:#124d73;border-radius:999px;padding:9px 13px;font-size:12px;font-weight:900;letter-spacing:.2px;text-transform:uppercase}.region-hero h1{max-width:820px;margin:16px 0 16px;font-size:clamp(38px,5vw,68px);line-height:1.02;letter-spacing:-2.4px;color:#092338}.region-hero p{max-width:840px;margin:0;color:#41566a;font-size:18px;line-height:1.78}.region-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:28px}.region-metrics{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;margin-top:26px;max-width:900px}.region-metrics span{background:#fff;border:1px solid rgba(12,34,53,.08);border-radius:16px;padding:13px 14px;font-size:13px;font-weight:800;color:#25445c;box-shadow:0 10px 28px rgba(12,34,53,.05)}.region-quote-card{background:#fff;border:1px solid rgba(12,34,53,.09);border-radius:30px;padding:30px;box-shadow:0 24px 70px rgba(12,34,53,.12)}.region-quote-card h2{font-size:28px;line-height:1.12;margin:14px 0 16px;letter-spacing:-.8px}.region-quote-card ul{list-style:none;margin:0 0 22px;padding:0;display:grid;gap:12px}.region-quote-card li{position:relative;padding-left:28px;color:#41566a;font-weight:650;line-height:1.45}.region-quote-card li:before{content:"✓";position:absolute;left:0;top:0;width:19px;height:19px;border-radius:50%;display:grid;place-items:center;background:#e7f5fb;color:#0f6e95;font-size:12px;font-weight:900}.region-tabs{position:sticky;top:0;z-index:20;background:rgba(255,255,255,.92);backdrop-filter:blur(10px);border-bottom:1px solid rgba(12,34,53,.08)}.region-tabs .container{display:flex;gap:8px;overflow-x:auto;padding-top:12px;padding-bottom:12px}.region-tabs a{white-space:nowrap;text-decoration:none;color:#25445c;font-weight:800;font-size:13px;border-radius:999px;padding:10px 14px;background:#f3f8fb;border:1px solid rgba(12,34,53,.06)}.region-section{padding:70px 0}.region-soft{background:linear-gradient(180deg,#f7fbfe,#fff)}.region-split,.region-process,.region-answer-box{display:grid;grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);gap:36px;align-items:start}.region-section h2{font-size:clamp(28px,3.2vw,44px);line-height:1.12;letter-spacing:-1.25px;margin:14px 0 14px;color:#0c2235}.region-section p{font-size:17px;line-height:1.78;color:#526372;margin:0}.region-feature-list{display:grid;gap:16px}.region-feature-list article,.region-product-grid article,.region-steps div,.region-answer-mini{background:#fff;border:1px solid rgba(12,34,53,.08);border-radius:24px;padding:24px;box-shadow:0 18px 48px rgba(12,34,53,.07)}.region-feature-list b,.region-steps b{width:40px;height:40px;border-radius:14px;background:#0f3a55;color:#fff;display:grid;place-items:center;margin-bottom:13px}.region-feature-list h3,.region-product-grid h3{margin:0 0 8px;color:#0c2235;font-size:21px;letter-spacing:-.35px}.region-product-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px;margin-top:24px}.region-product-grid img{width:100%;height:190px;object-fit:cover;border-radius:18px;background:#eef6fb;margin-bottom:18px}.region-product-grid a{display:inline-flex;margin-top:16px;color:#124d73;font-weight:900;text-decoration:none}.region-steps{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.region-steps strong{display:block;font-size:18px;color:#0c2235;margin-bottom:8px}.region-steps span{display:block;color:#526372;line-height:1.55}.region-answer{background:linear-gradient(135deg,#0c2235,#0f6e95);color:#fff}.region-answer h2,.region-answer p{color:#fff}.region-answer .section-kicker{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.24);color:#e7f8ff}.region-answer-mini{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.18);box-shadow:none}.region-answer-mini strong{display:block;color:#fff;font-size:20px;margin-bottom:10px}.region-faq{display:grid;gap:12px;margin-top:22px}.region-faq details{background:#fff;border:1px solid rgba(12,34,53,.09);border-radius:18px;padding:18px 22px;box-shadow:0 12px 30px rgba(12,34,53,.05)}.region-faq summary{cursor:pointer;font-weight:900;color:#0c2235}.region-faq p{margin-top:12px}.region-near-links{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}.region-near-links a{display:inline-flex;align-items:center;gap:8px;text-decoration:none;border:1px solid rgba(18,77,115,.14);background:#fff;border-radius:999px;padding:11px 15px;color:#124d73;font-weight:850;box-shadow:0 10px 24px rgba(12,34,53,.05)}.region-near-links a:before{content:"⌖";font-size:13px}.region-near-links a.all{background:#0f3a55;color:#fff;border-color:#0f3a55}.regions-index-hero{background:linear-gradient(135deg,#0c2235,#0f6e95);color:#fff;padding:70px 0}.regions-index-hero h1{font-size:clamp(38px,5vw,66px);line-height:1.02;letter-spacing:-2px;margin:12px 0}.regions-index-hero p{max-width:850px;color:rgba(255,255,255,.86);font-size:18px;line-height:1.75}.regions-index-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.regions-index-grid a{display:block;text-decoration:none;background:#fff;border:1px solid rgba(12,34,53,.08);border-radius:16px;padding:16px;font-weight:500;color:#0c2235;box-shadow:0 12px 28px rgba(12,34,53,.05)}@media(max-width:1024px){.region-hero-grid,.region-split,.region-process,.region-answer-box{grid-template-columns:1fr}.region-metrics,.region-product-grid,.region-steps,.regions-index-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.region-quote-card{max-width:620px}}@media(max-width:680px){.region-hero{padding:42px 0 34px}.region-hero h1{font-size:36px;letter-spacing:-1.3px}.region-hero p,.region-section p{font-size:15.5px}.region-metrics,.region-product-grid,.region-steps,.regions-index-grid{grid-template-columns:1fr}.region-section{padding:48px 0}.region-quote-card{padding:22px;border-radius:22px}.region-tabs{position:relative}.region-product-grid img{height:160px}.region-actions .btn{width:100%;justify-content:center}}


/* Montaj ve Nakliye sayfasi - yayin tasarimi */
.install-page{background:#fff;color:#0c2235}.install-hero{position:relative;overflow:hidden;padding:64px 0 52px;background:radial-gradient(circle at 74% 14%,rgba(15,110,149,.18),transparent 34%),linear-gradient(135deg,#eef8ff 0%,#fff 58%,#f6fbff 100%);border-bottom:1px solid rgba(12,34,53,.08)}.install-hero:after{content:"";position:absolute;right:-6%;bottom:-34%;width:720px;height:520px;background:url('../img/proje-lojistik-depo-pvc-perde.svg') center/contain no-repeat;opacity:.14;pointer-events:none}.install-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1.15fr) 410px;gap:44px;align-items:center}.install-breadcrumb{display:flex;flex-wrap:wrap;gap:9px;align-items:center;margin-bottom:20px;font-size:13px;font-weight:700;color:#53697b}.install-breadcrumb a{text-decoration:none;color:#53697b}.install-breadcrumb strong{color:#0c2235}.install-badge{display:inline-flex;border:1px solid rgba(18,77,115,.14);background:rgba(255,255,255,.74);color:#124d73;border-radius:999px;padding:9px 13px;font-size:12px;font-weight:900;letter-spacing:.2px;text-transform:uppercase}.install-hero h1{max-width:850px;margin:16px 0 16px;font-size:clamp(38px,5vw,68px);line-height:1.02;letter-spacing:-2.35px;color:#092338}.install-hero p{max-width:820px;margin:0;color:#41566a;font-size:18px;line-height:1.78}.install-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:28px}.install-proof{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin-top:26px;max-width:840px}.install-proof span{background:#fff;border:1px solid rgba(12,34,53,.08);border-radius:16px;padding:13px 14px;font-size:13px;font-weight:700;color:#25445c;box-shadow:0 10px 28px rgba(12,34,53,.05)}.install-quote-card{background:#fff;border:1px solid rgba(12,34,53,.09);border-radius:30px;padding:30px;box-shadow:0 24px 70px rgba(12,34,53,.12)}.install-card-kicker{display:inline-flex;background:#eef8ff;color:#124d73;border-radius:999px;padding:8px 12px;font-size:12px;font-weight:800}.install-quote-card h2{font-size:28px;line-height:1.12;margin:14px 0 16px;letter-spacing:-.8px;color:#0c2235}.install-quote-card ul{list-style:none;margin:0 0 22px;padding:0;display:grid;gap:12px}.install-quote-card li{position:relative;padding-left:28px;color:#41566a;font-weight:600;line-height:1.45}.install-quote-card li:before{content:"✓";position:absolute;left:0;top:0;width:19px;height:19px;border-radius:50%;display:grid;place-items:center;background:#e7f5fb;color:#0f6e95;font-size:12px;font-weight:900}.install-tabs{position:sticky;top:0;z-index:20;background:rgba(255,255,255,.92);backdrop-filter:blur(10px);border-bottom:1px solid rgba(12,34,53,.08)}.install-tabs .container{display:flex;gap:8px;overflow-x:auto;padding-top:12px;padding-bottom:12px}.install-tabs a{white-space:nowrap;text-decoration:none;color:#25445c;font-weight:700;font-size:13px;border-radius:999px;padding:10px 14px;background:#f3f8fb;border:1px solid rgba(12,34,53,.06)}.install-section{padding:70px 0}.install-soft{background:linear-gradient(180deg,#f7fbfe,#fff)}.install-split,.install-answer-box{display:grid;grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);gap:36px;align-items:start}.install-section h2{font-size:clamp(28px,3.2vw,44px);line-height:1.12;letter-spacing:-1.2px;margin:14px 0 14px;color:#0c2235}.install-section p{font-size:17px;line-height:1.78;color:#526372;margin:0}.install-steps{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.install-steps article,.install-card-grid article,.install-mini-list div{background:#fff;border:1px solid rgba(12,34,53,.08);border-radius:24px;padding:24px;box-shadow:0 18px 48px rgba(12,34,53,.07)}.install-steps b{width:40px;height:40px;border-radius:14px;background:#0f3a55;color:#fff;display:grid;place-items:center;margin-bottom:13px}.install-steps h3,.install-card-grid h3{margin:0 0 8px;color:#0c2235;font-size:21px;letter-spacing:-.35px}.install-heading{max-width:850px;margin-bottom:24px}.install-card-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.install-card-grid img{width:100%;height:190px;object-fit:contain;border-radius:18px;background:#eef6fb;margin-bottom:18px}.install-mini-list{display:grid;gap:14px}.install-mini-list strong{display:block;color:#0c2235;font-size:19px;margin-bottom:8px}.install-mini-list span{display:block;color:#526372;line-height:1.6}.install-dark{background:linear-gradient(135deg,#0c2235,#0f6e95);color:#fff}.install-dark h2,.install-dark p{color:#fff}.install-dark .section-kicker{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.24);color:#e7f8ff}.install-region-links{display:flex;flex-wrap:wrap;gap:10px;align-content:start}.install-region-links a{display:inline-flex;align-items:center;gap:8px;text-decoration:none;border:1px solid rgba(255,255,255,.22);background:rgba(255,255,255,.1);border-radius:999px;padding:12px 16px;color:#fff;font-weight:700}.install-region-links a:before{content:"⌖";font-size:13px}.install-region-links a.all{background:#fff;color:#0c2235;border-color:#fff}.install-faq-wrap{max-width:1040px}.install-faq{display:grid;gap:12px;margin-top:20px}.install-faq details{background:#fff;border:1px solid rgba(12,34,53,.09);border-radius:18px;padding:18px 22px;box-shadow:0 12px 30px rgba(12,34,53,.05)}.install-faq summary{cursor:pointer;font-weight:800;color:#0c2235}.install-faq p{margin-top:12px}@media(max-width:1024px){.install-hero-grid,.install-split,.install-answer-box{grid-template-columns:1fr}.install-proof,.install-card-grid,.install-steps{grid-template-columns:repeat(2,minmax(0,1fr))}.install-quote-card{max-width:620px}}@media(max-width:680px){.install-hero{padding:42px 0 34px}.install-hero h1{font-size:36px;letter-spacing:-1.3px}.install-hero p,.install-section p{font-size:15.5px}.install-proof,.install-card-grid,.install-steps{grid-template-columns:1fr}.install-section{padding:48px 0}.install-quote-card{padding:22px;border-radius:22px}.install-tabs{position:relative}.install-card-grid img{height:160px}.install-actions .btn{width:100%;justify-content:center}}

/* === Footer alt satir duzenlemesi: sadece istenen alan === */
.footer-bottom.professional-bottom,
.container.footer-bottom.professional-bottom{
  width:100% !important;
  max-width:none !important;
  margin-left:0 !important;
  margin-right:0 !important;
  padding:22px 32px !important;
  box-sizing:border-box !important;
  display:flex !important;
  justify-content:space-between !important;
  align-items:center !important;
  gap:18px !important;
  color:#aeeaff !important;
  font-size:14px !important;
  font-weight:400 !important;
  line-height:1.4 !important;
  letter-spacing:0 !important;
}
.footer-bottom.professional-bottom span,
.container.footer-bottom.professional-bottom span{
  font-weight:400 !important;
  line-height:1.4 !important;
}
@media(max-width:640px){
  .footer-bottom.professional-bottom,
  .container.footer-bottom.professional-bottom{
    padding:20px 22px !important;
    flex-direction:column !important;
    align-items:flex-start !important;
  }
}


/* Footer phone lines - minimalist contact card update */
.footer-contact-list{font-weight:400}
.footer-contact-list a,.footer-contact-list span{font-weight:400}
.footer-contact-list .footer-phone-line{display:grid;gap:1px;line-height:1.35;text-decoration:none}
.footer-contact-list .footer-phone-line small{font-size:12px;letter-spacing:.01em;color:#9bdcff;font-weight:400}
.footer-contact-list .footer-phone-line span{font-size:14px;color:#dcf7ff!important;font-weight:400}


/* Minimal footer social links */
.footer-bottom-right{display:flex;align-items:center;gap:16px;flex-wrap:wrap;justify-content:flex-end}
.footer-social-links{display:flex;align-items:center;gap:8px}
.footer-social-links a{width:28px;height:28px;border:1px solid rgba(185,233,255,.28);border-radius:50%;display:inline-flex;align-items:center;justify-content:center;color:#b9e9ff;background:rgba(255,255,255,.03);line-height:1;transition:background .2s ease,border-color .2s ease,transform .2s ease}
.footer-social-links a:hover{background:rgba(185,233,255,.12);border-color:rgba(185,233,255,.52);transform:translateY(-1px)}
.footer-social-links svg{width:14px;height:14px;fill:currentColor;display:block}
@media (max-width:640px){.footer-bottom-right{justify-content:flex-start}.footer-social-links a{width:26px;height:26px}}

/* Footer sosyal medya ikon boyutu duzeltmesi - sadece ikon alanina uygulanir */
.footer-social-links{
  display:flex !important;
  align-items:center !important;
  gap:8px !important;
}
.footer-social-links a{
  width:28px !important;
  height:28px !important;
  min-width:28px !important;
  min-height:28px !important;
  max-width:28px !important;
  max-height:28px !important;
  padding:0 !important;
  box-sizing:border-box !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  overflow:hidden !important;
}
.footer-social-links svg,
.footer-social-links a svg{
  width:14px !important;
  height:14px !important;
  min-width:14px !important;
  min-height:14px !important;
  max-width:14px !important;
  max-height:14px !important;
  display:block !important;
  flex:0 0 14px !important;
  fill:currentColor !important;
}
.footer-social-block .footer-social-links a{
  width:28px !important;
  height:28px !important;
}


/* Sticky teklif butonu footer ikonlarının üstüne taşındı */
.sticky-cta{
  bottom:86px!important;
}
@media(max-width:680px){
  .sticky-cta{
    bottom:76px!important;
  }
}

/* Footer sosyal medya alanı - tasarıma uygun son düzeltme */
.footer-company .footer-social-block{
  margin-top:18px!important;
  padding-top:14px!important;
  border-top:1px solid rgba(185,233,255,.12)!important;
}
.footer-company .footer-social-block > span{
  display:block!important;
  margin:0 0 10px!important;
  color:#b9e9ff!important;
  font-size:12px!important;
  line-height:1.2!important;
  font-weight:500!important;
  letter-spacing:.01em!important;
}
.footer-company .footer-social-links{
  display:flex!important;
  align-items:center!important;
  gap:8px!important;
  flex-wrap:wrap!important;
}
.footer-company .footer-social-links a{
  width:30px!important;
  height:30px!important;
  min-width:30px!important;
  min-height:30px!important;
  max-width:30px!important;
  max-height:30px!important;
  padding:0!important;
  border:1px solid rgba(185,233,255,.26)!important;
  border-radius:9px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  color:#b9e9ff!important;
  background:rgba(255,255,255,.035)!important;
  line-height:1!important;
  overflow:hidden!important;
  box-sizing:border-box!important;
  text-decoration:none!important;
}
.footer-company .footer-social-links a:hover{
  color:#ffffff!important;
  border-color:rgba(185,233,255,.48)!important;
  background:rgba(185,233,255,.10)!important;
  transform:translateY(-1px)!important;
}
.footer-company .footer-social-links svg,
.footer-company .footer-social-links a svg{
  width:14px!important;
  height:14px!important;
  min-width:14px!important;
  min-height:14px!important;
  max-width:14px!important;
  max-height:14px!important;
  display:block!important;
  flex:0 0 14px!important;
  fill:currentColor!important;
}
.footer-bottom-right .footer-social-links{display:none!important;}


/* Google Ads landing page */
.ads-hero{position:relative;overflow:hidden;background:linear-gradient(135deg,#0b2f49 0%,#0e4a66 58%,#1190a8 100%);padding:78px 0 62px;color:#fff}
.ads-hero:before{content:"";position:absolute;inset:auto -12% -35% 38%;height:360px;background:rgba(255,255,255,.08);border-radius:999px;filter:blur(4px)}
.ads-hero-grid{position:relative;display:grid;grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr);gap:34px;align-items:center}
.ads-hero h1{font-size:clamp(34px,5vw,62px);line-height:1.04;margin:12px 0 18px;color:#fff;letter-spacing:-.04em}
.ads-hero p{font-size:18px;line-height:1.75;color:#e6f8ff;max-width:760px;margin:0 0 24px}.ads-hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:22px}.ads-trust-row{display:flex;gap:10px;flex-wrap:wrap}.ads-trust-row span{display:inline-flex;align-items:center;border:1px solid rgba(255,255,255,.18);background:rgba(255,255,255,.09);border-radius:999px;padding:9px 13px;color:#eafcff;font-size:13px;font-weight:700}.ads-quick-card{background:#fff;color:#17364b;border-radius:26px;padding:26px;box-shadow:0 24px 70px rgba(4,20,34,.24)}.ads-quick-card>strong{display:block;font-size:22px;margin-bottom:8px}.ads-quick-card p{font-size:14px;line-height:1.7;color:#5c7180;margin:0 0 18px}.ads-quick-card a{display:flex;justify-content:space-between;gap:14px;align-items:center;padding:13px 0;border-top:1px solid #edf2f6;text-decoration:none;color:#143a54}.ads-quick-card small{font-weight:800;color:#6a7f8e}.ads-quick-card b{font-size:15px}.ads-mobile-strip{position:sticky;top:0;z-index:20;display:flex;gap:8px;justify-content:center;background:#fff;border-bottom:1px solid #e8eef3;padding:10px 12px;box-shadow:0 10px 28px rgba(12,35,55,.08)}.ads-mobile-strip a{padding:9px 14px;border-radius:999px;background:#f1f7fa;color:#143a54;text-decoration:none;font-size:13px;font-weight:800}.ads-services-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}.ads-service-card{display:flex;flex-direction:column;min-height:232px;padding:22px;border:1px solid #e6edf2;border-radius:22px;background:#fff;text-decoration:none;color:#17364b;box-shadow:0 14px 34px rgba(14,50,75,.07);transition:.25s ease}.ads-service-card:hover{transform:translateY(-4px);border-color:#b9dde8;box-shadow:0 20px 45px rgba(14,50,75,.12)}.ads-service-card span{align-self:flex-start;background:#eaf7fb;color:#0b7189;border-radius:999px;padding:7px 10px;font-size:12px;font-weight:900;margin-bottom:14px}.ads-service-card h3{font-size:20px;margin:0 0 10px;color:#102f45}.ads-service-card p{font-size:14px;line-height:1.65;color:#607786;margin:0 0 18px}.ads-service-card b{margin-top:auto;color:#0b7f98;font-size:14px}.ads-solution-section{background:#f6fafc}.ads-solution-grid{display:grid;grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);gap:28px;align-items:stretch}.ads-solution-grid article{background:#0c344f;color:#fff;border-radius:26px;padding:32px}.ads-solution-grid article h2{color:#fff;margin:10px 0 12px}.ads-solution-grid article p{color:#dceff7;line-height:1.8}.ads-check-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.ads-check-list div{background:#fff;border:1px solid #e7eef3;border-radius:20px;padding:22px;box-shadow:0 12px 32px rgba(14,50,75,.06)}.ads-check-list b{display:flex;width:38px;height:38px;border-radius:12px;align-items:center;justify-content:center;background:#e8f8fc;color:#0b7f98;margin-bottom:14px}.ads-check-list span{display:block;color:#486171;line-height:1.65;font-weight:650}.ads-use-cases{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}.ads-use-case{padding:24px;border-radius:22px;background:linear-gradient(180deg,#fff,#f8fbfd);border:1px solid #e6edf2}.ads-use-case h3{margin:0 0 10px;color:#102f45}.ads-use-case p{margin:0;color:#607786;line-height:1.7}.ads-final-cta{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:24px;align-items:center;background:linear-gradient(135deg,#0b2f49,#0b7f98);border-radius:28px;padding:34px;color:#fff}.ads-final-cta h2{color:#fff;margin:10px 0}.ads-final-cta p{color:#e1f7ff;line-height:1.75;margin:0}.ads-final-actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}
@media(max-width:980px){.ads-hero{padding:46px 0 34px}.ads-hero-grid,.ads-solution-grid,.ads-final-cta{grid-template-columns:1fr}.ads-services-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.ads-use-cases{grid-template-columns:repeat(2,minmax(0,1fr))}.ads-final-actions{justify-content:flex-start}.ads-mobile-strip{top:0;overflow:auto;justify-content:flex-start}.ads-mobile-strip a{white-space:nowrap}}
@media(max-width:640px){.ads-hero h1{font-size:34px}.ads-hero p{font-size:16px}.ads-hero-actions .btn{width:100%;justify-content:center}.ads-services-grid,.ads-check-list,.ads-use-cases{grid-template-columns:1fr}.ads-service-card{min-height:auto;padding:20px}.ads-quick-card{padding:22px;border-radius:22px}.ads-quick-card a{display:block}.ads-quick-card b{display:block;margin-top:4px}.ads-final-cta{padding:24px;border-radius:22px}.ads-final-actions .btn{width:100%;justify-content:center}}

/* Home material security list revision */
.material-security-list{
  display:grid;
  gap:22px;
}
.material-security-item{
  display:flex;
  align-items:center;
  gap:24px;
  min-height:86px;
  padding:18px 28px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  box-shadow:0 16px 48px rgba(7,55,95,.07);
}
.material-security-item strong{
  flex:0 0 auto;
  display:grid;
  place-items:center;
  width:72px;
  height:72px;
  border-radius:20px;
  background:linear-gradient(135deg,#eef9ff,#dff3fb);
  color:var(--blue-900);
  font-size:32px;
  line-height:1;
  font-weight:950;
  letter-spacing:-1px;
}
.material-security-item span{
  color:var(--blue-950);
  font-size:clamp(20px,2vw,28px);
  line-height:1.35;
  font-weight:700;
}
@media (max-width:700px){
  .material-security-item{
    align-items:flex-start;
    gap:16px;
    padding:18px;
    border-radius:22px;
  }
  .material-security-item strong{
    width:58px;
    height:58px;
    border-radius:16px;
    font-size:25px;
  }
  .material-security-item span{
    font-size:18px;
  }
}

/* Ana sayfa ürün grupları revizyonu */
.product-choice-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
  align-items:stretch;
}
.product-choice-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
}
.product-choice-card ul{
  list-style:none;
  padding:0;
  margin:4px 0 0;
  display:grid;
  gap:10px;
}
.product-choice-card li{
  position:relative;
  padding-left:18px;
  color:#41556a;
  font-size:15px;
  line-height:1.55;
  font-weight:700;
}
.product-choice-card li::before{
  content:"";
  position:absolute;
  left:0;
  top:.72em;
  width:7px;
  height:7px;
  border-radius:50%;
  background:#1f6f93;
  transform:translateY(-50%);
}
.product-choice-action{
  display:flex;
  justify-content:center;
  margin-top:26px;
}
.product-choice-action .btn-primary{
  display:inline-flex;
  align-items:center;
  gap:10px;
}
@media(max-width:1180px){
  .product-choice-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:720px){
  .product-choice-grid{grid-template-columns:1fr;}
}

/* Ana sayfa ürün grupları - görselli 4 kart revizyonu */
.product-choice-panel{
  padding:42px 44px 46px;
  background:linear-gradient(180deg,#ffffff 0%,#f7fbfe 100%);
}
.product-choice-head{
  text-align:center;
  max-width:1120px;
  margin:0 auto 28px;
}
.product-choice-head .kicker{
  display:inline-flex;
  margin-bottom:12px;
}
.product-choice-head .section-text{
  margin:14px auto 0;
  max-width:980px;
}
.product-choice-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
  align-items:stretch;
}
.product-choice-card{
  padding:0!important;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:100%;
  border-radius:22px!important;
  background:#fff!important;
}
.product-choice-media{
  margin:0;
  padding:10px 10px 0;
  height:190px;
}
.product-choice-media img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  border-radius:16px;
  background:#eef6fb;
}
.product-choice-body{
  padding:22px 22px 24px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.product-choice-card h3{
  margin:0 0 16px;
  color:#071827!important;
  font-size:clamp(22px,1.8vw,30px)!important;
  line-height:1.15;
  letter-spacing:-.55px;
}
.product-choice-card ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:9px;
}
.product-choice-card li{
  position:relative;
  padding-left:20px;
  color:#41556a;
  font-size:13.4px;
  line-height:1.42;
  font-weight:700;
}
.product-choice-card li::before{
  content:"";
  position:absolute;
  left:0;
  top:.65em;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#0e7fb1;
  box-shadow:0 0 0 4px rgba(14,127,177,.10);
  transform:translateY(-50%);
}
.product-choice-action{
  display:flex;
  justify-content:center;
  margin-top:32px;
}
.product-choice-btn{
  min-width:360px;
  min-height:64px;
  padding:0 28px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  color:#fff!important;
  text-decoration:none;
  background:linear-gradient(135deg,#0d62d9 0%,#0a8df0 100%);
  box-shadow:0 18px 42px rgba(10,100,210,.25);
  transition:transform .2s ease,box-shadow .2s ease;
}
.product-choice-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 24px 56px rgba(10,100,210,.32);
}
.product-choice-btn strong{
  font-size:20px;
  line-height:1;
  letter-spacing:-.25px;
}
.product-choice-btn-icon{
  width:34px;
  height:34px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:5px;
  flex:0 0 auto;
}
.product-choice-btn-icon span{
  border:2px solid rgba(255,255,255,.9);
  border-radius:5px;
}
.product-choice-btn-arrow{
  font-size:30px;
  line-height:1;
  transform:translateY(-1px);
}
@media(max-width:1280px){
  .product-choice-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .product-choice-media{height:220px;}
  .product-choice-card li{font-size:14px;}
}
@media(max-width:760px){
  .product-choice-panel{padding:26px 16px 30px;}
  .product-choice-grid{grid-template-columns:1fr;gap:18px;}
  .product-choice-media{height:205px;}
  .product-choice-body{padding:20px;}
  .product-choice-card li{font-size:13.5px;}
  .product-choice-btn{min-width:0;width:100%;min-height:58px;padding:0 18px;}
  .product-choice-btn strong{font-size:17px;}
}

/* Home quality and certificate section */
.quality-home-section{padding-top:clamp(48px,6vw,84px);padding-bottom:clamp(48px,6vw,86px)}
.quality-home-panel{background:#fff;border:1px solid rgba(12,34,53,.08);border-radius:34px;padding:clamp(30px,5vw,58px);box-shadow:0 24px 70px rgba(12,34,53,.08);text-align:center;overflow:hidden;position:relative}
.quality-home-panel:before{content:"";position:absolute;inset:-45% auto auto 50%;width:580px;height:580px;transform:translateX(-50%);background:radial-gradient(circle,rgba(15,110,149,.10),transparent 68%);pointer-events:none}
.quality-home-copy,.quality-home-icons,.quality-home-action{position:relative;z-index:1}
.quality-home-copy{max-width:1040px;margin:0 auto}
.quality-home-copy h2{max-width:980px;margin:16px auto 18px;font-size:clamp(30px,3.5vw,48px);line-height:1.12;letter-spacing:-1.45px;color:#0c2235}
.quality-home-copy p{max-width:980px;margin:0 auto;color:#526372;font-size:clamp(15.5px,1.2vw,18px);line-height:1.8;font-weight:600}
.quality-home-icons{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:clamp(14px,2vw,24px);align-items:center;max-width:980px;margin:36px auto 34px}
.quality-home-item{min-height:116px;border:1px solid rgba(12,34,53,.08);border-radius:24px;background:linear-gradient(180deg,#fff,#f7fbfe);display:grid;place-items:center;padding:18px;box-shadow:0 14px 34px rgba(12,34,53,.06)}
.quality-home-item img{width:min(90px,100%);height:90px;object-fit:contain;display:block}
.quality-home-action{display:flex;justify-content:center}
.quality-home-btn{display:inline-flex;align-items:center;justify-content:center;gap:12px;min-height:58px;padding:16px 28px;border-radius:999px;background:#0f3a55;color:#fff;text-decoration:none;font-weight:900;font-size:16px;box-shadow:0 16px 34px rgba(15,58,85,.18);transition:transform .2s ease,background-color .2s ease,box-shadow .2s ease}
.quality-home-btn:hover,.quality-home-btn:focus-visible{background:#0f6e95;transform:translateY(-2px);box-shadow:0 20px 42px rgba(15,58,85,.22)}
@media(max-width:1024px){.quality-home-icons{grid-template-columns:repeat(3,minmax(0,1fr));max-width:620px}.quality-home-copy h2{letter-spacing:-1px}}
@media(max-width:640px){.quality-home-panel{border-radius:26px;padding:28px 18px}.quality-home-icons{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin:28px auto}.quality-home-item{min-height:100px;border-radius:20px;padding:14px}.quality-home-item img{height:74px}.quality-home-btn{width:100%;min-height:56px;font-size:15px}}

/* === Ana sayfa kalite bolumu: daha profesyonel, hafif ve SEO/GEO uyumlu === */
.quality-home-section{
  padding-top:76px!important;
  padding-bottom:76px!important;
  background:linear-gradient(180deg,#f7fbfd 0%,#ffffff 100%)!important;
}
.quality-home-panel{
  position:relative!important;
  overflow:hidden!important;
  border-radius:34px!important;
  padding:62px 56px!important;
  background:linear-gradient(135deg,#ffffff 0%,#f7fcff 54%,#eef8fc 100%)!important;
  border:1px solid rgba(12,34,53,.08)!important;
  box-shadow:0 28px 80px rgba(7,24,39,.09)!important;
  text-align:center!important;
}
.quality-home-panel:before{
  content:""!important;
  position:absolute!important;
  width:420px!important;
  height:420px!important;
  right:-150px!important;
  top:-170px!important;
  border-radius:999px!important;
  background:radial-gradient(circle,rgba(31,111,147,.16),transparent 67%)!important;
  pointer-events:none!important;
}
.quality-home-head{position:relative!important;z-index:1!important;max-width:1050px!important;margin:0 auto!important}
.quality-home-head .kicker{margin-bottom:14px!important}
.quality-home-head h2{
  max-width:980px!important;
  margin:0 auto 18px!important;
  color:#071827!important;
  font-size:clamp(30px,3.7vw,52px)!important;
  line-height:1.08!important;
  letter-spacing:-1.4px!important;
  font-weight:950!important;
}
.quality-home-head p{
  max-width:980px!important;
  margin:0 auto 38px!important;
  color:#42566a!important;
  font-size:clamp(15px,1.35vw,19px)!important;
  line-height:1.78!important;
  font-weight:600!important;
}
.quality-home-icons{
  position:relative!important;
  z-index:1!important;
  display:grid!important;
  grid-template-columns:repeat(6,minmax(0,1fr))!important;
  gap:18px!important;
  margin:0 auto 28px!important;
}
.quality-home-item{
  min-height:154px!important;
  border-radius:24px!important;
  background:#fff!important;
  border:1px solid rgba(12,34,53,.08)!important;
  box-shadow:0 16px 42px rgba(7,24,39,.06)!important;
  padding:20px 14px!important;
  display:flex!important;
  flex-direction:column!important;
  align-items:center!important;
  justify-content:center!important;
  gap:13px!important;
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease!important;
}
.quality-home-item:hover{
  transform:translateY(-5px)!important;
  border-color:rgba(31,111,147,.22)!important;
  box-shadow:0 24px 58px rgba(7,24,39,.10)!important;
}
.quality-home-item img{width:78px!important;height:78px!important;object-fit:contain!important;display:block!important}
.quality-home-item span{color:#0b2d42!important;font-size:13px!important;line-height:1.35!important;font-weight:900!important}
.quality-home-proof{
  position:relative!important;
  z-index:1!important;
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:14px!important;
  max-width:960px!important;
  margin:0 auto 30px!important;
}
.quality-home-proof div{
  border-radius:20px!important;
  background:rgba(255,255,255,.82)!important;
  border:1px solid rgba(12,34,53,.08)!important;
  padding:18px 16px!important;
  box-shadow:0 12px 34px rgba(7,24,39,.05)!important;
}
.quality-home-proof strong{display:block!important;color:#0e5c78!important;font-size:clamp(22px,2.4vw,32px)!important;line-height:1!important;font-weight:950!important;margin-bottom:7px!important}
.quality-home-proof span{display:block!important;color:#566a7a!important;font-size:13px!important;line-height:1.35!important;font-weight:800!important}
.quality-home-button{
  position:relative!important;
  z-index:1!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:12px!important;
  min-height:58px!important;
  padding:17px 28px!important;
  border-radius:16px!important;
  background:linear-gradient(135deg,#071827,#0d5d7b)!important;
  color:#fff!important;
  text-decoration:none!important;
  font-weight:950!important;
  font-size:16px!important;
  box-shadow:0 18px 40px rgba(7,24,39,.16)!important;
  transition:transform .2s ease,box-shadow .2s ease!important;
}
.quality-home-button:hover{transform:translateY(-3px)!important;box-shadow:0 24px 58px rgba(7,24,39,.22)!important}
@media(max-width:1180px){
  .quality-home-icons{grid-template-columns:repeat(3,minmax(0,1fr))!important}
}
@media(max-width:760px){
  .quality-home-section{padding-top:50px!important;padding-bottom:50px!important}
  .quality-home-panel{padding:38px 20px!important;border-radius:26px!important}
  .quality-home-icons{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:12px!important}
  .quality-home-item{min-height:132px!important;padding:16px 10px!important}
  .quality-home-item img{width:62px!important;height:62px!important}
  .quality-home-proof{grid-template-columns:1fr 1fr!important;gap:10px!important}
  .quality-home-button{width:100%!important;max-width:360px!important;font-size:15px!important}
}
@media(max-width:430px){
  .quality-home-icons,.quality-home-proof{grid-template-columns:1fr!important}
}


/* Home FAQ + Technical Knowledge replacement section */
.seo-geo-home-section{background:linear-gradient(180deg,#f6fbfe 0%,#fff 100%)}
.seo-geo-home-grid{display:grid;grid-template-columns:minmax(0,1.06fr) minmax(360px,.94fr);gap:28px;align-items:stretch}
.home-faq-panel,.home-knowledge-panel{background:rgba(255,255,255,.92);border:1px solid rgba(12,34,53,.08);border-radius:34px;padding:34px;box-shadow:0 22px 70px rgba(12,34,53,.08)}
.home-faq-panel h2,.home-knowledge-panel h2{margin:12px 0 14px;color:#071827;font-size:clamp(30px,3.2vw,46px);line-height:1.08;letter-spacing:-1.25px}
.home-faq-list{display:grid;gap:12px;margin-top:22px}
.home-faq-list details{background:#f8fcfe;border:1px solid rgba(15,110,149,.12);border-radius:20px;padding:17px 19px;transition:.22s ease}
.home-faq-list details[open]{background:#fff;box-shadow:0 14px 34px rgba(12,34,53,.06)}
.home-faq-list summary{cursor:pointer;color:#071827;font-weight:800;font-size:16px;line-height:1.35;list-style:none;display:flex;justify-content:space-between;gap:14px}
.home-faq-list summary::-webkit-details-marker{display:none}
.home-faq-list summary:after{content:'+';width:26px;height:26px;border-radius:50%;display:grid;place-items:center;background:#e8f6fc;color:#0f6e95;font-weight:900;flex:0 0 auto}
.home-faq-list details[open] summary:after{content:'−'}
.home-faq-list p{margin:12px 0 0;color:#526372;font-size:15px;line-height:1.72}
.home-knowledge-panel{background:linear-gradient(145deg,#08263b 0%,#0f6e95 100%);color:#fff;overflow:hidden;position:relative}
.home-knowledge-panel:before{content:"";position:absolute;inset:-80px -120px auto auto;width:280px;height:280px;border-radius:50%;background:rgba(255,255,255,.09)}
.home-knowledge-panel .kicker{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.22);color:#dff6ff}
.home-knowledge-panel h2{color:#fff;position:relative}
.home-knowledge-grid{display:grid;gap:12px;margin-top:24px;position:relative}
.home-knowledge-grid a{display:block;text-decoration:none;background:rgba(255,255,255,.09);border:1px solid rgba(255,255,255,.16);border-radius:20px;padding:18px 19px;color:#fff;transition:.22s ease}
.home-knowledge-grid a:hover{transform:translateY(-3px);background:rgba(255,255,255,.13)}
.home-knowledge-grid small{display:block;color:#aee6fb;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.35px;margin-bottom:6px}
.home-knowledge-grid strong{display:block;font-size:19px;line-height:1.22;margin-bottom:7px;color:#fff}
.home-knowledge-grid span{display:block;color:#d8eef7;font-size:14.5px;line-height:1.55}
.home-knowledge-btn{position:relative;margin-top:20px;display:inline-flex;align-items:center;gap:12px;text-decoration:none;background:#fff;color:#0f3a55;border-radius:999px;padding:14px 18px;font-weight:900;box-shadow:0 14px 34px rgba(0,0,0,.13)}
.home-knowledge-btn span{font-size:18px}
@media(max-width:1024px){.seo-geo-home-grid{grid-template-columns:1fr}.home-knowledge-panel{min-height:auto}}
@media(max-width:680px){.home-faq-panel,.home-knowledge-panel{padding:24px;border-radius:26px}.home-faq-panel h2,.home-knowledge-panel h2{font-size:30px}.home-faq-list summary{font-size:15px}.home-knowledge-grid strong{font-size:17px}}


/* Geçiş kontrollü bariyer sistemi - fotoğraf revizyonu */
.live-route{
  grid-template-columns:1.12fr .88fr;
  gap:34px;
}
.route-visual.route-photo{
  min-height:390px;
  padding:0;
  background:#f4fbff;
}
.route-visual.route-photo img{
  width:100%;
  height:100%;
  min-height:390px;
  display:block;
  object-fit:cover;
  object-position:center;
  border-radius:34px;
}
@media (max-width: 900px){
  .live-route{
    grid-template-columns:1fr;
    gap:24px;
  }
  .route-visual.route-photo,
  .route-visual.route-photo img{
    min-height:280px;
  }
}


/* Kullanıcı fotoğrafı tam sığdırma */
.route-visual.route-photo img{
    width:100%;
    height:100%;
    min-height:390px;
    object-fit:cover;
    object-position:center center;
    display:block;
}


/* Geçiş görseli - fotoğraf üst/alt boşluk sıfırlama */
.route-visual.route-photo{
  padding:0 !important;
  min-height:0 !important;
  height:390px !important;
  overflow:hidden !important;
  border-radius:34px !important;
  background:none !important;
  display:block !important;
}

.route-visual.route-photo img{
  width:100% !important;
  height:100% !important;
  min-height:0 !important;
  display:block !important;
  object-fit:cover !important;
  object-position:center center !important;
  border-radius:34px !important;
}

@media (max-width:900px){
  .route-visual.route-photo{
    height:280px !important;
  }
}


@media(max-width:900px){
  .slider-product-menu{
    grid-template-columns:repeat(2,1fr);
  }
  .slider-product-menu a{
    min-height:64px;
    font-size:15px;
  }
}


/* Slider altı ürün menüsü - sade ince ayırıcı çizgi */
.slider-product-menu{
  width:100%;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  background:#ffffff;
  border-top:1px solid #dfe3e6;
  border-bottom:1px solid #eef1f3;
  box-shadow:0 1px 2px rgba(0,0,0,.03);
  position:relative;
  z-index:5;
}
.slider-product-menu a{
  position:relative;
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#071226;
  font-weight:700;
  font-size:17px;
  transition:.25s ease;
  border-right:1px solid #eceff1;
  background:#ffffff;
}
.slider-product-menu a:last-child{
  border-right:none;
}
.slider-product-menu a:hover{
  color:#0a6f9d;
  background:#f8f9fa;
}
.slider-product-menu a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:0;
  height:2px;
  background:#0aa6d8;
  transform:translateX(-50%);
  transition:.25s ease;
}
.slider-product-menu a:hover::after,
.slider-product-menu a.active::after{
  width:52%;
}
.slider-divider,
.hero-divider,
.slider-strip,
.slider-bottom-strip{
  display:none !important;
}
@media(max-width:900px){
  .slider-product-menu{
    grid-template-columns:repeat(2,1fr);
  }
}


/* FINAL FONT REVISION - premium Avenir/Manrope typography */
:root{
  --site-font:"Avenir Next", "Avenir", "Manrope", "Inter", Arial, Helvetica, sans-serif;
  --font-main:var(--site-font);
}
html,body,
body,p,li,span,small,dd,td,th,input,textarea,select,button,a{
  font-family:var(--site-font)!important;
  font-weight:400!important;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
h1,.h1,.page-hero h1,.hero h1,.hero-copy h1,.command-copy h1,.slider-title,.hero-slide h1,.hero-slider-title{
  font-family:var(--site-font)!important;
  font-weight:300!important;
  letter-spacing:-2.1px!important;
  line-height:1.06!important;
}
h2,.h2,.section-title,.rich-content h2{
  font-family:var(--site-font)!important;
  font-weight:400!important;
  letter-spacing:-1.25px!important;
  line-height:1.16!important;
}
h3,.h3,.service-card h3,.choice-card h3,.problem-card h3,.blog-card h3,.product-card h3,.usecase-card h2,.gallery-card b{
  font-family:var(--site-font)!important;
  font-weight:500!important;
  letter-spacing:-.55px!important;
}
h4,h5,h6,.footer h3,.footer h4,.kicker,.eyebrow,.hero-eyebrow{
  font-family:var(--site-font)!important;
  font-weight:500!important;
  letter-spacing:.02em!important;
}
p,.section-text,.lead,.rich-content p,.content p,.hero-slide p,.slider-description,.service-card p,.choice-card p,.problem-card p,.product-card p,.usecase-card p,.industry-grid p,.trust-cards span,.contact-card span,.footer p,.footer li,.footer a,.mega-links span,.hero-mini-cards span,.card p,article p{
  font-family:var(--site-font)!important;
  font-weight:400!important;
  line-height:1.76!important;
  letter-spacing:-.12px!important;
}
.menu a,.menu-clean>li>a,.menu-pro>li>a,.nav a,.topbar a,.nav-actions a,.nav-actions-clean a,.nav-phone,.mobile-toggle,
.btn,.quote-btn,.selector-tabs button,.sidebar a,.faq summary,.link{
  font-family:var(--site-font)!important;
  font-weight:500!important;
  letter-spacing:-.05px!important;
}
.logo,.logo-copy strong{
  font-family:var(--site-font)!important;
  font-weight:700!important;
  letter-spacing:-.35px!important;
}
.logo-copy small{font-weight:500!important;}
.hero-copy h1,.command-copy h1,.hero-slider-title,.hero-slide h1,.slider-title{
  font-size:clamp(38px,4.4vw,66px)!important;
}
.page-hero h1,.inner-hero h1,main h1{
  font-size:clamp(36px,4.05vw,58px)!important;
}
main h2,.section-title{
  font-size:clamp(29px,3.05vw,44px)!important;
}
@media(max-width:640px){
  h1,.page-hero h1,.hero-slider-title,.hero-slide h1,.slider-title{letter-spacing:-1.15px!important;}
  .hero-copy h1,.command-copy h1,.hero-slider-title,.hero-slide h1,.slider-title{font-size:clamp(32px,8.5vw,42px)!important;}
  main h1,.page-hero h1,.inner-hero h1{font-size:clamp(31px,8vw,40px)!important;}
  main h2,.section-title{font-size:clamp(24px,6.8vw,32px)!important;}
}

/* Final homepage product card refinement - smaller headings, full-card links */
.product-choice-grid .product-choice-card{
  text-decoration:none!important;
  color:inherit!important;
  cursor:pointer;
  min-height:100%;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-choice-grid .product-choice-card:hover{
  transform:translateY(-3px);
  border-color:rgba(14,127,177,.20)!important;
  box-shadow:0 18px 42px rgba(7,24,39,.08)!important;
}
.product-choice-grid .product-choice-body{
  padding:18px 20px 22px!important;
}
.product-choice-grid .product-choice-card h3{
  font-size:clamp(20px,1.35vw,25px)!important;
  line-height:1.12!important;
  letter-spacing:-.45px!important;
  margin:0 0 12px!important;
  font-weight:500!important;
}
.product-choice-grid .product-choice-card ul{
  gap:6px!important;
}
.product-choice-grid .product-choice-card li{
  font-size:12.6px!important;
  line-height:1.34!important;
  padding-left:18px!important;
  font-weight:500!important;
}
.product-choice-grid .product-choice-card li::before{
  width:7px!important;
  height:7px!important;
  box-shadow:0 0 0 4px rgba(14,127,177,.09)!important;
}
@media(max-width:1200px){
  .product-choice-grid .product-choice-card h3{font-size:22px!important;}
  .product-choice-grid .product-choice-card li{font-size:12.3px!important;}
}

/* Final product image replacement refinement */
.product-choice-media{
  height:210px!important;
  padding:10px 10px 0!important;
}
.product-choice-media img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  object-position:center!important;
  border-radius:16px!important;
  background:#eef3f6!important;
}
@media(max-width:1200px){
  .product-choice-media{height:200px!important;}
}
@media(max-width:768px){
  .product-choice-media{height:220px!important;}
}

/* Slider ürün menüsü hover açıklama revizyonu */
.slider-product-menu a{
  flex-direction:column;
  gap:6px;
  text-align:center;
  overflow:hidden;
  padding:0 18px;
}
.slider-product-menu a span{
  display:block;
  font:inherit;
  line-height:1.2;
  transition:transform .25s ease, color .25s ease;
}
.slider-product-menu a small{
  display:block;
  max-width:245px;
  font-size:12.5px;
  line-height:1.35;
  font-weight:500;
  color:#526579;
  opacity:0;
  transform:translateY(8px);
  max-height:0;
  transition:opacity .25s ease, transform .25s ease, max-height .25s ease;
}
.slider-product-menu a:hover small,
.slider-product-menu a:focus-visible small{
  opacity:1;
  transform:translateY(0);
  max-height:42px;
}
.slider-product-menu a:hover span,
.slider-product-menu a:focus-visible span{
  transform:translateY(-2px);
}
@media(max-width:900px){
  .slider-product-menu a{
    min-height:72px;
    padding:0 12px;
  }
  .slider-product-menu a small{
    display:none;
  }
}


/* Ana sayfa - endüstriyel kontrol alanı revizyonu */
.industrial-control-section{
  position:relative;
  overflow:hidden;
  padding:92px 0 96px;
  background:
    radial-gradient(circle at 76% 24%,rgba(31,143,176,.10),transparent 34%),
    linear-gradient(180deg,#f7fbfd 0%,#eef6fa 100%);
}
.industrial-control-section:before{
  content:"";
  position:absolute;
  right:-150px;
  top:38px;
  width:560px;
  height:560px;
  border-radius:50%;
  background:linear-gradient(135deg,rgba(31,143,176,.08),rgba(31,111,147,.02));
  pointer-events:none;
}
.industrial-control-card{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1.02fr) minmax(430px,.98fr);
  gap:70px;
  align-items:center;
  padding:0;
  background:transparent;
  border:0;
  box-shadow:none;
  overflow:visible;
}
.industrial-control-collage{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  grid-template-rows:1fr 1fr;
  gap:22px;
  min-height:590px;
}
.industrial-control-collage figure{
  margin:0;
  overflow:hidden;
  background:#fff;
  box-shadow:0 26px 76px rgba(12,34,53,.12);
}
.industrial-collage-main{
  grid-row:1 / span 2;
  min-height:590px;
  border-radius:34px 12px 12px 34px;
}
.industrial-collage-small{
  min-height:284px;
  border-radius:12px;
}
.industrial-control-collage img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  transition:transform .55s ease;
}
.industrial-control-collage figure:hover img{
  transform:scale(1.04);
}
.industrial-control-copy{
  padding:8px 0;
  max-width:760px;
}
.industrial-control-copy .kicker{
  display:inline-flex;
  align-items:center;
  width:max-content;
  margin-bottom:18px;
  padding:7px 0;
  border-bottom:1px solid #2aa6d4;
  color:#08749a;
  background:transparent;
  font-size:13px;
  letter-spacing:.06em;
}
.industrial-control-copy h2{
  margin:0 0 26px;
  max-width:780px;
  font-size:clamp(42px,4.6vw,70px);
  line-height:1.04;
  letter-spacing:-2.65px;
  color:#071827;
}
.industrial-control-copy h2 span{
  color:#1f8eb0;
}
.industrial-control-copy .section-text{
  max-width:720px;
  margin:0 0 22px;
  color:#657381;
  font-size:18px;
  line-height:1.9;
}
.industrial-control-copy .solution-tags{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  margin-top:28px;
  gap:14px;
  max-width:690px;
}
.industrial-control-copy .solution-tags span{
  min-height:48px;
  padding:12px 18px;
  border-radius:999px;
  background:#eaf8fd!important;
  border:1px solid #ccecf6!important;
  color:#0b6f91!important;
  font-size:15px;
  font-weight:850;
  line-height:1.2;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  white-space:nowrap;
  box-shadow:0 10px 26px rgba(15,110,149,.06);
}
.industrial-control-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:30px;
  padding:15px 21px;
  border-radius:999px;
  background:#0f3a55;
  color:#fff;
  text-decoration:none;
  font-weight:900;
  box-shadow:0 18px 42px rgba(15,58,85,.18);
  transition:transform .22s ease, background .22s ease;
}
.industrial-control-link:hover{
  transform:translateY(-2px);
  background:#124d73;
}
.industrial-control-link span{
  font-size:18px;
  line-height:1;
}
@media(max-width:1180px){
  .industrial-control-card{
    gap:42px;
    grid-template-columns:1fr;
  }
  .industrial-control-collage{
    min-height:460px;
  }
  .industrial-collage-main{
    min-height:460px;
  }
  .industrial-control-copy{
    max-width:860px;
  }
}
@media(max-width:760px){
  .industrial-control-section{
    padding:58px 0 64px;
  }
  .industrial-control-card{
    gap:28px;
  }
  .industrial-control-collage{
    grid-template-columns:1fr 1fr;
    grid-template-rows:260px 180px;
    gap:12px;
    min-height:auto;
  }
  .industrial-collage-main{
    grid-column:1 / span 2;
    grid-row:auto;
    min-height:260px;
    border-radius:24px;
  }
  .industrial-collage-small{
    min-height:180px;
    border-radius:20px;
  }
  .industrial-control-copy h2{
    font-size:36px;
    line-height:1.08;
    letter-spacing:-1.35px;
  }
  .industrial-control-copy .section-text{
    font-size:15.5px;
    line-height:1.72;
  }
  .industrial-control-copy .solution-tags{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:10px;
    max-width:100%;
  }
  .industrial-control-copy .solution-tags span{
    min-height:42px;
    font-size:12.5px;
    padding:9px 10px;
    white-space:normal;
  }
}


/* WhatsApp ikonlu hizli iletisim butonu */
.whatsapp-cta{
  text-decoration:none;
  overflow:hidden;
}
.whatsapp-cta-text{
  display:inline-flex;
  align-items:center;
  gap:9px;
  white-space:nowrap;
}
.whatsapp-icon{
  width:22px;
  height:22px;
  flex:0 0 22px;
  fill:#25D366;
  filter:drop-shadow(0 2px 5px rgba(37,211,102,.22));
}
.whatsapp-start{
  display:inline-flex!important;
  align-items:center;
  justify-content:center;
  min-width:86px;
}
.whatsapp-cta:hover .whatsapp-icon{
  transform:scale(1.06);
}
@media(max-width:420px){
  .whatsapp-cta-text{font-size:13px!important;gap:7px}
  .whatsapp-icon{width:20px;height:20px;flex-basis:20px}
  .whatsapp-start{min-width:74px}
}

/* Slider altı güven ve hizmet şeridi */
.home-trust-strip{
  background:linear-gradient(180deg,#ffffff 0%,#f7fbfe 100%);
  border-top:1px solid rgba(10,60,92,.08);
  border-bottom:1px solid rgba(10,60,92,.08);
  padding:18px 0 22px;
}
.home-trust-strip .container{
  max-width:1420px;
}
.trust-features{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:0;
  align-items:stretch;
  border-bottom:1px solid rgba(10,60,92,.12);
  padding-bottom:16px;
}
.trust-feature{
  display:flex;
  align-items:center;
  gap:16px;
  min-height:72px;
  padding:4px 24px;
  border-right:1px solid rgba(10,60,92,.16);
}
.trust-feature:first-child{padding-left:0}
.trust-feature:last-child{border-right:0;padding-right:0}
.trust-icon{
  width:54px;
  height:54px;
  flex:0 0 54px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#0b3e5c;
}
.trust-icon svg{
  width:100%;
  height:100%;
  fill:none;
  stroke:currentColor;
  stroke-width:2.5;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.trust-feature strong{
  display:block;
  color:#0c3048;
  font-size:15.5px;
  line-height:1.25;
  font-weight:800;
  letter-spacing:-.2px;
}
.trust-feature small{
  display:block;
  margin-top:4px;
  color:#516679;
  font-size:13.5px;
  line-height:1.42;
  font-weight:500;
}
.trust-stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  align-items:center;
  max-width:780px;
  margin:16px auto 0;
}
.trust-stat{
  display:grid;
  grid-template-columns:auto auto;
  grid-template-rows:auto auto;
  align-items:center;
  justify-content:center;
  column-gap:14px;
  padding:0 28px;
  border-right:1px solid rgba(10,60,92,.16);
}
.trust-stat:last-child{border-right:0}
.stat-icon{
  grid-row:1 / span 2;
  color:#0b3e5c;
  font-size:32px;
  line-height:1;
  width:34px;
  text-align:center;
}
.trust-stat strong{
  display:block;
  color:#073a59;
  font-size:30px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.8px;
}
.trust-stat small{
  display:block;
  margin-top:4px;
  color:#365166;
  font-size:13.5px;
  line-height:1.25;
  font-weight:700;
}
@media(max-width:1180px){
  .trust-features{grid-template-columns:repeat(3,minmax(0,1fr));row-gap:14px}
  .trust-feature{border-right:0;padding:6px 14px}
  .trust-feature:first-child{padding-left:14px}
}
@media(max-width:760px){
  .home-trust-strip{padding:14px 0 18px}
  .trust-features{grid-template-columns:1fr 1fr;gap:10px;border-bottom:0;padding-bottom:4px}
  .trust-feature{
    min-height:86px;
    border:1px solid rgba(10,60,92,.1);
    border-radius:18px;
    background:#fff;
    padding:12px;
    gap:10px;
  }
  .trust-icon{width:38px;height:38px;flex-basis:38px}
  .trust-feature strong{font-size:13.5px}
  .trust-feature small{font-size:11.8px;line-height:1.35}
  .trust-stats{grid-template-columns:1fr 1fr 1fr;max-width:none;margin-top:10px;background:#fff;border:1px solid rgba(10,60,92,.1);border-radius:18px;padding:10px 6px}
  .trust-stat{padding:0 6px;column-gap:6px}
  .stat-icon{display:none}
  .trust-stat strong{font-size:20px;text-align:center}
  .trust-stat small{font-size:11px;text-align:center;font-weight:700}
}

/* FINAL REVISION - Slider altı ürün menüsü daha belirgin ve tıklanabilir */
.slider-product-menu{
  width:min(1180px, calc(100% - 40px)) !important;
  margin:18px auto 0 !important;
  display:grid !important;
  grid-template-columns:repeat(6,1fr) !important;
  gap:10px !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  z-index:8 !important;
}
.slider-product-menu a{
  min-height:74px !important;
  border:1px solid rgba(8,67,98,.14) !important;
  border-radius:18px !important;
  background:linear-gradient(180deg,#ffffff 0%,#f7fbfd 100%) !important;
  box-shadow:0 10px 26px rgba(7,29,48,.06) !important;
  color:#0b2a40 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex-direction:column !important;
  gap:6px !important;
  padding:12px 10px !important;
  font-size:15px !important;
  font-weight:700 !important;
  line-height:1.1 !important;
  text-align:center !important;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease, color .22s ease !important;
  cursor:pointer !important;
}
.slider-product-menu a::before{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:32px !important;
  height:32px !important;
  border-radius:11px !important;
  background:#eaf7fc !important;
  color:#08729e !important;
  font-size:18px !important;
  line-height:1 !important;
  margin-bottom:1px !important;
  box-shadow:inset 0 0 0 1px rgba(8,114,158,.12) !important;
}
.slider-product-menu a:nth-child(1)::before{content:"▥" !important;}
.slider-product-menu a:nth-child(2)::before{content:"▤" !important;}
.slider-product-menu a:nth-child(3)::before{content:"❄" !important;}
.slider-product-menu a:nth-child(4)::before{content:"▣" !important;}
.slider-product-menu a:nth-child(5)::before{content:"▧" !important;}
.slider-product-menu a:nth-child(6)::before{content:"▭" !important;}
.slider-product-menu a span{
  transform:none !important;
  font-weight:700 !important;
  letter-spacing:-.2px !important;
}
.slider-product-menu a small{
  display:none !important;
}
.slider-product-menu a::after{
  display:none !important;
}
.slider-product-menu a:hover,
.slider-product-menu a:focus-visible{
  transform:translateY(-3px) !important;
  border-color:rgba(8,114,158,.36) !important;
  box-shadow:0 16px 34px rgba(7,29,48,.12) !important;
  background:#ffffff !important;
  color:#06658d !important;
  outline:none !important;
}
.slider-product-menu a.active{
  background:linear-gradient(135deg,#064866 0%,#087aa9 100%) !important;
  color:#ffffff !important;
  border-color:#087aa9 !important;
  box-shadow:0 18px 38px rgba(8,114,158,.24) !important;
}
.slider-product-menu a.active::before{
  background:rgba(255,255,255,.16) !important;
  color:#ffffff !important;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.22) !important;
}
@media(max-width:1100px){
  .slider-product-menu{
    grid-template-columns:repeat(3,1fr) !important;
    width:min(960px, calc(100% - 28px)) !important;
  }
}
@media(max-width:640px){
  .slider-product-menu{
    grid-template-columns:repeat(2,1fr) !important;
    gap:8px !important;
    margin-top:12px !important;
    width:calc(100% - 20px) !important;
  }
  .slider-product-menu a{
    min-height:68px !important;
    border-radius:15px !important;
    font-size:13.5px !important;
    padding:10px 6px !important;
  }
  .slider-product-menu a::before{
    width:28px !important;
    height:28px !important;
    font-size:16px !important;
    border-radius:9px !important;
  }
}

/* REVIZE: Slider alti urun menusu - eski sade yapi korunarak daha belirgin hale getirildi */
.slider-product-menu{
  width:100% !important;
  display:grid !important;
  grid-template-columns:repeat(6,1fr) !important;
  background:#fff !important;
  border-top:1px solid #dde5eb !important;
  border-bottom:1px solid #dce8ee !important;
  box-shadow:0 8px 22px rgba(7,24,39,.055) !important;
  position:relative !important;
  z-index:5 !important;
}
.slider-product-menu a{
  position:relative !important;
  min-height:88px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex-direction:row !important;
  gap:10px !important;
  text-align:center !important;
  text-decoration:none !important;
  color:#071226 !important;
  font-size:18px !important;
  font-weight:500 !important;
  letter-spacing:-.18px !important;
  padding:0 18px !important;
  background:#fff !important;
  border-right:1px solid #edf1f4 !important;
  overflow:hidden !important;
  cursor:pointer !important;
  transition:background .22s ease, color .22s ease, box-shadow .22s ease !important;
}
.slider-product-menu a:last-child{border-right:none !important;}
.slider-product-menu a span{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:9px !important;
  line-height:1.2 !important;
  transform:none !important;
  transition:color .22s ease, transform .22s ease !important;
}
.slider-product-menu a span::before{
  content:"";
  width:9px;
  height:9px;
  border-radius:999px;
  background:#b7c7d3;
  box-shadow:0 0 0 5px rgba(10,166,216,.08);
  transition:background .22s ease, box-shadow .22s ease, transform .22s ease;
}
.slider-product-menu a small{
  display:none !important;
}
.slider-product-menu a::after{
  content:"" !important;
  position:absolute !important;
  left:50% !important;
  bottom:0 !important;
  width:0 !important;
  height:4px !important;
  border-radius:4px 4px 0 0 !important;
  background:linear-gradient(90deg,#00a9df,#0f78ad) !important;
  transform:translateX(-50%) !important;
  transition:width .22s ease !important;
}
.slider-product-menu a:hover,
.slider-product-menu a:focus-visible{
  background:linear-gradient(180deg,#f8fcff 0%,#eef9fd 100%) !important;
  color:#075f91 !important;
  box-shadow:inset 0 1px 0 rgba(10,166,216,.08) !important;
  outline:none !important;
}
.slider-product-menu a:hover::after,
.slider-product-menu a:focus-visible::after,
.slider-product-menu a.active::after{
  width:66% !important;
}
.slider-product-menu a:hover span,
.slider-product-menu a:focus-visible span{
  transform:translateY(-1px) !important;
}
.slider-product-menu a:hover span::before,
.slider-product-menu a:focus-visible span::before,
.slider-product-menu a.active span::before{
  background:#0aa6d8 !important;
  box-shadow:0 0 0 6px rgba(10,166,216,.14) !important;
  transform:scale(1.08) !important;
}
.slider-product-menu a.active{
  color:#063f66 !important;
  background:linear-gradient(180deg,#ffffff 0%,#f2fbff 100%) !important;
  box-shadow:inset 0 -1px 0 rgba(10,166,216,.05) !important;
}
@media(max-width:900px){
  .slider-product-menu{
    grid-template-columns:repeat(2,1fr) !important;
  }
  .slider-product-menu a{
    min-height:68px !important;
    font-size:15px !important;
    padding:0 10px !important;
  }
  .slider-product-menu a span::before{
    width:7px !important;
    height:7px !important;
    box-shadow:0 0 0 4px rgba(10,166,216,.08) !important;
  }
}

/* 8.5/10 ürün kategorileri menüsü - sade ama belirgin */
.slider-product-block{
  background:linear-gradient(180deg,#fff 0%,#f7fbfd 100%);
  border-top:1px solid #e4edf3;
  border-bottom:1px solid #dfeaf1;
  box-shadow:0 10px 26px rgba(7,24,39,.045);
  position:relative;
  z-index:8;
}
.slider-product-block:before{
  content:"";
  position:absolute;
  left:0;top:0;bottom:0;
  width:4px;
  background:linear-gradient(180deg,#0aa6d8,#0f3a55);
}
.slider-product-head{
  max-width:1180px;
  margin:0 auto;
  padding:15px 22px 8px;
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:18px;
}
.slider-product-head strong{
  color:#071226;
  font-size:18px;
  font-weight:700!important;
  letter-spacing:-.25px;
}
.slider-product-head span{
  color:#66798a;
  font-size:13.5px;
  font-weight:500!important;
}
.slider-product-menu{
  max-width:1180px;
  margin:0 auto;
  width:100%;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:10px;
  padding:8px 22px 18px;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
}
.slider-product-menu a{
  position:relative;
  min-height:72px!important;
  border:1px solid #dfe8ef!important;
  border-radius:14px;
  background:#fff!important;
  color:#071226!important;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  padding:10px 12px!important;
  text-decoration:none!important;
  text-align:center;
  overflow:hidden;
  box-shadow:0 8px 18px rgba(7,24,39,.04);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}
.slider-product-menu a em{
  width:25px;
  height:25px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#eff7fb;
  color:#0a78a9;
  font-style:normal;
  font-size:15px;
  line-height:1;
  margin-bottom:2px;
  transition:background .22s ease, color .22s ease, transform .22s ease;
}
.slider-product-menu a span{
  display:block;
  font-size:15.5px;
  line-height:1.15;
  font-weight:700!important;
  letter-spacing:-.18px;
  transform:none!important;
}
.slider-product-menu a small{
  display:block;
  max-width:190px;
  font-size:11.4px;
  line-height:1.28;
  color:#64798a;
  opacity:0;
  max-height:0;
  transform:translateY(5px);
  transition:opacity .22s ease, max-height .22s ease, transform .22s ease;
}
.slider-product-menu a:after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:40px;
  height:3px;
  border-radius:20px 20px 0 0;
  background:#0aa6d8;
  transform:translateX(-50%) scaleX(0);
  transition:transform .22s ease;
}
.slider-product-menu a:hover,
.slider-product-menu a:focus-visible{
  transform:translateY(-3px);
  border-color:#b8ddea!important;
  box-shadow:0 16px 32px rgba(7,24,39,.09);
}
.slider-product-menu a:hover small,
.slider-product-menu a:focus-visible small{
  opacity:1;
  max-height:34px;
  transform:translateY(0);
}
.slider-product-menu a:hover em,
.slider-product-menu a:focus-visible em{
  background:#0aa6d8;
  color:#fff;
  transform:translateY(-1px);
}
.slider-product-menu a:hover:after,
.slider-product-menu a:focus-visible:after,
.slider-product-menu a.active:after{
  transform:translateX(-50%) scaleX(1);
}
.slider-product-menu a.active{
  background:linear-gradient(135deg,#071226,#0f3a55)!important;
  color:#fff!important;
  border-color:#0f3a55!important;
  box-shadow:0 18px 38px rgba(7,24,39,.16);
}
.slider-product-menu a.active em{
  background:rgba(255,255,255,.16);
  color:#fff;
}
.slider-product-menu a.active small{
  color:rgba(255,255,255,.78);
}
@media(max-width:1100px){
  .slider-product-menu{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:720px){
  .slider-product-head{
    padding:13px 16px 6px;
    display:block;
  }
  .slider-product-head strong{display:block;font-size:17px;margin-bottom:3px}
  .slider-product-head span{display:block;font-size:12.5px}
  .slider-product-menu{
    display:flex!important;
    overflow-x:auto;
    gap:10px;
    padding:8px 16px 16px;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
  }
  .slider-product-menu::-webkit-scrollbar{height:0}
  .slider-product-menu a{
    flex:0 0 185px;
    min-height:66px!important;
    scroll-snap-align:start;
  }
  .slider-product-menu a span{font-size:14px}
  .slider-product-menu a small{display:none!important}
  .slider-product-menu a em{width:23px;height:23px;font-size:14px}
}

/* FINAL: Urun menusu eski sade yapiya dondu - sadece belirginlestirildi */
.slider-product-block{
  background:#ffffff !important;
  border-top:1px solid #dfe6ec !important;
  border-bottom:1px solid #d7e3ea !important;
  box-shadow:0 8px 20px rgba(7,24,39,.06) !important;
  position:relative !important;
  z-index:8 !important;
}
.slider-product-block:before,
.slider-product-head{display:none !important;}
.slider-product-menu{
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  padding:0 !important;
  display:grid !important;
  grid-template-columns:repeat(6,1fr) !important;
  gap:0 !important;
  background:#ffffff !important;
  border:0 !important;
  box-shadow:none !important;
  overflow:visible !important;
}
.slider-product-menu a{
  position:relative !important;
  min-height:84px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex-direction:row !important;
  text-align:center !important;
  text-decoration:none !important;
  color:#071226 !important;
  background:#ffffff !important;
  border:0 !important;
  border-right:1px solid #edf1f4 !important;
  border-radius:0 !important;
  box-shadow:none !important;
  padding:0 18px !important;
  font-size:17px !important;
  font-weight:700 !important;
  line-height:1.2 !important;
  letter-spacing:-.2px !important;
  cursor:pointer !important;
  overflow:hidden !important;
  transition:background .22s ease, color .22s ease, box-shadow .22s ease !important;
}
.slider-product-menu a:last-child{border-right:0 !important;}
.slider-product-menu a em,
.slider-product-menu a small{display:none !important;}
.slider-product-menu a span{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  font:inherit !important;
  color:inherit !important;
  line-height:1.2 !important;
  transform:none !important;
  transition:transform .22s ease, color .22s ease !important;
}
.slider-product-menu a span:before{
  content:"" !important;
  width:8px !important;
  height:8px !important;
  border-radius:50% !important;
  background:#c3d2dc !important;
  margin-right:10px !important;
  box-shadow:0 0 0 5px rgba(10,166,216,.08) !important;
  transition:background .22s ease, box-shadow .22s ease, transform .22s ease !important;
}
.slider-product-menu a:after{
  content:"" !important;
  position:absolute !important;
  left:50% !important;
  bottom:0 !important;
  width:0 !important;
  height:5px !important;
  border-radius:6px 6px 0 0 !important;
  background:linear-gradient(90deg,#00a9df,#087aa9) !important;
  transform:translateX(-50%) !important;
  transition:width .22s ease !important;
  display:block !important;
}
.slider-product-menu a:hover,
.slider-product-menu a:focus-visible{
  background:#f3fbff !important;
  color:#075f91 !important;
  box-shadow:inset 0 1px 0 rgba(10,166,216,.08) !important;
  outline:none !important;
}
.slider-product-menu a:hover span,
.slider-product-menu a:focus-visible span{transform:translateY(-1px) !important;}
.slider-product-menu a:hover span:before,
.slider-product-menu a:focus-visible span:before,
.slider-product-menu a.active span:before{
  background:#0aa6d8 !important;
  box-shadow:0 0 0 6px rgba(10,166,216,.16) !important;
  transform:scale(1.08) !important;
}
.slider-product-menu a:hover:after,
.slider-product-menu a:focus-visible:after,
.slider-product-menu a.active:after{width:68% !important;}
.slider-product-menu a.active{
  color:#063f66 !important;
  background:linear-gradient(180deg,#ffffff 0%,#eef9fd 100%) !important;
}
@media(max-width:900px){
  .slider-product-menu{
    display:flex !important;
    grid-template-columns:none !important;
    overflow-x:auto !important;
    -webkit-overflow-scrolling:touch !important;
    scroll-snap-type:x mandatory !important;
  }
  .slider-product-menu::-webkit-scrollbar{height:0 !important;}
  .slider-product-menu a{
    flex:0 0 185px !important;
    min-height:68px !important;
    font-size:14.5px !important;
    padding:0 14px !important;
    scroll-snap-align:start !important;
  }
}

/* Slider altı ürün menüsü - sade, belirgin, ikonsuz revizyon */
.slider-product-block{
  position:relative !important;
  z-index:30 !important;
  background:#fff !important;
  border-top:1px solid rgba(15,58,85,.08) !important;
  border-bottom:1px solid rgba(15,58,85,.12) !important;
  box-shadow:0 12px 28px rgba(9,31,48,.06) !important;
  overflow:visible !important;
}
.slider-product-block:before,
.slider-product-head{display:none !important;}
.slider-product-menu{
  display:grid !important;
  grid-template-columns:repeat(6,1fr) !important;
  max-width:100% !important;
  margin:0 auto !important;
  background:#fff !important;
  overflow:visible !important;
}
.slider-product-menu a{
  position:relative !important;
  min-height:74px !important;
  padding:0 18px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  color:#0c2438 !important;
  text-decoration:none !important;
  border-right:1px solid rgba(15,58,85,.10) !important;
  background:#fff !important;
  transition:background .22s ease,color .22s ease,box-shadow .22s ease !important;
  overflow:visible !important;
}
.slider-product-menu a:last-child{border-right:0 !important;}
.slider-product-menu a:before,
.slider-product-menu a span:before,
.slider-product-menu a em{display:none !important;content:none !important;}
.slider-product-menu a span{
  position:relative !important;
  display:block !important;
  font-size:18px !important;
  font-weight:650 !important;
  line-height:1.2 !important;
  color:inherit !important;
  transform:none !important;
  padding:0 !important;
}
.slider-product-menu a:after{
  content:"" !important;
  position:absolute !important;
  left:50% !important;
  bottom:0 !important;
  width:0 !important;
  height:4px !important;
  border-radius:4px 4px 0 0 !important;
  background:linear-gradient(90deg,#0f6fa8,#09b7e8) !important;
  transform:translateX(-50%) !important;
  transition:width .22s ease !important;
  box-shadow:none !important;
}
.slider-product-menu a.active{
  color:#073f68 !important;
  background:linear-gradient(180deg,#ffffff 0%,#f5fbff 100%) !important;
  box-shadow:inset 0 1px 0 rgba(14,128,190,.10) !important;
}
.slider-product-menu a:hover,
.slider-product-menu a:focus-visible{
  color:#073f68 !important;
  background:#f6fbff !important;
  box-shadow:inset 0 1px 0 rgba(14,128,190,.14) !important;
  outline:none !important;
}
.slider-product-menu a.active:after,
.slider-product-menu a:hover:after,
.slider-product-menu a:focus-visible:after{width:68% !important;}
.slider-product-menu a small{
  display:block !important;
  position:absolute !important;
  z-index:40 !important;
  left:50% !important;
  top:calc(100% + 10px) !important;
  width:min(310px,calc(100vw - 34px)) !important;
  padding:14px 16px !important;
  border:1px solid rgba(15,58,85,.12) !important;
  border-radius:14px !important;
  background:#fff !important;
  box-shadow:0 18px 42px rgba(9,31,48,.16) !important;
  color:#405569 !important;
  font-size:13.5px !important;
  font-weight:500 !important;
  line-height:1.45 !important;
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
  transform:translate(-50%,-4px) !important;
  transition:opacity .18s ease,transform .18s ease,visibility .18s ease !important;
  white-space:normal !important;
}
.slider-product-menu a small:before{
  content:"";
  position:absolute;
  left:50%;
  top:-7px;
  width:14px;
  height:14px;
  background:#fff;
  border-left:1px solid rgba(15,58,85,.12);
  border-top:1px solid rgba(15,58,85,.12);
  transform:translateX(-50%) rotate(45deg);
}
.slider-product-menu a:hover small,
.slider-product-menu a:focus-visible small{
  opacity:1 !important;
  visibility:visible !important;
  transform:translate(-50%,0) !important;
}
@media (max-width:900px){
  .slider-product-menu{
    display:flex !important;
    overflow-x:auto !important;
    overflow-y:visible !important;
    -webkit-overflow-scrolling:touch !important;
    scroll-snap-type:x proximity !important;
  }
  .slider-product-menu::-webkit-scrollbar{height:0 !important;}
  .slider-product-menu a{
    min-width:175px !important;
    min-height:64px !important;
    padding:0 16px !important;
    scroll-snap-align:start !important;
  }
  .slider-product-menu a span{font-size:15px !important;}
  .slider-product-menu a small{display:none !important;}
}

/* FINAL REVISION - slider altı ürün menüsü: sade, açıklamalı hover yapı */
.slider-product-block{
  position:relative !important;
  z-index:5 !important;
  background:#ffffff !important;
  border-top:1px solid #e8edf3 !important;
  border-bottom:1px solid #e8edf3 !important;
  box-shadow:0 8px 24px rgba(6,21,47,.035) !important;
  padding:0 !important;
  margin:0 !important;
}
.slider-product-block:before,
.slider-product-head{display:none !important;}
.slider-product-menu{
  max-width:1280px !important;
  margin:0 auto !important;
  display:grid !important;
  grid-template-columns:repeat(6,1fr) !important;
  background:#fff !important;
  border:0 !important;
  box-shadow:none !important;
  overflow:visible !important;
}
.slider-product-menu a{
  position:relative !important;
  min-height:122px !important;
  height:122px !important;
  padding:22px 18px 18px !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  gap:10px !important;
  text-align:center !important;
  text-decoration:none !important;
  color:#06152f !important;
  background:#fff !important;
  border:0 !important;
  border-right:1px solid #e8edf3 !important;
  border-radius:0 !important;
  box-shadow:none !important;
  transform:none !important;
  transition:background .22s ease, color .22s ease !important;
}
.slider-product-menu a:last-child{border-right:0 !important;}
.slider-product-menu a:before,
.slider-product-menu a span:before,
.slider-product-menu a em{
  display:none !important;
  content:none !important;
}
.slider-product-menu a span{
  display:block !important;
  font-size:20px !important;
  line-height:1.2 !important;
  font-weight:500 !important;
  color:#06152f !important;
  letter-spacing:-.02em !important;
  transform:none !important;
  transition:color .22s ease, transform .22s ease !important;
}
.slider-product-menu a small{
  display:block !important;
  max-width:250px !important;
  margin:0 auto !important;
  font-size:14px !important;
  line-height:1.45 !important;
  font-weight:400 !important;
  color:#4f6076 !important;
  opacity:0 !important;
  max-height:0 !important;
  overflow:hidden !important;
  transform:translateY(5px) !important;
  transition:opacity .22s ease, max-height .22s ease, transform .22s ease !important;
}
.slider-product-menu a:after{
  content:"" !important;
  position:absolute !important;
  left:50% !important;
  bottom:0 !important;
  width:0 !important;
  height:3px !important;
  border-radius:3px 3px 0 0 !important;
  background:#00aeea !important;
  transform:translateX(-50%) !important;
  transition:width .22s ease !important;
}
.slider-product-menu a.active,
.slider-product-menu a:hover,
.slider-product-menu a:focus-visible{
  background:#f8fcff !important;
  color:#0077ad !important;
  outline:none !important;
}
.slider-product-menu a.active span,
.slider-product-menu a:hover span,
.slider-product-menu a:focus-visible span{
  color:#0077ad !important;
  transform:translateY(-2px) !important;
}
.slider-product-menu a:hover small,
.slider-product-menu a:focus-visible small{
  opacity:1 !important;
  max-height:46px !important;
  transform:translateY(0) !important;
}
.slider-product-menu a.active:after,
.slider-product-menu a:hover:after,
.slider-product-menu a:focus-visible:after{
  width:68% !important;
}
@media (max-width:900px){
  .slider-product-menu{
    display:flex !important;
    overflow-x:auto !important;
    -webkit-overflow-scrolling:touch !important;
    scroll-snap-type:x proximity !important;
  }
  .slider-product-menu::-webkit-scrollbar{height:0 !important;}
  .slider-product-menu a{
    flex:0 0 190px !important;
    min-height:76px !important;
    height:76px !important;
    padding:18px 14px !important;
    scroll-snap-align:start !important;
  }
  .slider-product-menu a span{font-size:15px !important;}
  .slider-product-menu a small{display:none !important;}
}


/* WhatsApp CTA Final Position */

.whatsapp-cta {
    text-decoration: none;
    overflow: hidden;
}
.sticky-cta {
    bottom: 10px !important;
}


/* Trust strip text balance */
.home-trust-strip h3,
.trust-strip h3,
.feature-strip h3,
.trust-item h3,
.feature-item h3 {
    font-size: 17px;
    line-height: 1.2;
}

.home-trust-strip p,
.trust-strip p,
.feature-strip p,
.trust-item p,
.feature-item p {
    font-size: 14px;
    line-height: 1.45;
}

.home-trust-strip .feature-item,
.trust-strip .feature-item,
.feature-strip .feature-item,
.home-trust-strip .trust-item,
.trust-strip .trust-item {
    align-items: center;
}


/* Trust strip descriptions - max 2 lines */
.home-trust-strip p,
.trust-strip p,
.feature-strip p,
.trust-item p,
.feature-item p {
    font-size: 14px;
    line-height: 1.4;
    max-height: 2.8em;
    overflow: hidden;
}

.home-trust-strip h3,
.trust-strip h3,
.feature-strip h3,
.trust-item h3,
.feature-item h3 {
    font-size: 17px;
    line-height: 1.18;
}

/* Revize servis bandı */
.trust-item,
.feature-item{
    padding-left:24px;
    padding-right:24px;
}

.trust-item h3,
.feature-item h3{
    font-size:30px;
}

.trust-item p,
.feature-item p{
    font-size:15px;
    line-height:1.35;
    max-width:220px;
}


/* FINAL FIX - trust/service strip */
.home-trust-strip,
.trust-strip,
.feature-strip,
.service-strip {
    width: 100%;
}

.home-trust-strip .container,
.trust-strip .container,
.feature-strip .container,
.service-strip .container {
    max-width: 1780px !important;
    width: 95% !important;
}

.home-trust-strip h3,
.trust-strip h3,
.feature-strip h3,
.trust-item h3,
.feature-item h3,
.service-item h3 {
    font-size: 16px !important;
    line-height: 1.18 !important;
    margin-bottom: 7px !important;
}

.home-trust-strip p,
.trust-strip p,
.feature-strip p,
.trust-item p,
.feature-item p,
.service-item p {
    font-size: 12.5px !important;
    line-height: 1.38 !important;
    max-height: 2.8em !important;
    overflow: hidden !important;
    margin: 0 !important;
}

.home-trust-strip .trust-item,
.trust-strip .trust-item,
.feature-strip .trust-item,
.home-trust-strip .feature-item,
.trust-strip .feature-item,
.feature-strip .feature-item,
.service-strip .service-item {
    padding-left: 38px !important;
    padding-right: 38px !important;
}

.trust-food-suitability-icon {
    color: #08415f !important;
}

.trust-food-suitability-icon::after {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    margin-left: -9px;
    margin-bottom: -4px;
    border-radius: 50%;
    background: #19b987;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    vertical-align: bottom;
}

@media (max-width: 991px) {
    .home-trust-strip h3,
    .trust-strip h3,
    .feature-strip h3,
    .trust-item h3,
    .feature-item h3,
    .service-item h3 {
        font-size: 15px !important;
    }

    .home-trust-strip p,
    .trust-strip p,
    .feature-strip p,
    .trust-item p,
    .feature-item p,
    .service-item p {
        font-size: 12px !important;
    }

    .home-trust-strip .trust-item,
    .trust-strip .trust-item,
    .feature-strip .trust-item,
    .home-trust-strip .feature-item,
    .trust-strip .feature-item,
    .feature-strip .feature-item,
    .service-strip .service-item {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }
}


/* Food approval icon */
.trust-food-approval-icon {
    display: block;
    width: 54px;
    height: 54px;
    color: #08415f;
}


/* Food approval icon - visual match */
.trust-food-approval-icon {
    display: block;
    width: 64px;
    height: 64px;
    color: #08415f;
}


/* Custom measure icon */
.trust-measure-icon {
    display: block;
    width: 64px;
    height: 64px;
    color: #08415f;
}


/* Slider altı menü arka plan rengi */
.product-tabs,
.product-category-tabs,
.category-tabs,
.tabs-wrapper,
.slider-tabs,
.hero-tabs {
    background: linear-gradient(90deg, #dceef8 0%, #eaf4fa 50%, #dceef8 100%) !important;
}

/* PRO PVC - Slider alti menu zariflestirme revizyonu */
.home-trust-strip{
  background:linear-gradient(180deg,#f8fcff 0%,#ffffff 72%) !important;
  border-top:1px solid rgba(7,48,72,.06) !important;
  border-bottom:1px solid rgba(7,48,72,.07) !important;
  padding:14px 0 18px !important;
}
.home-trust-strip .container{
  max-width:1360px !important;
  width:min(94%,1360px) !important;
}
.trust-features{
  grid-template-columns:repeat(5,minmax(0,1fr)) !important;
  gap:10px !important;
  border-bottom:0 !important;
  padding-bottom:0 !important;
}
.trust-feature{
  min-height:66px !important;
  padding:11px 14px !important;
  gap:11px !important;
  border:1px solid rgba(9,57,84,.08) !important;
  border-radius:16px !important;
  background:rgba(255,255,255,.86) !important;
  box-shadow:0 10px 28px rgba(7,48,72,.045) !important;
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease,background .22s ease !important;
}
.trust-feature:first-child{padding-left:14px !important}
.trust-feature:last-child{padding-right:14px !important;border-right:1px solid rgba(9,57,84,.08) !important}
.trust-feature:hover{
  transform:translateY(-2px) !important;
  background:#fff !important;
  border-color:rgba(18,128,174,.18) !important;
  box-shadow:0 14px 34px rgba(7,48,72,.075) !important;
}
.trust-icon{
  width:38px !important;
  height:38px !important;
  flex:0 0 38px !important;
  color:#0b4d6f !important;
  opacity:.92 !important;
}
.trust-icon svg{
  stroke-width:2.15 !important;
}
.trust-feature strong{
  color:#0c3048 !important;
  font-size:13.4px !important;
  line-height:1.22 !important;
  font-weight:600 !important;
  letter-spacing:-.12px !important;
}
.trust-feature small{
  margin-top:3px !important;
  color:#657789 !important;
  font-size:11.6px !important;
  line-height:1.34 !important;
  font-weight:400 !important;
}
.trust-stats{
  max-width:640px !important;
  margin:13px auto 0 !important;
  padding:8px 12px !important;
  border:1px solid rgba(9,57,84,.07) !important;
  border-radius:18px !important;
  background:rgba(255,255,255,.72) !important;
  box-shadow:0 8px 24px rgba(7,48,72,.035) !important;
}
.trust-stat{
  column-gap:9px !important;
  padding:0 18px !important;
  border-right:1px solid rgba(9,57,84,.1) !important;
}
.stat-icon{
  font-size:24px !important;
  width:26px !important;
  color:#0b4d6f !important;
  opacity:.82 !important;
}
.trust-stat strong{
  font-size:22px !important;
  font-weight:700 !important;
  letter-spacing:-.35px !important;
}
.trust-stat small{
  margin-top:2px !important;
  font-size:11.2px !important;
  line-height:1.2 !important;
  font-weight:500 !important;
  color:#526b7c !important;
}
@media(max-width:1180px){
  .trust-features{grid-template-columns:repeat(3,minmax(0,1fr)) !important;gap:10px !important}
  .trust-feature{padding:11px 13px !important}
}
@media(max-width:760px){
  .home-trust-strip{padding:12px 0 15px !important}
  .trust-features{grid-template-columns:1fr 1fr !important;gap:8px !important}
  .trust-feature{min-height:74px !important;border-radius:14px !important;padding:10px !important;gap:9px !important}
  .trust-icon{width:32px !important;height:32px !important;flex-basis:32px !important}
  .trust-feature strong{font-size:12.4px !important}
  .trust-feature small{font-size:10.8px !important;line-height:1.3 !important}
  .trust-stats{max-width:none !important;margin-top:9px !important;padding:8px 4px !important;border-radius:15px !important}
  .trust-stat{padding:0 5px !important;column-gap:0 !important}
  .stat-icon{display:none !important}
  .trust-stat strong{font-size:18px !important;text-align:center !important}
  .trust-stat small{font-size:10px !important;text-align:center !important;font-weight:500 !important}
}
@media(max-width:460px){
  .trust-features{grid-template-columns:1fr !important}
  .trust-feature{min-height:auto !important}
}

/* PRO PVC - Slider altı yeni çözüm paneli / baştan tasarım */
.home-solution-dock{
  position:relative;
  z-index:4;
  margin-top:-34px;
  padding:0 0 34px;
  background:linear-gradient(180deg,rgba(246,251,255,0) 0%,#f7fbfe 58%,#fff 100%);
}
.home-solution-dock .container{
  width:min(94%,1320px);
  max-width:1320px;
}
.solution-dock-panel{
  position:relative;
  overflow:hidden;
  border-radius:30px;
  padding:26px;
  background:linear-gradient(135deg,#07334e 0%,#0b4f72 50%,#0e6f8f 100%);
  box-shadow:0 28px 70px rgba(5,39,60,.24);
  isolation:isolate;
}
.solution-dock-panel:before{
  content:"";
  position:absolute;
  inset:-45% -20% auto auto;
  width:520px;
  height:520px;
  border-radius:999px;
  background:radial-gradient(circle,rgba(255,255,255,.22),rgba(255,255,255,0) 66%);
  z-index:-1;
}
.solution-dock-panel:after{
  content:"";
  position:absolute;
  left:22px;
  right:22px;
  bottom:0;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.45),transparent);
}
.solution-dock-head{
  display:grid;
  grid-template-columns:minmax(260px,.78fr) minmax(320px,1fr);
  column-gap:34px;
  align-items:end;
  margin-bottom:20px;
  color:#fff;
}
.solution-eyebrow{
  grid-column:1/-1;
  width:max-content;
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:10px;
  padding:7px 12px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:999px;
  background:rgba(255,255,255,.10);
  color:#dff5ff;
  font-size:12px;
  line-height:1;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.solution-eyebrow:before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:#63e6be;
  box-shadow:0 0 0 5px rgba(99,230,190,.16);
}
.solution-dock-head h2{
  margin:0;
  max-width:570px;
  color:#fff;
  font-size:clamp(25px,2.5vw,38px);
  line-height:1.05;
  font-weight:750;
  letter-spacing:-.9px;
}
.solution-dock-head p{
  margin:0;
  max-width:560px;
  color:rgba(235,248,255,.82);
  font-size:15px;
  line-height:1.62;
  font-weight:400;
}
.solution-dock-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:13px;
}
.solution-dock-card{
  position:relative;
  min-height:174px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:10px;
  padding:20px 18px 18px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:22px;
  background:rgba(255,255,255,.95);
  color:#0c3048;
  text-decoration:none;
  box-shadow:0 12px 30px rgba(3,28,44,.12);
  transition:transform .26s ease, box-shadow .26s ease, border-color .26s ease, background .26s ease;
}
.solution-dock-card:hover,
.solution-dock-card:focus-visible{
  transform:translateY(-6px);
  border-color:rgba(99,230,190,.55);
  box-shadow:0 22px 46px rgba(3,28,44,.24);
  outline:none;
}
.solution-dock-card:before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:linear-gradient(135deg,rgba(15,124,158,.12),rgba(99,230,190,.07));
  opacity:0;
  transition:opacity .26s ease;
}
.solution-dock-card:hover:before,
.solution-dock-card:focus-visible:before{opacity:1;}
.solution-card-icon{
  position:relative;
  z-index:1;
  width:48px;
  height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:linear-gradient(135deg,#e8f6fc,#f4fbff);
  color:#0b5678;
  box-shadow:inset 0 0 0 1px rgba(7,48,72,.08);
}
.solution-card-icon svg{
  width:28px;
  height:28px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.35;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.solution-dock-card strong,
.solution-dock-card small,
.solution-dock-card em{position:relative;z-index:1;}
.solution-dock-card strong{
  display:block;
  color:#0b2f46;
  font-size:18px;
  line-height:1.18;
  font-weight:720;
  letter-spacing:-.28px;
}
.solution-dock-card small{
  display:block;
  max-width:240px;
  color:#587184;
  font-size:13px;
  line-height:1.46;
  font-weight:400;
}
.solution-dock-card em{
  margin-top:auto;
  width:max-content;
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#0b5f82;
  font-style:normal;
  font-size:12px;
  line-height:1;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.solution-dock-card em:after{
  content:"→";
  transition:transform .22s ease;
}
.solution-dock-card:hover em:after,
.solution-dock-card:focus-visible em:after{transform:translateX(4px);}
.solution-dock-card.is-cta{
  background:linear-gradient(135deg,#e8fff7 0%,#ffffff 62%);
  border-color:rgba(99,230,190,.48);
}
.solution-dock-card.is-cta .solution-card-icon{
  background:linear-gradient(135deg,#15b985,#63e6be);
  color:#fff;
}
.solution-dock-proof{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.solution-dock-proof span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  color:rgba(238,250,255,.88);
  font-size:12.5px;
  line-height:1;
  font-weight:600;
}
.solution-dock-proof span:before{
  content:"✓";
  width:16px;
  height:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(99,230,190,.18);
  color:#84ffd4;
  font-size:11px;
  font-weight:900;
}
@media(max-width:1024px){
  .home-solution-dock{margin-top:-22px;}
  .solution-dock-head{grid-template-columns:1fr;row-gap:10px;}
  .solution-dock-head p{max-width:720px;}
  .solution-dock-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:640px){
  .home-solution-dock{margin-top:0;padding:12px 0 26px;}
  .solution-dock-panel{border-radius:22px;padding:18px;}
  .solution-eyebrow{font-size:10.5px;padding:6px 10px;}
  .solution-dock-head h2{font-size:24px;letter-spacing:-.55px;}
  .solution-dock-head p{font-size:13.5px;line-height:1.52;}
  .solution-dock-grid{grid-template-columns:1fr;gap:10px;}
  .solution-dock-card{min-height:132px;border-radius:18px;padding:16px;}
  .solution-card-icon{width:42px;height:42px;border-radius:14px;}
  .solution-card-icon svg{width:24px;height:24px;}
  .solution-dock-card strong{font-size:16px;}
  .solution-dock-card small{font-size:12.5px;}
  .solution-dock-proof{gap:8px;}
  .solution-dock-proof span{font-size:11.5px;padding:7px 10px;}
}

/* PRO PVC - Slider altı siteyle uyumlu ince ürün şeridi */
.home-product-ribbon{
  position:relative;
  z-index:5;
  margin-top:-28px;
  padding:0 0 30px;
  background:linear-gradient(180deg,rgba(255,255,255,0) 0%,#f7fbfe 70%,#fff 100%);
}
.home-product-ribbon .container{width:min(94%,1320px);max-width:1320px;}
.ribbon-shell{
  display:grid;
  grid-template-columns:minmax(260px,.92fr) minmax(520px,1.7fr) auto;
  align-items:stretch;
  gap:0;
  overflow:hidden;
  border:1px solid rgba(10,60,92,.11);
  border-radius:26px;
  background:rgba(255,255,255,.96);
  box-shadow:0 18px 48px rgba(7,48,72,.12);
  backdrop-filter:blur(10px);
}
.ribbon-intro{
  padding:24px 26px;
  background:linear-gradient(135deg,#ffffff 0%,#eef8fd 100%);
  border-right:1px solid rgba(10,60,92,.09);
}
.ribbon-kicker{
  display:block;
  margin-bottom:8px;
  color:#12805f;
  font-size:11px;
  line-height:1;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.ribbon-intro h2{
  margin:0;
  color:#0c3048;
  font-size:clamp(21px,1.9vw,30px);
  line-height:1.08;
  font-weight:780;
  letter-spacing:-.65px;
}
.ribbon-intro p{
  margin:9px 0 0;
  max-width:410px;
  color:#607488;
  font-size:13.2px;
  line-height:1.55;
  font-weight:400;
}
.ribbon-menu{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  background:#fff;
}
.ribbon-item{
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:142px;
  padding:22px 18px;
  border-right:1px solid rgba(10,60,92,.09);
  color:#0c3048;
  text-decoration:none;
  transition:background .22s ease, transform .22s ease, box-shadow .22s ease;
}
.ribbon-item:before{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  top:0;
  height:3px;
  border-radius:0 0 8px 8px;
  background:linear-gradient(90deg,#0b4d6f,#19b987);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .22s ease;
}
.ribbon-item:hover,
.ribbon-item:focus-visible{
  background:linear-gradient(180deg,#f8fcff 0%,#ffffff 100%);
  box-shadow:0 16px 34px rgba(7,48,72,.10);
  outline:none;
}
.ribbon-item:hover:before,
.ribbon-item:focus-visible:before{transform:scaleX(1);}
.ribbon-no{
  display:block;
  margin-bottom:14px;
  color:#b2c1cc;
  font-size:12px;
  line-height:1;
  font-weight:800;
  letter-spacing:.08em;
}
.ribbon-text strong{
  display:block;
  color:#0b344f;
  font-size:15.2px;
  line-height:1.22;
  font-weight:700;
  letter-spacing:-.22px;
}
.ribbon-text small{
  display:block;
  margin-top:6px;
  color:#607488;
  font-size:12.2px;
  line-height:1.38;
  font-weight:400;
}
.ribbon-action{
  min-width:150px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:11px;
  padding:20px;
  background:linear-gradient(135deg,#0b3e5c 0%,#0e6384 100%);
  color:#fff;
  text-align:center;
}
.ribbon-action span{
  color:rgba(255,255,255,.82);
  font-size:12px;
  line-height:1.3;
  font-weight:500;
}
.ribbon-action a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 18px;
  border-radius:999px;
  background:#fff;
  color:#0b3e5c;
  text-decoration:none;
  font-size:12px;
  line-height:1;
  font-weight:800;
  letter-spacing:.03em;
  text-transform:uppercase;
  box-shadow:0 10px 22px rgba(0,0,0,.13);
  transition:transform .22s ease, box-shadow .22s ease;
}
.ribbon-action a:hover,
.ribbon-action a:focus-visible{transform:translateY(-2px);box-shadow:0 14px 28px rgba(0,0,0,.18);outline:none;}
@media(max-width:1120px){
  .ribbon-shell{grid-template-columns:1fr;}
  .ribbon-intro{border-right:0;border-bottom:1px solid rgba(10,60,92,.09);}
  .ribbon-menu{grid-template-columns:repeat(2,minmax(0,1fr));}
  .ribbon-item{min-height:116px;}
  .ribbon-action{min-height:74px;flex-direction:row;}
}
@media(max-width:640px){
  .home-product-ribbon{margin-top:0;padding:12px 0 24px;}
  .ribbon-shell{border-radius:20px;}
  .ribbon-intro{padding:20px;}
  .ribbon-intro h2{font-size:23px;}
  .ribbon-intro p{font-size:12.8px;}
  .ribbon-menu{grid-template-columns:1fr;}
  .ribbon-item{min-height:92px;padding:17px 18px;}
  .ribbon-item:before{left:18px;right:18px;}
  .ribbon-no{margin-bottom:8px;font-size:11px;}
  .ribbon-text strong{font-size:14.5px;}
  .ribbon-text small{font-size:11.8px;}
  .ribbon-action{align-items:center;justify-content:space-between;padding:16px 18px;}
}


/* PRO PVC - Slider altı teknik uygunluk şeridi */
.home-quality-strip{
  position:relative;
  background:linear-gradient(180deg,#f7fbfe 0%,#ffffff 100%);
  border-top:1px solid rgba(8,55,82,.07);
  border-bottom:1px solid rgba(8,55,82,.08);
  padding:22px 0 26px;
}
.home-quality-strip .container{
  width:min(94%,1320px);
  max-width:1320px;
}
.quality-strip-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:14px;
}
.quality-strip-head span{
  display:inline-flex;
  align-items:center;
  height:28px;
  padding:0 12px;
  border-radius:999px;
  background:#e8f5fb;
  color:#0b5b7e;
  font-size:12px;
  font-weight:700;
  letter-spacing:.02em;
  text-transform:uppercase;
}
.quality-strip-head strong{
  color:#08263b;
  font-size:20px;
  line-height:1.2;
  font-weight:600;
  letter-spacing:-.45px;
  text-align:right;
}
.quality-pill-grid{
  display:grid;
  grid-template-columns:repeat(7,minmax(0,1fr));
  gap:10px;
}
.quality-pill{
  position:relative;
  min-height:112px;
  padding:15px 13px 14px;
  border:1px solid rgba(9,57,84,.10);
  border-radius:18px;
  background:rgba(255,255,255,.9);
  box-shadow:0 12px 30px rgba(7,48,72,.045);
  overflow:hidden;
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}
.quality-pill:before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:3px;
  background:linear-gradient(90deg,#0b6d96,#22b8a5);
  opacity:.75;
}
.quality-pill:hover{
  transform:translateY(-3px);
  border-color:rgba(20,135,176,.22);
  box-shadow:0 18px 42px rgba(7,48,72,.09);
}
.quality-mark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  margin-bottom:11px;
  border-radius:12px;
  background:#eef8fc;
  color:#0a6288;
  font-size:12px;
  font-weight:800;
  letter-spacing:-.2px;
}
.quality-pill strong{
  display:block;
  color:#08263b;
  font-size:14px;
  line-height:1.22;
  font-weight:650;
  letter-spacing:-.25px;
}
.quality-pill small{
  display:block;
  margin-top:6px;
  color:#5e7183;
  font-size:12px;
  line-height:1.42;
  font-weight:400;
}
.quality-pill-accent{
  background:linear-gradient(145deg,#07344f,#0c6f8d);
  border-color:rgba(255,255,255,.18);
  box-shadow:0 18px 44px rgba(7,48,72,.16);
}
.quality-pill-accent:before{background:rgba(255,255,255,.55)}
.quality-pill-accent .quality-mark{
  background:rgba(255,255,255,.16);
  color:#fff;
}
.quality-pill-accent strong,
.quality-pill-accent small{color:#fff}
.quality-pill-accent small{opacity:.82}
@media(max-width:1180px){
  .quality-pill-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
}
@media(max-width:760px){
  .home-quality-strip{padding:18px 0 22px}
  .quality-strip-head{display:block;margin-bottom:12px}
  .quality-strip-head strong{display:block;margin-top:9px;text-align:left;font-size:18px}
  .quality-pill-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}
  .quality-pill{min-height:118px;padding:14px 12px;border-radius:16px}
  .quality-pill strong{font-size:13.4px}
  .quality-pill small{font-size:11.6px;line-height:1.36}
}
@media(max-width:460px){
  .quality-pill-grid{grid-template-columns:1fr}
  .quality-pill{min-height:auto}
}


/* Contact floating menu - replaces WhatsApp conversation bar */
.contact-float{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:9999;
  font-family:inherit;
}
.contact-float-toggle{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.contact-float-button{
  width:62px;
  height:62px;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  background:linear-gradient(135deg,var(--blue-900,#0b2638),var(--blue-800,#0f3a55));
  color:#fff;
  box-shadow:0 18px 44px rgba(7,24,39,.28);
  border:1px solid rgba(255,255,255,.22);
  transition:transform .22s ease, box-shadow .22s ease, border-radius .22s ease;
}
.contact-float-button:hover{
  transform:translateY(-3px);
  box-shadow:0 24px 58px rgba(7,24,39,.34);
}
.contact-icon svg{
  width:28px;
  height:28px;
  fill:currentColor;
  display:block;
}
.contact-icon-close{display:none;}
.contact-float-panel{
  position:absolute;
  right:0;
  bottom:78px;
  width:min(340px,calc(100vw - 32px));
  background:#fff;
  border:1px solid rgba(7,24,39,.10);
  border-radius:26px;
  box-shadow:0 28px 80px rgba(7,24,39,.22);
  padding:14px;
  opacity:0;
  visibility:hidden;
  transform:translateY(14px) scale(.96);
  transform-origin:right bottom;
  transition:opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.contact-float-toggle:checked ~ .contact-float-panel{
  opacity:1;
  visibility:visible;
  transform:translateY(0) scale(1);
}
.contact-float-toggle:checked ~ .contact-float-button{
  border-radius:50%;
  background:linear-gradient(135deg,#1f7ac4,#0f5f9f);
}
.contact-float-toggle:checked ~ .contact-float-button .contact-icon-open{display:none;}
.contact-float-toggle:checked ~ .contact-float-button .contact-icon-close{display:block;}
.contact-float-head{
  padding:8px 10px 12px;
  border-bottom:1px solid rgba(7,24,39,.08);
  margin-bottom:8px;
}
.contact-float-head strong{
  display:block;
  color:var(--blue-950,#071827);
  font-size:18px;
  line-height:1.2;
  letter-spacing:-.3px;
}
.contact-float-head span{
  display:block;
  margin-top:4px;
  color:#657586;
  font-size:13px;
}
.contact-float-row{
  display:flex;
  align-items:center;
  gap:12px;
  padding:11px 10px;
  border-radius:18px;
  text-decoration:none;
  color:var(--blue-950,#071827);
  transition:background .18s ease, transform .18s ease;
}
.contact-float-row:hover{
  background:#f3f8fc;
  transform:translateX(-2px);
}
.contact-row-icon{
  width:38px;
  height:38px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#e9f6ff,#f6fbff);
  color:#1673b7;
  font-size:17px;
  flex:0 0 38px;
}

.contact-whatsapp-row:hover{
  background:#effaf3;
}
.contact-whatsapp-icon{
  background:linear-gradient(135deg,#e8fff0,#f5fff8);
  color:#1fa855;
}

.contact-float-row b{
  display:block;
  font-size:14px;
  font-weight:800;
  line-height:1.2;
}
.contact-float-row small{
  display:block;
  margin-top:3px;
  color:#5f6f7c;
  font-size:13px;
  font-weight:600;
}
 .contact-float-actions{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-top:14px;
  padding:0 4px 2px;
}
.contact-float-actions a{
  text-align:center;
  text-decoration:none;
  border-radius:18px;
  font-weight:800;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, filter .18s ease;
}
.contact-float-actions .contact-quote-cta{
  min-height:66px;
  width:100%;
  padding:0 30px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  color:#fff;
  font-size:16px;
  letter-spacing:-.2px;
  border:1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(circle at 18% 20%,rgba(255,255,255,.22),transparent 34%),
    linear-gradient(135deg,#06445f 0%,#0d6f91 48%,#0b8aa8 100%);
  box-shadow:0 18px 42px rgba(8,90,122,.36), inset 0 1px 0 rgba(255,255,255,.18);
}
.contact-float-actions .contact-quote-cta span{
  width:34px;
  height:34px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.20);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.18);
  font-size:17px;
}
.contact-float-actions .contact-quote-cta strong{
  white-space:nowrap;
}
.contact-float-actions .contact-quote-cta:hover{
  transform:translateY(-3px) scale(1.015);
  filter:saturate(1.06);
  box-shadow:0 24px 52px rgba(8,90,122,.42), inset 0 1px 0 rgba(255,255,255,.22);
}
.contact-float-actions .contact-info-cta{
  padding:12px 16px;
  font-size:13px;
  color:var(--blue-950,#071827);
  background:#eef5fa;
}
.contact-float-actions .contact-info-cta:hover{
  background:#e4f0f8;
}
@media(max-width:640px){
  .contact-float{right:16px;bottom:16px;}
  .contact-float-button{width:58px;height:58px;border-radius:20px;}
  .contact-float-panel{right:0;bottom:72px;}
}


/* === FINAL CTA OVERRIDE: teklif al button made visibly wider and redesigned === */
.contact-float-panel{
  width:min(380px,calc(100vw - 28px))!important;
}
.contact-float-actions{
  padding:4px 0 4px!important;
}
.contact-float-actions .contact-quote-cta,
.contact-float-actions .contact-quote-cta-final{
  width:100%!important;
  min-height:76px!important;
  padding:0 22px!important;
  border-radius:24px!important;
  display:grid!important;
  grid-template-columns:46px minmax(0,1fr)!important;
  grid-template-rows:auto auto!important;
  column-gap:14px!important;
  align-items:center!important;
  justify-items:start!important;
  text-align:left!important;
  color:#fff!important;
  background:
    radial-gradient(circle at 20% 18%,rgba(255,255,255,.30),transparent 28%),
    linear-gradient(135deg,#07324b 0%,#0d6f91 42%,#0ea5b7 100%)!important;
  box-shadow:0 22px 50px rgba(5,93,126,.42), inset 0 1px 0 rgba(255,255,255,.25)!important;
  border:1px solid rgba(255,255,255,.24)!important;
}
.contact-float-actions .contact-quote-cta .quote-cta-icon,
.contact-float-actions .contact-quote-cta span{
  grid-row:1 / 3!important;
  width:46px!important;
  height:46px!important;
  border-radius:17px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  background:rgba(255,255,255,.22)!important;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.22)!important;
  font-size:22px!important;
  line-height:1!important;
}
.contact-float-actions .contact-quote-cta strong{
  display:block!important;
  font-size:18px!important;
  line-height:1.08!important;
  font-weight:900!important;
  letter-spacing:-.35px!important;
  white-space:nowrap!important;
  margin-top:2px!important;
}
.contact-float-actions .contact-quote-cta small{
  display:block!important;
  font-size:12px!important;
  line-height:1.15!important;
  font-weight:700!important;
  color:rgba(255,255,255,.82)!important;
  margin-top:4px!important;
}
.contact-float-actions .contact-quote-cta:hover,
.contact-float-actions .contact-quote-cta-final:hover{
  transform:translateY(-4px) scale(1.018)!important;
  box-shadow:0 30px 62px rgba(5,93,126,.50), inset 0 1px 0 rgba(255,255,255,.30)!important;
}
.ap-quote{
  min-width:164px!important;
  height:48px!important;
  padding:0 26px!important;
  border-radius:999px!important;
  font-size:14px!important;
  background:linear-gradient(135deg,#07324b,#0d789c)!important;
  box-shadow:0 16px 34px rgba(15,98,131,.25)!important;
}
@media(max-width:640px){
  .contact-float-panel{width:min(352px,calc(100vw - 24px))!important;}
  .contact-float-actions .contact-quote-cta{min-height:72px!important;}
}

/* Contact form functional helpers */
.form-hidden-field{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important;opacity:0!important}
.form-info-note{margin:8px 0 0;font-size:13px;line-height:1.45;color:rgba(37,47,63,.72)}

.form-result-message{padding:12px 14px;border-radius:12px;font-size:14px;line-height:1.45;margin-bottom:12px;background:#f3f6f9;color:#1f2a38;border:1px solid rgba(37,47,63,.12)}
.form-result-success{background:#eef8f0;color:#145d2b;border-color:rgba(20,93,43,.18)}
.form-result-error{background:#fff3f0;color:#8a2d16;border-color:rgba(138,45,22,.18)}

/* === MOBILE UX HARDENING - 2026-06 ===
   Tasarimi bozmadan mobil kullanim, dokunma alanlari, form okunabilirligi
   ve yatay tasma risklerini guclendirir. */
html{
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
}
body{
  min-width:320px;
}
a,button,input,select,textarea,.btn,.mobile-toggle{
  -webkit-tap-highlight-color:rgba(14,165,233,.18);
}
button,.btn,a[role="button"],input[type="submit"]{
  touch-action:manipulation;
}
input,select,textarea,button{
  max-width:100%;
}
.rich-content img,.content-card img,.product-card img,.service-card img,.gallery-card img,.hero-card img{
  height:auto;
}
.rich-content table{
  display:block;
  max-width:100%;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}
@media(max-width:980px){
  body.mobile-menu-open{overflow:hidden;}
  .header,.header-clean,.header-next{z-index:3000!important;}
  .nav,.nav-clean,.nav-next,.nav-pro{min-height:72px!important;}
  .mobile-toggle{
    display:grid!important;
    place-items:center!important;
    min-width:48px!important;
    min-height:48px!important;
    border-radius:14px!important;
    cursor:pointer!important;
  }
  .menu,.menu-clean,.menu-pro,.menu-next{
    position:fixed!important;
    top:82px!important;
    left:12px!important;
    right:12px!important;
    bottom:auto!important;
    max-height:calc(100dvh - 104px)!important;
    overflow-y:auto!important;
    overflow-x:hidden!important;
    -webkit-overflow-scrolling:touch!important;
    overscroll-behavior:contain!important;
    border:1px solid rgba(15,58,85,.12)!important;
    border-radius:22px!important;
    box-shadow:0 28px 80px rgba(7,24,39,.22)!important;
    z-index:3200!important;
  }
  .menu.open,.menu-clean.open,.menu-pro.open,.menu-next.open{
    display:flex!important;
  }
  .menu li,.menu-clean li,.menu-pro li,.menu-next li{
    width:100%!important;
  }
  .menu a,.menu-clean>li>a,.menu-pro>li>a,.menu-next>li>a,
  .dropdown-panel a,.service-submenu a,.mega-links a,.use-panel a{
    min-height:48px!important;
    display:flex!important;
    align-items:center!important;
    width:100%!important;
    white-space:normal!important;
    line-height:1.28!important;
    font-size:16px!important;
    padding:13px 15px!important;
  }
  .dropdown-panel,.service-submenu,.mega-panel,.use-panel,.ac-mega{
    max-height:none!important;
    overflow:visible!important;
  }
  .topbar{font-size:13px!important;}
  .topbar .container{gap:8px!important;}
}
@media(max-width:760px){
  .container{width:min(100% - 28px,1180px)!important;}
  .section,.content-section{padding-top:48px!important;padding-bottom:48px!important;}
  .page-hero,.content-hero,.inner-hero{padding-top:44px!important;padding-bottom:42px!important;}
  .hero{padding-top:44px!important;padding-bottom:44px!important;}
  .hero-grid,.hero-grid-premium,.content-layout,.two-col,.content-grid,.service-hub-grid,.product-hero-grid,.cta,.footer-grid{
    grid-template-columns:1fr!important;
  }
  .section-head,.gallery-intro{
    display:block!important;
  }
  .lead,.section-text,.rich-content p,.content-card p,.page-hero p{
    font-size:16px!important;
    line-height:1.72!important;
  }
  .hero-buttons,.hero-actions,.nav-actions-clean,.form-actions{
    width:100%!important;
  }
  .hero-buttons .btn,.hero-actions .btn,.cta .btn,.quote-form .btn,.content-card .btn{
    width:100%!important;
    min-height:52px!important;
    justify-content:center!important;
    text-align:center!important;
  }
  .metrics,.process,.service-grid,.blog-grid,.project-gallery,.usecase-grid,.product-list,.solution-tags,.trust-cards,.contact-grid{
    grid-template-columns:1fr!important;
  }
  .metric,.service-card,.blog-card,.content-card,.rich-content,.sidebar,.quote-form,.home-faq-panel,.home-knowledge-panel{
    border-radius:22px!important;
  }
  .rich-content,.content-card,.quote-form,.sidebar{
    padding:22px!important;
  }
  .sidebar{position:static!important;}
  .hero-card,.hero-card img,.trend-slides,.trend-slide,.gallery-card,.gallery-card img{
    border-radius:22px!important;
  }
  .floating-badge,.badge-one,.badge-two{display:none!important;}
  .industrial-control-collage,.trend-slides,.acamar-slider,.ac2-slider{
    min-height:auto!important;
    height:auto!important;
  }
}
@media(max-width:640px){
  input,select,textarea{
    width:100%!important;
    min-height:50px!important;
    font-size:16px!important;
    line-height:1.4!important;
    border-radius:14px!important;
  }
  textarea{min-height:132px!important;}
  form,.quote-form,.form-grid{
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:12px!important;
  }
  .form-hidden-field{display:none!important;}
  .logo,.logo-clean{
    max-width:calc(100vw - 92px)!important;
  }
  .logo-copy strong{font-size:21px!important;}
  .logo-copy small{display:none!important;}
  .page-hero h1,main h1,h1{
    word-break:normal!important;
    overflow-wrap:anywhere!important;
  }
  .footer-bottom{display:block!important;text-align:center!important;}
  .footer-bottom>*+*{margin-top:8px!important;}
}
@media(max-width:420px){
  .container{width:min(100% - 22px,1180px)!important;}
  .btn{padding-left:14px!important;padding-right:14px!important;}
  .menu,.menu-clean,.menu-pro,.menu-next{left:8px!important;right:8px!important;top:76px!important;}
  .rich-content,.content-card,.quote-form,.sidebar{padding:18px!important;}
}


/* Mobile Conversion Bar - Premium Design */
@media (max-width:768px){
  body{padding-bottom:92px;}
  .mobile-action-bar{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:9999;
    display:flex;
    align-items:stretch;
    justify-content:space-between;
    background:linear-gradient(180deg,#123f60 0%,#08243a 100%);
    box-shadow:0 -12px 30px rgba(3,22,35,.28);
    border-top:1px solid rgba(255,255,255,.14);
    padding:8px 6px calc(8px + env(safe-area-inset-bottom));
  }
  .mobile-action-bar::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:0;
    height:1px;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.28),transparent);
    pointer-events:none;
  }
  .mobile-action-bar a{
    position:relative;
    flex:1;
    min-width:0;
    min-height:64px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:6px;
    text-align:center;
    padding:6px 4px;
    font-size:13px;
    line-height:1.18;
    font-weight:800;
    color:#fff;
    text-decoration:none;
    border-right:1px solid rgba(255,255,255,.14);
    -webkit-tap-highlight-color:transparent;
  }
  .mobile-action-bar a:last-child{border-right:none;}
  .mobile-action-bar a:active{
    background:rgba(255,255,255,.08);
  }
  .mobile-action-icon{
    width:30px;
    height:30px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.10);
    color:#fff;
    border:1px solid rgba(255,255,255,.28);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.10);
    line-height:1;
  }
  .mobile-phone-svg,
  .mobile-whatsapp-svg{
    width:17px;
    height:17px;
    display:block;
  }
  .mobile-whatsapp-link .mobile-action-icon{
    background:rgba(37,211,102,.16);
    color:#25d366;
    border-color:rgba(37,211,102,.42);
  }
  .mobile-action-text{
    display:block;
    max-width:100%;
    white-space:normal;
    overflow-wrap:normal;
    letter-spacing:-.01em;
  }
}
@media (max-width:390px){
  .mobile-action-bar{padding-left:4px;padding-right:4px;}
  .mobile-action-bar a{font-size:12px;min-height:62px;gap:5px;}
  .mobile-action-icon{width:28px;height:28px;}
  .mobile-phone-svg,
  .mobile-whatsapp-svg{width:16px;height:16px;}
}
@media (min-width:769px){
  .mobile-action-bar{display:none!important;}
}

/* MOBILE ONLY: remove old floating contact shortcut because the premium bottom action bar handles mobile contact actions. Desktop remains unchanged. */
@media (max-width: 980px){
  .contact-float{
    display:none!important;
    visibility:hidden!important;
    pointer-events:none!important;
  }
}


/* Mobile-only homepage conversion block. Desktop layout is intentionally untouched. */
.home-mobile-offer{display:none;}
@media (max-width:768px){
  .home-image-slider{
    max-height:286px;
    overflow:hidden;
  }
  .home-image-slider .home-slider-slide img{
    height:286px;
    object-fit:cover;
    object-position:center center;
  }
  .home-slider-dots{bottom:10px!important;}
  .home-mobile-offer{
    display:block;
    background:#f6fbfe;
    padding:18px 14px 6px;
  }
  .home-mobile-offer-card{
    max-width:560px;
    margin:0 auto;
    padding:20px 18px 18px;
    border-radius:24px;
    background:linear-gradient(180deg,#ffffff 0%,#f9fdff 100%);
    border:1px solid rgba(9,55,85,.10);
    box-shadow:0 18px 40px rgba(7,42,62,.10);
  }
  .home-mobile-eyebrow{
    display:inline-flex;
    align-items:center;
    max-width:100%;
    padding:8px 12px;
    border-radius:999px;
    background:#eaf8fc;
    color:#087194;
    font-size:12px;
    line-height:1.2;
    font-weight:800;
    letter-spacing:.01em;
    text-transform:uppercase;
  }
  .home-mobile-offer h2{
    margin:13px 0 9px;
    color:#06152f;
    font-size:25px;
    line-height:1.12;
    letter-spacing:-.045em;
    font-weight:850;
  }
  .home-mobile-offer p{
    margin:0 0 13px;
    color:#51657a;
    font-size:15px;
    line-height:1.55;
    font-weight:500;
  }
  .home-mobile-offer ul{
    list-style:none;
    margin:0 0 16px;
    padding:0;
    display:grid;
    gap:8px;
  }
  .home-mobile-offer li{
    position:relative;
    padding-left:24px;
    color:#123f60;
    font-size:14px;
    line-height:1.35;
    font-weight:750;
  }
  .home-mobile-offer li::before{
    content:"";
    position:absolute;
    left:0;
    top:.18em;
    width:16px;
    height:16px;
    border-radius:50%;
    background:#e7f7fb;
    border:1px solid rgba(8,113,148,.18);
  }
  .home-mobile-offer li::after{
    content:"";
    position:absolute;
    left:5px;
    top:.54em;
    width:6px;
    height:3px;
    border-left:2px solid #087194;
    border-bottom:2px solid #087194;
    transform:rotate(-45deg);
  }
  .home-mobile-offer-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
  }
  .home-mobile-offer-actions a{
    min-height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    border-radius:16px;
    padding:10px 12px;
    text-decoration:none;
    font-size:14px;
    line-height:1.15;
    font-weight:850;
    -webkit-tap-highlight-color:transparent;
  }
  .home-mobile-wa{
    background:#123f60;
    color:#fff;
    box-shadow:0 12px 24px rgba(18,63,96,.22);
  }
  .home-mobile-form{
    background:#eef8fb;
    color:#0b4664;
    border:1px solid rgba(11,70,100,.16);
  }
}
@media (max-width:390px){
  .home-image-slider{max-height:250px;}
  .home-image-slider .home-slider-slide img{height:250px;}
  .home-mobile-offer{padding:14px 12px 4px;}
  .home-mobile-offer-card{padding:18px 16px 16px;border-radius:22px;}
  .home-mobile-offer h2{font-size:23px;}
  .home-mobile-offer-actions{grid-template-columns:1fr;}
}

/* Mobile-only homepage conversion architecture: no desktop layout change */
.home-mobile-trust,
.home-mobile-services,
.home-mobile-proof{display:none;}

@media (max-width:768px){
  .home-mobile-trust,
  .home-mobile-services,
  .home-mobile-proof{display:block;}

  .home-mobile-trust{padding:12px 14px 4px;background:#f4f8fb;}
  .home-mobile-trust-grid{display:grid;grid-template-columns:1fr;gap:10px;max-width:520px;margin:0 auto;}
  .home-mobile-trust article{position:relative;padding:14px 14px 14px 44px;border:1px solid rgba(16,59,90,.12);border-radius:18px;background:#fff;box-shadow:0 10px 26px rgba(16,59,90,.07);}
  .home-mobile-trust article::before{content:"✓";position:absolute;left:14px;top:14px;width:22px;height:22px;border-radius:999px;display:grid;place-items:center;background:#123f60;color:#fff;font-size:13px;font-weight:800;}
  .home-mobile-trust strong{display:block;color:#123f60;font-size:14px;line-height:1.25;margin-bottom:3px;}
  .home-mobile-trust span{display:block;color:#536879;font-size:12.5px;line-height:1.4;}

  .home-mobile-services{padding:18px 14px 6px;background:#f4f8fb;}
  .home-mobile-section-head{max-width:520px;margin:0 auto 12px;text-align:left;}
  .home-mobile-section-head span{display:inline-flex;align-items:center;padding:5px 10px;border-radius:999px;background:rgba(18,63,96,.08);color:#123f60;font-size:11px;font-weight:800;letter-spacing:.04em;text-transform:uppercase;}
  .home-mobile-section-head h2{margin:9px 0 0;color:#102f49;font-size:22px;line-height:1.16;letter-spacing:-.02em;}
  .home-mobile-service-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;max-width:520px;margin:0 auto;}
  .home-mobile-service-card{display:flex;flex-direction:column;min-height:150px;padding:12px;border:1px solid rgba(16,59,90,.12);border-radius:20px;background:#fff;text-decoration:none;color:#123f60;box-shadow:0 10px 24px rgba(16,59,90,.07);overflow:hidden;}
  .home-mobile-service-card img{width:100%;height:58px;object-fit:contain;object-position:left center;margin-bottom:8px;}
  .home-mobile-service-card strong{font-size:14px;line-height:1.2;color:#123f60;margin-bottom:4px;}
  .home-mobile-service-card span{font-size:12px;line-height:1.35;color:#5d6f7d;}

  .home-mobile-proof{padding:18px 14px 12px;background:#f4f8fb;}
  .home-mobile-proof-strip{display:grid;grid-template-columns:1fr 1fr 1fr;gap:8px;max-width:520px;margin:0 auto 10px;}
  .home-mobile-proof-strip img{width:100%;height:92px;object-fit:cover;border-radius:16px;box-shadow:0 10px 22px rgba(16,59,90,.10);background:#dfe8ef;}
  .home-mobile-proof-link{display:flex;align-items:center;justify-content:center;max-width:520px;margin:0 auto;padding:13px 16px;border-radius:16px;background:#123f60;color:#fff;text-decoration:none;font-weight:800;font-size:14px;box-shadow:0 12px 26px rgba(18,63,96,.22);}
}

@media (max-width:390px){
  .home-mobile-service-grid{gap:8px;}
  .home-mobile-service-card{padding:10px;border-radius:18px;min-height:142px;}
  .home-mobile-service-card strong{font-size:13px;}
  .home-mobile-proof-strip img{height:82px;border-radius:14px;}
}

/* MOBILE ONLY: product selection block designed for fast mobile decision-making. Desktop remains untouched. */
@media (max-width: 767px){
  .home-mobile-services{padding:22px 14px 18px;background:linear-gradient(180deg,#ffffff 0%,#f4f9fd 100%);} 
  .home-mobile-services .home-mobile-section-head{max-width:560px;margin:0 auto 16px;text-align:center;}
  .home-mobile-services .home-mobile-section-head span{display:inline-flex;align-items:center;justify-content:center;padding:4px 9px;border-radius:6px;background:rgba(0,132,190,.08);border:1px solid rgba(0,132,190,.18);color:#0074a8;font-size:10px;font-weight:800;line-height:1;text-transform:uppercase;letter-spacing:.04em;}
  .home-mobile-services .home-mobile-section-head h2{margin:10px auto 8px;max-width:520px;color:#001d35;font-size:21px;line-height:1.18;font-weight:800;letter-spacing:-.02em;}
  .home-mobile-services .home-mobile-section-head p{margin:0 auto;max-width:520px;color:#41576b;font-size:13px;line-height:1.55;}
  .home-mobile-product-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;max-width:560px;margin:0 auto;}
  .home-mobile-product-card{display:flex;flex-direction:column;min-width:0;padding:8px 8px 10px;border:1px solid rgba(16,59,90,.12);border-radius:17px;background:#fff;color:#001d35;text-decoration:none;box-shadow:0 12px 26px rgba(16,59,90,.08);overflow:hidden;}
  .home-mobile-product-card img{display:block;width:100%;height:112px;object-fit:cover;border-radius:12px;background:#e8f0f5;margin-bottom:10px;}
  .home-mobile-product-card strong{display:block;color:#001d35;font-size:15px;line-height:1.18;font-weight:800;margin:0 0 7px;}
  .home-mobile-product-card ul{list-style:none;margin:0 0 9px;padding:0;display:grid;gap:5px;}
  .home-mobile-product-card li{position:relative;padding-left:13px;color:#52687a;font-size:11.5px;line-height:1.32;}
  .home-mobile-product-card li::before{content:"";position:absolute;left:0;top:.42em;width:6px;height:6px;border-radius:999px;background:#0087c4;box-shadow:0 0 0 3px rgba(0,135,196,.10);}
  .home-mobile-product-card em{margin-top:auto;display:inline-flex;align-items:center;color:#0074a8;font-style:normal;font-size:11.5px;font-weight:800;}
  .home-mobile-products-link{display:flex;align-items:center;justify-content:center;gap:10px;max-width:270px;margin:18px auto 0;padding:14px 16px;border-radius:12px;background:linear-gradient(135deg,#0069e8,#0094ff);color:#fff;text-decoration:none;font-size:15px;font-weight:800;box-shadow:0 14px 28px rgba(0,105,232,.24);}
  .home-mobile-products-link span{font-size:20px;line-height:1;font-weight:400;}
  .home-mobile-products-link b{font-size:20px;line-height:1;font-weight:700;}
}
@media (max-width: 390px){
  .home-mobile-product-grid{gap:9px;}
  .home-mobile-product-card{padding:7px;border-radius:15px;}
  .home-mobile-product-card img{height:96px;border-radius:11px;}
  .home-mobile-product-card strong{font-size:14px;}
  .home-mobile-product-card li{font-size:11px;}
}

/* Mobile homepage final commercial flow - desktop untouched */
.home-mobile-final-cta{display:none;}

@media (max-width:767px){
  .home-mobile-legacy-hide,
  .home-mobile-long-copy-hide{display:none !important;}

  .home-mobile-proof{padding:22px 14px 14px;background:#f4f8fb;}
  .home-mobile-proof .home-mobile-section-head{text-align:center;}
  .home-mobile-proof .home-mobile-section-head p,
  .home-mobile-why-head p{margin:7px auto 0;max-width:520px;color:#51687a;font-size:13px;line-height:1.55;}
  .home-mobile-proof-strip{grid-template-columns:1fr 1fr;gap:10px;}
  .home-mobile-proof-strip img{height:112px;border-radius:17px;border:1px solid rgba(16,59,90,.08);background:#fff;}
  .home-mobile-proof-link{margin-top:12px;background:#123f60;}

  .home-mobile-trust{padding:22px 14px 12px;background:#f4f8fb;}
  .home-mobile-why-head{text-align:center;margin-bottom:14px;}
  .home-mobile-trust-grid{grid-template-columns:1fr 1fr;gap:10px;}
  .home-mobile-trust article{padding:14px 12px 14px 40px;border-radius:17px;}
  .home-mobile-trust article::before{left:12px;top:14px;width:20px;height:20px;font-size:12px;}
  .home-mobile-trust strong{font-size:13.5px;}
  .home-mobile-trust span{font-size:12px;}

  .home-quality-strip{padding-top:22px;}

  .home-mobile-final-cta{display:block;padding:18px 14px 22px;background:#f4f8fb;}
  .home-mobile-final-cta-card{max-width:540px;margin:0 auto;padding:22px 18px;border-radius:24px;background:linear-gradient(135deg,#0f3a55,#123f60);color:#fff;box-shadow:0 16px 34px rgba(15,58,85,.22);text-align:center;}
  .home-mobile-final-cta-card span{display:inline-flex;padding:5px 10px;border-radius:999px;background:rgba(255,255,255,.14);font-size:11px;font-weight:800;letter-spacing:.05em;text-transform:uppercase;}
  .home-mobile-final-cta-card h2{margin:10px 0 8px;color:#fff;font-size:23px;line-height:1.15;letter-spacing:-.02em;}
  .home-mobile-final-cta-card p{margin:0 auto 16px;max-width:460px;color:rgba(255,255,255,.86);font-size:13px;line-height:1.55;}
  .home-mobile-final-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
  .home-mobile-final-actions a{min-height:48px;display:flex;align-items:center;justify-content:center;border-radius:15px;text-decoration:none;font-size:14px;font-weight:850;}
  .home-mobile-final-actions a:first-child{background:#1fbf63;color:#fff;}
  .home-mobile-final-actions a:last-child{background:#fff;color:#123f60;}
}

@media (max-width:390px){
  .home-mobile-proof-strip img{height:96px;}
  .home-mobile-trust-grid{grid-template-columns:1fr;}
  .home-mobile-final-actions{grid-template-columns:1fr;}
}

/* Mobile project proof: real project images, desktop untouched */
@media (max-width: 767px){
  .home-mobile-proof-strip figure{
    margin:0;
    background:#fff;
    border:1px solid rgba(16,59,90,.08);
    border-radius:17px;
    overflow:hidden;
    box-shadow:0 10px 22px rgba(16,59,90,.08);
  }
  .home-mobile-proof-strip figure img{
    display:block;
    width:100%;
    height:112px;
    object-fit:cover;
    border:0;
    border-radius:0;
    box-shadow:none;
    background:#e8f1f6;
  }
  .home-mobile-proof-strip figure figcaption{
    display:block;
    padding:7px 6px 8px;
    text-align:center;
    font-size:12px;
    line-height:1.15;
    font-weight:800;
    color:#08253b;
    background:#fff;
  }
}
@media (max-width: 390px){
  .home-mobile-proof-strip figure img{height:96px;}
  .home-mobile-proof-strip figure figcaption{font-size:11px;}
}


/* FINAL MOBILE ONLY: 2-column project proof grid on homepage. Desktop unchanged. */
@media (max-width: 767px){
  .home-mobile-proof-strip{
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:10px !important;
    max-width:560px;
  }
  .home-mobile-proof-strip figure{
    margin:0;
    border-radius:16px;
    overflow:hidden;
    background:#fff;
    border:1px solid rgba(16,59,90,.08);
    box-shadow:0 10px 22px rgba(16,59,90,.08);
  }
  .home-mobile-proof-strip figure img{
    display:block;
    width:100%;
    height:auto !important;
    aspect-ratio:4/3;
    object-fit:cover;
    border-radius:0 !important;
    border:0 !important;
    box-shadow:none !important;
  }
  .home-mobile-proof-strip figure figcaption{
    display:block;
    padding:7px 5px 8px;
    text-align:center;
    font-size:11.5px;
    line-height:1.15;
    font-weight:800;
    color:#08253b;
    background:#fff;
    white-space:normal;
  }
}
@media (max-width: 390px){
  .home-mobile-proof-strip{gap:8px !important;}
  .home-mobile-proof-strip figure{border-radius:14px;}
  .home-mobile-proof-strip figure figcaption{font-size:10.8px;padding:6px 4px 7px;}
}

/* Mobile-only reference logo wall: 3-column compact grid */
@media (max-width: 680px){
  body.page-referanslar .reference-logo-grid,
  body.page-referanslar .reference-grid-50,
  .reference-logo-grid.reference-grid-50{
    display:grid!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:10px!important;
    align-items:stretch!important;
  }
  body.page-referanslar .reference-logo-card,
  body.page-referanslar .ref-detail-card,
  .reference-grid-50 .ref-detail-card{
    min-height:112px!important;
    height:auto!important;
    padding:10px 7px!important;
    border-radius:14px!important;
    gap:5px!important;
    grid-template-rows:1fr auto!important;
    align-content:center!important;
    justify-items:center!important;
    box-shadow:0 8px 22px rgba(12,34,53,.055)!important;
  }
  body.page-referanslar .reference-logo-card img,
  body.page-referanslar .ref-detail-card img,
  .reference-grid-50 .ref-detail-card img{
    width:100%!important;
    max-width:82px!important;
    height:46px!important;
    max-height:46px!important;
    object-fit:contain!important;
    margin:0 auto!important;
  }
  body.page-referanslar .reference-logo-card span,
  body.page-referanslar .ref-detail-card span,
  .reference-grid-50 .ref-detail-card span{
    width:100%!important;
    min-height:0!important;
    font-size:11px!important;
    line-height:1.18!important;
    font-weight:650!important;
    text-align:center!important;
    color:#0c2235!important;
    display:-webkit-box!important;
    -webkit-line-clamp:2!important;
    -webkit-box-orient:vertical!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
  }
  body.page-referanslar .ref-detail-card small,
  body.page-referanslar .ref-detail-card em,
  .reference-grid-50 .ref-detail-card small,
  .reference-grid-50 .ref-detail-card em{
    display:none!important;
  }
  body.page-referanslar .ref-detail-card:after,
  .reference-grid-50 .ref-detail-card:after{
    display:none!important;
  }
}

/* Hizmetler sayfası görsel odaklı ürün kartları - SEO/GEO metinleri korunur */
.content-link-grid{align-items:stretch;}
.content-link-card{overflow:hidden;padding:0!important;background:#fff!important;display:flex!important;flex-direction:column!important;min-height:100%;}
.content-link-card .service-card-media{margin:0;background:#f3f7fa;border-bottom:1px solid rgba(12,34,53,.08);overflow:hidden;}
.content-link-card .service-card-media img{display:block;width:100%;aspect-ratio:4/3;object-fit:cover;transition:transform .35s ease;}
.content-link-card:hover .service-card-media img{transform:scale(1.035);}
.content-link-card .service-card-body{padding:20px 20px 22px;display:flex;flex-direction:column;flex:1;}
.content-link-card .service-card-body strong{font-size:20px!important;line-height:1.25!important;margin:0 0 10px!important;color:#0c2235;}
.content-link-card .service-card-body p{font-size:15.5px;line-height:1.65;color:#526575;margin:0 0 14px;display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden;}
.service-card-tags{display:flex;flex-wrap:wrap;gap:7px;margin:2px 0 16px;}
.service-card-tags span{font-size:12px;font-weight:800;color:#124d73;background:#eef6fb;border:1px solid rgba(18,77,115,.12);border-radius:999px;padding:6px 9px;line-height:1;}
.service-card-cta{margin-top:auto;display:inline-flex;align-items:center;justify-content:center;width:fit-content;min-height:42px;padding:11px 15px;border-radius:999px;background:#124d73;color:#fff;font-weight:900;font-size:14px;letter-spacing:-.1px;}
@media(max-width:1024px){.content-link-card .service-card-body p{-webkit-line-clamp:3;}}
@media(max-width:680px){
  .content-link-grid{grid-template-columns:1fr!important;gap:18px!important;}
  .content-link-card{border-radius:20px!important;}
  .content-link-card .service-card-media img{aspect-ratio:16/10;}
  .content-link-card .service-card-body{padding:18px 18px 20px;}
  .content-link-card .service-card-body strong{font-size:19px!important;}
  .content-link-card .service-card-body p{font-size:14.5px;line-height:1.58;-webkit-line-clamp:3;}
  .service-card-tags{gap:6px;margin-bottom:14px;}
  .service-card-tags span{font-size:11.5px;padding:5px 8px;}
  .service-card-cta{width:100%;min-height:44px;}
}


/* Hizmetler sayfası görsel/SEO/GEO revizyonu */
.hizmetler-product-grid{gap:22px!important;align-items:stretch!important;}
.hizmetler-product-grid .service-product-card{border-radius:22px!important;overflow:hidden!important;border:1px solid rgba(12,34,53,.09)!important;box-shadow:0 18px 46px rgba(12,34,53,.075)!important;background:#fff!important;}
.hizmetler-product-grid .service-product-card:hover{transform:translateY(-5px)!important;box-shadow:0 28px 72px rgba(12,34,53,.13)!important;}
.hizmetler-product-grid .service-card-media{background:#eef6fa!important;}
.hizmetler-product-grid .service-card-media img{aspect-ratio:16/10!important;object-fit:cover!important;width:100%!important;}
.hizmetler-product-grid .service-card-body{padding:18px 18px 20px!important;}
.hizmetler-product-grid .service-card-body strong{font-size:19px!important;line-height:1.22!important;margin-bottom:9px!important;letter-spacing:-.25px!important;}
.hizmetler-product-grid .service-card-body p{font-size:14.5px!important;line-height:1.58!important;margin-bottom:13px!important;-webkit-line-clamp:3!important;color:#4b6072!important;}
.hizmetler-product-grid .service-card-tags{margin:0 0 14px!important;gap:6px!important;}
.hizmetler-product-grid .service-card-tags span{font-size:11.5px!important;padding:5px 8px!important;background:#eef8fb!important;color:#0f5a7c!important;}
.hizmetler-product-grid .service-card-cta{min-height:40px!important;padding:10px 14px!important;font-size:13px!important;background:#0f4a6d!important;}
@media(max-width:1024px){.hizmetler-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}.hizmetler-product-grid .service-card-media img{aspect-ratio:4/3!important;}}
@media(max-width:680px){.hizmetler-product-grid{grid-template-columns:1fr!important;gap:18px!important;}.hizmetler-product-grid .service-product-card{border-radius:20px!important;}.hizmetler-product-grid .service-card-media img{aspect-ratio:16/10!important;}.hizmetler-product-grid .service-card-body{padding:17px!important;}.hizmetler-product-grid .service-card-body p{-webkit-line-clamp:2!important;font-size:14px!important;}.hizmetler-product-grid .service-card-cta{width:100%!important;}}

/* Hizmetler sayfası: Detayları İncele buton kontrast düzeltmesi */
.hizmetler-product-grid .service-card-cta,
.hizmetler-product-grid a .service-card-cta,
.service-product-card .service-card-cta{
  color:#ffffff!important;
  opacity:1!important;
  font-weight:700!important;
  text-decoration:none!important;
}
.hizmetler-product-grid .service-card-cta::after,
.service-product-card .service-card-cta::after{
  color:#ffffff!important;
  opacity:1!important;
}
.hizmetler-product-grid .service-product-card:hover .service-card-cta,
.service-product-card:hover .service-card-cta{
  color:#ffffff!important;
  background:#0f5f8f!important;
}

/* PVC Perde detay sayfası: ürün galerisi + SEO/GEO özellik alanı */
.pvc-product-showcase{
  background:linear-gradient(180deg,#f7fbfd 0%,#ffffff 100%);
  padding:78px 0 64px;
  border-bottom:1px solid rgba(12,34,53,.06);
}
.pvc-product-grid{
  display:grid;
  grid-template-columns:minmax(340px,520px) minmax(0,1fr);
  gap:58px;
  align-items:center;
}
.pvc-gallery input{position:absolute;opacity:0;pointer-events:none;}
.pvc-gallery-main{
  position:relative;
  min-height:500px;
  border-radius:28px;
  background:#fff;
  border:1px solid rgba(12,34,53,.1);
  box-shadow:0 26px 70px rgba(12,34,53,.09);
  overflow:hidden;
}
.pvc-gallery-panel{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  margin:0;
  opacity:0;
  transform:scale(.985);
  transition:opacity .25s ease,transform .25s ease;
}
.pvc-gallery-panel img{
  width:100%;
  height:100%;
  max-height:450px;
  object-fit:contain;
  display:block;
  border-radius:20px;
}
.pvc-gallery-panel figcaption{
  position:absolute;
  left:24px;
  bottom:20px;
  border-radius:999px;
  background:rgba(12,34,53,.82);
  color:#fff;
  font-size:13px;
  font-weight:800;
  padding:8px 12px;
  backdrop-filter:blur(8px);
}
#pvc-gallery-1:checked ~ .pvc-gallery-main .panel-1,
#pvc-gallery-2:checked ~ .pvc-gallery-main .panel-2,
#pvc-gallery-3:checked ~ .pvc-gallery-main .panel-3,
#pvc-gallery-4:checked ~ .pvc-gallery-main .panel-4{opacity:1;transform:scale(1);z-index:2;}
.pvc-gallery-thumbs{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:18px;
}
.pvc-gallery-thumbs label{
  display:block;
  aspect-ratio:1/1;
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  border:2px solid transparent;
  box-shadow:0 12px 34px rgba(12,34,53,.08);
  cursor:pointer;
  transition:border-color .2s ease,transform .2s ease,box-shadow .2s ease;
}
.pvc-gallery-thumbs label:hover{transform:translateY(-2px);box-shadow:0 16px 42px rgba(12,34,53,.12);}
.pvc-gallery-thumbs img{width:100%;height:100%;object-fit:cover;display:block;}
#pvc-gallery-1:checked ~ .pvc-gallery-thumbs label[for="pvc-gallery-1"],
#pvc-gallery-2:checked ~ .pvc-gallery-thumbs label[for="pvc-gallery-2"],
#pvc-gallery-3:checked ~ .pvc-gallery-thumbs label[for="pvc-gallery-3"],
#pvc-gallery-4:checked ~ .pvc-gallery-thumbs label[for="pvc-gallery-4"]{border-color:#1e8bd0;box-shadow:0 0 0 4px rgba(30,139,208,.12),0 16px 42px rgba(12,34,53,.12);}
.pvc-product-content .eyebrow{margin-bottom:18px;}
.pvc-product-content h1{
  margin:0 0 16px;
  font-size:clamp(44px,5vw,78px);
  line-height:.96;
  letter-spacing:-2.2px;
  color:#082236;
}
.pvc-product-lead{
  max-width:760px;
  margin:0 0 28px;
  color:#41576b;
  font-size:18px;
  line-height:1.75;
}
.pvc-feature-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0 26px;
  margin:30px 0 30px;
}
.pvc-feature-item{
  display:grid;
  grid-template-columns:54px 1fr;
  gap:16px;
  padding:18px 0;
  border-bottom:1px solid rgba(12,34,53,.1);
}
.pvc-feature-icon{
  width:54px;
  height:54px;
  border-radius:18px;
  background:#eef8ff;
  color:#1b83c5;
  display:flex;
  align-items:center;
  justify-content:center;
}
.pvc-feature-icon svg{width:31px;height:31px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.pvc-feature-item strong{
  display:block;
  margin:0 0 6px;
  color:#0c2235;
  font-size:17px;
  line-height:1.3;
}
.pvc-feature-item p{
  margin:0;
  color:#526575;
  font-size:14.5px;
  line-height:1.55;
}
.pvc-product-actions{display:flex;gap:14px;flex-wrap:wrap;}
.pvc-product-actions .btn{min-width:150px;}
@media(max-width:1100px){
  .pvc-product-grid{grid-template-columns:1fr;gap:34px;}
  .pvc-gallery-main{min-height:430px;}
  .pvc-product-content h1{font-size:52px;}
}
@media(max-width:760px){
  .pvc-product-showcase{padding:34px 0 38px;}
  .pvc-product-grid{gap:26px;}
  .pvc-product-content{order:-1;}
  .pvc-product-content h1{font-size:42px;letter-spacing:-1.3px;}
  .pvc-product-lead{font-size:15.5px;line-height:1.65;margin-bottom:18px;}
  .pvc-gallery-main{min-height:330px;border-radius:22px;}
  .pvc-gallery-panel{padding:16px;}
  .pvc-gallery-panel img{max-height:300px;border-radius:16px;}
  .pvc-gallery-panel figcaption{left:14px;bottom:14px;font-size:11.5px;padding:7px 10px;}
  .pvc-gallery-thumbs{gap:9px;margin-top:12px;}
  .pvc-gallery-thumbs label{border-radius:13px;}
  .pvc-feature-list{grid-template-columns:1fr;gap:0;margin:20px 0 22px;}
  .pvc-feature-item{grid-template-columns:46px 1fr;gap:13px;padding:14px 0;}
  .pvc-feature-icon{width:46px;height:46px;border-radius:15px;}
  .pvc-feature-icon svg{width:27px;height:27px;}
  .pvc-feature-item strong{font-size:15.5px;}
  .pvc-feature-item p{font-size:13.5px;line-height:1.5;}
  .pvc-product-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
  .pvc-product-actions .btn{min-width:0;width:100%;padding-left:10px;padding-right:10px;}
}

/* PVC Perde sayfasi - ilgili urun gruplari grid duzeltmesi */
.pvc-related-products .section-head{
  align-items:center;
  text-align:center;
  max-width:980px;
  margin:0 auto 34px;
}
.pvc-related-products .section-head h2{
  font-size:clamp(32px,4vw,56px);
  line-height:1.06;
  letter-spacing:-1.4px;
  margin-bottom:0;
}
.pvc-related-products .content-link-grid{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:18px!important;
  width:100%;
  max-width:100%;
  overflow:visible!important;
}
.pvc-related-products .content-link-card{
  display:block!important;
  padding:24px 26px!important;
  min-width:0!important;
  min-height:142px!important;
  overflow:visible!important;
  border-radius:24px!important;
  background:#fff!important;
  border:1px solid rgba(12,34,53,.09)!important;
  box-shadow:0 18px 44px rgba(12,34,53,.065)!important;
  color:#0c2235!important;
  text-decoration:none!important;
}
.pvc-related-products .content-link-card strong{
  display:block!important;
  font-size:20px!important;
  line-height:1.22!important;
  margin:0 0 10px!important;
  color:#0c2235!important;
  letter-spacing:-.35px!important;
  white-space:normal!important;
}
.pvc-related-products .content-link-card span{
  display:block!important;
  font-size:16px!important;
  line-height:1.55!important;
  color:#5d6f7f!important;
  white-space:normal!important;
  overflow:visible!important;
}
.pvc-related-products .content-link-card:hover{
  transform:translateY(-3px);
  box-shadow:0 26px 62px rgba(12,34,53,.11)!important;
}
@media(max-width:1024px){
  .pvc-related-products .content-link-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  .pvc-related-products .content-link-card{min-height:132px!important;padding:22px!important;}
}
@media(max-width:680px){
  .pvc-related-products .section-head{text-align:left;align-items:flex-start;margin-bottom:22px;}
  .pvc-related-products .section-head h2{font-size:clamp(28px,8vw,38px);letter-spacing:-.7px;}
  .pvc-related-products .content-link-grid{grid-template-columns:1fr!important;gap:14px!important;}
  .pvc-related-products .content-link-card{min-height:auto!important;padding:20px!important;border-radius:20px!important;}
  .pvc-related-products .content-link-card strong{font-size:19px!important;}
  .pvc-related-products .content-link-card span{font-size:14.8px!important;line-height:1.55!important;}
}

/* PVC Perde sayfasi final premium hero duzeni */
.pvc-product-showcase{
  background:radial-gradient(circle at 76% 18%,rgba(33,137,171,.78) 0%,rgba(16,92,126,.68) 34%,rgba(7,57,82,.95) 68%,#07304a 100%)!important;
  padding:94px 0 92px!important;
  border-bottom:0!important;
  overflow:hidden!important;
}
.pvc-product-showcase .container{max-width:1220px!important;}
.pvc-product-grid{
  grid-template-columns:minmax(0,560px) minmax(420px,1fr)!important;
  gap:56px!important;
  align-items:center!important;
}
.pvc-product-content{order:-1!important;color:#fff!important;}
.pvc-product-content .eyebrow{
  color:#d7f2ff!important;
  background:rgba(255,255,255,.12)!important;
  border:1px solid rgba(255,255,255,.22)!important;
  box-shadow:none!important;
  margin-bottom:26px!important;
}
.pvc-product-content h1{
  color:#fff!important;
  font-size:clamp(58px,5vw,86px)!important;
  line-height:.95!important;
  letter-spacing:-3px!important;
  margin-bottom:24px!important;
}
.pvc-product-lead{
  color:rgba(255,255,255,.9)!important;
  font-size:18px!important;
  line-height:1.72!important;
  max-width:620px!important;
  margin-bottom:22px!important;
}
.pvc-hero-chips{
  display:flex!important;
  flex-wrap:wrap!important;
  gap:10px!important;
  margin:0 0 24px!important;
}
.pvc-hero-chips span{
  color:#eaf8ff!important;
  background:rgba(255,255,255,.12)!important;
  border:1px solid rgba(255,255,255,.2)!important;
  border-radius:999px!important;
  padding:9px 14px!important;
  font-size:14px!important;
  font-weight:700!important;
}
.pvc-feature-list{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:14px!important;
  margin:24px 0 28px!important;
}
.pvc-feature-item{
  display:grid!important;
  grid-template-columns:52px 1fr!important;
  gap:14px!important;
  align-items:start!important;
  padding:18px 18px!important;
  min-height:138px!important;
  border:1px solid rgba(255,255,255,.14)!important;
  border-radius:20px!important;
  background:rgba(255,255,255,.10)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08)!important;
}
.pvc-feature-icon{
  width:48px!important;
  height:48px!important;
  border-radius:16px!important;
  background:rgba(255,255,255,.13)!important;
  color:#8bd9ff!important;
}
.pvc-feature-icon svg{width:27px!important;height:27px!important;}
.pvc-feature-item strong{
  color:#fff!important;
  font-size:17px!important;
  line-height:1.25!important;
  margin-bottom:7px!important;
}
.pvc-feature-item p{
  color:rgba(255,255,255,.78)!important;
  font-size:14px!important;
  line-height:1.45!important;
}
.pvc-product-actions{gap:14px!important;margin-top:4px!important;}
.pvc-product-actions .btn{
  min-width:150px!important;
  border-radius:999px!important;
  font-weight:800!important;
}
.pvc-product-actions .btn-primary{
  background:#fff!important;
  color:#0c3b55!important;
  border-color:#fff!important;
}
.pvc-product-actions .btn-secondary{
  background:rgba(255,255,255,.06)!important;
  color:#fff!important;
  border:1px solid rgba(255,255,255,.42)!important;
}
.pvc-gallery{min-width:0!important;}
.pvc-gallery-main{
  min-height:442px!important;
  border-radius:30px!important;
  background:#fff!important;
  border:0!important;
  box-shadow:0 30px 80px rgba(0,0,0,.20)!important;
}
.pvc-gallery-panel{padding:22px!important;}
.pvc-gallery-panel img{
  max-height:none!important;
  object-fit:cover!important;
  border-radius:22px!important;
}
.pvc-gallery-panel figcaption{
  left:28px!important;
  bottom:26px!important;
  background:rgba(12,34,53,.82)!important;
  font-size:13px!important;
}
.pvc-gallery-thumbs{
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:16px!important;
  margin-top:22px!important;
}
.pvc-gallery-thumbs label{
  aspect-ratio:1.28/1!important;
  border-radius:16px!important;
  background:rgba(255,255,255,.96)!important;
  border:2px solid rgba(255,255,255,.72)!important;
  box-shadow:0 16px 40px rgba(0,0,0,.18)!important;
}
.pvc-gallery-thumbs img{object-fit:cover!important;}
#pvc-gallery-1:checked ~ .pvc-gallery-thumbs label[for="pvc-gallery-1"],
#pvc-gallery-2:checked ~ .pvc-gallery-thumbs label[for="pvc-gallery-2"],
#pvc-gallery-3:checked ~ .pvc-gallery-thumbs label[for="pvc-gallery-3"],
#pvc-gallery-4:checked ~ .pvc-gallery-thumbs label[for="pvc-gallery-4"]{
  border-color:#28a8e5!important;
  box-shadow:0 0 0 3px rgba(40,168,229,.28),0 16px 40px rgba(0,0,0,.18)!important;
}
@media(max-width:1180px){
  .pvc-product-grid{grid-template-columns:1fr!important;gap:36px!important;}
  .pvc-gallery-main{min-height:420px!important;}
}
@media(max-width:760px){
  .pvc-product-showcase{padding:38px 0 44px!important;}
  .pvc-product-content h1{font-size:46px!important;letter-spacing:-1.7px!important;}
  .pvc-product-lead{font-size:15.5px!important;line-height:1.62!important;}
  .pvc-hero-chips{gap:8px!important;margin-bottom:18px!important;}
  .pvc-hero-chips span{font-size:12.5px!important;padding:8px 10px!important;}
  .pvc-feature-list{grid-template-columns:1fr!important;gap:12px!important;}
  .pvc-feature-item{min-height:auto!important;padding:15px!important;grid-template-columns:44px 1fr!important;}
  .pvc-feature-icon{width:42px!important;height:42px!important;}
  .pvc-gallery-main{min-height:310px!important;border-radius:24px!important;}
  .pvc-gallery-panel{padding:14px!important;}
  .pvc-gallery-panel img{border-radius:18px!important;}
  .pvc-gallery-thumbs{gap:9px!important;margin-top:12px!important;}
  .pvc-gallery-thumbs label{border-radius:12px!important;}
}

/* FIX 2026-06-24: Mobile homepage slider must show full portrait creatives without cropping. Desktop slider is untouched. */
@media (max-width:768px){
  body .home-image-slider.home-mobile-slider{
    display:block!important;
    height:auto!important;
    min-height:0!important;
    max-height:none!important;
    overflow:hidden!important;
    background:#071226!important;
  }
  body .home-image-slider.home-mobile-slider .home-slider-track,
  body .home-image-slider.home-mobile-slider .home-slider-slide{
    height:auto!important;
    min-height:0!important;
    max-height:none!important;
    align-items:flex-start!important;
  }
  body .home-image-slider.home-mobile-slider .home-slider-slide img{
    width:100%!important;
    height:auto!important;
    max-height:none!important;
    aspect-ratio:auto!important;
    object-fit:contain!important;
    object-position:center top!important;
    display:block!important;
  }
  body .home-image-slider.home-mobile-slider .home-slider-dots{
    bottom:12px!important;
  }
}
@media (max-width:390px){
  body .home-image-slider.home-mobile-slider{
    height:auto!important;
    max-height:none!important;
  }
  body .home-image-slider.home-mobile-slider .home-slider-slide img{
    height:auto!important;
    max-height:none!important;
  }
}

/* FIX 2026-06-29: Hizmet sayfalarinda mobil sıralama: başlık/açıklama -> galeri -> etiketler -> özellik kartları. Masaüstü etkilenmez. */
@media (max-width:760px){
  .pvc-product-showcase .pvc-product-grid{
    display:flex!important;
    flex-direction:column!important;
  }
  .pvc-product-showcase .pvc-product-content{
    display:contents!important;
  }
  .pvc-product-showcase .pvc-product-content .eyebrow{order:1!important;}
  .pvc-product-showcase .pvc-product-content h1{order:2!important;}
  .pvc-product-showcase .pvc-product-lead{order:3!important;}
  .pvc-product-showcase .pvc-gallery{order:4!important;width:100%!important;}
  .pvc-product-showcase .pvc-hero-chips{order:5!important;width:100%!important;}
  .pvc-product-showcase .pvc-feature-list{order:6!important;width:100%!important;}
}


/* PRO PVC - Premium technical advantages section (desktop only) */
.home-quality-strip.quality-premium-desktop{
  background:linear-gradient(180deg,#f6fbfe 0%,#ffffff 48%,#f4f9fc 100%);
  border-top:1px solid rgba(8,55,82,.06);
  border-bottom:1px solid rgba(8,55,82,.07);
  padding:44px 0 48px;
}
.quality-premium-desktop .container{width:min(94%,1360px);max-width:1360px;}
.quality-premium-shell{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(12,94,130,.12);
  border-radius:30px;
  background:linear-gradient(145deg,rgba(255,255,255,.98),rgba(241,249,253,.96));
  box-shadow:0 28px 80px rgba(7,48,72,.08);
  padding:34px 34px 30px;
}
.quality-premium-shell:before{
  content:"";
  position:absolute;
  width:430px;
  height:430px;
  right:-170px;
  top:-180px;
  border-radius:999px;
  background:radial-gradient(circle,rgba(36,184,165,.14),rgba(36,184,165,0) 68%);
  pointer-events:none;
}
.quality-premium-head{
  position:relative;
  text-align:center;
  max-width:860px;
  margin:0 auto 28px;
}
.quality-premium-head span{
  display:inline-flex;
  align-items:center;
  height:30px;
  padding:0 14px;
  border-radius:999px;
  background:#e7f5fb;
  color:#0b6690;
  font-size:12px;
  font-weight:800;
  letter-spacing:.02em;
  text-transform:uppercase;
}
.quality-premium-head h2{
  margin:14px 0 10px;
  color:#061e34;
  font-size:clamp(34px,3.2vw,54px);
  line-height:1.05;
  font-weight:800;
  letter-spacing:-1.6px;
}
.quality-premium-head h2:after{
  content:"";
  display:block;
  width:86px;
  height:4px;
  margin:16px auto 0;
  border-radius:999px;
  background:linear-gradient(90deg,#0876ba,#22b8a5);
}
.quality-premium-head p{
  max-width:720px;
  margin:0 auto;
  color:#496174;
  font-size:17px;
  line-height:1.6;
}
.quality-premium-grid{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.quality-premium-card{
  position:relative;
  min-height:214px;
  padding:22px 22px 20px;
  border:1px solid rgba(9,57,84,.10);
  border-radius:22px;
  background:rgba(255,255,255,.94);
  box-shadow:0 18px 44px rgba(7,48,72,.065);
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}
.quality-premium-card:hover{
  transform:translateY(-4px);
  border-color:rgba(13,129,174,.22);
  box-shadow:0 24px 58px rgba(7,48,72,.11);
}
.quality-premium-no{
  position:absolute;
  left:18px;
  top:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:12px;
  background:#eaf7fc;
  color:#08709b;
  font-size:14px;
  font-weight:900;
}
.quality-premium-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:82px;
  height:82px;
  margin:38px auto 18px;
  border-radius:50%;
  background:linear-gradient(145deg,#edf8fd,#dff0f8);
  color:#0a5c8d;
  font-size:28px;
  font-weight:800;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
}
.quality-premium-card h3{
  margin:0 0 9px;
  color:#061e34;
  text-align:center;
  font-size:19px;
  line-height:1.22;
  font-weight:800;
  letter-spacing:-.45px;
}
.quality-premium-card h3:after{
  content:"";
  display:block;
  width:28px;
  height:3px;
  margin:10px auto 0;
  border-radius:999px;
  background:#19b7aa;
}
.quality-premium-card p{
  margin:0;
  color:#4d6578;
  text-align:center;
  font-size:14px;
  line-height:1.55;
}
.quality-premium-card-accent{
  grid-column:span 2;
  min-height:214px;
  display:grid;
  grid-template-columns:120px 1fr;
  align-items:center;
  column-gap:20px;
  background:linear-gradient(140deg,#063653,#087ea1);
  border-color:rgba(255,255,255,.16);
  box-shadow:0 24px 62px rgba(3,52,79,.20);
}
.quality-premium-card-accent .quality-premium-no{
  background:rgba(255,255,255,.14);
  color:#fff;
}
.quality-premium-card-accent .quality-premium-badge{
  position:absolute;
  right:18px;
  top:18px;
  display:inline-flex;
  align-items:center;
  height:28px;
  padding:0 12px;
  border-radius:999px;
  background:#20c7ae;
  color:#fff;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
}
.quality-premium-card-accent .quality-premium-icon{
  grid-row:1 / span 3;
  width:104px;
  height:104px;
  margin:26px 0 0;
  background:linear-gradient(145deg,rgba(75,187,211,.45),rgba(255,255,255,.10));
  color:#fff;
  font-size:42px;
}
.quality-premium-card-accent h3,
.quality-premium-card-accent p{
  text-align:left;
  color:#fff;
}
.quality-premium-card-accent h3{align-self:end;font-size:24px;margin-top:42px;}
.quality-premium-card-accent h3:after{margin:11px 0 0;background:#fff;opacity:.9;}
.quality-premium-card-accent p{align-self:start;max-width:360px;opacity:.9;font-size:15px;}
.quality-premium-bottom{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:0;
  margin-top:22px;
  padding:18px 20px;
  border:1px solid rgba(9,57,84,.08);
  border-radius:20px;
  background:rgba(255,255,255,.72);
  box-shadow:0 16px 42px rgba(7,48,72,.055);
}
.quality-premium-bottom span{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:0 22px;
  border-right:1px solid rgba(9,57,84,.12);
}
.quality-premium-bottom span:last-child{border-right:0;}
.quality-premium-bottom b{
  color:#08263b;
  font-size:15px;
  font-weight:850;
}
.quality-premium-bottom small{
  color:#5f7384;
  font-size:12.5px;
  line-height:1.35;
}
@media(max-width:1180px){
  .quality-premium-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
  .quality-premium-card-accent{grid-column:span 3;}
}
@media(max-width:760px){
  .home-quality-strip.quality-premium-desktop{display:none!important;}
}

/* 2026-06-29: Ana sayfa endustriyel kontrol alaninda masaustu sasma ve buyuk gorunme duzeltmesi */
html, body{
  max-width:100%;
  overflow-x:hidden;
}

@media (min-width:1181px){
  .industrial-control-section{
    padding:64px 0 72px!important;
  }
  .industrial-control-section:before{
    width:440px!important;
    height:440px!important;
    right:-120px!important;
    top:24px!important;
  }
  .industrial-control-card{
    width:min(1240px,92vw)!important;
    max-width:1240px!important;
    grid-template-columns:minmax(0,.92fr) minmax(390px,.9fr)!important;
    gap:48px!important;
    align-items:center!important;
  }
  .industrial-control-collage{
    min-height:clamp(430px,43vw,540px)!important;
    gap:18px!important;
  }
  .industrial-collage-main{
    min-height:clamp(430px,43vw,540px)!important;
    border-radius:30px 12px 12px 30px!important;
  }
  .industrial-collage-small{
    min-height:clamp(204px,20vw,261px)!important;
  }
  .industrial-control-copy{
    max-width:650px!important;
  }
  .industrial-control-copy .kicker{
    margin-bottom:14px!important;
    font-size:12px!important;
  }
  .industrial-control-copy h2{
    max-width:650px!important;
    margin-bottom:20px!important;
    font-size:clamp(34px,3.35vw,52px)!important;
    line-height:1.08!important;
    letter-spacing:-1.75px!important;
  }
  .industrial-control-copy .section-text{
    max-width:620px!important;
    margin-bottom:16px!important;
    font-size:16px!important;
    line-height:1.72!important;
  }
  .industrial-control-copy .solution-tags{
    max-width:610px!important;
    margin-top:22px!important;
    gap:12px!important;
  }
  .industrial-control-copy .solution-tags span{
    min-height:44px!important;
    padding:10px 14px!important;
    font-size:13.5px!important;
  }
  .industrial-control-link{
    margin-top:24px!important;
    padding:13px 19px!important;
  }
}

@media (min-width:981px) and (max-width:1180px){
  .industrial-control-section{
    padding:58px 0 66px!important;
  }
  .industrial-control-card{
    grid-template-columns:minmax(0,.94fr) minmax(340px,.96fr)!important;
    gap:32px!important;
  }
  .industrial-control-collage{
    min-height:400px!important;
    gap:14px!important;
  }
  .industrial-collage-main{
    min-height:400px!important;
    border-radius:26px 10px 10px 26px!important;
  }
  .industrial-collage-small{
    min-height:193px!important;
    border-radius:10px!important;
  }
  .industrial-control-copy{
    max-width:560px!important;
  }
  .industrial-control-copy h2{
    font-size:clamp(30px,3.6vw,42px)!important;
    line-height:1.1!important;
    letter-spacing:-1.25px!important;
    margin-bottom:16px!important;
  }
  .industrial-control-copy .section-text{
    font-size:15px!important;
    line-height:1.68!important;
    margin-bottom:13px!important;
  }
  .industrial-control-copy .solution-tags{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:10px!important;
    margin-top:18px!important;
  }
  .industrial-control-copy .solution-tags span{
    min-height:40px!important;
    font-size:12.5px!important;
    padding:9px 10px!important;
  }
}

@media (max-width:980px){
  .industrial-control-card{
    grid-template-columns:1fr!important;
  }
}

/* =========================================================
   MOBILE HORIZONTAL SCROLL LOCK FIX - 2026-06-29
   Amaç: Hizmet sayfalarında kullanıcı sayfayı sağa/sola çekemesin.
   Tasarım düzenini değiştirmeden taşan elemanları viewport içinde tutar.
   ========================================================= */
html,
body{
  width:100%!important;
  max-width:100%!important;
  overflow-x:hidden!important;
  overscroll-behavior-x:none!important;
}

@media (max-width: 768px){
  body{
    position:relative!important;
    touch-action:pan-y!important;
  }

  body > *,
  .page,
  .site,
  .wrapper,
  main,
  header,
  footer,
  section,
  .header,
  .ap-header,
  .ac2-hero,
  .ac2-slider,
  .ac2-slide,
  .ac2-slide-grid,
  .product-hero,
  .product-detail,
  .product-section,
  .service-detail,
  .service-hero,
  .mobile-product-shell,
  .mobile-product-content{
    max-width:100vw!important;
    overflow-x:hidden!important;
  }

  .container,
  .ap-container,
  .ac2-slide .container,
  .ac2-slide-grid.container{
    width:calc(100% - 28px)!important;
    max-width:calc(100% - 28px)!important;
    margin-left:auto!important;
    margin-right:auto!important;
  }

  img,
  video,
  svg,
  canvas,
  iframe{
    max-width:100%!important;
  }

  .ac2-copy,
  .hero-copy,
  .product-copy,
  .service-copy{
    left:0!important;
    right:auto!important;
    width:100%!important;
    max-width:100%!important;
    overflow-wrap:anywhere!important;
    word-break:normal!important;
  }

  .ac2-copy p,
  .ac2-copy h1,
  .ac2-copy h2,
  .hero-copy p,
  .hero-copy h1,
  .product-copy p,
  .service-copy p{
    max-width:100%!important;
    overflow-wrap:anywhere!important;
  }

  .hero-trust-line,
  .feature-pills,
  .product-tags,
  .service-tags,
  .ac2-slide-buttons{
    max-width:100%!important;
    overflow-x:hidden!important;
  }

  .sticky-contact,
  .mobile-bottom-bar,
  .bottom-contact,
  .fixed-contact-bar{
    left:0!important;
    right:0!important;
    width:100%!important;
    max-width:100vw!important;
  }
}
