/* ============================================================
   As Kombi Servisi – Premium Homepage (Apple/Stripe/Linear)
   Mobile-first · Glass · Blue + Orange CTA · CWV-friendly
   ============================================================ */

.page-home {
  --ap-blue: #0b5fff;
  --ap-blue-d: #0847c7;
  --ap-blue-soft: rgba(11, 95, 255, 0.08);
  --ap-orange: #ff5a1f;
  --ap-orange-d: #e04510;
  --ap-ink: #0b1220;
  --ap-muted: #5b6b86;
  --ap-line: rgba(15, 23, 42, 0.08);
  --ap-glass: rgba(255, 255, 255, 0.72);
  --ap-radius: 24px;
  --ap-radius-sm: 16px;
  --ap-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  --ap-shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --ap-font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-family: var(--ap-font);
  color: var(--ap-ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(11, 95, 255, 0.08), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(255, 90, 31, 0.06), transparent 55%),
    #ffffff;
}

/* ── Hero ── */
.ap-hero {
  position: relative;
  min-height: min(100svh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #06122a;
}
.ap-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ap-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  will-change: transform;
}
.ap-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(4, 14, 36, 0.92) 0%, rgba(8, 28, 72, 0.72) 42%, rgba(11, 95, 255, 0.28) 100%),
    linear-gradient(to top, rgba(4, 14, 36, 0.88) 0%, transparent 50%);
  backdrop-filter: blur(1.5px);
}
.ap-hero__glow {
  position: absolute;
  width: 42vw;
  height: 42vw;
  right: -8%;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 95, 255, 0.45), transparent 68%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 1;
}
.ap-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 36px;
  padding: 88px 20px 56px;
  width: min(1200px, 100%);
  margin: 0 auto;
}
@media (min-width: 980px) {
  .ap-hero__inner {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    padding: 110px 20px 72px;
  }
}
.ap-hero__brand {
  margin: 0 0 12px;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
.ap-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.ap-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 14ch;
}
.ap-hero__sub {
  margin: 0 0 18px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 650;
  color: rgba(255, 255, 255, 0.95);
}
.ap-hero__lead {
  margin: 0 0 28px;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.7;
}
.ap-hero__lead strong { color: #fff; font-weight: 700; }
.ap-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.ap-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.ap-btn:hover { transform: translateY(-2px); }
.ap-btn--lg { padding: 15px 22px; font-size: 1rem; }
.ap-btn--orange {
  background: var(--ap-orange);
  color: #fff;
  box-shadow: 0 14px 30px rgba(255, 90, 31, 0.35);
}
.ap-btn--orange:hover { background: var(--ap-orange-d); color: #fff; }
.ap-btn--wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.28);
}
.ap-btn--wa:hover { background: #1ebe57; color: #fff; }
.ap-btn--ghost,
.ap-btn--glass {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}
.ap-btn--ghost { color: var(--ap-blue); background: #fff; border: 1px solid var(--ap-line); }
.ap-btn--ghost:hover { border-color: var(--ap-blue); color: var(--ap-blue-d); }

.ap-trust-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
@media (min-width: 720px) {
  .ap-trust-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.ap-trust-row li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: 0.86rem;
  font-weight: 700;
}
.ap-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 18px;
  align-items: center;
}
.ap-hero-google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 0.92rem;
}
.ap-hero-google strong { font-weight: 800; }
.ap-hero-google .ap-stars { color: #fbbf24; letter-spacing: 1px; }

.ap-hero-card {
  position: relative;
  border-radius: 28px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  transform: perspective(900px) rotateY(-6deg) rotateX(3deg);
  transition: transform 0.35s ease;
}
.ap-hero-card:hover { transform: perspective(900px) rotateY(-2deg) rotateX(1deg) translateY(-4px); }
.ap-hero-card__title {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 800;
}
.ap-hero-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.ap-hero-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
  font-weight: 650;
}
.ap-hero-card__list i { color: #86efac; }
.ap-hero-card__foot {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  opacity: 0.92;
}
@media (max-width: 979px) {
  .ap-hero-card { display: none; }
}

/* Trust strip */
.ap-trust-strip {
  border-bottom: 1px solid var(--ap-line);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}
.ap-trust-strip__inner {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px 0;
  scrollbar-width: none;
}
.ap-trust-strip__inner::-webkit-scrollbar { display: none; }
.ap-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid var(--ap-line);
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  white-space: nowrap;
}
.ap-chip--live { background: #ecfdf5; color: #047857; border-color: #a7f3d0; }
.ap-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  animation: apPulse 1.8s infinite;
}
@keyframes apPulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Sections */
.ap-section { padding: 72px 0; }
@media (min-width: 900px) { .ap-section { padding: 96px 0; } }
.ap-section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.ap-section-head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  max-width: none;
}
.ap-eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--ap-blue-soft);
  color: var(--ap-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ap-section-head h2,
.ap-cta-banner h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--ap-ink);
}
.ap-lead {
  margin: 0;
  color: var(--ap-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}
.ap-section-more { text-align: center; margin: 28px 0 0; }

.ap-glass-card,
.ap-svc-card,
.ap-region-card,
.ap-blog-card,
.ap-review-card {
  background: var(--ap-glass);
  border: 1px solid var(--ap-line);
  border-radius: var(--ap-radius);
  box-shadow: var(--ap-shadow-sm);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.ap-glass-card:hover,
.ap-svc-card:hover,
.ap-region-card:hover,
.ap-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ap-shadow);
  border-color: rgba(11, 95, 255, 0.22);
}

