/* TOK Dijital — sade, dikkatli, güven veren kurumsal düzen */

:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f8;
  --bg-warm: #fff8f3;
  --text: #1e1f24;
  --muted: #667085;
  --line: #e7e8ec;
  --orange: #e85d04;
  --orange-dark: #c94d00;
  --orange-soft: rgba(232, 93, 4, 0.10);
  --ok: #168a45;
  --bad: #c63a3a;
  --dark: #17181c;
  --shadow: 0 12px 32px rgba(23, 24, 28, 0.07);
  --shadow-hover: 0 16px 40px rgba(23, 24, 28, 0.11);
  --radius: 14px;
  --container: 1180px;
  --font: "Poppins", system-ui, sans-serif;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--muted);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
}

h1,
h2,
h3,
strong {
  color: var(--text);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.15rem;
  box-sizing: border-box;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  color: var(--text);
  font-size: 1.02rem;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.15rem;
}

.desktop-nav > a:not(.btn) {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.desktop-nav > a:not(.btn):hover,
.desktop-nav > a:not(.btn)[aria-current="page"] {
  color: var(--orange);
}

.btn-nav {
  min-height: 42px !important;
  padding: 0.55rem 1rem !important;
  font-size: 0.88rem !important;
}

.menu-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border-radius: 8px;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.menu-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.4rem 1rem 1.2rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.mobile-nav:not([hidden]) {
  display: flex;
}

.mobile-nav a:not(.btn) {
  padding: 0.7rem 0.2rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}

.mobile-nav .btn {
  margin-top: 0.75rem;
}

@media (min-width: 980px) {
  .desktop-nav {
    display: flex;
  }

  .menu-btn,
  .mobile-nav {
    display: none !important;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 50px;
  padding: 0.75rem 1.4rem;
  border-radius: 10px;
  border: 2px solid transparent;
  font-size: 0.94rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-fill {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff !important;
}

.btn-fill:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.btn-outline {
  background: transparent;
  border-color: var(--orange);
  color: var(--orange);
}

.btn-outline:hover {
  background: var(--orange);
  color: #fff;
}

.btn-block {
  width: 100%;
}

.service-card__cta {
  margin-top: 0.85rem;
  min-height: 42px;
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 2.5rem 0 2.75rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 70% at 92% 18%, rgba(232, 93, 4, 0.10), transparent 58%),
    radial-gradient(ellipse 40% 50% at 8% 85%, rgba(66, 133, 244, 0.06), transparent 55%),
    linear-gradient(180deg, #fffaf6 0%, #ffffff 55%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero-copy h1 {
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 650;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: 1.1rem;
}

.lead {
  max-width: 52ch;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-refs {
  margin-top: 0.25rem;
  max-width: 100%;
}

.hero-refs__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.hero-refs__track-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.hero-refs__track {
  display: flex;
  width: max-content;
  gap: 0.65rem;
  animation: refsMarquee 42s linear infinite;
}

.hero-refs__track:hover {
  animation-play-state: paused;
}

.hero-refs__track span {
  flex-shrink: 0;
  padding: 0.5rem 0.95rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 4px 14px rgba(23, 24, 28, 0.04);
  white-space: nowrap;
}

@keyframes refsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-refs__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
  }
}

.hero-visual {
  display: grid;
  place-items: center;
  width: 100%;
  min-width: 0;
}

.hero-copy {
  min-width: 0;
}

.hero-stage {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 560 / 480;
  margin-inline: auto;
}

.hero-illu {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 40px rgba(23, 24, 28, 0.08));
}

.hero-logo-wrap {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: clamp(110px, 28%, 158px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 14px 34px rgba(23, 24, 28, 0.18);
  background: #111;
  z-index: 3;
  animation: logoFloat 4.5s ease-in-out infinite;
}

.hero-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(23, 24, 28, 0.12);
  backdrop-filter: blur(6px);
  min-width: 0;
  max-width: min(52%, 200px);
}

.float-card img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}

.float-card strong {
  display: block;
  font-size: 0.76rem;
  line-height: 1.25;
  margin-bottom: 0.12rem;
}

.float-card span {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.25;
}

.float-card--gads {
  left: 0;
  top: 8%;
  animation: cardFloat 5s ease-in-out infinite;
}

.float-card--meta {
  right: 0;
  top: 12%;
  animation: cardFloat 5.5s ease-in-out infinite 0.4s;
}

