/* ---------- Inter (self-hosted, Google Fonts'a bağımlılık yok) ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   Agenta Yazılım — agentayazilim.com
   Koyu premium tema (öge.co dilinin kurumsal sürümü)
   ============================================================ */

:root {
  --bg-color: #1c1c1f;
  --bg-elevated: #232327;
  --bg-alt: #1f1f23;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --border-soft: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text-primary: #ededed;
  --text-secondary: #9b9ba1;
  --text-muted: #6f6f76;

  --accent: #3ecf8e;
  --accent-dim: #2ba86f;
  --accent-glow: rgba(62, 207, 142, 0.35);
  --accent-soft: rgba(62, 207, 142, 0.1);

  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container-width: 1120px;
  --radius: 14px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background-color: var(--bg-color);
  background-image: radial-gradient(circle at 50% -15%, #2a2a30 0%, rgba(42, 42, 48, 0) 55%);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease), opacity 0.3s var(--ease);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 600;
}

em {
  font-style: normal;
  color: var(--text-muted);
  font-weight: 400;
}

::selection {
  background: var(--accent-soft);
  color: #fff;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.75rem;
}

.container-narrow {
  max-width: 820px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #06170f;
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.text-gradient {
  background: linear-gradient(180deg, #ffffff 0%, #8f8f97 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(28, 28, 31, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--border-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 1.02rem;
  margin-right: auto;
}

.brand-mark {
  width: 22px;
  height: 22px;
  flex: none;
  border-radius: 6px;
  background: linear-gradient(140deg, var(--accent) 0%, var(--accent-dim) 55%, #1c5c40 100%);
  box-shadow: 0 0 18px var(--accent-glow);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px 6px auto auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}

.brand-light {
  color: var(--text-secondary);
  font-weight: 400;
}

.nav-desktop {
  display: flex;
  gap: 1.9rem;
  font-size: 0.93rem;
  color: var(--text-secondary);
}

.nav-desktop a:hover {
  color: var(--text-primary);
}

.header-cta {
  flex: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0.5rem 1.75rem 1.5rem;
  background: rgba(28, 28, 31, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}

.nav-mobile a {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-secondary);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.nav-mobile.open {
  display: flex;
}

/* ============================================================
   BUTONLAR
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease),
    border-color 0.3s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #072016;
  font-weight: 600;
  box-shadow: 0 6px 26px -8px var(--accent-glow);
}

.btn-primary:hover {
  background: #4bdd9c;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -10px var(--accent-glow);
}

.btn-ghost {
  border-color: var(--border-strong);
  color: var(--text-primary);
  background: var(--surface);
}

.btn-ghost:hover {
  background: var(--surface-hover);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.15rem;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 1rem 1.9rem;
  font-size: 1rem;
}

/* WhatsApp ikonu (saf CSS mask, harici dosya yok) */
.wa-icon {
  width: 17px;
  height: 17px;
  flex: none;
  background-color: currentColor;
  -webkit-mask: var(--wa-mask) center/contain no-repeat;
  mask: var(--wa-mask) center/contain no-repeat;
}

.wa-icon-lg {
  width: 24px;
  height: 24px;
}

:root {
  --wa-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3E%3C/svg%3E");
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 11rem 0 6rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -18%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 620px;
  background: radial-gradient(ellipse at center, rgba(62, 207, 142, 0.11) 0%, rgba(62, 207, 142, 0) 65%);
  pointer-events: none;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.05rem, 4.6vw, 3.45rem);
  font-weight: 600;
  margin-bottom: 1.8rem;
  max-width: 22ch;
}

.hero-sub {
  font-size: clamp(1.02rem, 2vw, 1.19rem);
  color: var(--text-secondary);
  max-width: 58ch;
  margin-bottom: 2.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 4rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2.6rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--border-soft);
}

.hero-meta li {
  display: flex;
  flex-direction: column;
}

.hero-meta strong {
  font-size: 1.06rem;
  font-weight: 600;
}

.hero-meta span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ============================================================
   BÖLÜMLER
   ============================================================ */
.section {
  padding: 6.5rem 0;
}

.section-tight {
  padding: 2.5rem 0 4.5rem;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018) 0%, rgba(255, 255, 255, 0) 100%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.section-head {
  max-width: 62ch;
  margin-bottom: 3.4rem;
}

.section-num {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
  font-variant-numeric: tabular-nums;
}

.section-head h2 {
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  margin-bottom: 1rem;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 1.03rem;
}

/* ---------- SORUN İFADESİ ---------- */
.statement {
  border-left: 2px solid var(--accent);
  padding: 0.3rem 0 0.3rem 1.9rem;
  max-width: 72ch;
}

.statement p {
  font-size: clamp(1.06rem, 2.2vw, 1.32rem);
  color: var(--text-secondary);
  line-height: 1.6;
}

.statement em {
  color: var(--text-primary);
  font-style: italic;
}

.statement-kicker {
  margin-top: 1.1rem;
  color: var(--text-primary) !important;
  font-weight: 500;
}

/* ============================================================
   HİZMET KARTLARI
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.35rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.9rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--surface-hover);
}

.card-feature {
  border-color: rgba(62, 207, 142, 0.28);
  background: linear-gradient(180deg, var(--accent-soft) 0%, rgba(255, 255, 255, 0.03) 45%);
}

.card-feature:hover {
  border-color: rgba(62, 207, 142, 0.45);
}

.card-icon {
  font-size: 1.35rem;
  color: var(--accent);
  margin-bottom: 1.1rem;
  line-height: 1;
}

.card h3 {
  font-size: 1.22rem;
  margin-bottom: 0.7rem;
}

.card>p {
  color: var(--text-secondary);
  font-size: 0.97rem;
  margin-bottom: 1.4rem;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
  font-size: 0.94rem;
  color: var(--text-secondary);
}

.card-list li {
  position: relative;
  padding-left: 1.3rem;
  line-height: 1.5;
}

.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

.card-list strong {
  color: var(--text-primary);
  font-weight: 600;
}

.card-cta {
  margin-top: auto;
  font-size: 0.92rem;
  color: var(--accent);
  font-weight: 500;
  cursor: pointer;
}

.card-cta:hover {
  color: #6ae5b0;
}

.card-grid-note {
  margin-top: 2.2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  text-align: center;
}

/* ============================================================
   NEDEN / YAKLAŞIM
   ============================================================ */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.6rem 2.4rem;
}

.reason h3 {
  font-size: 1.08rem;
  margin-bottom: 0.6rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border-soft);
  position: relative;
}

.reason h3::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 34px;
  height: 1px;
  background: var(--accent);
}