/* Why */
.ap-why { background: linear-gradient(180deg, #fff 0%, #f7f9ff 100%); }
.ap-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .ap-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .ap-why-grid { grid-template-columns: repeat(3, 1fr); } }
.ap-why-card { padding: 28px 24px; }
.ap-why-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--ap-blue), #3b82f6);
  color: #fff;
  margin-bottom: 16px;
  font-size: 1.15rem;
  box-shadow: 0 12px 24px rgba(11, 95, 255, 0.25);
}
.ap-why-card h3 { margin: 0 0 8px; font-size: 1.12rem; }
.ap-why-card p { margin: 0; color: var(--ap-muted); line-height: 1.6; font-size: 0.95rem; }

/* Services */
.ap-svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .ap-svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ap-svc-grid { grid-template-columns: repeat(3, 1fr); } }
.ap-svc-card { padding: 26px 22px; background: #fff; }
.ap-svc-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--ap-blue-soft);
  color: var(--ap-blue);
  margin-bottom: 14px;
}
.ap-svc-card h3 { margin: 0 0 8px; font-size: 1.08rem; }
.ap-svc-card p { margin: 0 0 16px; color: var(--ap-muted); font-size: 0.94rem; line-height: 1.55; }
.ap-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ap-blue);
  font-weight: 750;
  font-size: 0.92rem;
  text-decoration: none;
}
.ap-link:hover { color: var(--ap-blue-d); gap: 12px; }

/* Brands */
.ap-brands { overflow: hidden; }
.ap-brands-track-wrap {
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ap-brands-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: apBrandScroll 42s linear infinite;
  padding: 8px 20px 20px;
}
.ap-brands-track:hover { animation-play-state: paused; }
@keyframes apBrandScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ap-brand-item {
  flex: 0 0 auto;
  width: 160px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--ap-line);
  box-shadow: var(--ap-shadow-sm);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ap-brand-item:hover {
  transform: scale(1.08);
  box-shadow: var(--ap-shadow);
}
.ap-brand-item img {
  max-width: 110px;
  max-height: 42px;
  object-fit: contain;
  filter: grayscale(0.15);
}
.ap-brand-text {
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.02em;
  font-size: 0.95rem;
}

/* Timeline */
.ap-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
@media (min-width: 900px) {
  .ap-timeline {
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
  }
}
.ap-timeline__item {
  position: relative;
  padding: 22px 18px;
  border-radius: var(--ap-radius-sm);
  background: #fff;
  border: 1px solid var(--ap-line);
  box-shadow: var(--ap-shadow-sm);
}
.ap-timeline__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ap-blue), #60a5fa);
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
  font-size: 0.85rem;
}
.ap-timeline__item h3 { margin: 0 0 8px; font-size: 1rem; }
.ap-timeline__item p { margin: 0; color: var(--ap-muted); font-size: 0.9rem; line-height: 1.5; }

/* Regions */
.ap-region-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) { .ap-region-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .ap-region-grid { grid-template-columns: repeat(3, 1fr); } }
.ap-region-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px;
  text-decoration: none;
  color: var(--ap-ink);
  background: #fff;
  font-weight: 700;
}
.ap-region-card > .fa-location-dot { color: var(--ap-blue); }
.ap-region-card__arrow { margin-left: auto; color: #94a3b8; font-size: 0.8rem; }

/* Stats */
.ap-stats {
  background: linear-gradient(135deg, #0b5fff 0%, #0838a8 55%, #06122a 100%);
  color: #fff;
  padding: 64px 0;
}
.ap-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  text-align: center;
}
@media (min-width: 900px) { .ap-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.ap-stat__num {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.ap-stat span { opacity: 0.9; font-weight: 600; }

/* Reviews */
.ap-google-score {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--ap-line);
  text-decoration: none;
  color: var(--ap-ink);
  box-shadow: var(--ap-shadow-sm);
}
.ap-google-score__logo,
.ap-review-card__g {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #4285f4;
  font-weight: 800;
}
.ap-google-score strong { font-size: 1.2rem; }
.ap-google-score small { display: block; color: var(--ap-muted); }
.ap-stars { color: #f59e0b; }
.ap-review-slider { position: relative; }
.ap-review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 340px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.ap-review-track::-webkit-scrollbar { display: none; }
.ap-review-card {
  scroll-snap-align: start;
  padding: 22px;
  background: #fff;
  margin: 0;
}
.ap-review-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.ap-review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ap-blue-soft);
  color: var(--ap-blue);
  font-weight: 800;
}
.ap-review-card cite {
  font-style: normal;
  font-weight: 750;
  display: block;
}
.ap-review-card p {
  margin: 0 0 12px;
  color: #334155;
  line-height: 1.6;
  font-size: 0.95rem;
}
.ap-review-card time { color: #94a3b8; font-size: 0.82rem; }
.ap-review-nav {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 14px;
}
.ap-review-prev,
.ap-review-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--ap-line);
  background: #fff;
  color: var(--ap-ink);
  cursor: pointer;
}
.ap-review-prev:hover,
.ap-review-next:hover { border-color: var(--ap-blue); color: var(--ap-blue); }

