/*
Theme Name: Wisnet
Theme URI: https://wisnet.com.tr
Author: Wisnet Teknoloji A.S.
Author URI: https://wisnet.com.tr
Description: Wisnet Teknoloji kurumsal WordPress temasi. Siber guvenlik ve ag cozumleri icin ozel olarak gelistirilmistir.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wisnet
*/

/* ==========================================================================
   Degiskenler
   ========================================================================== */
:root {
  --w-navy: #262262;
  --w-blue: #6c5ce7;
  --w-blue-dark: #4b3fc4;
  --w-blue-light: #efecfd;
  --w-orange: #ff6b2c;
  --w-orange-dark: #e5551a;
  --w-text: #4a4a68;
  --w-muted: #7b7b9d;
  --w-border: #e8e7f4;
  --w-bg-soft: #f7f7fc;
  --w-white: #ffffff;
  --w-radius: 12px;
  --w-shadow: 0 6px 24px rgba(10, 37, 64, 0.08);
  --w-shadow-lg: 0 16px 48px rgba(10, 37, 64, 0.14);
  --w-container: 1200px;
  --w-font: "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ==========================================================================
   Reset / Taban
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--w-font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--w-text);
  background: var(--w-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--w-blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--w-blue-dark); }
h1, h2, h3, h4, h5 { color: var(--w-navy); line-height: 1.25; margin: 0 0 .6em; font-weight: 700; }
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }

.container {
  max-width: var(--w-container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section--soft { background: var(--w-bg-soft); }
.section--navy { background: var(--w-navy); }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: #b9c8dd; }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head .kicker {
  display: inline-block;
  color: var(--w-blue);
  background: var(--w-blue-light);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section--navy .section-head .kicker { background: rgba(255,255,255,.1); color: #8fb4f5; }

/* ==========================================================================
   Butonlar
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
  text-align: center;
}
.btn--primary { background: var(--w-orange); color: #fff; }
.btn--primary:hover { background: var(--w-orange-dark); color: #fff; transform: translateY(-2px); }
.btn--outline { border-color: var(--w-blue); color: var(--w-blue); background: transparent; }
.btn--outline:hover { background: var(--w-blue); color: #fff; }
.btn--white { background: #fff; color: var(--w-navy); }
.btn--white:hover { background: var(--w-blue-light); color: var(--w-navy); }
.btn--ghost { border-color: var(--w-blue); color: var(--w-blue); }
.btn--ghost:hover { background: var(--w-blue); color: #fff; }

/* ==========================================================================
   Ust bar + Header
   ========================================================================== */
.topbar {
  background: var(--w-navy);
  color: #cdd9ea;
  font-size: .82rem;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--w-orange); }
.topbar__contact { display: flex; gap: 20px; }

.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--w-border);
  transition: box-shadow .25s;
}
.site-header.is-scrolled { box-shadow: var(--w-shadow); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}
.site-logo { display: flex; align-items: center; gap: 10px; font-size: 1.5rem; font-weight: 800; color: var(--w-navy); }
.site-logo:hover { color: var(--w-navy); }
.site-logo img { max-height: 34px; width: auto; display: block; }
.site-footer .site-logo img { max-height: 30px; }
.site-logo .logo-dot { color: var(--w-orange); }

.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.main-nav li { position: relative; }
.main-nav a {
  display: block;
  padding: 10px 13px;
  color: var(--w-navy);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 8px;
}
.main-nav .sub-menu a { text-transform: none; font-size: .9rem; letter-spacing: 0; font-weight: 600; }
.main-nav a:hover { background: var(--w-blue-light); color: var(--w-blue); }
.main-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--w-border);
  border-radius: var(--w-radius);
  box-shadow: var(--w-shadow-lg);
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
}
.main-nav li:hover > .sub-menu,
.main-nav li:focus-within > .sub-menu { display: flex; }
.header-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--w-navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: linear-gradient(160deg, #ffffff 0%, var(--w-bg-soft) 55%, var(--w-blue-light) 100%);
  color: var(--w-text);
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  top: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,92,231,.14), transparent 70%);
}
.hero .container { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero h1 { color: var(--w-navy); margin-bottom: 20px; }
.hero p.lead { font-size: 1.15rem; color: var(--w-muted); margin-bottom: 32px; text-align: justify; hyphens: auto; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__visual { text-align: center; }
.hero__visual svg { width: 100%; max-width: 440px; height: auto; }
.hero__badges { display: flex; gap: 18px; margin-top: 36px; flex-wrap: wrap; }
.hero__badges span {
  font-size: .82rem;
  color: var(--w-muted);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero__badges b { color: var(--w-navy); }

/* Logo bandi */
.logo-strip { padding: 36px 0; border-bottom: 1px solid var(--w-border); }
.logo-strip p { text-align: center; font-size: .85rem; color: var(--w-muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 22px; font-weight: 600; }
.logo-marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-marquee__track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  padding-right: 64px;
  animation: logo-kayma 35s linear infinite;
}
.logo-marquee:hover .logo-marquee__track { animation-play-state: paused; }
@keyframes logo-kayma {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-marquee__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}
.logo-strip__item { display: flex; align-items: center; flex: 0 0 auto; }
.logo-strip__item img { height: 72px; width: auto; max-width: 190px; object-fit: contain; border-radius: 8px; }

/* ==========================================================================
   Kart / Izgara bilesenleri
   ========================================================================== */
.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--w-border);
  border-radius: var(--w-radius);
  padding: 32px 28px;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--w-shadow-lg); }