.reason p {
  color: var(--text-secondary);
  font-size: 0.96rem;
}

/* ============================================================
   İŞLER
   ============================================================ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 1.35rem;
}

.work {
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}

.work:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.work-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.work-top h3 {
  font-size: 1.16rem;
}

.tag {
  flex: none;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
  white-space: nowrap;
}

.tag-live {
  color: var(--accent);
  border-color: rgba(62, 207, 142, 0.35);
  background: var(--accent-soft);
}

.tag-dev {
  color: #d8b35f;
  border-color: rgba(216, 179, 95, 0.3);
  background: rgba(216, 179, 95, 0.08);
}

.work-desc {
  color: var(--text-secondary);
  font-size: 0.96rem;
  margin-bottom: 1.5rem;
}

.work-stack {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.work-stack li {
  font-size: 0.8rem;
  color: var(--text-muted);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 0.24rem 0.6rem;
}

.work-stack a {
  color: var(--accent);
}

.work-cta {
  background: linear-gradient(150deg, rgba(62, 207, 142, 0.12) 0%, rgba(255, 255, 255, 0.02) 60%);
  border-color: rgba(62, 207, 142, 0.25);
  justify-content: center;
}

.work-cta h3 {
  font-size: 1.16rem;
  margin-bottom: 0.9rem;
}

.work-cta .btn {
  align-self: flex-start;
}

/* ============================================================
   SÜREÇ
   ============================================================ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
}

.step {
  display: flex;
  gap: 1.6rem;
  padding: 1.8rem 0;
  border-top: 1px solid var(--border-soft);
}

.step:last-child {
  border-bottom: 1px solid var(--border-soft);
}

.step-num {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(62, 207, 142, 0.4);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--accent-soft);
}

.step h3 {
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
}

.step h3 em {
  font-size: 0.87rem;
  font-weight: 400;
}

.step p {
  color: var(--text-secondary);
  font-size: 0.96rem;
}

/* ============================================================
   SSS
   ============================================================ */
