/* Start custom CSS for html, class: .elementor-element-61c602d */:root{
  /* Senin palette */
  --wv-primary: #47415d;
  --wv-bg: #f3f0ff;
  --wv-muted: #9699bf;
  --wv-accent: #1181c8;
  --wv-accent-soft: #cce9ff;

  /* Layout */
  --wv-max: 1350px;
  --wv-pad: clamp(16px, 3vw, 28px);
  --wv-radius: 16px;

  /* Derived */
  --wv-border: rgba(71, 65, 93, .18);
  --wv-border-soft: rgba(71, 65, 93, .12);
  --wv-shadow-soft: 0 10px 22px rgba(71, 65, 93, .14);
  --wv-shadow: 0 14px 30px rgba(71, 65, 93, .20);
}

*{ box-sizing: border-box; }

.wv-page{
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--wv-primary);
  background: #fff;
}

/* Sections */
.wv-sec{ padding: clamp(46px, 4vw, 72px) 0; }

.wv-sec--muted{
  background: var(--wv-bg);
  border-top: 1px solid var(--wv-border-soft);
  border-bottom: 1px solid var(--wv-border-soft);
}

/* Constrain content, full-width background */
.wv-wrap{
  width: min(var(--wv-max), 100%);
  margin: 0 auto;
  padding: 0 var(--wv-pad);
}

/* Headings / text */
.wv-h1{
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  margin: 10px 0 12px;
  letter-spacing: -0.02em;
}

.wv-h2{
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
}

.wv-lead{
  margin: 0 0 18px;
  color: var(--wv-muted);
  font-size: 16px;
  max-width: 70ch;
}

.wv-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.wv-subtitle{
  margin: 8px 0 0;
  color: var(--wv-muted);
  max-width: 70ch;
}

/* Breadcrumb */
.wv-breadcrumb{
  font-size: 13px;
  color: var(--wv-muted);
}
.wv-breadcrumb a{
  color: var(--wv-accent);
  text-decoration: none;
  font-weight: 800;
}
.wv-breadcrumb a:hover{ text-decoration: underline; }
.wv-breadcrumb span{ margin: 0 6px; color: var(--wv-muted); }

/* Buttons */
.wv-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.wv-actions--hero{ margin-top: 14px; }

.wv-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 900;
  text-decoration:none;
  cursor:pointer;
  user-select:none;
  white-space: nowrap;
}

/* Primary button must ALWAYS be white text */
.wv-btn--primary{
  background: var(--wv-accent);
  color: #fff !important;
  box-shadow: 0 12px 22px rgba(17,129,200,.22);
}
.wv-btn--primary:hover{ filter: brightness(.97); }

/* Ghost */
.wv-btn--ghost{
  background: #fff;
  color: var(--wv-primary);
  border-color: var(--wv-border);
}
.wv-btn--ghost:hover{ background: var(--wv-bg); }

/* Soft (3rd CTA) */
.wv-btn--soft{
  background: var(--wv-bg);
  color: var(--wv-primary);
  border-color: var(--wv-border);
}
.wv-btn--soft:hover{ background: #fff; }

/* Pills */
.wv-pills{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.wv-pill{
  padding: 8px 10px;
  border: 1px solid var(--wv-border-soft);
  border-radius: 999px;
  background: #fff;
  color: var(--wv-primary);
  font-size: 13px;
}

/* HERO */
.wv-hero{
  background: linear-gradient(180deg, #fff 0%, var(--wv-bg) 100%);
  border-bottom: 1px solid var(--wv-border-soft);
}

.wv-hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items:start;
}

.wv-hero__visual{
  display:flex;
  align-items:flex-start;
  justify-content:flex-end;
}

/* Offer */
.wv-promo{
  width: 100%;
  max-width: 560px;
  background:#fff;
  border: 1px solid var(--wv-border-soft);
  border-radius: var(--wv-radius);
  box-shadow: var(--wv-shadow-soft);
  padding: 18px;
}

.wv-promo__title{
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
  color: var(--wv-primary);
}

.wv-promo__text{
  margin: 0 0 12px;
  color: var(--wv-muted);
  font-size: 14px;
}

.wv-promo__note{
  display:block;
  margin-top: 10px;
  color: var(--wv-muted);
}

/* Stats */
.wv-stats{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.wv-stat{
  background:#fff;
  border: 1px solid var(--wv-border-soft);
  border-radius: var(--wv-radius);
  box-shadow: var(--wv-shadow-soft);
  padding: 16px;
}

.wv-stat__num{
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: var(--wv-primary);
}

.wv-stat__label{
  margin-top: 4px;
  color: var(--wv-muted);
  font-size: 13px;
}

/* Services grid */
.wv-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.wv-card{
  background:#fff;
  border: 1px solid var(--wv-border-soft);
  border-radius: var(--wv-radius);
  overflow:hidden;
  box-shadow: 0 8px 18px rgba(71,65,93,.12);
  transition: transform .2s ease, box-shadow .2s ease;
}

.wv-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--wv-shadow);
}

.wv-card__media{
  position:relative;
  padding: 14px;
  border-bottom: 1px solid var(--wv-border-soft);
}

.wv-media--soft{
  background: linear-gradient(135deg, var(--wv-accent-soft), var(--wv-bg));
}

.wv-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--wv-border-soft);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--wv-accent);
}

