/* ===== ENERJIST SHARED CSS ===== */
:root {
  --green: #3aaa35;
  --green-dark: #2b8a27;
  --green-light: #5cc957;
  --blue: #1976d2;
  --blue-dark: #1256a0;
  --blue-light: #4d9de0;
  --gray: #555f6e;
  --gray-light: #8a9ab0;
  --bg: #f5f7fa;
  --white: #ffffff;
  --dark: #1a2332;
  --text: #2d3a4a;
  --red: #e53935;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
/* ─── HEADER — iki katlı ─── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: flex; flex-direction: column;
}

/* Üst sıra: logo + nav + provided by */
.header-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3vw; height: 62px; gap: 16px;
  border-bottom: 1px solid #f0f3f7;
}

/* Sol: site markası */
.site-logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; flex-shrink: 0; }
.site-logo-name {
  font-family: 'Nunito', sans-serif; font-weight: 900;
  font-size: 1.2rem; letter-spacing: -0.5px; color: var(--dark);
}
.site-logo-name span.tld { color: var(--green); }
.site-logo-sub { font-size: 0.58rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-light); margin-top: 2px; }

/* Orta: nav */
nav { display: flex; gap: 20px; align-items: center; flex: 1; justify-content: center; }
nav a { color: var(--gray); text-decoration: none; font-size: 0.83rem; font-weight: 600; transition: color 0.2s; white-space: nowrap; }
nav a:hover, nav a.active { color: var(--blue); }

/* Sağ: Provided by */
.header-provided { display: flex; align-items: center; gap: 8px; flex-shrink: 0; border-left: 1px solid #e8edf3; padding-left: 14px; }
.header-provided-label { font-size: 0.58rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-light); white-space: nowrap; }
.header-provided-logos { display: flex; align-items: center; gap: 8px; }
.header-provided-logos a { display: flex; align-items: center; opacity: 0.82; transition: opacity 0.2s; }
.header-provided-logos a:hover { opacity: 1; }
.header-provided-logos img { height: 26px; width: auto; }

/* ─── TRUST BAR — header içinde alt sıra ─── */
.trust-bar {
  background: #f5f7fa;
  border-top: 1px solid #eaeef3;
  height: 36px;
  overflow: hidden;
}
.trust-bar-inner {
  height: 36px;
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center;
  padding: 0 3vw;
  gap: 0;
}
.trust-item {
  display: flex; align-items: center; gap: 5px;
  padding: 0 16px; height: 36px;
  border-right: 1px solid #e4eaf2;
  flex-shrink: 0; white-space: nowrap;
  font-size: 0.72rem; font-weight: 700;
  font-family: 'Nunito', sans-serif; color: #2d3a4a;
}
.trust-item:first-child { padding-left: 0; }
.trust-powered {
  display: flex; align-items: center; gap: 6px;
  padding-left: 16px; margin-left: auto;
  height: 36px; flex-shrink: 0;
  font-size: 0.52rem; color: #b8c4cc;
  letter-spacing: 1px; text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
}
.trust-powered img { height: 18px; width: auto; opacity: 0.7; }

/* ─── BODY — header toplam yükseklik: 62 + 36 = 98px ─── */
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--white); color: var(--text);
  overflow-x: hidden;
  padding-top: 98px;
}

/* ─── HERO ─── */
.hero {
  padding: 56px 4vw 70px;
  min-height: calc(88vh - 98px); display: flex; align-items: center;
  background: linear-gradient(135deg, #f0f7ff 0%, #f5fbf0 100%);
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 80% 40%, rgba(58,170,53,0.07) 0%, transparent 70%),
              radial-gradient(ellipse 40% 50% at 10% 70%, rgba(25,118,210,0.06) 0%, transparent 60%);
}
.hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(58,170,53,0.1); border: 1px solid rgba(58,170,53,0.25); padding: 6px 14px; border-radius: 50px; font-size: 0.72rem; letter-spacing: 1.2px; text-transform: uppercase; color: var(--green-dark); font-weight: 700; margin-bottom: 22px; }
.hero h1 { font-family: 'Nunito', sans-serif; font-size: clamp(2rem, 3.2vw, 3rem); font-weight: 900; line-height: 1.15; color: var(--dark); margin-bottom: 18px; }
.hl-green { color: var(--green); }
.hl-blue  { color: var(--blue); }
.hero p { font-size: 0.97rem; color: var(--gray); line-height: 1.8; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; margin-top: 44px; padding-top: 32px; border-top: 1px solid rgba(0,0,0,0.08); }
.hero-stat { flex: 1; text-align: center; border-right: 1px solid rgba(0,0,0,0.07); padding: 0 14px; }
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-family: 'Nunito', sans-serif; font-size: 1.9rem; font-weight: 900; color: var(--green); }
.hero-stat-lbl { font-size: 0.7rem; color: var(--gray-light); margin-top: 3px; }