.faq {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border-soft);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-soft);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.35rem 2.5rem 1.35rem 0;
  font-size: 1.03rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s var(--ease);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 0.4rem;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid var(--text-muted);
  border-bottom: 1.5px solid var(--text-muted);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.faq-item[open] summary::after {
  transform: translateY(-20%) rotate(-135deg);
  border-color: var(--accent);
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  padding: 0 3rem 1.6rem 0;
  margin-top: -0.25rem;
}

.faq-item strong {
  color: var(--text-primary);
}

.faq-item em {
  font-style: italic;
  color: var(--text-secondary);
}

/* ============================================================
   İLETİŞİM
   ============================================================ */
.contact {
  padding-bottom: 8rem;
}

.contact-box {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.6rem);
  background:
    radial-gradient(ellipse at 15% 0%, rgba(62, 207, 142, 0.13) 0%, rgba(62, 207, 142, 0) 60%),
    var(--bg-elevated);
  text-align: center;
}

.contact-box h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  margin-bottom: 1.1rem;
}

.contact-sub {
  color: var(--text-secondary);
  max-width: 52ch;
  margin: 0 auto 2.2rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-bottom: 1.6rem;
}

.contact-alt {
  font-size: 0.93rem;
  color: var(--text-muted);
}

.contact-alt a {
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-strong);
}

.contact-alt a:hover {
  color: var(--accent);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 3.5rem 0 5.5rem;
  background: rgba(0, 0, 0, 0.15);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.footer-brand strong {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.89rem;
  line-height: 1.55;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--accent);
}

.footer-contact a {
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 1.6rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ============================================================
   SABİT WHATSAPP BUTONU
   ============================================================ */
.wa-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.3rem 0.85rem 1.1rem;
  border-radius: 999px;
  background: #25d366;
  color: #06210f;
  font-weight: 600;
  font-size: 0.94rem;
  box-shadow: 0 10px 34px -10px rgba(37, 211, 102, 0.7);
  transform: translateY(0);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -12px rgba(37, 211, 102, 0.85);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {

  .nav-desktop,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 8.5rem 0 4rem;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-meta {
    gap: 1.5rem 2rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .statement {
    padding-left: 1.3rem;
  }

  .wa-float-text {
    display: none;
  }

  .wa-float {
    padding: 1rem;
    right: 1.1rem;
    bottom: 1.1rem;
  }

  .step {
    gap: 1.1rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}

/* ============================================================
   HİZMET SAYFALARI (alt sayfalar)
   ============================================================ */
.page {
  padding: 8.5rem 0 5rem;
}

.container-page {
  max-width: 880px;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 2.4rem;
}

.crumbs a:hover {
  color: var(--accent);
}

.crumbs span[aria-hidden] {
  opacity: 0.45;
}

.page-head {
  margin-bottom: 3rem;
}

.page-head h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  margin-bottom: 1.1rem;
}

.page-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  color: var(--text-secondary);
  max-width: 58ch;
  margin-bottom: 2rem;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.prose p {
  color: var(--text-secondary);
  margin-bottom: 1.1rem;
  max-width: 68ch;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose strong {
  color: var(--text-primary);
  font-weight: 600;
}

.page-block {
  margin-top: 3.6rem;
  padding-top: 3.6rem;
  border-top: 1px solid var(--border-soft);
}

.page-block>h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin-bottom: 1.5rem;
}

/* liste */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 68ch;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--text-secondary);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 9px;
  height: 5px;
  border-left: 1.6px solid var(--accent);
  border-bottom: 1.6px solid var(--accent);
  transform: rotate(-45deg);
}