.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--w-blue-light);
  color: var(--w-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card__icon svg { width: 28px; height: 28px; }
.card--orange .card__icon { background: #fff0e8; color: var(--w-orange); }
.card .more { font-weight: 600; font-size: .9rem; }
.card .more::after { content: " \2192"; }

/* Cozum kartlari (buyuk) */
.solution-card {
  background: #fff;
  border: 1px solid var(--w-border);
  border-radius: var(--w-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.solution-card:hover { transform: translateY(-6px); box-shadow: var(--w-shadow-lg); }
.solution-card__media {
  background: linear-gradient(135deg, var(--w-blue-light), #dbe7fb);
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--w-blue);
}
.solution-card__media svg { width: 84px; height: 84px; }
.solution-card__body { padding: 32px; display: flex; flex-direction: column; flex: 1; }
.solution-card__body ul { list-style: none; padding: 0; margin: 0 0 24px; }
.solution-card__body li { padding: 6px 0 6px 28px; position: relative; }
.solution-card__body li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--w-orange);
  font-weight: 700;
}
.solution-card__body .btn { margin-top: auto; align-self: flex-start; }

/* Zikzak ozellik bolumleri */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 56px 0;
}
.feature-row h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: 18px; }
.feature-row p { font-size: 1.05rem; color: var(--w-muted); text-align: justify; hyphens: auto; }
.feature-row .more { font-weight: 700; }
.feature-row .more::after { content: " \2192"; }
.feature-row__media { text-align: center; }
.feature-row__media svg { width: 100%; max-width: 420px; height: auto; }
.feature-row--reverse .feature-row__media { order: -1; }

/* Sayaclar / avantajlar */
.advantage { display: flex; gap: 18px; align-items: flex-start; }
.advantage__num {
  flex: 0 0 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--w-orange);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantage h3 { font-size: 1.05rem; margin-bottom: 6px; }
.advantage p { font-size: .93rem; margin: 0; }

