:root {
  --navy-900: #071a3a;
  --navy-800: #0b2452;
  --navy-700: #0f2f6b;
  --navy-600: #143b85;
  --blue-500: #1e63c9;
  --blue-400: #2f7de8;
  --blue-100: #e3edfa;
  --blue-50:  #f1f6fd;
  --green-500: #6fb63d;
  --green-400: #8cc85b;
  --green-100: #e9f4df;
  --ink: #1c2536;
  --ink-2: #4a5568;
  --ink-3: #7b8597;
  --line: #e2e8f0;
  --bg: #f6f8fb;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(11, 36, 82, .06);
  --shadow-md: 0 12px 32px rgba(11, 36, 82, .10);
  --shadow-lg: 0 24px 60px rgba(11, 36, 82, .16);
  --radius: 14px;
  --radius-sm: 8px;
  --container: 1240px;
  --header-h: 84px;
  --font: "Montserrat", "Segoe UI", Tahoma, Arial, sans-serif;
}

ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
.ico { display: inline-flex; width: 20px; height: 20px; }
.ico svg { width: 100%; height: 100%; }
.ico-sm { width: 14px; height: 14px; }
[hidden] { display: none !important; }

/* YeÅŸil vurgu Ã§izgisi (tasarÄ±mlarda baÅŸlÄ±k altÄ± kÄ±sa Ã§izgi) */
.accent-line { display: block; width: 44px; height: 3px; border-radius: 2px; background: var(--green-500); margin-top: 18px; }
.accent-line.blue { background: var(--blue-400); }

/* =========================== HEADER =========================== */
.site-header {
  position: sticky; top: 0; z-index: 100; background: var(--white);
  border-bottom: 1px solid transparent; transition: box-shadow .25s, border-color .25s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }
.brand { display: inline-flex; align-items: center; height: 100%; }
.brand img { height: 48px; width: auto; }
.brand .brand-text { display: none; line-height: 1; color: var(--navy-800); }
.brand.no-img img { display: none; }
.brand.no-img .brand-text { display: flex; flex-direction: column; }
.brand-text b { font-family: Georgia, "Times New Roman", serif; font-style: italic; font-weight: 700; font-size: 30px; letter-spacing: -.5px; }
.brand-text small { font-size: 11px; letter-spacing: 3px; font-weight: 600; margin-top: 2px; padding-left: 2px; }

.main-nav ul { display: flex; gap: 6px; }
.main-nav a {
  display: block; padding: 10px 12px; font-size: 12.5px; font-weight: 700; letter-spacing: .3px;
  text-transform: uppercase; color: var(--navy-800); position: relative; border-radius: 6px; transition: color .2s;
}
.main-nav a::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 5px; height: 2px; border-radius: 2px;
  background: var(--blue-400); transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.main-nav a:hover { color: var(--blue-500); }
.main-nav a.active::after, .main-nav a:hover::after { transform: scaleX(1); }

.header-tools { display: flex; align-items: center; gap: 8px; }
.lang-switch { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 10px; border-radius: 8px;
  font-size: 12.5px; font-weight: 700; color: var(--navy-800); transition: background .2s;
}
.lang-btn:hover { background: var(--blue-50); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px); min-width: 170px; background: var(--white);
  border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-md); padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .2s;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-opt {
  display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 9px 10px;
  border-radius: 7px; font-weight: 700; font-size: 13px; color: var(--navy-800);
}
.lang-opt small { font-weight: 500; color: var(--ink-3); }
.lang-opt:hover { background: var(--blue-50); }
.lang-opt.is-current { background: var(--blue-100); color: var(--blue-500); }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 8px; align-items: center; justify-content: center; color: var(--navy-800); }
.nav-toggle .ico { width: 24px; height: 24px; }
.nav-toggle .ico-close { display: none; }
body.nav-open .nav-toggle .ico-open { display: none; }
body.nav-open .nav-toggle .ico-close { display: inline-flex; }