/* tanım ızgarası */
.def-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem 2rem;
}

.def-grid dt {
  font-weight: 600;
  margin-bottom: 0.4rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border-soft);
  position: relative;
}

.def-grid dt::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--accent);
}

.def-grid dd {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* karşılaştırma tablosu */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
}

table.cmp {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.92rem;
}

table.cmp th,
table.cmp td {
  text-align: left;
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
  color: var(--text-secondary);
}

table.cmp thead th {
  color: var(--text-primary);
  font-weight: 600;
  background: var(--surface);
  white-space: nowrap;
}

table.cmp tbody th {
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}

table.cmp tbody tr:last-child th,
table.cmp tbody tr:last-child td {
  border-bottom: none;
}

/* ürün vitrini kutusu */
.showcase {
  border: 1px solid rgba(62, 207, 142, 0.28);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  background: linear-gradient(150deg, var(--accent-soft) 0%, rgba(255, 255, 255, 0.02) 65%);
}

.showcase h2 {
  font-size: 1.12rem;
  margin-bottom: 0.6rem;
}

.showcase p {
  color: var(--text-secondary);
  font-size: 0.96rem;
  margin-bottom: 1.1rem;
}

.showcase-link {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.95rem;
}

.showcase-link:hover {
  color: #6ae5b0;
}

/* ilgili hizmetler */
.rel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.rel-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.3rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.rel-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

.rel-card strong {
  font-weight: 600;
  font-size: 0.99rem;
}

.rel-card span {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

/* alt sayfa iletişim kutusu düzeltmesi */
.page-block .contact-box {
  text-align: left;
}

.page-block .contact-sub {
  margin-left: 0;
  margin-right: 0;
}

.page-block .contact-actions {
  justify-content: flex-start;
  margin-bottom: 0;
}

/* footer başlıkları */
.footer-head {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.86rem;
  margin-bottom: 0.35rem;
}

/* hizmet kartındaki detay linki */
.card-links {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.1rem;
}

.card-detail {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 1px;
}

.card-detail:hover {
  color: var(--text-primary);
  border-color: var(--accent);
}

/* iş kartındaki canlı site linki */
.work-link {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.work-link:hover {
  color: #6ae5b0;
}

@media (max-width: 760px) {
  .page {
    padding: 7rem 0 3.5rem;
  }

  .page-block {
    margin-top: 2.6rem;
    padding-top: 2.6rem;
  }
}

/* ============================================================
   BLOG
   ============================================================ */
.article-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.article-body h2 {
  font-size: clamp(1.3rem, 2.8vw, 1.7rem);
  margin: 2.6rem 0 1rem;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-list {
  margin: 0.4rem 0 1.4rem;
}

.num-list {
  counter-reset: adim;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 0.4rem 0 1.4rem;
  max-width: 68ch;
}

.num-list li {
  position: relative;
  padding-left: 2.5rem;
  color: var(--text-secondary);
  counter-increment: adim;
}

.num-list li::before {
  content: counter(adim);
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  border: 1px solid rgba(62, 207, 142, 0.4);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-body a {
  color: var(--accent);
  border-bottom: 1px solid rgba(62, 207, 142, 0.35);
}

.article-body a:hover {
  color: #6ae5b0;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.7rem 1.8rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

.blog-card .article-meta {
  margin-bottom: 0;
}

.blog-card strong {
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.blog-card-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 70ch;
}

.blog-card-more {
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 500;
  margin-top: 0.3rem;
}
