/* ============ AKT SERVIS — tema ============ */
:root {
  --ink: #10151c;
  --ink-2: #1a212b;
  --paper: #f6f5f2;
  --white: #ffffff;
  --line: #e3e1db;
  --line-dark: #26303d;
  --muted: #5c6672;
  --muted-light: #93a1b0;
  --accent: #ff4d12;
  --accent-soft: #ffe9e0;
  --amber: #ffb03a;
  --ok: #2fa36b;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(16,21,28,.06), 0 4px 14px rgba(16,21,28,.05);
  --shadow-lg: 0 24px 60px -24px rgba(16,21,28,.35);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .brand-text, .step-num, .trust-item strong, .gauge-val {
  font-family: "Manrope", "Inter", sans-serif;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, 92%); margin-inline: auto; }
.container.narrow { width: min(780px, 92%); }

/* ---------- butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  padding: .95em 1.7em; border-radius: 10px; border: 1.5px solid transparent;
  font-weight: 600; font-size: .95rem; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent {
  background: var(--accent); color: #fff;
  box-shadow: 0 8px 22px -8px rgba(255,77,18,.65);
}
.btn-accent:hover { background: #e8430e; }
.btn-ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-ghost:hover { background: #fff; box-shadow: var(--shadow-sm); }
.btn-outline-dark { border-color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: #fff; }
.btn-sm { padding: .6em 1.1em; font-size: .88rem; border-radius: 8px; }
.btn-wide { width: 100%; justify-content: center; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,245,242,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 4px 20px rgba(16,21,28,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { width: 34px; height: 34px; color: var(--accent); }
.brand-text { font-size: 1.25rem; font-weight: 800; letter-spacing: .04em; }
.brand-text em { font-style: normal; color: var(--accent); }
.main-nav { display: flex; align-items: center; gap: 30px; font-weight: 500; font-size: .95rem; }
.main-nav a:not(.nav-cta) { position: relative; padding: 6px 0; color: var(--ink-2); }
.main-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.main-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #10151c 0%, #17202b 58%, #1c2733 100%);
  color: #fff;
  padding: clamp(64px, 9vw, 110px) 0 clamp(70px, 9vw, 120px);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-light); margin-bottom: 20px;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(255,77,18,.18); }
.hero h1 { font-size: clamp(1.35rem, 4.2vw, 3.15rem); line-height: 1.16; font-weight: 800; letter-spacing: -.01em; }
.nowrap { white-space: nowrap; }
.hero h1 .accent { color: var(--accent); }
.lead { margin-top: 18px; max-width: 46ch; color: #b9c5d1; font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-points {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  list-style: none; margin-top: 34px;
  font-size: .9rem; color: #aab7c4;
}
.hero-points li { display: flex; align-items: center; gap: 8px; }
.hero-points li::before {
  content: ""; width: 16px; height: 16px; flex: none;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3 8.5 6.5 12 13 4.5" fill="none" stroke="%23ff4d12" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/contain no-repeat;
}
.hero-visual { position: relative; }
.gauge-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px; padding: 26px 26px 20px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
  max-width: 420px; margin-left: auto;
}
.gauge-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.gauge-title { font-weight: 600; font-size: .95rem; }
.gauge-status {
  font-size: .75rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ok); background: rgba(47,163,107,.14);
  padding: 4px 12px; border-radius: 999px; font-weight: 600;
}
.gauge-val { font-size: 2rem; font-weight: 800; fill: #fff; }
.gauge-list { list-style: none; margin-top: 14px; display: grid; gap: 9px; font-size: .88rem; color: #c2ccd7; }
.gauge-list i { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 9px; }
.gauge-list .ok { background: var(--ok); }
.gauge-list .warn { background: var(--amber); }
.float-badge {
  position: absolute; left: -6px; bottom: -22px;
  background: #fff; color: var(--ink);
  border-radius: 14px; padding: 14px 22px;
  box-shadow: var(--shadow-lg); text-align: left;
  animation: floaty 5s ease-in-out infinite;
}
.float-badge strong { display: block; font-size: 1.3rem; font-family: "Manrope"; }
.float-badge span { font-size: .78rem; color: var(--muted); }
@keyframes floaty { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-7px);} }
.hero-stripes {
  position: absolute; inset: auto 0 -1px 0; height: 90px;
  background: repeating-linear-gradient(-55deg, transparent 0 26px, rgba(255,255,255,.028) 26px 52px);
  pointer-events: none;
}

/* ---------- güven bandı ---------- */
.trustbar { background: var(--ink); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
  padding: 26px 12px; text-align: center;
  border-left: 1px solid var(--line-dark);
}
.trust-item:first-child { border-left: 0; }
.trust-item strong { display: block; font-size: 1.7rem; font-weight: 800; }
.trust-item span { font-size: .84rem; color: var(--muted-light); }