/* =========================== HERO (politika sayfalarÄ±) =========================== */
.hero {
    padding: 0;
  position: relative; color: var(--white); overflow: hidden; isolation: isolate;
  background: linear-gradient(100deg, var(--navy-900) 0%, var(--navy-700) 55%, var(--navy-600) 100%);
}
.hero .hero-img {
  position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center;
}
.hero .hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(7,26,58,.82) 0%, rgba(11,36,82,.62) 38%, rgba(15,47,107,.28) 70%, rgba(15,47,107,.08) 100%);
}
.hero-inner { min-height: 300px; display: flex; flex-direction: column; justify-content: center; padding: 56px 28px; }
.hero-badge {
  width: 58px; height: 58px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.7); display: grid; place-items: center;
  margin-bottom: 22px; color: var(--white); background: rgba(255,255,255,.06); backdrop-filter: blur(4px);
}
.hero-badge svg { width: 26px; height: 26px; }
.hero h1 { font-size: clamp(28px, 3.4vw, 42px); font-weight: 700; line-height: 1.15; letter-spacing: .2px; max-width: 760px; text-shadow: 0 2px 14px rgba(3,14,36,.45); }
.hero p.lead { margin-top: 16px; max-width: 520px; font-size: 15px; color: rgba(255,255,255,.88); }

/* OrtalanmÄ±ÅŸ hero (Sertifikalar / YÃ¶netim Sistemleri) */
.hero.center .hero-inner { align-items: center; text-align: center; min-height: 320px; }
.hero.center::before {
  background: linear-gradient(90deg, rgba(7,26,58,.78) 0%, rgba(11,36,82,.58) 35%, rgba(11,36,82,.38) 60%, rgba(11,36,82,.45) 100%);
}
.hero.center .accent-line { margin: 20px auto 0; }
.hero.center .hero-badge { margin-bottom: 18px; }
.hero-side-img {
  position: absolute; right: 4%; top: 50%; transform: translateY(-50%); width: min(24vw, 300px); z-index: 0;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.35));
}
.hero-side-img img { width: 100%; height: auto; }
/* YÃ¶netim sistemleri â€“ sol ikon kÃ¼mesi */
.hero-icons { position: absolute; left: 12%; top: 50%; transform: translateY(-50%); width: 240px; height: 200px; z-index: 0; pointer-events: none; }
.hero-icons span {
  position: absolute; width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(160,196,255,.45); color: #bfd6ff; backdrop-filter: blur(3px);
  animation: float 6s ease-in-out infinite;
}
.hero-icons span svg { width: 28px; height: 28px; }
.hero-icons span:nth-child(1) { left: 0; top: 30px; width: 76px; height: 76px; }
.hero-icons span:nth-child(2) { left: 96px; top: 0; animation-delay: -1.5s; }
.hero-icons span:nth-child(3) { left: 170px; top: 60px; animation-delay: -3s; }
.hero-icons span:nth-child(4) { left: 86px; top: 92px; animation-delay: -4.5s; }
.hero-icons span:nth-child(5) { left: 160px; top: 150px; width: 52px; height: 52px; animation-delay: -2s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* IÅŸÄ±k halkalarÄ± (dekor) */
.hero .glow {
  position: absolute; z-index: -1; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(47,125,232,.45) 0%, rgba(47,125,232,0) 70%);
}

/* =========================== GÃ–RSEL YER TUTUCU =========================== */
.img-slot {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(20,59,133,.05) 0 18px, rgba(20,59,133,0) 18px 36px),
    linear-gradient(160deg, #dfe8f6, #c9d8ee);
}
.img-slot img { width: 100%; height: 100%; object-fit: cover; }
.img-slot.missing::after {
  content: attr(data-label); position: absolute; inset: auto 12px 12px 12px; padding: 8px 12px;
  background: rgba(11,36,82,.85); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .3px;
  border-radius: 6px; text-align: center; font-family: ui-monospace, Menlo, Consolas, monospace;
}
.img-slot.dark { background: linear-gradient(160deg, #143b85, #0b2452); }

/* =========================== GENEL BÃ–LÃœM =========================== */
.section { padding: 64px 0; }
.section.tint { background: var(--bg); }
.section-title { font-size: 22px; font-weight: 700; color: var(--navy-800); margin-bottom: 22px; }
.card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }

/* Politika metni */
.policy-text { color: var(--ink-2); font-size: 14.2px; line-height: 1.75; }
.policy-text p { margin-bottom: 14px; }
.policy-text ul { margin: 6px 0 16px; }
.policy-text li { position: relative; padding-left: 20px; margin-bottom: 6px; }
.policy-text li::before {
  content: ""; position: absolute; left: 3px; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--green-500);
}
.policy-text.blue li::before { background: var(--blue-400); }