.wv-icon svg{ width: 22px; height: 22px; }

/* Placeholder thumb */
.wv-thumb{
  height: 110px;
  border-radius: 14px;
  margin-top: 12px;
  border: 1px dashed rgba(71,65,93,.28);
  background: linear-gradient(135deg, var(--wv-bg), var(--wv-accent-soft));
}

.wv-card__body{ padding: 16px; }

.wv-card__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.wv-card__title{
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--wv-primary);
}

.wv-tag{
  font-size: 12px;
  font-weight: 950;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--wv-accent-soft);
  color: var(--wv-accent);
}

.wv-card__text{
  margin: 0 0 10px;
  color: var(--wv-muted);
  font-size: 14px;
}

.wv-list{
  margin: 0 0 10px;
  padding-left: 18px;
  color: var(--wv-muted);
  font-size: 13px;
}

.wv-list li{ margin: 6px 0; }

/* Links */
.wv-link{
  color: var(--wv-accent);
  text-decoration:none;
  font-weight: 950;
  font-size: 13px;
}
.wv-link:hover{ text-decoration: underline; }

/* Features */
.wv-features{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.wv-feature{
  background:#fff;
  border: 1px solid var(--wv-border-soft);
  border-radius: var(--wv-radius);
  box-shadow: var(--wv-shadow-soft);
  padding: 18px;
}

.wv-feature__ic{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--wv-accent-soft);
  color: var(--wv-accent);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 10px;
}

.wv-feature__ic svg{ width: 22px; height: 22px; }

.wv-feature h3{
  margin: 0 0 6px;
  font-size: 15px;
  color: var(--wv-primary);
}

.wv-feature p{
  margin: 0;
  color: var(--wv-muted);
  font-size: 14px;
}

/* FAQ */
.wv-faq{ display:grid; gap: 10px; }

.wv-faq__item{
  background:#fff;
  border: 1px solid var(--wv-border-soft);
  border-radius: var(--wv-radius);
  box-shadow: var(--wv-shadow-soft);
  overflow:hidden;
}

.wv-faq__q{
  list-style:none;
  cursor:pointer;
  padding: 14px 16px;
  font-weight: 900;
  position: relative;
  color: var(--wv-primary);
}
.wv-faq__q::-webkit-details-marker{ display:none; }

.wv-faq__q::after{
  content:"+";
  position:absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 950;
  color: var(--wv-muted);
}
details[open] > .wv-faq__q::after{ content:"–"; }

.wv-faq__a{
  padding: 0 16px 14px;
  color: var(--wv-muted);
  font-size: 14px;
}

/* CTA */
.wv-cta{
  background: linear-gradient(180deg, #3e3952 0%, var(--wv-primary) 100%);
}

.wv-cta__box{
  border: 1px solid rgba(243,240,255,.20);
  border-radius: calc(var(--wv-radius) + 6px);
  padding: 26px;
  background: rgba(243,240,255,.06);
  box-shadow: none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}

.wv-h2--inv{ color:#fff; }
.wv-subtitle--inv{ color: rgba(243,240,255,.80); }

/* Inverse ghost button in CTA */
.wv-btn--ghost-inv{
  background: rgba(243,240,255,.10);
  color:#fff;
  border-color: rgba(243,240,255,.22);
}
.wv-btn--ghost-inv:hover{
  background: rgba(243,240,255,.14);
}

/* Responsive */
@media (max-width: 1024px){
  .wv-head{ flex-direction: column; align-items:flex-start; }
  .wv-hero__grid{ grid-template-columns: 1fr; }
  .wv-hero__visual{ justify-content: flex-start; }
  .wv-stats{ grid-template-columns: repeat(2, 1fr); }
  .wv-grid{ grid-template-columns: repeat(2, 1fr); }
  .wv-features{ grid-template-columns: 1fr; }
  .wv-cta__box{ flex-direction: column; align-items:flex-start; }
}

@media (max-width: 560px){
  .wv-grid{ grid-template-columns: 1fr; }
  .wv-actions--hero .wv-btn{ width: 100%; }
}
/* CTA renklerini tema override'larına karşı kilitle */
.wv-cta .wv-cta__box,
.wv-cta .wv-cta__box *{
  color: #fff;
}

/* Açıklama metni biraz daha soft kalsın */
.wv-cta .wv-subtitle,
.wv-cta .wv-subtitle--inv{
  color: rgba(243,240,255,.82) !important;
}

/* Başlık kesin beyaz */
.wv-cta .wv-h2,
.wv-cta .wv-h2--inv{
  color: #fff !important;
}

/* CTA içindeki link/button yazıları (tema a{color:...} ezmesin) */
.wv-cta a.wv-btn,
.wv-cta a.wv-btn:visited{
  text-decoration: none;
}

/* Primary buton yazısı her durumda beyaz */
.wv-cta .wv-btn--primary{
  color: #fff !important;
}

/* WhatsApp (ghost-inv) buton yazısı + sınırlar */
.wv-cta .wv-btn--ghost-inv{
  color: #fff !important;
  border-color: rgba(243,240,255,.22) !important;
  background: rgba(243,240,255,.10) !important;
}
.wv-cta .wv-btn--ghost-inv:hover{
  background: rgba(243,240,255,.14) !important;
}/* End custom CSS */