/* Kurumsal hizmetler — sekmeli */
.services-tabs {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start;
}
.services-tabs__nav { display: flex; flex-direction: column; gap: 8px; }
.services-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--w-border);
  border-radius: 12px;
  background: #fff;
  color: var(--w-ink);
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.services-tab:hover { border-color: var(--w-purple); color: var(--w-purple); }
.services-tab.is-active { background: var(--w-purple); border-color: var(--w-purple); color: #fff; }
.services-tab__icon { flex: 0 0 auto; display: flex; }
.services-tab__icon svg { width: 22px; height: 22px; }
.services-tabs__panels { position: relative; }
.services-panel {
  display: none;
  background: #fff;
  border: 1px solid var(--w-border);
  border-radius: 16px;
  padding: 32px 36px;
}
.services-panel.is-active { display: block; }
.services-panel h3 { font-size: 1.3rem; margin-bottom: 14px; }
.services-panel p { color: var(--w-muted); margin: 0 0 14px; text-align: justify; hyphens: auto; }
.services-panel p:last-child { margin-bottom: 0; }

/* Bento ozellik kutulari (urun sayfalari) */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bento__item {
  background: #fff;
  border: 1px solid var(--w-border);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.bento__item:hover { transform: translateY(-4px); box-shadow: var(--w-shadow-lg); }
.bento__item h3 { font-size: 1.03rem; margin: 0; }
.bento__item p { font-size: .9rem; color: var(--w-muted); margin: 0; }
.bento__item--w2 { grid-column: span 2; }
.bento__item--purple { background: linear-gradient(135deg, #6c5ce7 0%, #4b3fc4 100%); border: 0; }
.bento__item--purple h3 { color: #fff; }
.bento__item--purple p { color: rgba(255,255,255,.82); }
.bento__item--soft { background: #f4f2fe; border-color: #e4e0fa; }
.bento__item--orange { background: #fff4ee; border-color: #ffddc9; }
.bento__icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: #efecfd;
  color: var(--w-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.bento__icon svg { width: 20px; height: 20px; }
.bento__item--purple .bento__icon { background: rgba(255,255,255,.16); color: #fff; }
.bento__item--orange .bento__icon { background: #ffe4d3; color: var(--w-orange); }

/* Kutu ici mini gorseller */
.mock { margin-top: auto; padding-top: 18px; }
.mock-window { background: #fff; border-radius: 12px; padding: 14px 16px 12px; box-shadow: 0 10px 30px rgba(20, 12, 70, .25); }
.mock-window__dots { display: flex; gap: 5px; margin-bottom: 10px; }
.mock-window__dots i { width: 7px; height: 7px; border-radius: 50%; background: #e3e0f2; }
.mock-window__dots i:first-child { background: var(--w-orange); }
.mock-bars { display: flex; gap: 9px; align-items: flex-end; height: 58px; }
.mock-bars i { flex: 1; border-radius: 4px 4px 0 0; background: #dcd7f9; height: 40%; }
.mock-bars i:nth-child(2) { height: 75%; background: #6c5ce7; }
.mock-bars i:nth-child(3) { height: 55%; }
.mock-bars i:nth-child(4) { height: 90%; background: #6c5ce7; }
.mock-bars i:nth-child(5) { height: 62%; background: #ff6b2c; }
.mock-slider { display: flex; align-items: center; gap: 10px; }
.mock-slider__track { flex: 1; height: 6px; border-radius: 3px; background: #e8e5f7; position: relative; }
.mock-slider__track::before { content: ""; position: absolute; inset: 0 45% 0 0; border-radius: 3px; background: var(--w-purple); }
.mock-slider__track::after { content: ""; position: absolute; top: 50%; left: 55%; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 3px solid var(--w-purple); transform: translate(-50%, -50%); }
.mock-chip { font-size: .78rem; font-weight: 700; color: var(--w-purple); background: #efecfd; border-radius: 999px; padding: 4px 10px; white-space: nowrap; }
.mock-avatars { display: flex; }
.mock-avatars i {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid #fff;
  background: #6c5ce7; color: #fff;
  font-size: .72rem; font-weight: 700; font-style: normal;
  display: flex; align-items: center; justify-content: center;
}
.mock-avatars i + i { margin-left: -9px; }
.mock-avatars i:nth-child(2) { background: #ff6b2c; }
.mock-avatars i:nth-child(3) { background: #262262; }
.mock-avatars i:nth-child(4) { background: #a29bf0; }
.mock-bubbles { display: flex; flex-direction: column; gap: 7px; }
.mock-bubbles span {
  font-size: .78rem;
  background: #fff;
  border: 1px solid #ffddc9;
  border-radius: 12px 12px 12px 3px;
  padding: 7px 12px;
  align-self: flex-start;
  max-width: 90%;
  color: var(--w-ink);
}
.mock-bubbles span:last-child { border-radius: 12px 12px 3px 12px; align-self: flex-end; background: var(--w-orange); border-color: var(--w-orange); color: #fff; }
.mock-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.mock-tags span { font-size: .78rem; font-weight: 600; background: #fff; border: 1px solid var(--w-border); border-radius: 999px; padding: 5px 12px; color: var(--w-ink); }

/* Onay isaretli listeler */
.check-list { list-style: none; padding: 0; margin: 0 0 24px; }
.check-list li { padding: 6px 0 6px 28px; position: relative; }
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--w-orange);
  font-weight: 700;
}

/* Istatistikler */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat b { display: block; font-size: 2.4rem; font-weight: 800; color: var(--w-blue); line-height: 1.1; }
.stat span { color: var(--w-muted); font-size: .95rem; }
.section--navy .stat b { color: var(--w-orange); }
.section--navy .stat span { color: #b9c8dd; }

/* Sayfa hero eylemleri */
.page-hero__actions { margin-top: 24px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Referanslar */
.testimonial { display: flex; flex-direction: column; height: 100%; }
.testimonial blockquote { margin: 0 0 20px; font-style: italic; color: var(--w-text); flex: 1; }
.testimonial__who { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--w-blue-light);
  color: var(--w-blue);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial__who b { display: block; color: var(--w-navy); }
.testimonial__who span { font-size: .85rem; color: var(--w-muted); }

/* Blog kartlari */
.post-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.post-card__thumb { aspect-ratio: 16 / 9; background: linear-gradient(135deg, var(--w-blue-light), #dbe7fb); }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { font-size: .8rem; color: var(--w-muted); margin-bottom: 10px; }
.post-card h3 { font-size: 1.1rem; }
.post-card h3 a { color: var(--w-navy); }
.post-card h3 a:hover { color: var(--w-blue); }

/* SSS akordiyon */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border: 1px solid var(--w-border); border-radius: var(--w-radius); margin-bottom: 14px; background: #fff; overflow: hidden; }
.faq__q {
  width: 100%;
  background: none;
  border: 0;
  padding: 20px 56px 20px 24px;
  text-align: left;
  font: inherit;
  font-weight: 700;
  color: var(--w-navy);
  cursor: pointer;
  position: relative;
}
.faq__q::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--w-orange);
  transition: transform .25s;
}
.faq__item.is-open .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a-inner { padding: 0 24px 20px; color: var(--w-muted); }

/* CTA bandi */
.cta-band {
  background: linear-gradient(120deg, var(--w-blue) 0%, var(--w-blue-dark) 100%);
  border-radius: 20px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: #fff;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin: 0 0 8px; }
.cta-band p { color: #cddcf7; margin: 0; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--w-navy); color: #aebdd2; font-size: .92rem; }
.site-footer__top { padding: 64px 0 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #aebdd2; }
.site-footer a:hover { color: #fff; }
.site-footer .site-logo { color: #fff; margin-bottom: 16px; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .82rem;
}
.site-footer__bottom ul { display: flex; gap: 20px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; color: var(--w-orange); }

/* ==========================================================================
   Ic sayfalar / Blog
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--w-navy), var(--w-blue-dark));
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.page-hero h1 { color: #fff; margin: 0; }
.page-hero p { color: #c4d3e8; margin: 12px 0 0; }

.content-area { padding: 64px 0; }
.entry-content h2, .entry-content h3 { margin-top: 1.6em; }
.entry-content img { border-radius: var(--w-radius); }
.entry-content { max-width: 780px; margin: 0 auto; }

/* Elementor / blok editoru ile kurulmus sayfalar tam genislik ister;
   780px'lik yazi kolonuna sikistirilinca duzen bozuluyor. */
.elementor-page .content-area,
.elementor-page .content-area .container { padding: 0; max-width: none; width: 100%; }
.elementor-page .entry-content { max-width: none; margin: 0; }
.elementor-page .page-hero { display: none; }
.entry-content .alignfull { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); }
.entry-content .alignwide { width: min(1160px, 100vw - 40px); max-width: none; margin-left: 50%; transform: translateX(-50%); }

.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pagination { margin-top: 48px; text-align: center; }
.pagination .page-numbers {
  display: inline-block;
  padding: 8px 15px;
  border: 1px solid var(--w-border);
  border-radius: 8px;
  margin: 0 3px;
  color: var(--w-navy);
  font-weight: 600;
}
.pagination .page-numbers.current { background: var(--w-blue); color: #fff; border-color: var(--w-blue); }

/* Iletisim */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-info .card { margin-bottom: 20px; }
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7 textarea,
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"], .contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--w-border);
  border-radius: 8px;
  font: inherit;
  margin-bottom: 16px;
  background: #fff;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--w-blue); border-color: var(--w-blue); }

/* ==========================================================================
   Kaydirma animasyonlari (scroll reveal)
   ========================================================================== */
.reveal { opacity: 0; }
.reveal.is-visible {
  animation: reveal-up .65s cubic-bezier(.22, .61, .36, 1) forwards;
  animation-delay: var(--reveal-delay, 0ms);
}
.reveal.reveal-done { animation: none; opacity: 1; }
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; animation: none !important; }
}

/* ==========================================================================
   Duyarli (responsive)
   ========================================================================== */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; gap: 32px; padding: 32px 0; }
  .feature-row--reverse .feature-row__media { order: 0; }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero__actions, .hero__badges { justify-content: center; }
  .site-footer__top { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .section { padding: 56px 0; }
  .grid--3, .posts-grid { grid-template-columns: 1fr; }
  .services-tabs { grid-template-columns: 1fr; }
  .services-panel { padding: 24px 20px; }
  .bento { grid-template-columns: 1fr; }
  .bento__item--w2 { grid-column: auto; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .grid--2, .contact-grid { grid-template-columns: 1fr; }
  .topbar__contact span.hide-m { display: none; }

  .nav-toggle { display: block; }
  .header-cta .btn { display: none; }
  .main-nav {
    position: fixed;
    inset: 0;
    top: 76px;
    background: #fff;
    padding: 24px;
    transform: translateX(100%);
    transition: transform .3s;
    overflow-y: auto;
    z-index: 998;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; }
  .main-nav .sub-menu {
    position: static;
    display: flex;
    box-shadow: none;
    border: 0;
    padding-left: 16px;
  }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}
@media (max-width: 560px) {
  .grid--4 { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 24px; }
  .site-footer__top { grid-template-columns: 1fr; }
}

/* WordPress zorunlu siniflari */
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .85rem; color: var(--w-muted); text-align: center; }
.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.sticky { display: block; }
.gallery-caption, .bypostauthor { display: block; }