/* Blog */
.ap-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) { .ap-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .ap-blog-grid { grid-template-columns: repeat(5, 1fr); } }
.ap-blog-card { overflow: hidden; background: #fff; display: flex; flex-direction: column; }
.ap-blog-card__media { display: block; aspect-ratio: 16/10; overflow: hidden; background: #e2e8f0; }
.ap-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ap-blog-card:hover .ap-blog-card__media img { transform: scale(1.06); }
.ap-blog-card__body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.ap-blog-card__cat {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--ap-orange);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ap-blog-card h3 { margin: 0; font-size: 1rem; line-height: 1.35; }
.ap-blog-card h3 a { color: var(--ap-ink); text-decoration: none; }
.ap-blog-card h3 a:hover { color: var(--ap-blue); }

/* FAQ */
.ap-faq { background: #f8fafc; }
.ap-faq-layout {
  display: grid;
  gap: 28px;
}
@media (min-width: 980px) {
  .ap-faq-layout { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
  .ap-faq .ap-section-head { text-align: left; margin: 0; }
}
.ap-faq-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.ap-faq-item {
  background: #fff;
  border: 1px solid var(--ap-line);
  border-radius: 18px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: var(--ap-shadow-sm);
}
.ap-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 750;
  position: relative;
  padding-right: 48px;
}
.ap-faq-item summary::-webkit-details-marker { display: none; }
.ap-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ap-blue-soft);
  color: var(--ap-blue);
  display: grid;
  place-items: center;
  font-weight: 800;
}
.ap-faq-item[open] summary::after { content: "–"; }
.ap-faq-item__body { padding: 0 20px 18px; color: var(--ap-muted); line-height: 1.65; }
.ap-faq-item__body p { margin: 0; }

/* CTA banner */
.ap-cta-banner {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(135deg, #0b5fff 0%, #0847c7 40%, #06122a 100%);
  color: #fff;
  text-align: center;
}
.ap-cta-banner__glow {
  position: absolute;
  inset: auto;
  width: 50vw;
  height: 50vw;
  left: 50%;
  top: -20%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 90, 31, 0.35), transparent 65%);
  pointer-events: none;
}
.ap-cta-banner__inner { position: relative; z-index: 1; }
.ap-cta-banner h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.ap-cta-banner p {
  margin: 0 auto 28px;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}
.ap-cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Floating CTA */
.ap-float {
  position: fixed;
  right: 16px;
  bottom: 88px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 900px) {
  .ap-float { bottom: 28px; }
  .page-home .pillar-sticky-rail { display: none !important; }
}
.ap-float__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 48px;
  height: 48px;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2);
  font-weight: 750;
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}
.ap-float__btn:hover { transform: translateY(-2px) scale(1.03); color: #fff; }
.ap-float__btn span { display: none; }
@media (min-width: 720px) {
  .ap-float__btn span { display: inline; }
}
.ap-float__wa { background: #25d366; }
.ap-float__tel { background: var(--ap-orange); }
.ap-float__top {
  background: #0f172a;
  opacity: 0;
  pointer-events: none;
  justify-content: center;
  width: 48px;
  padding: 0;
}
.ap-float__top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-inview {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .ap-brands-track,
  .ap-live-dot,
  .ap-hero__img { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* Hide only duplicate FAQ / final CTA (premium versions already above) */
.page-home .pillar-faq-section,
.page-home .pillar-final-cta-section,
.page-home .pillar-sticky-rail { display: none; }

.page-home .pf-stats-bar { display: none; }

/* ═══════════════════════════════════════════════
   SSS sonrası: Pillar SEO içerik – Premium katman
   ═══════════════════════════════════════════════ */
.page-home .pillar-page {
  background:
    radial-gradient(900px 400px at 0% 0%, rgba(11, 95, 255, 0.05), transparent 55%),
    #ffffff;
  border-top: 1px solid var(--ap-line);
  padding-top: 8px;
}

.page-home .pillar-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--ap-line);
  background: transparent;
}
.page-home .pillar-section:nth-child(even) {
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}
.page-home .pillar-section--highlight,
.page-home .pillar-section--lead {
  background:
    radial-gradient(700px 320px at 90% 10%, rgba(11, 95, 255, 0.08), transparent 60%),
    #f7f9ff;
}

.page-home .pillar-section h2 {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ap-ink);
  margin: 0 0 18px;
  line-height: 1.2;
  position: relative;
  padding-bottom: 14px;
}
.page-home .pillar-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ap-blue), var(--ap-orange));
}
.page-home .pillar-section h3 {
  font-size: 1.12rem;
  font-weight: 750;
  color: var(--ap-ink);
  letter-spacing: -0.02em;
}