/* =========================== HAKKIMIZDA =========================== */
.about-top { position: relative; padding: 56px 0 0; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 0; align-items: stretch; }
.about-copy { padding: 8px 40px 56px 28px; }
.about-copy h1 { font-size: clamp(30px, 3.4vw, 40px); font-weight: 800; color: var(--navy-800); letter-spacing: .5px; }
.about-copy .accent-line { background: var(--blue-400); margin: 18px 0 26px; width: 52px; }
.about-copy p { color: var(--ink-2); font-size: 14.6px; line-height: 1.8; margin-bottom: 16px; }
.about-copy p strong { color: var(--navy-800); font-weight: 700; }

.about-visual { position: relative; min-height: 560px; }
.about-visual .img-slot {
  position: absolute; inset: 0 0 0 110px; border-radius: 260px 0 0 0 / 200px 0 0 0;
}
.about-visual .img-slot::before {
  content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,36,82,.35), rgba(11,36,82,0) 45%);
  z-index: 1; pointer-events: none;
}
.stats { position: absolute; left: 0; top: 40px; display: flex; flex-direction: column; gap: 12px; z-index: 2; width: 250px; }
.stat {
  display: flex; align-items: center; gap: 14px; padding: 12px 16px; background: rgba(255,255,255,.96);
  border-radius: 12px; box-shadow: var(--shadow-md); border: 1px solid rgba(255,255,255,.6);
  transform: translateX(-12px); opacity: 0; animation: slideIn .6s cubic-bezier(.2,.7,.2,1) forwards;
}
.stat:nth-child(1) { animation-delay: .05s } .stat:nth-child(2) { animation-delay: .15s } .stat:nth-child(3) { animation-delay: .25s }
.stat:nth-child(4) { animation-delay: .35s } .stat:nth-child(5) { animation-delay: .45s }
@keyframes slideIn { to { transform: none; opacity: 1; } }
.stat .ico { width: 34px; height: 34px; color: var(--blue-500); flex: none; }
.stat b { display: block; font-size: 13.5px; color: var(--navy-800); font-weight: 800; letter-spacing: .2px; }
.stat small { display: block; font-size: 10.5px; color: var(--ink-3); font-weight: 500; line-height: 1.35; margin-top: 2px; }

.company-info { padding: 40px 0 0; }
.company-info .container { background: var(--bg); border-radius: 18px; padding: 44px 44px 48px; }
.kicker { display: block; font-size: 11.5px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-500); margin-bottom: 14px; }
.company-info h2 { font-size: 30px; color: var(--navy-800); font-weight: 800; letter-spacing: -.2px; margin-bottom: 26px; }
.info-table { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); background: var(--line); gap: 1px; border: 1px solid var(--line); }
.info { background: var(--white); padding: 22px 24px 24px; min-height: 96px; }
.info small { display: block; color: var(--ink-3); font-size: 13px; font-weight: 500; margin-bottom: 10px; }
.info b { display: block; color: var(--navy-800); font-size: 15px; font-weight: 700; line-height: 1.4; }
@media (max-width: 960px) { .info-table { grid-template-columns: 1fr 1fr; } .company-info .container { padding: 32px 24px; } }
@media (max-width: 600px) { .info-table { grid-template-columns: 1fr; } }

/* =========================== POLÄ°TÄ°KA SAYFALARI =========================== */
.policy-layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 44px; padding: 48px 0 64px; align-items: start; }
.policy-side { position: sticky; top: calc(var(--header-h) + 20px); display: flex; flex-direction: column; gap: 18px; }
.side-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden; border: 1px solid var(--line);
}
.side-card .sc-body { padding: 30px 26px 26px; }
.side-card .sc-icon {
  width: 68px; height: 68px; border-radius: 50%; border: 1.5px solid var(--green-400); display: grid; place-items: center;
  color: var(--green-500); margin: 0 auto 18px; background: var(--green-100);
}
.side-card .sc-icon svg { width: 30px; height: 30px; }
.side-card.blue .sc-icon { border-color: var(--blue-400); color: var(--blue-500); background: var(--blue-100); }
.side-card h2 { font-size: 20px; line-height: 1.22; font-weight: 800; color: var(--navy-800); letter-spacing: .3px; }
.side-card h2 em { font-style: normal; color: var(--green-500); }
.side-card.blue h2 em { color: var(--blue-500); }
.side-card .accent-line { margin: 16px 0; }
.side-card p { font-size: 13.2px; color: var(--ink-2); line-height: 1.65; }
.side-card .img-slot { height: 220px; }

