:root {
  --bg: #050914;
  --bg-2: #080e1c;
  --ink: #f4f7fb;
  --muted: #a9b6cc;
  --line: rgba(148, 176, 230, 0.16);
  --blue: #0070f0;
  --blue-deep: #0038c8;
  --green: #00b447;
  --gold: #f0c000;
  --orange: #f08000;
  --pill: rgba(7, 11, 20, 0.82);
  --header: 108px;
  --font: "Montserrat", "Avenir Next", "Segoe UI", sans-serif;
  --wrap: 1120px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color-scheme: dark;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }

button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, p { margin: 0; }

ul, ol { margin: 0; padding: 0; }

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 80;
  background: #fff;
  color: var(--bg);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
}

.skip:focus { top: 12px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin: 0 auto;
}

.narrow { width: min(760px, calc(100% - 40px)); }

.kicker {
  margin: 0 0 12px;
  color: #8cff9a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 16px 0 0;
}

.nav-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: 8px 8px 8px 16px;
  border-radius: 999px;
  background: var(--pill);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.nav-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(0, 112, 240, 0.95), rgba(0, 180, 71, 0.55), rgba(240, 128, 0, 0.85));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.is-scrolled .nav-pill { background: rgba(6, 10, 20, 0.94); }

.brand { display: flex; align-items: center; flex: 0 0 auto; }

.brand img { width: auto; height: 46px; }

.desktop-nav { flex: 1; }

.nav-list {
  display: flex;
  justify-content: center;
  gap: 6px;
  list-style: none;
}

.nav-list a {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  color: #d5deee;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] { color: #fff; background: rgba(0, 112, 240, 0.18); }

.btn-touch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 16px 5px 5px;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(#0b101a, #0b101a) padding-box,
    linear-gradient(120deg, var(--green), var(--gold), var(--orange)) border-box;
  border: 1px solid transparent;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-touch:hover { transform: translateY(-1px); }

.btn-touch-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--green), var(--gold) 55%, var(--orange));
  color: #071018;
  font-weight: 800;
}

.btn-touch-block { justify-content: center; margin-top: 8px; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 0 auto;
  background: #fff;
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before { top: -5px; }
.nav-toggle-lines::after { top: 5px; }

.nav-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 14px;
  right: 14px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(8, 14, 28, 0.96);
  border: 1px solid rgba(0, 112, 240, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.nav-panel[hidden] { display: none; }

.nav-panel-list { list-style: none; }

.nav-panel-list a {
  display: block;
  padding: 13px 14px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
}

.nav-panel-list a:hover,
.nav-panel-list a[aria-current="page"] { background: rgba(0, 112, 240, 0.18); }

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--bg);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-media,
.hero-shade { position: absolute; inset: 0; }

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
  filter: saturate(0.75) contrast(1.05);
}

.hero-media.is-wide img { object-position: center 35%; }

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 9, 20, 0.94) 0%, rgba(5, 9, 20, 0.72) 34%, rgba(5, 9, 20, 0.28) 68%, rgba(0, 48, 140, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 9, 20, 0.2) 0%, rgba(5, 9, 20, 0) 22%, rgba(5, 9, 20, 0.72) 100%);
}

.hero-shade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 80, 200, 0.22);
  mix-blend-mode: multiply;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(24px, calc((100% - 1180px) / 2));
  width: min(1180px, calc(100% - 48px));
  margin: 0;
  padding: 0;
  transform: translateY(calc(-50% - 24px));
}

.hero-display { margin: 0; }

.hero-display .line {
  display: block;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.hero-display .badge {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin: 18px 0 14px;
  color: #b6ff63;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
}

.hero-display .badge::after {
  content: "";
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--green), var(--gold) 55%, var(--orange));
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.hero-bottom {
  position: absolute;
  z-index: 2;
  left: max(24px, calc((100% - 1180px) / 2));
  bottom: 118px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: min(460px, calc(100% - 220px));
}

.hero-bottom p { color: #d5deee; font-weight: 500; }

.orbit {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: -150px;
  width: 360px;
  height: 360px;
  margin-top: -180px;
  border-radius: 50%;
  pointer-events: none;
}

.orbit::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(165deg, var(--green), #7eb6ff 46%, var(--orange));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.orbit ul {
  position: absolute;
  inset: 0;
  list-style: none;
}

.orbit li {
  position: absolute;
  top: var(--top);
  left: var(--left);
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
}

.orbit a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  text-decoration: none;
  pointer-events: auto;
}

.orbit a svg { width: 20px; height: 20px; display: block; }

.orbit a:hover { color: var(--gold); }

.orbit-dot {
  position: absolute;
  left: 27%;
  bottom: 7%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(0, 180, 71, 0.16);
}

.trust {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 9, 20, 0.72);
  backdrop-filter: blur(12px);
}

.trust-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  min-height: 84px;
  margin: 0 auto;
}

.trust-label {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.trust-list {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 8px 22px;
  list-style: none;
}

.trust-list li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.slider-ui {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.slider-btn,
.dot {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.slider-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-weight: 700;
}

.slider-pause { font-size: 0.68rem; letter-spacing: -0.08em; }

.dots { display: flex; gap: 6px; }

.dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 99px;
}

.dot.is-active {
  width: 22px;
  background: #fff;
  border-color: #fff;
}

#hizmetler,
#google-ads,
#dijital-donusum,
#meta-reklamlari { scroll-margin-top: 120px; }

.section { padding: 96px 0; }

.section-plain { background: var(--bg-2); }

.services {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(0, 112, 240, 0.18), transparent 46%),
    var(--bg);
}

.section-head { max-width: 680px; margin-bottom: 36px; }