.page-home .pillar-prose {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #334155;
  max-width: 68ch;
}
.page-home .pillar-prose p { margin: 0 0 1.1em; }
.page-home .pillar-prose strong { color: var(--ap-ink); font-weight: 750; }
.page-home .pillar-prose a {
  color: var(--ap-blue);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(11, 95, 255, 0.25);
}
.page-home .pillar-prose a:hover { border-bottom-color: var(--ap-blue); }

.page-home .pillar-figure,
.page-home .pillar-split-img {
  border-radius: var(--ap-radius);
  overflow: hidden;
  border: 1px solid var(--ap-line);
  box-shadow: var(--ap-shadow-sm);
  background: #fff;
}
.page-home .pillar-figure img,
.page-home .pillar-split-img img {
  border-radius: inherit;
  width: 100%;
  height: auto;
  display: block;
}
.page-home .pillar-figure figcaption {
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--ap-muted);
  background: rgba(255, 255, 255, 0.9);
}

.page-home .pillar-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px auto;
  padding: 8px 20px 28px;
}
@media (min-width: 900px) {
  .page-home .pillar-stats { grid-template-columns: repeat(5, 1fr); }
}
.page-home .pillar-stat {
  text-align: center;
  padding: 22px 14px;
  border-radius: var(--ap-radius-sm);
  background: var(--ap-glass);
  border: 1px solid var(--ap-line);
  backdrop-filter: blur(10px);
  box-shadow: var(--ap-shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-home .pillar-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--ap-shadow);
}
.page-home .pillar-stat-num {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--ap-blue);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.page-home .pillar-stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.86rem;
  font-weight: 650;
  color: var(--ap-muted);
}

.page-home .pillar-cta-strip {
  margin: 0 auto 8px;
  max-width: 1100px;
  padding: 22px 24px;
  border-radius: var(--ap-radius);
  background: linear-gradient(135deg, #0b5fff 0%, #0847c7 55%, #06122a 100%);
  border: 0;
  box-shadow: 0 18px 40px rgba(11, 95, 255, 0.22);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.page-home .pillar-cta-label {
  margin: 0;
  color: #fff;
  font-weight: 750;
  font-size: 1.05rem;
}
.page-home .pillar-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-home .pillar-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 750;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.page-home .pillar-cta-btn:hover { transform: translateY(-2px); }
.page-home .pillar-cta-tel { background: var(--ap-orange); color: #fff !important; }
.page-home .pillar-cta-wa { background: #25d366; color: #fff !important; }
.page-home .pillar-cta-contact,
.page-home .pillar-cta-price {
  background: rgba(255, 255, 255, 0.14);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.page-home .pillar-brand-section,
.page-home .pillar-location-section { scroll-margin-top: 90px; }
.page-home .pillar-brands-section h2,
.page-home .pillar-locations-section h2 { text-align: center; }
.page-home .pillar-brands-section h2::after,
.page-home .pillar-locations-section h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.page-home .pillar-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) {
  .page-home .pillar-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .page-home .pillar-blog-grid { grid-template-columns: repeat(3, 1fr); }
}
.page-home .pillar-blog-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--ap-radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ap-line);
  box-shadow: var(--ap-shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-home .pillar-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ap-shadow);
}
.page-home .pillar-blog-card figure {
  margin: 0;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e2e8f0;
}
.page-home .pillar-blog-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.page-home .pillar-blog-card:hover figure img { transform: scale(1.05); }
.page-home .pillar-blog-card-body { padding: 16px 18px 20px; }
.page-home .pillar-blog-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ap-orange);
  margin-bottom: 8px;
}
.page-home .pillar-blog-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  line-height: 1.35;
}
.page-home .pillar-blog-card p {
  margin: 0;
  color: var(--ap-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.page-home .pillar-blog-more { text-align: center; margin-top: 28px; }
.page-home .pillar-blog-more .btn {
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 750;
  border: 1px solid var(--ap-line);
  background: #fff;
  color: var(--ap-blue);
}

.page-home .pillar-contact-section {
  background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
}
.page-home .pillar-contact-inner {
  display: grid;
  gap: 24px;
}
@media (min-width: 900px) {
  .page-home .pillar-contact-inner {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}
.page-home .pillar-address {
  display: block;
  padding: 18px 20px;
  border-radius: var(--ap-radius-sm);
  background: #fff;
  border: 1px solid var(--ap-line);
  box-shadow: var(--ap-shadow-sm);
  font-style: normal;
  margin: 16px 0;
  line-height: 1.7;
}
.page-home .pillar-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.page-home .pillar-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--ap-line);
  color: var(--ap-ink);
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.page-home .pillar-contact-link:hover {
  border-color: var(--ap-blue);
  transform: translateY(-2px);
  color: var(--ap-blue);
}
.page-home .pillar-contact-map {
  border-radius: var(--ap-radius);
  overflow: hidden;
  border: 1px solid var(--ap-line);
  box-shadow: var(--ap-shadow);
  min-height: 300px;
  background: #e2e8f0;
}
.page-home .pillar-contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  display: block;
}

.page-home .pillar-lead {
  color: var(--ap-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 62ch;
  margin: 0 0 24px;
}

/* ═══════════════════════════════════════════════
   Ücretsiz Servis Talebi – Premium form
   ═══════════════════════════════════════════════ */
.page-home .ap-contact {
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(800px 400px at 10% 0%, rgba(11, 95, 255, 0.08), transparent 55%),
    radial-gradient(700px 360px at 100% 100%, rgba(255, 90, 31, 0.07), transparent 50%),
    #f8fafc;
  overflow: hidden;
}
.page-home .ap-contact__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.page-home .ap-contact__head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ap-ink);
}
.page-home .ap-contact__head p {
  margin: 0;
  color: var(--ap-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}
.page-home .ap-contact-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 980px) {
  .page-home .ap-contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}