/* Hero visual panel */
.hero-visual { background: var(--white); border-radius: 18px; box-shadow: 0 18px 56px rgba(0,0,0,0.1); overflow: hidden; }
.hv-header { background: linear-gradient(90deg, var(--green), var(--blue)); padding: 14px 22px; display: flex; align-items: center; gap: 7px; }
.hv-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.35); }
.hv-title { color: white; font-size: 0.78rem; font-weight: 700; margin-left: 6px; }
.hv-body { padding: 22px; }
.hv-meter { background: linear-gradient(135deg, #f0f7ff, #f5fbf0); border: 1px solid rgba(25,118,210,0.12); border-radius: 10px; padding: 18px; margin-bottom: 14px; }
.hv-lbl { font-size: 0.63rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-light); margin-bottom: 5px; }
.hv-val { font-family: 'Nunito', sans-serif; font-size: 2.2rem; font-weight: 900; color: var(--blue); }
.hv-unit { font-size: 0.9rem; color: var(--gray); margin-left: 4px; font-weight: 600; }
.hv-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid #f0f3f7; font-size: 0.82rem; }
.hv-row:last-child { border-bottom: none; }
.hv-lbl2 { color: var(--gray-light); display: flex; align-items: center; gap: 5px; }
.hv-rv { font-weight: 700; color: var(--dark); }
.s-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); display: inline-block; animation: blink 1.8s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ─── BRAND STRIP ─── */
.brand-strip { background: var(--dark); padding: 20px 4vw; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.bs-lbl { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: #4a6070; white-space: nowrap; }
.bs-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.bs-sep { color: #2a3a4a; font-size: 1.2rem; }
.b-tag { padding: 7px 16px; border-radius: 6px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.82rem; letter-spacing: 0.8px; border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.04); transition: all 0.2s; text-decoration: none; }
.b-tag:hover { color: var(--white); }
.b-tag.authorized { border-color: rgba(58,170,53,0.4); color: var(--green-light); background: rgba(58,170,53,0.08); }
.b-tag.authorized:hover { background: rgba(58,170,53,0.18); }

/* ─── SHARED SECTION ─── */
section { padding: 76px 4vw; }
.max-w { max-width: 1200px; margin: 0 auto; }
.s-label { font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
.s-label.green { color: var(--green-dark); }
.s-label.blue  { color: var(--blue); }
.s-title { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: clamp(1.6rem, 2.6vw, 2.4rem); color: var(--dark); line-height: 1.2; margin-bottom: 14px; }
.s-desc { color: var(--gray); font-size: 0.94rem; line-height: 1.8; max-width: 520px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; flex-wrap: wrap; gap: 18px; }

/* ─── BUTTONS ─── */
.btn-green { background: var(--green); color: var(--white); padding: 12px 28px; border-radius: 8px; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: all 0.2s; box-shadow: 0 4px 14px rgba(58,170,53,0.28); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--blue); color: var(--blue); padding: 10px 26px; border-radius: 8px; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: all 0.2s; }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-white { background: var(--white); color: var(--green-dark); padding: 13px 30px; border-radius: 8px; font-weight: 800; font-size: 0.9rem; text-decoration: none; transition: all 0.2s; box-shadow: 0 4px 18px rgba(0,0,0,0.14); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }
.btn-ghost { border: 2px solid rgba(255,255,255,0.4); color: var(--white); padding: 11px 28px; border-radius: 8px; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: all 0.2s; }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ─── PRODUCTS ─── */
.products { background: var(--bg); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 18px; }
.p-card { background: var(--white); border-radius: 14px; border: 1px solid #e4eaf2; padding: 26px; transition: all 0.25s; position: relative; overflow: hidden; }
.p-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green), var(--blue)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.p-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.09); border-color: transparent; }
.p-card:hover::after { transform: scaleX(1); }
.p-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 16px; }
.p-icon.g { background: rgba(58,170,53,0.1); }
.p-icon.b { background: rgba(25,118,210,0.1); }
.p-card h3 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem; color: var(--dark); margin-bottom: 9px; }
.p-card p { color: var(--gray); font-size: 0.86rem; line-height: 1.7; margin-bottom: 16px; }
.p-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.p-tag { font-size: 0.67rem; padding: 4px 9px; border-radius: 4px; font-weight: 700; letter-spacing: 0.4px; }
.p-tag.auth { background: rgba(58,170,53,0.1); color: var(--green-dark); border: 1px solid rgba(58,170,53,0.2); }
.p-tag.other { background: rgba(25,118,210,0.08); color: var(--blue-dark); border: 1px solid rgba(25,118,210,0.15); }