.float-card--social {
  left: 0;
  bottom: 12%;
  animation: cardFloat 5.2s ease-in-out infinite 0.6s;
}

.float-card--web {
  right: 0;
  bottom: 6%;
  animation: cardFloat 4.8s ease-in-out infinite 0.8s;
}

@keyframes logoFloat {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 8px)); }
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@media (max-width: 899px) {
  .hero {
    padding: 1.5rem 0 2rem;
  }

  .hero-stage {
    width: min(100%, 380px);
  }

  .float-card {
    padding: 0.5rem 0.6rem;
    max-width: min(48%, 170px);
  }

  .float-card strong {
    font-size: 0.68rem;
  }

  .float-card span {
    font-size: 0.62rem;
  }

  .float-card img {
    width: 20px;
    height: 20px;
  }

  .float-card--meta {
    right: 0;
    top: 8%;
  }

  .float-card--social {
    left: 0;
    bottom: 10%;
  }

  .float-card--web {
    right: 0;
    bottom: 4%;
    display: flex;
  }

  .hero-logo-wrap {
    top: 40%;
  }

  .hero-refs__track span {
    font-size: 0.75rem;
    padding: 0.42rem 0.8rem;
  }
}

/* KRİTİK: width:100% container max-width'i eziyordu — kaldırıldı */
@media (min-width: 900px) {
  .hero {
    padding: 3rem 0 3.5rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem 2.5rem;
  }

  .hero-stage {
    width: min(100%, 480px);
  }
}

@media (min-width: 1200px) {
  .hero {
    padding: 3.5rem 0 4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo-wrap,
  .float-card {
    animation: none;
  }
}

/* ---------- Sections shared ---------- */
.section-head {
  margin-bottom: 2rem;
  max-width: 640px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2,
.aware-copy h2,
.contact-copy h2,
.process-inner h2 {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.section-head p {
  font-size: 1rem;
}

/* ---------- Services ---------- */
.services {
  padding: 1rem 0 4.5rem;
}

.service-grid {
  display: grid;
  gap: 1.15rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: #f0c9ad;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--bg-warm);
  border: 1px solid #ffe4d1;
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
}

.service-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (min-width: 700px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Aware ---------- */
.aware {
  padding: 4.5rem 0;
  background: var(--bg-soft);
}

.aware-grid {
  display: grid;
  gap: 2.25rem;
}

.aside-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.85rem;
}

.stat {
  padding: 1.05rem 1.1rem;
  border-radius: 10px;
  background: var(--bg-warm);
  border-left: 4px solid var(--orange);
}

.stat strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 0.2rem;
  color: var(--orange);
}

.stat span {
  font-size: 0.9rem;
}

.point {
  margin-bottom: 1.35rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}

.point:last-of-type {
  border-bottom: 0;
  margin-bottom: 0.5rem;
  padding-bottom: 0;
}

.point h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.point p {
  font-size: 0.96rem;
}

.aware-note {
  margin: 1.5rem 0 1.2rem;
  color: var(--text);
  font-weight: 500;
  font-size: 0.98rem;
}

@media (min-width: 900px) {
  .aware-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3.5rem;
    align-items: start;
  }

  .aside-card {
    position: sticky;
    top: calc(var(--header-h) + 1.25rem);
  }
}

/* ---------- Mistakes ---------- */
.mistakes {
  padding: 4.5rem 0;
}

.mistake-grid {
  display: grid;
  gap: 1.15rem;
}

.mistake-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.mistake-card:hover {
  border-color: #f0c9ad;
  box-shadow: var(--shadow);
}

.mistake-num {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--orange);
}