.page-home .ap-contact-form-card,
.page-home .ap-contact-side-card {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border: 1px solid var(--ap-line);
  border-radius: var(--ap-radius);
  box-shadow: var(--ap-shadow);
  padding: 28px 24px;
}
@media (min-width: 700px) {
  .page-home .ap-contact-form-card { padding: 36px 32px; }
}
.page-home .ap-contact-form { display: grid; gap: 16px; }
.page-home .ap-form-row { display: grid; gap: 16px; }
@media (min-width: 640px) {
  .page-home .ap-form-row { grid-template-columns: 1fr 1fr; }
}
.page-home .ap-form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-weight: 750;
  color: #1e293b;
}
.page-home .ap-form-field .req { color: var(--ap-orange); }
.page-home .ap-form-field input,
.page-home .ap-form-field textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  background: #fff;
  color: var(--ap-ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.page-home .ap-form-field input:focus,
.page-home .ap-form-field textarea:focus {
  outline: none;
  border-color: var(--ap-blue);
  box-shadow: 0 0 0 4px rgba(11, 95, 255, 0.12);
}
.page-home .ap-form-kvkk {
  margin: 0;
  font-size: 0.84rem;
  color: var(--ap-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.page-home .ap-form-submit {
  width: 100%;
  justify-content: center;
  border: 0;
  cursor: pointer;
}
.page-home .ap-contact-side { display: grid; gap: 16px; }
.page-home .ap-contact-side-card h3 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-home .ap-contact-side-card h3 i { color: var(--ap-blue); }
.page-home .ap-contact-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ap-ink);
  text-decoration: none;
  margin-bottom: 12px;
}
.page-home .ap-contact-phone:hover { color: var(--ap-blue); }
.page-home .ap-contact-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  background: #25d366;
  color: #fff !important;
  font-weight: 750;
  text-decoration: none;
}
.page-home .ap-contact-wa:hover { background: #1ebe57; color: #fff !important; }
.page-home .ap-hours {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.page-home .ap-hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ap-line);
  font-size: 0.92rem;
  color: var(--ap-muted);
}
.page-home .ap-hours li strong { color: var(--ap-ink); }
.page-home .ap-hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 0.82rem;
  font-weight: 750;
}
.page-home .ap-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--ap-blue);
  font-weight: 750;
  text-decoration: none;
}
.page-home .ap-map-link:hover { color: var(--ap-blue-d); }
.page-home .ap-contact-side-card p {
  margin: 0;
  color: var(--ap-muted);
  line-height: 1.6;
}