/* Sol kart altÄ± ek iÃ§erik (Ä°SG) */
.side-quote {
  background: linear-gradient(140deg, var(--navy-700), var(--navy-900)); color: #fff; border-radius: var(--radius);
  padding: 22px 24px; position: relative; overflow: hidden;
}
.side-quote::after {
  content: ""; position: absolute; right: -30px; top: -30px; width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle, rgba(47,125,232,.55), rgba(47,125,232,0) 70%);
}
.side-quote b { display: block; font-size: 16px; font-weight: 700; line-height: 1.35; }
.side-quote small { display: block; margin-top: 8px; color: rgba(255,255,255,.7); font-size: 12px; letter-spacing: .4px; text-transform: uppercase; }
.side-feats { display: grid; gap: 10px; }
.feat {
  display: flex; gap: 12px; align-items: flex-start; padding: 12px 14px; border-radius: 10px; background: var(--white);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.feat .ico { width: 36px; height: 36px; flex: none; color: var(--blue-500); background: var(--blue-100); border-radius: 9px; padding: 8px; }
.feat b { display: block; font-size: 13px; color: var(--navy-800); }
.feat small { display: block; font-size: 11.5px; color: var(--ink-3); line-height: 1.45; margin-top: 2px; }

.policy-main { min-width: 0; }
.policy-cards { display: grid; grid-template-columns: 1.35fr 1fr; gap: 20px; margin-top: 28px; }
.pcard { display: flex; gap: 18px; align-items: flex-start; padding: 24px 26px; background: #eef3f9; border-radius: var(--radius); }
.pcard .pc-icon { width: 52px; height: 52px; flex: none; border-radius: 50%; background: var(--navy-700); color: #fff; display: grid; place-items: center; }
.pcard .pc-icon svg { width: 24px; height: 24px; }
.pcard h3 { font-size: 13.5px; letter-spacing: .3px; color: var(--navy-800); font-weight: 800; margin-bottom: 8px; }
.pcard.rev h3 { font-size: 15px; letter-spacing: 0; }
.pcard p { font-size: 12.8px; color: var(--ink-2); line-height: 1.6; }
.pcard.rev p { font-size: 13.5px; }

/* =========================== SERTÄ°FÄ°KALAR =========================== */
.cert-wrap { padding: 44px 0 72px; }
.cert-tabs { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 10px; }
.cert-tab {
  display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 22px 10px 18px; border-radius: 12px;
  background: var(--white); border: 1px solid var(--line); text-align: center; transition: all .25s; position: relative;
}
.cert-tab .ct-icon {
  width: 56px; height: 56px; border-radius: 50%; border: 1.5px solid #c9d3e4; display: grid; place-items: center; color: var(--ink-3);
  transition: all .25s;
}
.cert-tab .ct-icon svg { width: 26px; height: 26px; }
.cert-tab b { display: block; font-size: 12.5px; color: var(--ink-2); font-weight: 700; line-height: 1.3; }
.cert-tab small { display: block; font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.cert-tab:hover { border-color: var(--blue-400); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.cert-tab.active { border-color: var(--blue-400); background: var(--blue-50); box-shadow: 0 0 0 3px rgba(47,125,232,.12); }
.cert-tab.active .ct-icon { background: var(--navy-700); border-color: var(--navy-700); color: #fff; }
.cert-tab.active b { color: var(--navy-800); }
.cert-tab.active::after {
  content: ""; position: absolute; left: 50%; bottom: -9px; width: 14px; height: 14px; background: var(--blue-50);
  border-right: 1px solid var(--blue-400); border-bottom: 1px solid var(--blue-400); transform: translateX(-50%) rotate(45deg);
}
.cert-panels { margin-top: 22px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow-sm); }
.cert-panel.fade-in { animation: fadeUp .4s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.cert-hint { font-size: 12.5px; color: var(--ink-3); margin: 4px 6px 12px; }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.loc-link {
  display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-radius: 10px; color: #fff; font-weight: 700; font-size: 14px;
  background: linear-gradient(90deg, var(--navy-700), var(--navy-600)); box-shadow: 0 6px 16px rgba(11,36,82,.18); transition: transform .2s, box-shadow .2s;
}
.loc-link .ico { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.7); padding: 7px; flex: none; }
.loc-link .chev { margin-left: auto; width: 18px; height: 18px; opacity: .85; transition: transform .2s; }
.loc-link:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(11,36,82,.28); }
.loc-link:hover .chev { transform: translateX(3px); }

/* =========================== YÃ–NETÄ°M SÄ°STEMLERÄ° =========================== */
.mgmt-wrap { padding: 44px 0 72px; }
.mgmt-card { display: grid; grid-template-columns: minmax(0, 1fr) 360px; background: var(--white); border-radius: 18px; box-shadow: var(--shadow-md); overflow: hidden; border: 1px solid var(--line); }
.mgmt-body { padding: 40px 44px; }
.mgmt-head { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }
.mgmt-head .mh-icon { width: 60px; height: 60px; border-radius: 14px; background: var(--blue-100); color: var(--blue-500); display: grid; place-items: center; flex: none; }
.mgmt-head .mh-icon svg { width: 28px; height: 28px; }
.mgmt-head h2 { font-size: 22px; font-weight: 800; color: var(--navy-800); letter-spacing: .3px; }
.mgmt-head h2 .accent-line { width: 60px; margin-top: 8px; background: var(--blue-400); }
.mgmt-visual { position: relative; min-height: 100%; }
.mgmt-visual .img-slot { position: absolute; inset: 0; clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%); }
.mgmt-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(200deg, rgba(47,125,232,.25), rgba(11,36,82,.35)); clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%); pointer-events: none; }
.band {
  margin-top: 28px; display: flex; align-items: center; gap: 22px; padding: 22px 28px; border-radius: 16px; color: #fff;
  background: linear-gradient(100deg, var(--navy-800) 0%, var(--navy-600) 60%, var(--blue-500) 100%); position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 30%, rgba(255,255,255,.14), transparent 40%); pointer-events: none; }