.mistake-card h3 {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.mistake-card p {
  font-size: 0.93rem;
  margin-bottom: 0.45rem;
}

.tag-bad {
  color: var(--bad);
  font-weight: 600;
}

.tag-ok {
  color: var(--ok);
  font-weight: 600;
}

@media (min-width: 860px) {
  .mistake-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Process ---------- */
.process {
  padding: 4.5rem 0;
  background: var(--bg-soft);
  text-align: center;
}

.steps {
  display: grid;
  gap: 1rem;
  margin: 0 auto 2rem;
  text-align: left;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 0.9rem;
  align-items: start;
}

.step span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 700;
}

.step p {
  font-size: 0.95rem;
  padding-top: 0.4rem;
}

@media (min-width: 860px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Contact ---------- */
.contact {
  padding: 4.5rem 0;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-list {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.95rem;
}

.contact-list a,
.contact-list > div {
  padding-bottom: 0.95rem;
  border-bottom: 1px solid var(--line);
}

.contact-list small {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-list strong {
  font-size: 1.15rem;
}

.contact-list a:hover strong {
  color: var(--orange);
}

.contact-form {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem;
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-soft);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: #9ca3af;
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2.25rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  font-size: 0.92rem;
  color: #9ca3af;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
}

.footer-brand span {
  font-size: 0.86rem;
  color: #9ca3af;
}

.footer-about {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.1rem;
  max-width: 32ch;
}

.footer-phone {
  display: inline-block;
  color: #fff !important;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.footer-wa {
  display: inline-block;
  color: #25d366 !important;
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.85rem;
  align-items: center;
  padding-top: 1.35rem;
  font-size: 0.88rem;
}

.footer-bottom--only {
  border-top: 0;
  padding-top: 0;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
  align-items: center;
}

.footer-bottom-links a {
  color: #9ca3af;
}

.footer-bottom-links a:hover {
  color: #fff;
}

.footer-bottom-links span {
  color: var(--orange);
  font-weight: 600;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.9fr 0.9fr;
    gap: 2rem;
  }
}

/* ---------- Legal pages ---------- */
.legal-page {
  padding: 2.5rem 0 4rem;
  background: #fff;
}

.legal-wrap {
  max-width: 820px;
}

.legal-back {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--orange);
}

.legal-wrap h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.35rem);
  font-weight: 650;
  margin-bottom: 0.4rem;
}

.legal-updated {
  font-size: 0.88rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.75rem 0 0.65rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.96rem;
  line-height: 1.75;
}

.legal-content ul {
  margin: 0.5rem 0 0.75rem 1.15rem;
  display: grid;
  gap: 0.35rem;
}

.legal-content a {
  color: var(--orange);
  font-weight: 500;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.legal-nav a {
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.2s, color 0.2s;
}

.legal-nav a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ---------- Form checkbox ---------- */
.check-label {
  display: flex !important;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.84rem !important;
  font-weight: 400 !important;
  color: var(--muted) !important;
  line-height: 1.5;
}

.check-label input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--orange);
}

.check-label a {
  color: var(--orange);
  font-weight: 500;
}

/* ---------- Floating contact buttons ---------- */
.float-actions {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: center;
}

.call-float,
.wa-float {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform 0.2s var(--ease);
  box-shadow: 0 10px 24px rgba(23, 24, 28, 0.22);
}

.call-float {
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(232, 93, 4, 0.35);
}

.wa-float {
  background: #25d366;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

.call-float:hover,
.wa-float:hover {
  transform: translateY(-2px) scale(1.04);
}

/* ---------- Website Tasarımı sayfası ---------- */
.page-web .web-hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 3.25rem;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(232, 93, 4, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(232, 93, 4, 0.06), transparent 50%),
    linear-gradient(180deg, #fff 0%, #faf9f8 100%);
}

.web-hero__glow {
  pointer-events: none;
  position: absolute;
  inset: auto -10% -20% auto;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  background: radial-gradient(circle, rgba(232, 93, 4, 0.14), transparent 68%);
  filter: blur(8px);
}

.web-hero__grid {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: start;
}

.web-hero__copy h1 {
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin: 0.35rem 0 0.85rem;
  max-width: 18ch;
}

.page-seo .web-hero__copy h1,
.page-seo .seo-hero h1 {
  max-width: 18ch;
}

.hl {
  color: var(--orange);
}

.seo-hero__inner {
  max-width: 720px;
  padding: 0.5rem 0 0.25rem;
}

.seo-hero .lead {
  max-width: 40rem;
}

.seo-plans {
  padding: 3.25rem 0 3.75rem;
  background: var(--bg-soft);
}

.plan-toggle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 auto 0.75rem;
  padding: 0.35rem;
  max-width: 720px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.plan-toggle button {
  cursor: pointer;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.2;
}

.plan-toggle button small {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 0.12rem;
}

.plan-toggle button.is-active {
  background: var(--dark);
  color: #fff;
}

.plan-toggle button.is-active small {
  color: #ffb380;
}

.plan-period-hint {
  text-align: center;
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
}

.plan-grid {
  display: grid;
  gap: 1rem;
}

.plan-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem 1.2rem 1.25rem;
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.plan-card--featured {
  border-color: var(--orange);
  box-shadow: 0 16px 40px rgba(232, 93, 4, 0.12);
}

.plan-card__badge {
  position: absolute;
  top: -0.7rem;
  left: 1.15rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
}

.plan-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.plan-card__who {
  font-size: 0.88rem;
  margin-top: -0.45rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.plan-price strong {
  font-size: clamp(1.7rem, 4vw, 2.05rem);
  letter-spacing: -0.03em;
  color: var(--orange);
  line-height: 1;
}

.plan-price span {
  font-size: 0.8rem;
  font-weight: 600;
}

.plan-card__kw {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  padding: 0.45rem 0.7rem;
  background: var(--bg-warm);
  border-radius: 8px;
  width: fit-content;
}

.plan-feats,
.plan-more ul {
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.plan-feats li,
.plan-more li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.84rem;
  color: var(--text);
}

.plan-feats li::before,
.plan-more li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ok);
  font-weight: 700;
}