.section-head h2,
.page-hero h1,
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-lead,
.lede { margin-top: 16px; color: var(--muted); font-size: 1.05rem; }

.service-list { list-style: none; }

.service-list > li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 28px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.service-list > li:last-child { border-bottom: 1px solid var(--line); }

.service-index {
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-copy h3,
.steps h3,
.reason-list h3,
.limit-grid h3,
.faq-list h3 {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.service-copy p,
.steps p,
.reason-list p,
.limit-grid p { margin-top: 10px; color: var(--muted); }

.service-points { list-style: none; }

.service-points li {
  position: relative;
  padding: 8px 0 8px 16px;
  border-top: 1px solid var(--line);
  font-weight: 600;
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--green), var(--orange));
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  list-style: none;
}

.steps li {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.reasons-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) 1.2fr;
  gap: 40px;
  align-items: start;
}

.reason-list,
.limit-grid {
  display: grid;
  gap: 18px;
}

.limit-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.reason-list article,
.limit-grid article {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.faq-wrap { width: min(820px, calc(100% - 40px)); }

.faq-list details { border-top: 1px solid var(--line); }

.faq-list details:last-child { border-bottom: 1px solid var(--line); }

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 1.4rem;
  font-weight: 500;
}

.faq-list details[open] summary::after { content: "–"; }

.faq-list h3 { font-size: 1.05rem; }

.faq-list details p {
  margin: 0 0 18px;
  max-width: 68ch;
  color: var(--muted);
}

.page-hero { padding: 148px 0 20px; }

.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  list-style: none;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.crumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: rgba(255, 255, 255, 0.35); }

.crumbs a { color: #d5deee; text-decoration: none; }

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.about-grid p + p,
.prose p + p,
.prose h2 { margin-top: 16px; }

.prose h2 {
  margin-top: 32px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.prose a,
.contact-aside a,
.form-success a { color: #9ec5ff; }

.about-photo {
  margin: 0;
  position: relative;
}

.about-photo img {
  width: 100%;
  border-radius: 28px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.8);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(0, 112, 240, 0.28), transparent 55%);
  pointer-events: none;
}

.about-photo figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.contact-grid h2,
.contact-aside h2 {
  margin-bottom: 16px;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.contact-aside {
  padding: 28px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(0, 112, 240, 0.28), transparent 55%),
    #0b1324;
  border: 1px solid var(--line);
}

.mail-link {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.field { margin-bottom: 14px; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field label,
.check span { font-size: 0.86rem; font-weight: 600; }

.field label span { color: var(--muted); font-weight: 500; }

.field input,
.field select,
.field textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(120, 162, 255, 0.28);
  background: #0b1222;
}

.field textarea { resize: vertical; min-height: 140px; }

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 8px 0 18px;
}

.check input { margin-top: 4px; }

.form-errors,
.form-success {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 16px;
}

.form-errors {
  background: rgba(240, 80, 40, 0.12);
  border: 1px solid rgba(240, 128, 0, 0.45);
}

.form-errors ul { margin: 8px 0 0 18px; }

.form-success {
  background: rgba(0, 180, 71, 0.1);
  border: 1px solid rgba(0, 180, 71, 0.4);
}

.form-success h3 { margin-bottom: 8px; }

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.text-link { font-weight: 700; color: #cfe0ff; }

.cta-band { padding: 28px 0 88px; }

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(0, 112, 240, 0.35), transparent 50%),
    #0b1428;
  border: 1px solid rgba(0, 112, 240, 0.28);
}

.cta-band p:last-child { margin-top: 10px; color: var(--muted); max-width: 52ch; }

.site-footer {
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr 0.9fr;
  gap: 28px;
}

.brand-footer img { height: 42px; }

.footer-brand p,
.site-footer address,
.footer-bottom {
  color: var(--muted);
  font-style: normal;
}

.footer-brand p { margin-top: 12px; max-width: 32ch; }

.footer-title {
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d5deee;
}

.footer-links { list-style: none; }

.footer-links a { display: inline-block; padding: 4px 0; color: var(--muted); text-decoration: none; font-weight: 600; }

.footer-links a:hover,
.footer-links a[aria-current="page"] { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}

.footer-bottom a { color: var(--muted); }

@media (max-height: 760px) {
  .hero-bottom { bottom: 100px; }
}

@media (max-width: 1100px) {
  .orbit { display: none; }
  .hero-bottom { width: min(520px, calc(100% - 40px)); }
}

@media (max-width: 1040px) {
  .desktop-nav,
  .desktop-cta { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-pill { padding-right: 8px; }
  .steps,
  .limit-grid,
  .footer-grid,
  .about-grid,
  .contact-grid,
  .reasons-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-list > li { grid-template-columns: 56px 1fr; }
  .service-points { grid-column: 2; }
}

@media (max-width: 800px) {
  .hero { min-height: 920px; }
  .hero-copy { left: 16px; width: calc(100% - 32px); }
  .hero-bottom {
    left: 16px;
    bottom: 168px;
    width: calc(100% - 32px);
  }
  .orbit { display: none; }
  .trust-inner { flex-wrap: wrap; padding: 14px 0; gap: 12px; }
  .trust-list { gap: 6px 14px; }
  .slider-ui { margin-left: 0; }
  .steps,
  .limit-grid,
  .about-grid,
  .contact-grid,
  .reasons-grid,
  .field-row,
  .footer-grid,
  .service-list > li { grid-template-columns: 1fr; }
  .service-points { grid-column: auto; }
  .cta-band-inner,
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section { padding: 72px 0; }
  .page-hero { padding-top: 128px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide,
  .btn-touch { transition: none; }
}