.band .b-icon { width: 54px; height: 54px; border-radius: 12px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); display: grid; place-items: center; flex: none; }
.band .b-icon svg { width: 26px; height: 26px; }
.band b { display: block; font-size: 17px; font-weight: 700; }
.band p { font-size: 13px; color: rgba(255,255,255,.8); margin-top: 3px; }
.btn-light {
  margin-left: auto; flex: none; display: inline-flex; align-items: center; gap: 10px; padding: 13px 22px; border-radius: 10px;
  background: #fff; color: var(--navy-800); font-weight: 800; font-size: 12.5px; letter-spacing: .4px; transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
}
.btn-light .ico { width: 16px; height: 16px; }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,0,0,.25); }

/* =========================== SÃœRDÃœRÃœLEBÄ°LÄ°RLÄ°K =========================== */
.hero.sust h1 { font-size: clamp(34px, 4vw, 50px); font-weight: 800; text-transform: none; }
.hero.sust .hero-inner { min-height: 360px; }
.hero.sust::before { background: linear-gradient(90deg, rgba(7,26,58,.82) 0%, rgba(11,36,82,.6) 40%, rgba(11,36,82,.12) 75%, rgba(11,36,82,.03) 100%); }

.approach-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.acard { padding: 28px 26px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.acard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.acard .ac-icon { width: 66px; height: 66px; border-radius: 50%; border: 1.5px solid var(--green-400); color: var(--green-500); display: grid; place-items: center; margin-bottom: 18px; background: var(--green-100); }
.acard .ac-icon svg { width: 30px; height: 30px; }
.acard h3 { font-size: 16px; font-weight: 800; color: var(--navy-800); margin-bottom: 10px; }
.acard p { font-size: 13.4px; color: var(--ink-2); line-height: 1.7; }

.docs-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.doc {
  display: flex; align-items: center; gap: 14px; padding: 18px 18px; background: var(--white); border-radius: 12px; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); transition: all .25s; min-height: 92px;
}
.doc .ico { width: 40px; height: 40px; flex: none; color: var(--navy-700); }
.doc b { display: block; font-size: 12.5px; color: var(--navy-800); line-height: 1.35; font-weight: 700; }
.doc .arrow { margin-left: auto; width: 18px; height: 18px; color: var(--ink-3); transition: transform .2s; flex: none; }
.doc:hover { border-color: var(--blue-400); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.doc:hover .arrow { transform: translateX(4px); color: var(--blue-500); }

.trees {
  margin-top: 40px; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.15fr) minmax(0, .9fr); border-radius: 16px; overflow: hidden;
  background: linear-gradient(100deg, var(--navy-900), var(--navy-700)); color: #fff; box-shadow: var(--shadow-md); min-height: 180px;
}
.trees .t-left { display: flex; align-items: center; gap: 22px; padding: 30px 34px; }
.trees .t-icon { width: 78px; height: 78px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.55); display: grid; place-items: center; flex: none; color: var(--green-400); }
.trees .t-icon svg { width: 38px; height: 38px; }
.trees .t-num b { display: block; white-space: nowrap; font-size: clamp(26px, 2.7vw, 38px); font-weight: 800; line-height: 1; letter-spacing: .5px; }
.trees .t-num small { display: block; font-size: 15px; color: var(--green-400); font-weight: 800; letter-spacing: 1px; margin-top: 6px; }
.trees .t-text { padding: 30px 34px; border-left: 1px solid rgba(255,255,255,.18); display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.trees .t-text p { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,.92); }
.trees .t-text p:last-child { font-size: 12.8px; color: rgba(255,255,255,.7); }
.trees .t-img { min-height: 180px; }
.trees .t-img img { width: 100%; height: 100%; object-fit: cover; }