.plan-feats li.is-off,
.plan-more li.is-off {
  color: #b0b4bd;
}

.plan-feats li.is-off::before,
.plan-more li.is-off::before {
  content: "–";
  color: #c5c8d0;
}

.plan-more {
  border-top: 1px solid var(--line);
  padding-top: 0.35rem;
}

.plan-more summary {
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
  padding: 0.45rem 0;
  list-style: none;
}

.plan-more summary::-webkit-details-marker {
  display: none;
}

.plan-more ul {
  padding-bottom: 0.5rem;
}

.plan-fine {
  margin-top: 1.35rem;
  text-align: center;
  font-size: 0.82rem;
  max-width: 46rem;
  margin-inline: auto;
}

.seo-trio {
  padding: 3.5rem 0;
}

.seo-trio__grid {
  display: grid;
  gap: 1rem;
}

.seo-trio article {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem 1.4rem;
}

.seo-trio article span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.06em;
  margin-bottom: 0.45rem;
}

.seo-trio h3 {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

.seo-trio p {
  font-size: 0.9rem;
}

.seo-checks {
  padding: 3.25rem 0 3.75rem;
  background: var(--bg-soft);
}

.seo-check-list {
  display: grid;
  gap: 0.75rem;
  max-width: 860px;
}

.seo-check-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.2rem 1.1rem 0.35rem;
}

.seo-check-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--text);
  padding: 1rem 1.5rem 1rem 0;
  position: relative;
}

.seo-check-list summary::-webkit-details-marker {
  display: none;
}

.seo-check-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 1.25rem;
  font-weight: 500;
}

.seo-check-list details[open] summary::after {
  content: "–";
}

.seo-check-list summary em {
  font-style: normal;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.78rem;
  margin-left: 0.35rem;
}

.seo-check-list ol {
  columns: 1;
  padding: 0 0 1rem 1.15rem;
  display: grid;
  gap: 0.28rem;
}

.seo-check-list li {
  font-size: 0.88rem;
  color: var(--text);
}

@media (min-width: 760px) {
  .seo-trio__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .seo-check-list ol {
    grid-template-columns: 1fr 1fr;
    gap: 0.28rem 1.25rem;
  }
}

@media (min-width: 980px) {
  .plan-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }

  .plan-card--featured {
    transform: translateY(-8px);
  }
}

.web-hero__copy .lead {
  max-width: 38rem;
  margin-bottom: 1.35rem;
}

.price-offer {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0 0 1.35rem;
  padding: 1rem 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price-offer__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  animation: web-badge-pulse 2.4s ease-in-out infinite;
}

@keyframes web-badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 93, 4, 0.45); }
  50% { box-shadow: 0 0 0 8px rgba(232, 93, 4, 0); }
}

.price-offer__row {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.price-offer__old {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.price-offer__new {
  font-size: clamp(2rem, 5vw, 2.55rem);
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-offer__note {
  font-size: 0.8rem;
  color: var(--muted);
}

.web-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

.web-panel__top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.web-panel__top img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line);
  object-fit: cover;
}

.web-panel__top strong {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
}

.web-panel__top span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.web-panel__list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.web-panel__list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.web-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--orange);
}

.web-panel__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--bg-warm);
  border-radius: 12px;
}

.web-panel__badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--orange);
}

.web-panel__price s {
  color: var(--muted);
  font-weight: 600;
  margin-right: 0.45rem;
}