/* ---------- bölümler ---------- */
.section { padding: clamp(64px, 8vw, 104px) 0; }
.section-tint { background: #efede8; }
.section-dark {
  background: linear-gradient(165deg, #12181f, #1a222d);
  color: #fff;
}
.section-head { max-width: 640px; margin-bottom: clamp(38px, 5vw, 56px); }
.section-tag {
  font-size: .78rem; font-weight: 700; letter-spacing: .18em;
  color: var(--accent); margin-bottom: 12px;
}
.section-tag.light { color: var(--amber); }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; line-height: 1.22; letter-spacing: -.01em; }
.section-head p:not(.section-tag) { margin-top: 12px; color: var(--muted); }
.section-dark .section-head p:not(.section-tag) { color: var(--muted-light); }

/* ---------- hizmetler ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ""; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: linear-gradient(90deg, var(--accent), var(--amber));
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 54px; height: 54px; border-radius: 13px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; margin-bottom: 20px;
}
.service-icon svg { width: 27px; height: 27px; }
.service-card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 9px; }
.service-card p { font-size: .93rem; color: var(--muted); }
.service-meta {
  display: inline-block; margin-top: 16px; font-size: .78rem; font-weight: 600;
  color: var(--ink-2); background: var(--paper);
  border: 1px solid var(--line); padding: 5px 12px; border-radius: 999px;
}

/* ---------- süreç ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding-top: 18px; }
.step::before {
  content: ""; position: absolute; top: 0; left: 0; right: -13px;
  height: 1px; background: linear-gradient(90deg, var(--accent), transparent);
}
.step:last-child::before { right: 0; }
.step-num { font-size: 2rem; font-weight: 800; color: var(--accent); display: block; margin-bottom: 10px; }
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: .9rem; color: var(--muted-light); }

/* ---------- neden biz ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.why-copy h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800; margin: 4px 0 14px; line-height: 1.25; }
.why-lead { color: var(--muted); margin-bottom: 22px; }
.check-list { list-style: none; display: grid; gap: 13px; margin-bottom: 30px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .96rem; }
.check-list li::before {
  content: ""; flex: none; width: 21px; height: 21px; margin-top: 2px; border-radius: 50%;
  background: var(--accent-soft) url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3 8.5 6.5 12 13 4.5" fill="none" stroke="%23ff4d12" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/12px no-repeat;
}
.why-panel { display: grid; gap: 18px; }
.quote {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow-sm);
}
.quote p { font-size: 1rem; font-style: italic; color: var(--ink-2); }
.quote footer { margin-top: 14px; font-size: .86rem; color: var(--muted); }
.quote strong { color: var(--ink); }

/* ---------- kampanyalar ---------- */
.campaigns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.campaign {
  background: var(--white); border: 1px dashed #cfcabf;
  border-radius: var(--radius); padding: 28px 24px;
}
.campaign.featured { background: var(--ink); color: #fff; border-style: solid; border-color: var(--ink); box-shadow: var(--shadow-lg); }
.campaign.featured p { color: var(--muted-light); }
.campaign-tag {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent);
  background: var(--accent-soft); border-radius: 999px; padding: 5px 12px; margin-bottom: 14px;
}
.campaign.featured .campaign-tag { background: rgba(255,77,18,.16); color: #ff8a63; }
.campaign h3 { font-size: 1.1rem; margin-bottom: 8px; }
.campaign p { font-size: .92rem; color: var(--muted); }
.campaign-note { margin-top: 20px; font-size: .8rem; color: var(--muted); }

/* ---------- sss ---------- */
.faq-list { display: grid; gap: 12px; }
.faq {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 4px 24px; transition: border-color .2s ease;
}
.faq[open] { border-color: #ffcdb9; box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; font-weight: 600; padding: 17px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.4rem; font-weight: 400; color: var(--accent);
  transition: transform .2s ease; line-height: 1;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 0 19px; color: var(--muted); font-size: .95rem; max-width: 62ch; }

/* ---------- iletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 6vw, 76px); align-items: start; }
.contact-info h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 14px; }
.contact-lead { color: var(--muted-light); margin-bottom: 30px; max-width: 44ch; }
.contact-list { list-style: none; display: grid; gap: 20px; }
.contact-list .ci-label {
  display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 3px; font-weight: 700;
}
.contact-list a:hover { color: var(--amber); }
.contact-form {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px; padding: clamp(24px, 3.5vw, 40px);
  backdrop-filter: blur(6px);
}
.contact-form label { display: block; font-size: .86rem; font-weight: 500; color: #c6d0da; margin-bottom: 16px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; margin-top: 7px; padding: 12px 14px;
  background: #101720; color: #fff;
  border: 1px solid #2a3542; border-radius: 9px;
  font: inherit; font-size: .95rem;
  transition: border-color .15s ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--accent);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consent { display: flex !important; gap: 10px; align-items: flex-start; font-size: .82rem !important; color: var(--muted-light) !important; }
.consent input { width: auto !important; margin-top: 4px !important; accent-color: var(--accent); }
.contact-form .btn { margin-top: 6px; }
.form-note { margin-top: 14px; font-size: .76rem; color: #6b7887; text-align: center; }
#formNote.sent { color: var(--ok); }

/* ---------- footer ---------- */
.site-footer { background: #0b0f14; color: #97a3b0; padding: 46px 0; }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center; }
.footer-brand .brand-text { color: #fff; font-size: 1.1rem; }
.footer-brand p { font-size: .84rem; margin-top: 6px; }
.footer-nav { display: flex; gap: 26px; justify-content: center; font-size: .9rem; }
.footer-nav a:hover { color: #fff; }
.footer-copy { font-size: .8rem; }

/* ---------- reveal animasyon ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.65,.3,1); }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

/* ---------- WhatsApp bileşenleri ---------- */
.btn-wa {
  background: #25d366; color: #06331a;
  box-shadow: 0 8px 22px -8px rgba(37,211,102,.55);
}
.btn-wa:hover { background: #1fb857; }
.btn-wa svg { width: 1.15em; height: 1.15em; }

.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px -6px rgba(37,211,102,.65);
  transition: transform .18s ease;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.08); }
@media (max-width: 720px) { .wa-float { right: 14px; bottom: 14px; width: 52px; height: 52px; } }

.wa-panel {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px; padding: clamp(26px, 4vw, 44px);
  text-align: center; backdrop-filter: blur(6px);
}
.wa-icon { width: 54px; height: 54px; color: #25d366; margin-bottom: 16px; }
.wa-panel h3 { font-size: 1.35rem; font-weight: 800; font-family: "Manrope"; margin-bottom: 10px; }
.wa-panel p { color: var(--muted-light); max-width: 42ch; margin-inline: auto; }
.wa-panel .btn { margin-top: 24px; }
.wa-note { margin-top: 14px !important; font-size: .76rem !important; color: #6b7887 !important; }

/* ---------- bölge sayfası ---------- */
.crumbs {
  font-size: .82rem; color: var(--muted);
  display: flex; flex-wrap: wrap; gap: 6px;
  list-style: none; padding: 22px 0 0;
}
.crumbs li + li::before { content: "›"; margin-right: 6px; color: #b5ada0; }
.crumbs a:hover { color: var(--accent); }
.area-hero { background: var(--paper); padding: 34px 0 10px; }
.area-hero h1 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; line-height: 1.2; }
.area-hero h1 em { font-style: normal; color: var(--accent); }
.area-lead { margin-top: 14px; color: var(--muted); max-width: 68ch; }
.area-section-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 16px; }
.svc-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; }
.svc-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; }
.svc-list li::before {
  content: ""; flex: none; width: 19px; height: 19px; margin-top: 2px; border-radius: 50%;
  background: var(--accent-soft) url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3 8.5 6.5 12 13 4.5" fill="none" stroke="%23ff4d12" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/11px no-repeat;
}
.area-steps { list-style: none; counter-reset: as; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.area-steps li { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 18px; font-size: .9rem; position: relative; }
.area-steps b { display: block; font-family: "Manrope"; font-size: 1.05rem; margin-bottom: 5px; color: var(--accent); }
.area-steps b::before { content: counter(as) ". "; counter-increment: as; }
.near-links { display: flex; flex-wrap: wrap; gap: 10px; }
.near-links a {
  font-size: .86rem; padding: 7px 14px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line); color: var(--ink-2);
  transition: all .15s ease;
}
.near-links a:hover { border-color: var(--accent); color: var(--accent); }
.area-cta {
  background: linear-gradient(150deg, #10151c, #1c2733); color: #fff;
  border-radius: 18px; padding: clamp(28px, 4vw, 44px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 22px; flex-wrap: wrap;
}
.area-cta h2 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 800; max-width: 24ch; }
.area-cta p { color: var(--muted-light); font-size: .93rem; margin-top: 8px; max-width: 46ch; }
@media (max-width: 860px) {
  .svc-list, .area-steps { grid-template-columns: 1fr; }
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .services-grid, .campaigns { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .gauge-card { margin-inline: auto; }
  .float-badge { left: 10px; }
}
@media (max-width: 720px) {
  .main-nav {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 10px 6%; 24px;
    transform: translateY(-130%); transition: transform .25s ease;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open { transform: none; }
  .main-nav a:not(.nav-cta) { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .main-nav a:not(.nav-cta)::after { content: none; }
  .nav-cta { margin-top: 16px; justify-content: center; }
  .nav-toggle { display: block; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .services-grid, .campaigns, .steps, .form-row, .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-left: 0; border-top: 1px solid var(--line-dark); padding: 18px 8px; }
  .trust-item:first-child { border-top: 0; }
  .step::before { right: 0; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-nav { flex-wrap: wrap; }
}