.fsc { margin-top: 28px; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, .8fr); background: var(--white); border-radius: 16px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); overflow: hidden; }
.fsc-body { padding: 34px 36px; display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; }
.fsc h3 { font-size: 20px; font-weight: 800; color: var(--navy-800); margin-bottom: 8px; }
.fsc .fsc-intro { font-size: 13.4px; color: var(--ink-2); line-height: 1.7; margin-bottom: 18px; }
.fsc .fsc-intro b { color: var(--navy-800); display: block; margin-bottom: 4px; }
.fsc-cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.fsc-cols h4 { font-size: 13.2px; color: var(--navy-800); font-weight: 800; margin-bottom: 6px; }
.fsc-cols p { font-size: 12.8px; color: var(--ink-2); line-height: 1.65; }
.fsc-benefits { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.benefit { display: flex; gap: 12px; align-items: flex-start; }
.benefit .ico { width: 46px; height: 46px; border-radius: 50%; background: var(--green-100); color: var(--green-500); padding: 11px; flex: none; }
.benefit b { display: block; font-size: 13px; color: var(--navy-800); font-weight: 800; }
.benefit small { display: block; font-size: 12px; color: var(--ink-2); line-height: 1.55; margin-top: 3px; }
.fsc-visual .img-slot { height: 100%; min-height: 320px; }

.support { margin-top: 28px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); background: var(--white); border-radius: 16px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); overflow: hidden; }
.support .s-body { padding: 34px 36px; }
.support h3 { font-size: 20px; font-weight: 800; color: var(--navy-800); margin-bottom: 14px; }
.support p { font-size: 13.4px; color: var(--ink-2); line-height: 1.7; margin-bottom: 12px; }
.support .img-slot { min-height: 280px; height: 100%; }