/* Pillar reviews + price premium polish */
.page-home .pillar-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .page-home .pillar-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .page-home .pillar-reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
.page-home .pillar-review-card {
  padding: 22px;
  border-radius: var(--ap-radius);
  background: #fff;
  border: 1px solid var(--ap-line);
  box-shadow: var(--ap-shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-home .pillar-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ap-shadow);
}
.page-home .pillar-review-stars,
.page-home .pillar-stars { color: #f59e0b; letter-spacing: 1px; }
.page-home .pillar-review-card blockquote {
  margin: 12px 0;
  color: #334155;
  line-height: 1.65;
  font-size: 0.95rem;
}
.page-home .pillar-review-card blockquote p { margin: 0; }
.page-home .pillar-review-card footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.86rem;
  color: var(--ap-muted);
}
.page-home .pillar-review-card cite { font-style: normal; font-weight: 750; color: var(--ap-ink); }
.page-home .pillar-reviews-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin: 0 0 8px;
}
.page-home .pillar-reviews-link {
  color: var(--ap-blue);
  font-weight: 750;
  text-decoration: none;
}
.page-home .pillar-price-section table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: var(--ap-radius);
  border: 1px solid var(--ap-line);
  background: #fff;
  box-shadow: var(--ap-shadow-sm);
}
.page-home .pillar-price-section th,
.page-home .pillar-price-section td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--ap-line);
  text-align: left;
}
.page-home .pillar-price-section th {
  background: #f8faff;
  font-weight: 750;
  color: var(--ap-ink);
}
.page-home .pillar-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 900px) {
  .page-home .pillar-gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
.page-home .pillar-gallery-grid img,
.page-home .pillar-gallery-grid figure {
  border-radius: var(--ap-radius-sm);
  overflow: hidden;
  border: 1px solid var(--ap-line);
}

/* ═══════════════════════════════════════════════
   Neden As Kombi Servisi? – Premium 3×2 grid
   ═══════════════════════════════════════════════ */
.page-home .pillar-why-section {
  position: relative;
  padding: 72px 0 80px !important;
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(11, 95, 255, 0.1), transparent 55%),
    radial-gradient(700px 380px at 100% 100%, rgba(255, 90, 31, 0.08), transparent 50%),
    linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%) !important;
  overflow: hidden;
}
.page-home .pillar-why-section::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 95, 255, 0.12), transparent 68%);
  pointer-events: none;
}
.page-home .pillar-why-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.page-home .pillar-why-eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(11, 95, 255, 0.1);
  color: #0b5fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.page-home .pillar-why-section h2 {
  text-align: center;
  margin: 0 0 0;
  padding-bottom: 18px;
}
.page-home .pillar-why-section h2::after {
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
}
.page-home .pillar-why-lead {
  margin: 16px auto 0;
  color: var(--ap-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 54ch;
}

.page-home .pillar-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: none;
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) {
  .page-home .pillar-why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .page-home .pillar-why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

.page-home .pillar-why-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  min-height: 100%;
}
.page-home .pillar-why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 95, 255, 0.28);
  box-shadow: 0 22px 50px rgba(11, 95, 255, 0.12);
}
.page-home .pillar-why-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #0b5fff 0%, #3b82f6 100%);
  box-shadow: 0 12px 28px rgba(11, 95, 255, 0.28);
  flex-shrink: 0;
}
.page-home .pillar-why-card__icon--orange {
  background: linear-gradient(135deg, #ff5a1f 0%, #fb923c 100%);
  box-shadow: 0 12px 28px rgba(255, 90, 31, 0.28);
}
.page-home .pillar-why-card__body h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ap-ink);
}
.page-home .pillar-why-card__body p {
  margin: 0;
  color: var(--ap-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: none;
}

.page-home .pillar-why-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}
.page-home .pillar-why-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 750;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.page-home .pillar-why-cta__btn:hover { transform: translateY(-2px); }
.page-home .pillar-why-cta__btn--call {
  background: #ff5a1f;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(255, 90, 31, 0.3);
}
.page-home .pillar-why-cta__btn--call:hover { background: #e04510; color: #fff !important; }
.page-home .pillar-why-cta__btn--wa {
  background: #25d366;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.25);
}
.page-home .pillar-why-cta__btn--wa:hover { background: #1ebe57; color: #fff !important; }
.page-home .pillar-why-cta__btn--ghost {
  background: #fff;
  color: #0b5fff !important;
  border: 1px solid rgba(11, 95, 255, 0.22);
}
.page-home .pillar-why-cta__btn--ghost:hover {
  border-color: #0b5fff;
  color: #0847c7 !important;
}

/* ── Aşama 3 split landing ── */
.ap-hero--split {
  min-height: 0;
  background: transparent;
  color: var(--ap-ink);
  overflow: visible;
}
.ap-hero--split .ap-hero__inner {
  padding: 36px 20px 12px;
  gap: 28px;
}
@media (min-width: 980px) {
  .ap-hero--split .ap-hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    padding: 48px 20px 20px;
    align-items: center;
  }
}
.ap-hero--split .ap-hero__brand {
  color: var(--ap-blue);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.ap-hero--split h1 {
  max-width: 12ch;
  color: var(--ap-ink);
  font-size: clamp(2.15rem, 5vw, 3.4rem);
}
.ap-hero--split .ap-hero__lead {
  color: var(--ap-muted);
  font-size: 1.08rem;
  max-width: 38ch;
  margin-bottom: 22px;
}
.ap-hero--split .ap-hero__actions { margin-bottom: 18px; }
.ap-hero-phone { margin: 0; }
.ap-hero-phone a {
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 800;
  color: var(--ap-ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.ap-hero-phone a:hover { color: var(--ap-blue); }
.ap-hero__photo {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--ap-shadow);
  background: #0b1220;
  aspect-ratio: 4 / 5;
  max-height: 560px;
}
.ap-hero--split .ap-hero__img {
  transform: none;
  will-change: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ap-trust-bar {
  border-top: 1px solid var(--ap-line);
  border-bottom: 1px solid var(--ap-line);
  background: rgba(255, 255, 255, 0.78);
}
.ap-trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding: 16px 20px;
  font-size: 0.92rem;
  font-weight: 650;
  color: #334155;
}
.ap-trust-bar__inner span::before {
  content: "✓ ";
  color: var(--ap-blue);
  font-weight: 800;
}

.ap-svc-grid--six {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .ap-svc-grid--six { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1020px) {
  .ap-svc-grid--six { grid-template-columns: repeat(3, 1fr); }
}

.ap-why-grid--five {
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .ap-why-grid--five { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .ap-why-grid--five { grid-template-columns: repeat(5, 1fr); }
}

.ap-timeline--four {
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .ap-timeline--four { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .ap-timeline--four { grid-template-columns: repeat(4, 1fr) !important; }
}

.ap-brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 800px) {
  .ap-brand-grid { grid-template-columns: repeat(4, 1fr); }
}
.ap-brand-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 14px 12px;
  border-radius: 16px;
  border: 1px solid var(--ap-line);
  background: #fff;
  color: var(--ap-ink);
  font-weight: 750;
  text-decoration: none;
}
.ap-brand-chip:hover,
.ap-brand-chip:focus-visible {
  border-color: var(--ap-blue);
  color: var(--ap-blue);
}

.ap-panel {
  background: #fff;
  border: 1px solid var(--ap-line);
  border-radius: var(--ap-radius);
  box-shadow: var(--ap-shadow-sm);
  padding: 32px 28px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.ap-panel h2 { margin: 0 0 12px; }
.ap-panel p {
  margin: 0 0 20px;
  color: var(--ap-muted);
  line-height: 1.65;
}
.ap-panel--muted { background: #f8fafc; }

.ap-local-copy {
  max-width: 68ch;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.75;
  color: #334155;
}
.ap-local-copy p { margin: 0 0 16px; }

.ap-review-static {
  display: grid;
  gap: 16px;
}
@media (min-width: 900px) {
  .ap-review-static { grid-template-columns: repeat(3, 1fr); }
}
.ap-review-static .ap-review-card { scroll-snap-align: unset; }

.ap-side-label {
  margin: 0 0 8px;
  font-size: 0.88rem;
  font-weight: 750;
  color: #1e293b;
}

.ap-btn:focus-visible,
.ap-link:focus-visible,
.ap-brand-chip:focus-visible,
.ap-hero-phone a:focus-visible,
.ap-faq-item summary:focus-visible {
  outline: 3px solid var(--ap-blue);
  outline-offset: 3px;
}

.page-home .ap-contact {
  padding-top: 8px;
}
.page-home .ap-faq-layout { display: block; }

/* ── Ana sayfa Revizyon 2 ── */
.ap-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 2000;
  pointer-events: none;
  background: transparent;
}
.ap-progress__bar {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--ap-blue);
  transform: scaleX(0);
  transform-origin: left center;
}

.page-home [data-reveal] {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.page-home [data-reveal].is-inview {
  opacity: 1;
  transform: none;
}

.ap-hero--split {
  min-height: 0;
  flex-direction: column;
  background: transparent;
  color: var(--ap-ink);
  overflow: visible;
}
.ap-hero--split .ap-hero__inner {
  padding: 28px 20px 8px;
  gap: 32px;
}
@media (min-width: 980px) {
  .ap-hero--split .ap-hero__inner {
    grid-template-columns: 1.02fr 0.98fr;
    padding: 44px 20px 8px;
    align-items: center;
    min-height: min(72svh, 640px);
  }
}
.ap-hero--split .ap-hero__brand {
  color: var(--ap-blue);
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  margin-bottom: 12px;
}
.ap-hero--split h1 {
  max-width: 11ch;
  color: var(--ap-ink);
  font-size: clamp(2.2rem, 5.2vw, 3.55rem);
}
.ap-hero--split .ap-hero__lead {
  color: var(--ap-muted);
  font-size: 1.08rem;
  max-width: 36ch;
  margin-bottom: 26px;
}

.ap-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  font-size: 0.86rem;
  font-weight: 650;
  color: #475569;
}
.ap-hero-trust li {
  display: inline-flex;
  align-items: center;
}
.ap-hero-trust li:not(:last-child)::after {
  content: "|";
  margin: 0 12px;
  color: #cbd5e1;
  font-weight: 400;
}

.ap-hero__visual {
  position: relative;
  isolation: isolate;
}
.ap-hero__glow {
  position: absolute;
  inset: 4% 2% auto;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 95, 255, 0.16), transparent 70%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}
.ap-hero__shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.ap-hero__shape--a {
  width: 118px;
  height: 118px;
  top: -10px;
  right: -14px;
  border-radius: 28px;
  background: #0b5fff;
  opacity: 0.07;
  transform: rotate(16deg);
}
.ap-hero__shape--b {
  width: 70px;
  height: 70px;
  bottom: 22px;
  left: -12px;
  border-radius: 50%;
  background: #ff5a1f;
  opacity: 0.06;
}
.ap-hero--split .ap-hero__photo {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
  background: #0b1220;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.ap-hero--split .ap-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
  will-change: auto;
  transition: transform 0.2s ease-out;
}

@media (prefers-reduced-motion: no-preference) {
  .ap-hero-anim {
    animation: apFadeUp 0.5s ease both;
  }
  .ap-hero-anim--d1 { animation-delay: 0.08s; }
  .ap-hero-anim--d2 { animation-delay: 0.16s; }
  .ap-hero-anim--d3 { animation-delay: 0.26s; }
  .ap-hero-anim--d4 { animation-delay: 0.34s; }
  .ap-hero-anim--visual {
    animation: apHeroSettle 0.6s ease both;
    animation-delay: 0.1s;
  }
}
@keyframes apFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes apHeroSettle {
  from { transform: scale(1.03); }
  to { transform: none; }
}

.ap-scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: center;
  margin: 6px 0 18px;
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.ap-scroll-hint:hover { color: var(--ap-blue); }

.ap-trust-strip {
  border: 0;
  background: transparent;
  padding: 0 0 8px;
}
.ap-trust-strip__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 4px 0 12px;
}
@media (min-width: 800px) {
  .ap-trust-strip__grid { grid-template-columns: repeat(4, 1fr); }
}
.ap-trust-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--ap-line);
  background: #fff;
  font-weight: 750;
  font-size: 0.92rem;
  color: var(--ap-ink);
  box-shadow: var(--ap-shadow-sm);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ap-trust-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  color: var(--ap-blue);
}