/* ─── MONTAJ SECTION ─── */
.montaj-section { background: var(--white); }
.montaj-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.montaj-left, .montaj-right { }

.risk-list { margin-top: 24px; }
.risk-item { border-radius: 12px; padding: 24px; display: flex; gap: 16px; }
.risk-item.bad { background: rgba(229,57,53,0.05); border: 1px solid rgba(229,57,53,0.2); }
.risk-icon { font-size: 1.5rem; flex-shrink: 0; }
.risk-item h4 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.95rem; color: var(--red); margin-bottom: 10px; }
.risk-item ul { padding-left: 18px; display: flex; flex-direction: column; gap: 7px; }
.risk-item ul li { color: var(--gray); font-size: 0.85rem; line-height: 1.55; }

.montaj-steps { display: flex; flex-direction: column; gap: 18px; }
.m-step { display: flex; gap: 16px; align-items: flex-start; padding: 18px; background: var(--bg); border-radius: 10px; border: 1px solid #e4eaf2; }
.m-num { width: 34px; height: 34px; border-radius: 50%; background: var(--green); color: white; font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.m-step h4 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.92rem; color: var(--dark); margin-bottom: 5px; }
.m-step p { color: var(--gray); font-size: 0.84rem; line-height: 1.6; }

/* ─── SERVICES ─── */
.services-section { background: var(--bg); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; border: 1px solid #e4eaf2; border-radius: 16px; overflow: hidden; }
.svc-item { padding: 30px 26px; background: var(--white); border-right: 1px solid #e4eaf2; border-bottom: 1px solid #e4eaf2; transition: background 0.2s; }
.svc-item:nth-child(3n) { border-right: none; }
.svc-item:nth-child(n+4) { border-bottom: none; }
.svc-item:hover { background: #f8fcf8; }
.svc-num { font-family: 'Nunito', sans-serif; font-size: 0.65rem; font-weight: 900; letter-spacing: 2px; color: var(--green); margin-bottom: 12px; }
.svc-item h3 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.97rem; color: var(--dark); margin-bottom: 9px; }
.svc-item p { color: var(--gray); font-size: 0.84rem; line-height: 1.7; }

/* ─── WHY SECTION ─── */
.why-section { background: var(--white); }
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.why-list { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border-radius: 12px; background: var(--bg); border: 1px solid #e4eaf2; transition: border-color 0.2s; }
.why-item:hover { border-color: var(--green); }
.why-icon { width: 40px; height: 40px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.why-icon.g { background: rgba(58,170,53,0.1); }
.why-icon.b { background: rgba(25,118,210,0.1); }
.why-item h4 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.92rem; color: var(--dark); margin-bottom: 5px; }
.why-item p { color: var(--gray); font-size: 0.83rem; line-height: 1.65; }
.cert-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.cert-badge { display: flex; align-items: center; gap: 7px; background: var(--bg); border: 1px solid #e4eaf2; padding: 9px 14px; border-radius: 7px; font-size: 0.77rem; font-weight: 700; color: var(--dark); }

/* Brand Showcase */
.brand-showcase { display: flex; flex-direction: column; gap: 16px; margin-top: 16px; }
.brand-show-card { background: var(--bg); border: 1px solid #e4eaf2; border-radius: 14px; padding: 28px; text-decoration: none; color: var(--text); transition: all 0.25s; display: block; }
.brand-show-card:hover { border-color: var(--green); box-shadow: 0 8px 28px rgba(58,170,53,0.1); transform: translateY(-2px); }
.bsc-logo { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.6rem; color: var(--green); letter-spacing: 2px; margin-bottom: 6px; }
.bsc-logo.polimeter { color: var(--blue); }
.bsc-badge { display: inline-block; background: rgba(58,170,53,0.1); color: var(--green-dark); border: 1px solid rgba(58,170,53,0.2); font-size: 0.67rem; font-weight: 700; letter-spacing: 1px; padding: 3px 10px; border-radius: 50px; margin-bottom: 12px; text-transform: uppercase; }
.brand-show-card p { color: var(--gray); font-size: 0.85rem; line-height: 1.7; margin-bottom: 14px; }
.bsc-link { color: var(--blue); font-weight: 700; font-size: 0.85rem; }

/* FAQ Teaser */
.faq-teaser { background: var(--bg); }
.faq-teaser-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.faq-previews { display: flex; flex-direction: column; gap: 10px; }
.faq-prev { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid #e4eaf2; border-radius: 10px; padding: 16px 18px; text-decoration: none; color: var(--text); transition: all 0.2s; font-size: 0.88rem; font-weight: 500; }
.faq-prev:hover { border-color: var(--blue); color: var(--blue); transform: translateX(4px); }
.fq-icon { font-size: 1.1rem; flex-shrink: 0; }
.fq-arr { margin-left: auto; color: var(--gray-light); font-weight: 700; }

/* ─── CTA ─── */
.cta-section { background: linear-gradient(135deg, var(--green-dark) 0%, var(--blue-dark) 100%); text-align: center; padding: 76px 4vw; }
.cta-section h2 { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: clamp(1.7rem, 2.8vw, 2.6rem); color: var(--white); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 0.97rem; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
footer { background: #101820; padding: 56px 4vw 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 0; }

/* Footer site logo (text) */
.footer-site-logo { margin-bottom: 14px; }
.footer-site-logo-name { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.4rem; color: rgba(255,255,255,0.88); letter-spacing: -0.5px; }
.footer-site-logo-name span.tld { color: var(--green-light); }
.footer-site-logo-sub { font-size: 0.58rem; letter-spacing: 2px; text-transform: uppercase; color: #3a5060; margin-top: 3px; }
.footer-brand p { color: #4a6070; font-size: 0.81rem; line-height: 1.75; max-width: 220px; margin-top: 10px; }

.f-col h4 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.78rem; color: rgba(255,255,255,0.38); margin-bottom: 16px; letter-spacing: 1px; text-transform: uppercase; }
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.f-col ul li a { color: #4a6070; text-decoration: none; font-size: 0.83rem; transition: color 0.2s; }
.f-col ul li a:hover { color: var(--green-light); }

/* Footer provided-by bar */
/* footer-provided bar artık footer dışında inline styled div olarak tanımlanıyor */

/* ─── INNER PAGE HERO (smaller) ─── */
.page-hero { padding: 44px 4vw 52px; background: linear-gradient(135deg, #f0f7ff, #f5fbf0); border-bottom: 1px solid #e4eaf2; }
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.breadcrumb { font-size: 0.78rem; color: var(--gray-light); margin-bottom: 14px; }
.breadcrumb a { color: var(--gray-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { margin: 0 6px; }
.page-hero h1 { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--dark); line-height: 1.2; margin-bottom: 14px; }
.page-hero p { color: var(--gray); font-size: 0.97rem; line-height: 1.8; max-width: 620px; }
.auth-badge-large { display: inline-flex; align-items: center; gap: 9px; background: rgba(58,170,53,0.1); border: 2px solid rgba(58,170,53,0.3); padding: 9px 18px; border-radius: 8px; font-size: 0.82rem; font-weight: 700; color: var(--green-dark); margin-bottom: 20px; }

/* ─── SPEC TABLE ─── */
.spec-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.spec-table th { background: linear-gradient(90deg, var(--green-dark), var(--blue-dark)); color: white; padding: 14px 18px; text-align: left; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.85rem; letter-spacing: 0.5px; }
.spec-table td { padding: 13px 18px; border-bottom: 1px solid #f0f3f7; font-size: 0.87rem; color: var(--text); }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:nth-child(even) td { background: #fafbfc; }
.spec-table td:first-child { font-weight: 600; color: var(--dark); width: 35%; }

/* ─── SSS PAGE ─── */
.faq-section { background: var(--white); }
.faq-cats { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.faq-cat { padding: 8px 18px; border-radius: 50px; border: 1px solid #e4eaf2; font-size: 0.82rem; font-weight: 600; color: var(--gray); cursor: pointer; transition: all 0.2s; text-decoration: none; }
.faq-cat:hover, .faq-cat.active { background: var(--green); color: white; border-color: var(--green); }
.faq-group { margin-bottom: 52px; }
.faq-group-title { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.25rem; color: var(--dark); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--bg); display: flex; align-items: center; gap: 10px; }
.faq-item { border: 1px solid #e4eaf2; border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.faq-q { padding: 18px 20px; font-weight: 700; font-size: 0.92rem; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; background: var(--white); transition: background 0.2s; }
.faq-q:hover { background: #f8fcf8; }
.faq-q .fq-toggle { color: var(--green); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-q.open .fq-toggle { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 20px 18px; font-size: 0.88rem; color: var(--gray); line-height: 1.8; border-top: 1px solid #f0f3f7; background: #fafcfa; }
.faq-a.visible { display: block; }
.faq-a ul, .faq-a ol { padding-left: 20px; margin: 10px 0; display: flex; flex-direction: column; gap: 6px; }
.faq-a strong { color: var(--dark); }
.faq-a .warn { background: rgba(229,57,53,0.06); border-left: 3px solid var(--red); padding: 10px 14px; border-radius: 4px; margin-top: 10px; color: var(--red); font-weight: 600; font-size: 0.84rem; }
.faq-a .tip { background: rgba(58,170,53,0.06); border-left: 3px solid var(--green); padding: 10px 14px; border-radius: 4px; margin-top: 10px; font-size: 0.84rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 920px) {
  .hero-layout, .montaj-layout, .why-layout, .faq-teaser-layout { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav { display: none; }
  .brand-showcase { flex-direction: row; }
  .header-provided-label { display: none; }
  /* Mobilde trust item sub yazısını gizle */
  .trust-item-sub { display: none; }
  .trust-item { padding: 0 10px; gap: 4px; }
}
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-showcase { flex-direction: column; }
  /* Küçük ekranda provided by header'da gizle */
  .header-provided { display: none; }
  /* Trust powered gizle, sadece itemlar */
  .trust-powered { display: none; }
  /* body padding küçük ekran: sadece header-top (62) + trust (36) */
  body { padding-top: 98px; }
}

/* Animations */
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
.hero-badge { animation: fadeUp 0.5s ease both; }
.hero h1    { animation: fadeUp 0.5s 0.1s ease both; }
.hero p     { animation: fadeUp 0.5s 0.18s ease both; }
.hero-actions{ animation: fadeUp 0.5s 0.26s ease both; }


/* ─── MIGRATED FROM INLINE STYLES ─── */
.ilce-tag { background:var(--white);border:1px solid #e4eaf2;border-radius:8px;padding:8px 14px;font-size:0.82rem;font-weight:600;color:var(--dark);font-family:Nunito,sans-serif; }
.sister-link { color:#5a8a7a;font-size:0.82rem;font-weight:700;text-decoration:none;padding:0 16px;border-right:1px solid rgba(255,255,255,0.06);white-space:nowrap; }
.sister-link-last { color:#5a8a7a;font-size:0.82rem;font-weight:700;text-decoration:none;padding:0 16px;white-space:nowrap; }
.svc-card-desc { font-size:0.84rem;color:var(--gray);line-height:1.6; }
.brand-card-sub { font-size:0.68rem;color:var(--gray-light);margin-bottom:6px; }
.brand-card-p { font-size:0.78rem;color:var(--gray);line-height:1.5; }
.hizmet-card { background:var(--white);border:1px solid #e4eaf2;border-radius:12px;padding:22px; }
.hizmet-card-title { font-family:Nunito,sans-serif;font-weight:800;font-size:0.95rem;margin-bottom:8px;color:var(--dark); }
.stat-num { font-family:Nunito,sans-serif;font-weight:900;font-size:1.6rem;color:var(--green); }
.stat-lbl { font-size:0.7rem;color:var(--gray-light);margin-top:3px; }
.stat-item { text-align:center;padding:0 20px;border-right:1px solid rgba(0,0,0,0.07); }
.brand-card-other { display:block;background:var(--bg);border-radius:12px;padding:18px;text-decoration:none;border:1px solid #e4eaf2; }
.brand-card-name { font-family:Nunito,sans-serif;font-weight:900;font-size:1rem;color:var(--dark);margin-bottom:4px; }
.footer-bar { background:transparent;padding:56px 4vw 32px; }
.footer-sisters { border-top:1px solid rgba(255,255,255,0.07);padding:14px 4vw;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:0; }
.footer-sisters-lbl { font-size:0.6rem;letter-spacing:1.5px;text-transform:uppercase;color:#3a5060;padding-right:20px;border-right:1px solid rgba(255,255,255,0.06);margin-right:20px;white-space:nowrap; }
.footer-bottom { background:#ffffff;border-top:2px solid #e4eaf2;padding:16px 4vw;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px; }
.footer-copy { font-size:0.76rem;color:#555f6e;margin:0; }
.footer-prov-group { display:flex;align-items:center;gap:12px; }
.footer-prov-lbl { font-size:0.58rem;letter-spacing:1.5px;text-transform:uppercase;color:#8a9ab0; }
.footer-divider { width:1px;height:22px;background:#e4eaf2; }
.trust-powered-img { height:18px;width:auto;opacity:0.7;vertical-align:middle; }
.footer-dark-wrap { background:#101820;margin:0;padding:0; }
.svc-card-desc-alt { font-size:0.84rem;color:var(--gray);line-height:1.7; }