/* =========================== ANÄ°MASYON =========================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s } .reveal.d2 { transition-delay: .16s } .reveal.d3 { transition-delay: .24s } .reveal.d4 { transition-delay: .32s } .reveal.d5 { transition-delay: .4s }
@media (prefers-reduced-motion: reduce) {
  .reveal, .stat { opacity: 1; transform: none; transition: none; animation: none; }
  .hero-icons span { animation: none; }
}

/* =========================== RESPONSIVE =========================== */
@media (max-width: 1100px) {
  .cert-tabs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .docs-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .fsc { grid-template-columns: 1fr; }
  .fsc-visual .img-slot { min-height: 220px; }
  .mgmt-card { grid-template-columns: minmax(0, 1fr) 280px; }
  .about-visual .img-slot { inset: 0 0 0 80px; }
}
@media (max-width: 960px) {
  :root { --header-h: 70px; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0; background: var(--white); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); transform: translateY(-8px); opacity: 0; visibility: hidden; transition: all .25s;
  }
  body.nav-open .main-nav { transform: none; opacity: 1; visibility: visible; }
  .main-nav ul { flex-direction: column; padding: 10px 16px 16px; gap: 2px; }
  .main-nav a { padding: 12px 10px; font-size: 13px; }
  .main-nav a::after { display: none; }
  .main-nav a.active { color: var(--blue-500); background: var(--blue-50); }
  .nav-toggle { display: inline-flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-copy { padding: 0 28px 34px; }
  .about-visual { min-height: 480px; margin: 0 28px; }
  .about-visual .img-slot { inset: 0; border-radius: 24px; }
  .stats { left: 16px; top: 16px; }
  .policy-layout { grid-template-columns: 1fr; gap: 28px; }
  .policy-side { position: static; }
  .side-card .img-slot { height: 180px; }
  .policy-cards { grid-template-columns: 1fr; }
  .mgmt-card { grid-template-columns: 1fr; }
  .mgmt-visual { min-height: 240px; }
  .mgmt-visual .img-slot, .mgmt-visual::after { clip-path: none; }
  .mgmt-body { padding: 30px 26px; }
  .band { flex-wrap: wrap; }
  .btn-light { margin-left: 0; }
  .hero-side-img, .hero-icons { display: none; }
  .approach-grid { grid-template-columns: 1fr; }
  .trees { grid-template-columns: 1fr; }
  .trees .t-text { border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .trees .t-img { min-height: 200px; }
  .fsc-body { grid-template-columns: 1fr; }
  .fsc-cols, .fsc-benefits { grid-template-columns: 1fr; }
  .support { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .hero-inner { padding: 40px 18px; min-height: 240px; }
  .cert-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .loc-grid { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
  .stats { width: 210px; }
  .about-copy, .about-visual { margin-left: 0; margin-right: 0; padding-left: 0; padding-right: 0; }
  .about-top { padding-top: 36px; }
  .about-top .container, .company-info .container { padding: 0 18px; }
}


.loc-link .ico.chev { border: 0; border-radius: 0; padding: 0; }
.hero .img-slot.missing::after { display: none; }
.hero .missing-badges { position: absolute; left: 16px; bottom: 14px; z-index: 5; display: flex; gap: 8px; flex-wrap: wrap; }
.hero .missing-badges span {
  padding: 6px 10px; border-radius: 6px; background: rgba(255,255,255,.12); border: 1px dashed rgba(255,255,255,.5);
  color: #fff; font-size: 11px; font-family: ui-monospace, Menlo, Consolas, monospace; letter-spacing: .3px;
}
.img-slot.missing::after { left: auto; right: 12px; max-width: calc(100% - 24px); }
.fsc { grid-template-columns: minmax(0, 2.2fr) minmax(0, .9fr); }
.fsc-body { gap: 26px; padding: 34px 32px; }
.fsc-cols { gap: 24px; }
.fsc-benefits { gap: 20px; }
@media (max-width: 1100px) { .fsc { grid-template-columns: 1fr; } }

main { padding-bottom: 24px; }


.hero.hero-full::before { background: linear-gradient(90deg, rgba(7,26,58,.78) 0%, rgba(11,36,82,.52) 45%, rgba(11,36,82,.22) 100%); }


body[data-page="34"] .side-card .sc-body { padding: 34px 28px 30px; }
body[data-page="34"] .side-card h2 { font-size: 21px; }
body[data-page="34"] .side-card p { font-size: 13.6px; }
body[data-page="34"] .side-card .img-slot { height: 260px; }

.reg { font-size: .62em; vertical-align: super; line-height: 0; }

.fsc-body { grid-template-columns: 1fr; }
.fsc-visual .img-slot img { image-rendering: auto; }

.doc { gap: 14px; }
.doc b { flex: 1; }

body[data-page="2"] .about-top { padding: 56px 0 64px; }
body[data-page="2"] .about-visual { min-height: 520px; }

.hero h1 { letter-spacing: 0; }
.pcard h3, .mgmt-head h2, .docs-section h2 { letter-spacing: .2px; }
.btn-light { letter-spacing: .2px; font-size: 13px; }