.web-panel__price b {
  font-size: 1.35rem;
  color: var(--orange);
  letter-spacing: -0.02em;
}

.web-panel .btn-block + .btn-block {
  margin-top: -0.35rem;
}

.web-includes {
  padding: 3.5rem 0;
  background: var(--bg-soft);
}

.web-include-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.web-include {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem 1.35rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.web-include:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.web-include__icon {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.06em;
  margin-bottom: 0.55rem;
}

.web-include h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.web-include p {
  font-size: 0.9rem;
}

.web-why {
  padding: 3.5rem 0;
}

.web-why__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.web-why__copy h2 {
  font-size: clamp(1.55rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.web-why__copy > p {
  margin-bottom: 1.1rem;
  max-width: 36rem;
}

.web-check {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
}

.web-check li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--text);
  font-weight: 500;
}

.web-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ok);
  font-weight: 700;
}

.web-deal {
  position: relative;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  padding: 1.75rem 1.4rem 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(23, 24, 28, 0.22);
}

.web-deal__ribbon {
  position: absolute;
  top: 1rem;
  right: -2.1rem;
  transform: rotate(35deg);
  background: var(--orange);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.35rem 2.4rem;
  box-shadow: 0 6px 16px rgba(232, 93, 4, 0.35);
}

.web-deal__label {
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
}

.web-deal__prices {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}

.web-deal__old {
  font-size: 1.1rem;
  text-decoration: line-through;
  opacity: 0.55;
}

.web-deal__new {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.web-deal__save {
  font-size: 0.85rem;
  color: #ffb380;
  font-weight: 600;
  margin-bottom: 1rem;
}

.web-deal hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0 0 1rem;
}

.web-deal ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.web-deal li {
  padding-left: 1.15rem;
  position: relative;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
}

.web-deal li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--orange);
}

.web-deal .btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.web-deal .btn-outline:hover {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}

.web-faq {
  padding: 3.25rem 0 3.75rem;
  background: var(--bg-soft);
}

.web-faq__list {
  display: grid;
  gap: 0.75rem;
  max-width: 760px;
}

.web-faq__list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.15rem 1.1rem;
}

.web-faq__list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--text);
  padding: 1rem 0;
  position: relative;
  padding-right: 1.5rem;
}

.web-faq__list summary::-webkit-details-marker {
  display: none;
}

.web-faq__list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 1.25rem;
  font-weight: 500;
}

.web-faq__list details[open] summary::after {
  content: "−";
}

.web-faq__list details p {
  padding: 0 0 1rem;
  font-size: 0.92rem;
}

@media (min-width: 760px) {
  .web-include-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .page-web .web-hero {
    padding: 3.5rem 0 4.25rem;
  }

  .web-hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: center;
  }

  .web-include-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .web-why__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

/* ---------- Trust pills / panel note ---------- */
.trust-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.35rem;
}

.trust-pills li {
  padding: 0.42rem 0.8rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 4px 12px rgba(23, 24, 28, 0.04);
}

.web-panel__note {
  padding: 0.85rem 1rem;
  background: var(--bg-warm);
  border-radius: 12px;
}

.web-panel__note p {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--muted);
}

.web-deal__headline {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.45rem;
}

/* ---------- Prose / sektör / hakkımızda ---------- */
.prose-block {
  padding: 3.25rem 0;
}

.prose-grid {
  display: grid;
  gap: 1.1rem;
  max-width: 860px;
}

.prose-grid p {
  font-size: 0.98rem;
  line-height: 1.8;
}

.prose-grid a {
  color: var(--orange);
  font-weight: 600;
}

.sectors {
  padding: 3.25rem 0 3.75rem;
  background: var(--bg-soft);
}

.sector-grid {
  display: grid;
  gap: 1rem;
}

.sector-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.2rem 1.4rem;
}

.sector-grid h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.sector-grid p {
  font-size: 0.9rem;
}

.about {
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-copy h2 {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.about-copy > p {
  margin-bottom: 0.85rem;
  max-width: 40rem;
}

.about-copy a {
  color: var(--orange);
  font-weight: 600;
}

.about-copy .web-check {
  margin-top: 1.1rem;
}

.aware-note a {
  color: var(--orange);
  font-weight: 600;
}

@media (min-width: 760px) {
  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .about-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }

  .prose-grid {
    grid-template-columns: 1fr;
  }
}