a.ap-svc-card {
  text-decoration: none;
  color: inherit;
  position: relative;
  padding: 24px 22px 48px;
  display: block;
}
a.ap-svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 95, 255, 0.28);
}
.ap-svc-card__arrow {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: var(--ap-blue);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease;
}
a.ap-svc-card:hover .ap-svc-card__arrow {
  transform: translateX(4px);
}

.ap-why-grid--four {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 700px) {
  .ap-why-grid--four { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .ap-why-grid--four { grid-template-columns: repeat(4, 1fr); }
}
.ap-why-card {
  background: #fff;
  border: 1px solid var(--ap-line);
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: var(--ap-shadow-sm);
}
.ap-why-card__check {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--ap-blue-soft);
  color: var(--ap-blue);
  margin-bottom: 12px;
}
.ap-why-card h3 { font-size: 1.02rem; }

.ap-timeline--line {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ap-timeline--line::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: rgba(11, 95, 255, 0.18);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.65s ease;
}
.ap-timeline--line.is-inview::before,
.ap-process.is-inview .ap-timeline--line::before {
  transform: scaleY(1);
}
.ap-timeline--line .ap-timeline__item {
  position: relative;
  z-index: 1;
  padding-left: 18px;
}
.ap-timeline__item[data-reveal]:nth-child(1) { transition-delay: 0s; }
.ap-timeline__item[data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.ap-timeline__item[data-reveal]:nth-child(3) { transition-delay: 0.2s; }
.ap-timeline__item[data-reveal]:nth-child(4) { transition-delay: 0.3s; }
@media (min-width: 900px) {
  .ap-timeline--line {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .ap-timeline--line::before {
    left: 8%;
    right: 8%;
    top: 32px;
    bottom: auto;
    width: auto;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
  }
  .ap-timeline--line.is-inview::before,
  .ap-process.is-inview .ap-timeline--line::before {
    transform: scaleX(1);
  }
  .ap-timeline--line .ap-timeline__item { padding-left: 18px; }
}

.ap-brand-chip {
  gap: 10px;
  transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
}
.ap-brand-chip__mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--ap-blue-soft);
  color: var(--ap-blue);
  font-size: 0.75rem;
  font-weight: 800;
}
.ap-brand-chip:hover {
  transform: scale(1.03);
  opacity: 0.92;
}

.ap-ariza-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 32px;
  border-radius: 28px;
  background:
    radial-gradient(520px 180px at 100% 0%, rgba(255, 90, 31, 0.2), transparent 55%),
    linear-gradient(135deg, #0b1b3a 0%, #0b5fff 130%);
  color: #fff;
}
.ap-ariza-band h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}
.ap-ariza-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  max-width: 46ch;
  line-height: 1.6;
}

.ap-local-layout {
  display: grid;
  gap: 28px;
}
@media (min-width: 900px) {
  .ap-local-layout {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}
.ap-local-copy { max-width: none; }
.ap-local-copy h2 { margin: 0 0 16px; }
.ap-local-copy .ap-btn { margin-top: 8px; }
.ap-location-card {
  background: #fff;
  border: 1px solid var(--ap-line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--ap-shadow-sm);
}
.ap-location-card .ap-side-label { margin-top: 14px; }
.ap-location-card .ap-side-label:first-child { margin-top: 0; }
.ap-location-card p { margin: 0 0 4px; color: #334155; }
.ap-map-link {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 750;
  color: var(--ap-blue);
}

.ap-faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
  padding: 0 20px;
  color: var(--ap-muted);
  line-height: 1.65;
}
.ap-faq-item[open] .ap-faq-item__body {
  grid-template-rows: 1fr;
  padding-bottom: 18px;
}
.ap-faq-item__inner { overflow: hidden; min-height: 0; }
.ap-faq-item__body p { margin: 0; }
.ap-faq-item summary {
  cursor: pointer;
}
.ap-faq-item summary:focus-visible {
  outline: 3px solid var(--ap-blue);
  outline-offset: 2px;
}

.ap-btn--ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.ap-btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: #fff;
}

.ap-contact-form-card--solo {
  max-width: 720px;
  margin: 0 auto 28px;
}

.page-home .ap-cta-banner {
  margin-top: 12px;
}

@media (max-width: 768px) {
  .page-home .ap-cta-banner,
  .page-home .ap-contact {
    padding-bottom: 28px;
  }
  .page-home .mobile-sticky-cta {
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }
  a.ap-svc-card { padding: 20px 18px 44px; }
}

@media (prefers-reduced-motion: reduce) {
  .ap-hero-anim,
  .ap-hero-anim--visual,
  .ap-hero__img,
  .ap-progress__bar,
  .ap-trust-chip,
  a.ap-svc-card,
  .ap-svc-card__arrow,
  .ap-brand-chip,
  .ap-faq-item__body,
  .ap-timeline--line::before,
  .ap-btn {
    animation: none !important;
    transition: none !important;
  }
  .page-home [data-reveal],
  .ap-hero-anim {
    opacity: 1 !important;
    transform: none !important;
  }
}

