/* DijiWOW Sections — Process to Footer */

/* ===================== HELPERS ===================== */
.dw-section-head--center { text-align: center; }
.dw-section-sub { font-size: 0.92rem; color: var(--dw-grey); margin-top: 0.5rem; max-width: 500px; }
.dw-section-head--center .dw-section-sub { margin-left: auto; margin-right: auto; }
.dw-section-head--split { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; }
.dw-section-head--split p { max-width: 380px; font-size: 0.88rem; color: var(--dw-grey); line-height: 1.6; margin: 0; }

/* ===================== PROCESS ===================== */
.dw-process { padding: 5rem 0; }
.dw-process__track { display: flex; align-items: stretch; gap: 0; }
.dw-process__card { flex: 1; padding: 2rem 1.8rem; background: #fff; border: 1px solid var(--dw-border); border-radius: var(--dw-radius); transition: all 0.35s; }
.dw-process__card:hover { transform: translateY(-4px); box-shadow: var(--dw-shadow-lg); border-color: rgba(227,30,36,0.12); }
.dw-process__icon { color: var(--dw-red); margin-bottom: 1rem; }
.dw-process__step-num { font-family: var(--font-mono,monospace); font-size: 0.6rem; color: var(--dw-grey-light); text-transform: uppercase; letter-spacing: 0.12em; }
.dw-process__card h3 { font-size: 1.05rem; font-weight: 600; color: var(--dw-black); margin: 0.5rem 0; }
.dw-process__card p { font-size: 0.82rem; color: var(--dw-grey); line-height: 1.55; margin-bottom: 1rem; }
.dw-process__tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.dw-process__tags span { font-size: 0.62rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.2rem 0.6rem; border-radius: 999px; background: var(--dw-bg-soft); color: var(--dw-grey); border: 1px solid var(--dw-border); }
.dw-process__line { width: 40px; height: 1px; background: var(--dw-border); align-self: center; flex-shrink: 0; }

/* ===================== SERVICES ===================== */
.dw-services { padding: 4.5rem 0; background: var(--dw-bg-soft); }

.dw-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.dw-svc-card {
  background: #fff;
  border: 1px solid var(--dw-border);
  border-radius: var(--dw-radius);
  padding: 1.8rem 1.5rem;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dw-svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--svc-color, var(--dw-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.dw-svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
  border-color: rgba(0,0,0,0.1);
}

.dw-svc-card:hover::before {
  transform: scaleX(1);
}

.dw-svc-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.dw-svc-card__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--dw-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 1px solid var(--dw-border);
  transition: all 0.3s;
}

.dw-svc-card:hover .dw-svc-card__icon {
  background: #fff;
  border-color: var(--svc-color, var(--dw-red));
  box-shadow: 0 0 0 4px rgba(227,30,36,0.06);
}

.dw-svc-card__arrow {
  color: var(--dw-grey-light);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: all 0.3s;
}

.dw-svc-card:hover .dw-svc-card__arrow {
  opacity: 1;
  transform: translate(0, 0);
  color: var(--svc-color, var(--dw-red));
}

.dw-svc-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dw-black);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.dw-svc-card:hover h3 {
  color: var(--svc-color, var(--dw-red));
}

.dw-svc-card p {
  font-size: 0.8rem;
  color: var(--dw-grey);
  line-height: 1.55;
  flex: 1;
}

.dw-svc-card__bar {
  height: 2px;
  background: var(--dw-bg-soft);
  border-radius: 2px;
  margin-top: 1.2rem;
  position: relative;
  overflow: hidden;
}

.dw-svc-card__bar::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 0;
  background: var(--svc-color, var(--dw-red));
  transition: width 0.4s ease;
  border-radius: 2px;
}

.dw-svc-card:hover .dw-svc-card__bar::after {
  width: 100%;
}

@media (max-width: 900px) {
  .dw-svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .dw-svc-grid { grid-template-columns: 1fr; }
}

/* ===================== ABOUT ===================== */
.dw-about { padding: 5rem 0; }
.dw-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.dw-about__left h2 { font-family: var(--font-sans-head,system-ui); font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 700; color: var(--dw-black); line-height: 1.2; margin: 0.5rem 0 1rem; }
.dw-about__left h2 em { font-style: normal; color: var(--dw-red); }
.dw-about__left > p { font-size: 0.92rem; color: var(--dw-grey); line-height: 1.65; margin-bottom: 2rem; }
.dw-about__grid-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.dw-about__feat { padding: 1rem; border-radius: 12px; border: 1px solid var(--dw-border); background: #fff; transition: all 0.3s; }
.dw-about__feat:hover { border-color: rgba(227,30,36,0.12); box-shadow: var(--dw-shadow); transform: translateY(-2px); }
.dw-about__feat-icon { font-size: 1.4rem; margin-bottom: 0.5rem; }
.dw-about__feat strong { display: block; font-size: 0.82rem; color: var(--dw-black); margin-bottom: 0.15rem; }
.dw-about__feat span { font-size: 0.72rem; color: var(--dw-grey-light); }
.dw-about__numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.dw-about__num-card { background: var(--dw-bg-soft); border: 1px solid var(--dw-border); border-radius: var(--dw-radius); padding: 1.5rem; text-align: center; }
.dw-about__num-val { font-family: var(--font-sans-head,system-ui); font-size: 2.5rem; font-weight: 800; color: var(--dw-red); line-height: 1; }
.dw-about__num-suffix { font-size: 1.3rem; color: var(--dw-red); font-weight: 700; }
.dw-about__num-label { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--dw-grey-light); margin-top: 0.3rem; }
.dw-about__num-card--wide { grid-column: 1/-1; text-align: left; padding: 0; overflow: hidden; }
.dw-about__terminal { background: var(--dw-black); border-radius: var(--dw-radius); overflow: hidden; }
.dw-terminal__dots { display: flex; gap: 5px; padding: 0.7rem 1rem; background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.06); }
.dw-tdot { width: 8px; height: 8px; border-radius: 50%; }
.dw-tdot--r { background: #ff5f57; }
.dw-tdot--y { background: #febc2e; }
.dw-tdot--g { background: #28c840; }
.dw-about__terminal pre { padding: 1rem; margin: 0; font-family: var(--font-mono,monospace); font-size: 0.72rem; line-height: 1.7; color: rgba(255,255,255,0.5); }

/* ===================== METRICS ===================== */
.dw-metrics { padding: 3.5rem clamp(1.2rem,3vw,2.5rem); background: var(--dw-black); color: #fff; }
.dw-metrics__inner { display: flex; justify-content: center; align-items: center; max-width: 1200px; margin: 0 auto; }
.dw-metric { text-align: center; flex: 1; }
.dw-metric__val { font-family: var(--font-sans-head,system-ui); font-size: clamp(2rem,4vw,2.8rem); font-weight: 800; color: #fff; line-height: 1; }
.dw-metric__suffix { font-size: 1.1rem; color: var(--dw-red); font-weight: 700; }
.dw-metric__label { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-top: 0.4rem; }
.dw-metric__divider { width: 1px; height: 45px; background: rgba(255,255,255,0.08); }

/* ===================== BLOG ===================== */
.dw-blog-preview { padding: 5rem 0; }

.dw-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.dw-blog-card {
  background: #fff;
  border: 1px solid var(--dw-border);
  border-radius: var(--dw-radius);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}
.dw-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
  border-color: rgba(0,0,0,0.1);
}

/* image */
.dw-blog-card__img {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.dw-blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
  transition: transform 0.5s ease;
}
.dw-blog-card:hover .dw-blog-card__img img {
  transform: scale(1.06);
}

/* date badge */
.dw-blog-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: #fff;
  border-radius: 10px;
  padding: 0.4rem 0.6rem;
  text-align: center;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.dw-blog-card__badge span {
  display: block;
  font-family: var(--font-sans-head, system-ui);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dw-black);
}
.dw-blog-card__badge small {
  display: block;
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dw-red);
  margin-top: 0.1rem;
}

/* body */
.dw-blog-card__body {
  padding: 1.3rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dw-blog-card__meta {
  display: flex;
  gap: 0.4rem;
  font-size: 0.62rem;
  font-family: var(--font-mono, monospace);
  color: var(--dw-grey-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}

.dw-blog-card__body h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dw-black);
  line-height: 1.35;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.dw-blog-card:hover .dw-blog-card__body h3 {
  color: var(--dw-red);
}

.dw-blog-card__body p {
  font-size: 0.78rem;
  color: var(--dw-grey);
  line-height: 1.5;
  flex: 1;
}

.dw-blog-card__read {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--dw-red);
  margin-top: 1rem;
  transition: gap 0.2s;
}
.dw-blog-card:hover .dw-blog-card__read {
  gap: 0.6rem;
}

.dw-blog-more {
  text-align: center;
}

@media (max-width: 900px) {
  .dw-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .dw-blog-grid { grid-template-columns: 1fr; }
  .dw-blog-card__img { height: 160px; }
}

/* ===================== PARTNERS ===================== */
.dw-partners { padding: 2.5rem 0; }
.dw-partners__inner {
  background: var(--dw-bg-soft);
  border: 1px solid var(--dw-border);
  border-radius: var(--dw-radius);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
}

.dw-partners__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono, monospace);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dw-grey);
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 2rem;
  border-right: 1px solid var(--dw-border);
}

.dw-partners__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--dw-red);
  animation: pulse 2s ease-in-out infinite;
}

.dw-partners__scroll {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.dw-partners__track {
  display: flex;
  gap: 2.5rem;
  animation: partnerScroll 20s linear infinite;
  white-space: nowrap;
}

@keyframes partnerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.dw-partner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  color: var(--dw-grey-light);
  transition: color 0.3s;
}
.dw-partner:hover { color: var(--dw-black); }
.dw-partner svg { opacity: 0.4; flex-shrink: 0; }
.dw-partner:hover svg { opacity: 0.8; }
.dw-partner span {
  font-size: 0.78rem;
  font-weight: 500;
  color: inherit;
}
.dw-partner strong {
  font-weight: 700;
  color: var(--dw-dark);
}

@media (max-width: 768px) {
  .dw-partners__inner { flex-direction: column; gap: 1rem; padding: 1.2rem; }
  .dw-partners__label { border-right: none; padding-right: 0; border-bottom: 1px solid var(--dw-border); padding-bottom: 0.8rem; }
}

/* ===================== TECH ===================== */
.dw-tech { padding: 4rem 0; }
.dw-tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.dw-tech-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  border: 1px solid var(--dw-border);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  transition: all 0.3s;
}
.dw-tech-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--dw-shadow);
  border-color: rgba(0,0,0,0.1);
}

.dw-tech-item__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: var(--dw-bg-soft);
  flex-shrink: 0;
}

.dw-tech-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dw-black);
  margin-bottom: 0.1rem;
}

.dw-tech-item span {
  display: block;
  font-size: 0.62rem;
  color: var(--dw-grey-light);
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .dw-tech-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .dw-tech-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===================== TESTIMONIALS ===================== */
.dw-proof { padding: 5rem 0; background: var(--dw-bg-soft); }
.dw-proof__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.dw-proof__card { background: #fff; border: 1px solid var(--dw-border); border-radius: var(--dw-radius); padding: 1.8rem; transition: all 0.35s; display: flex; flex-direction: column; }
.dw-proof__card:hover { transform: translateY(-4px); box-shadow: var(--dw-shadow-lg); }
.dw-proof__card--highlight { border-color: rgba(227,30,36,0.12); box-shadow: 0 8px 30px rgba(227,30,36,0.05); }
.dw-proof__quote { font-family: var(--font-sans-head,system-ui); font-size: 3rem; font-weight: 800; color: var(--dw-red); opacity: 0.15; line-height: 1; margin-bottom: -0.5rem; }
.dw-proof__card p { font-size: 0.88rem; color: var(--dw-dark); line-height: 1.6; flex: 1; margin-bottom: 1.2rem; }
.dw-proof__footer { display: flex; align-items: center; gap: 0.6rem; padding-top: 1rem; border-top: 1px solid var(--dw-border); }
.dw-proof__avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--dw-red); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; flex-shrink: 0; }
.dw-proof__footer strong { display: block; font-size: 0.8rem; color: var(--dw-black); }
.dw-proof__footer > div:nth-child(2) span { font-size: 0.65rem; color: var(--dw-grey-light); }
.dw-proof__stars { margin-left: auto; color: #F59E0B; font-size: 0.7rem; letter-spacing: 1px; }

/* ===================== FAQ ===================== */
.dw-faq { padding: 5rem clamp(1.2rem,3vw,2.5rem); }
.dw-faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 4rem; align-items: start; max-width: 1200px; margin: 0 auto; }
.dw-faq__left h2 { font-family: var(--font-sans-head,system-ui); font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 700; color: var(--dw-black); line-height: 1.2; margin: 0.5rem 0 1rem; }
.dw-faq__left p { font-size: 0.88rem; color: var(--dw-grey); line-height: 1.6; }
.dw-accordion { display: flex; flex-direction: column; gap: 0.4rem; }
.dw-accordion__item { background: var(--dw-bg-soft); border: 1px solid var(--dw-border); border-radius: 12px; overflow: hidden; transition: all 0.3s; }
.dw-accordion__item.is-open { border-color: rgba(227,30,36,0.12); background: #fff; box-shadow: var(--dw-shadow); }
.dw-accordion__head { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0.9rem 1.1rem; background: none; border: none; color: var(--dw-dark); font-size: 0.85rem; font-weight: 500; cursor: pointer; text-align: left; transition: color 0.2s; }
.dw-accordion__head:hover { color: var(--dw-red); }
.dw-accordion__item.is-open .dw-accordion__head { color: var(--dw-black); font-weight: 600; }
.dw-accordion__icon { width: 16px; height: 16px; position: relative; flex-shrink: 0; }
.dw-accordion__icon::before,.dw-accordion__icon::after { content: ""; position: absolute; background: var(--dw-red); border-radius: 1px; transition: transform 0.3s; }
.dw-accordion__icon::before { width: 10px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.dw-accordion__icon::after { width: 1.5px; height: 10px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.dw-accordion__item.is-open .dw-accordion__icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.dw-accordion__body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.dw-accordion__item.is-open .dw-accordion__body { max-height: 200px; padding: 0 1.1rem 0.9rem; }
.dw-accordion__body p { font-size: 0.8rem; color: var(--dw-grey); line-height: 1.6; }

/* ===================== CTA ===================== */
.dw-cta { padding: 6rem 0; text-align: center; position: relative; overflow: hidden; }
.dw-cta__glow { position: absolute; top: 50%; left: 50%; width: 500px; height: 500px; background: radial-gradient(circle,rgba(227,30,36,0.04),transparent 65%); transform: translate(-50%,-50%); animation: ctaPulse 5s ease-in-out infinite; pointer-events: none; }
@keyframes ctaPulse { 0%,100%{transform:translate(-50%,-50%) scale(1);opacity:.4} 50%{transform:translate(-50%,-50%) scale(1.4);opacity:1} }
.dw-cta__inner { position: relative; z-index: 1; }
.dw-cta h2 { font-family: var(--font-sans-head,system-ui); font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 700; color: var(--dw-black); line-height: 1.15; margin: 0.5rem 0 1rem; }
.dw-cta p { font-size: 0.95rem; color: var(--dw-grey); margin-bottom: 2rem; line-height: 1.6; }
.dw-cta__buttons { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* ===================== WHATSAPP ===================== */
.dw-wa { position: fixed; bottom: 24px; right: 24px; z-index: 998; }
.dw-wa__btn { width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.3); transition: all 0.3s; position: relative; }
.dw-wa__btn:hover { transform: scale(1.08); }
.dw-wa__icon { width: 28px; height: 28px; }
.dw-wa__badge { position: absolute; top: -2px; right: -2px; width: 18px; height: 18px; border-radius: 50%; background: var(--dw-red); color: #fff; font-size: 0.6rem; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; }
.dw-wa__popup { position: absolute; bottom: 70px; right: 0; width: 320px; background: #fff; border-radius: 16px; box-shadow: 0 12px 48px rgba(0,0,0,0.12); overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(10px) scale(0.95); transition: all 0.3s cubic-bezier(.16,1,.3,1); }
.dw-wa__popup.is-open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.dw-wa__popup-header { display: flex; align-items: center; gap: 0.7rem; padding: 1rem 1.2rem; background: #075E54; color: #fff; }
.dw-wa__popup-avatar { width: 36px; height: 36px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.dw-wa__popup-avatar img { width: 28px; height: auto; border-radius: 0 !important; }
.dw-wa__popup-header strong { font-size: 0.85rem; display: block; }
.dw-wa__popup-header span { font-size: 0.65rem; opacity: 0.8; }
.dw-wa__popup-close { margin-left: auto; background: none; border: none; color: rgba(255,255,255,0.7); cursor: pointer; font-size: 1rem; }
.dw-wa__popup-body { padding: 1.2rem; background: #ECE5DD; }
.dw-wa__bubble { background: #fff; border-radius: 0 12px 12px 12px; padding: 0.8rem 1rem; font-size: 0.82rem; line-height: 1.5; color: #333; box-shadow: 0 1px 2px rgba(0,0,0,0.08); }
.dw-wa__popup-send { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.85rem; background: #25D366; color: #fff; text-decoration: none; font-size: 0.85rem; font-weight: 600; }
.dw-wa__popup-send:hover { background: #1DA851; }
.dw-mobile-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 997; display: flex; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-top: 1px solid var(--dw-border); }
.dw-mobile-bar__item { flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.4rem; padding: 0.7rem; font-size: 0.72rem; font-weight: 600; color: var(--dw-dark); text-decoration: none; border: none; background: none; cursor: pointer; border-right: 1px solid var(--dw-border); }
.dw-mobile-bar__item:last-child { border-right: none; }
.dw-mobile-bar__item--wa { color: #25D366; }
.dw-mobile-bar__item--cta { color: #fff; background: var(--dw-red); }
@media (min-width:721px) { .dw-mobile-bar { display: none; } }
@media (max-width:720px) { .dw-wa { bottom: 70px; } }

/* ===================== FOOTER ===================== */
.footer-system { display: none !important; }

.dw-footer { background: var(--dw-black); color: rgba(255,255,255,0.5); }

/* --- CTA band --- */
.dw-footer__cta {
  background: linear-gradient(135deg, #1a1a28, #111118);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 3rem 0;
}
.dw-footer__cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.dw-footer__cta-left h3 {
  font-family: var(--font-sans-head, system-ui);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}
.dw-footer__cta-left p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.dw-footer__cta-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
}
.dw-footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.dw-footer__phone:hover { color: #fff; }

/* --- Main grid --- */
.dw-footer__main { padding: 3.5rem 0; }

.dw-footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.dw-footer__logo {
  height: 28px;
  width: auto;
  opacity: 0.85;
  margin-bottom: 1rem;
  border-radius: 0 !important;
}

.dw-footer__brand p {
  font-size: 0.78rem;
  line-height: 1.65;
  max-width: 280px;
  color: rgba(255,255,255,0.4);
}

.dw-footer__social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.2rem;
}
.dw-footer__social a {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  transition: all 0.25s;
}
.dw-footer__social a:hover {
  color: var(--dw-red);
  border-color: rgba(227,30,36,0.3);
  background: rgba(227,30,36,0.08);
}

/* columns */
.dw-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.dw-footer__col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.6rem;
}
.dw-footer__col a,
.dw-footer__col span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.dw-footer__col a svg {
  opacity: 0.4;
  flex-shrink: 0;
}
.dw-footer__col a:hover {
  color: #fff;
  transform: translateX(3px);
}
.dw-footer__col a:hover svg { opacity: 0.8; }

/* --- Bottom bar --- */
.dw-footer__bar {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.2rem 0;
}
.dw-footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.2);
}
.dw-footer__bar-links {
  display: flex;
  gap: 1.5rem;
}
.dw-footer__bar-links a {
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.2s;
}
.dw-footer__bar-links a:hover { color: rgba(255,255,255,0.5); }

.dw-footer__bar-credit {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.dw-footer__bar-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--dw-red);
  opacity: 0.6;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .dw-footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .dw-footer__cta-inner { flex-direction: column; text-align: center; }
  .dw-footer__cta-right { justify-content: center; }
  .dw-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .dw-footer__bar-inner { flex-direction: column; gap: 0.8rem; text-align: center; }
  .dw-footer__bar-links { gap: 1rem; }
}

/* ===================== MODAL ===================== */
.dw-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
.dw-modal.is-open { opacity: 1; visibility: visible; }
.dw-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(4px); }
.dw-modal__container { position: relative; background: #fff; border-radius: 20px; width: 90%; max-width: 520px; max-height: 90vh; overflow-y: auto; padding: 2.5rem; box-shadow: 0 30px 80px rgba(0,0,0,0.12); transform: translateY(20px) scale(0.97); transition: transform 0.35s cubic-bezier(.16,1,.3,1); }
.dw-modal.is-open .dw-modal__container { transform: translateY(0) scale(1); }
.dw-modal__close { position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--dw-border); background: var(--dw-bg-soft); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--dw-grey); transition: all 0.2s; }
.dw-modal__close:hover { border-color: var(--dw-red); color: var(--dw-red); }
.dw-modal__header { margin-bottom: 1.5rem; }
.dw-modal__header h2 { font-family: var(--font-sans-head,system-ui); font-size: 1.5rem; font-weight: 700; color: var(--dw-black); line-height: 1.2; margin: 0.5rem 0; }
.dw-modal__header p { font-size: 0.85rem; color: var(--dw-grey); }
.dw-modal__form { display: flex; flex-direction: column; gap: 1rem; }
.dw-modal__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.dw-modal__field { display: flex; flex-direction: column; gap: 0.3rem; }
.dw-modal__field label { font-size: 0.72rem; font-weight: 600; color: var(--dw-dark); text-transform: uppercase; letter-spacing: 0.04em; }
.dw-modal__field input,.dw-modal__field select,.dw-modal__field textarea { padding: 0.7rem 0.9rem; border: 1.5px solid var(--dw-border-strong); border-radius: 10px; font-size: 0.88rem; font-family: inherit; color: var(--dw-dark); background: var(--dw-bg); transition: border-color 0.2s, box-shadow 0.2s; outline: none; width: 100%; box-sizing: border-box; }
.dw-modal__field input:focus,.dw-modal__field select:focus,.dw-modal__field textarea:focus { border-color: var(--dw-red); box-shadow: 0 0 0 3px rgba(227,30,36,0.08); }
.dw-modal__field input::placeholder,.dw-modal__field textarea::placeholder { color: var(--dw-grey-light); }
.dw-modal__field select { appearance: none; padding-right: 2.5rem; }
.dw-modal__field textarea { resize: vertical; min-height: 80px; }
.dw-modal__submit { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* studio */
.studio-panel-inner { background: #fff !important; }
.studio-panel-inner * { color: var(--dw-dark) !important; }

/* reveal */
[data-animate] { opacity: 0; transform: translateY(25px); transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1) !important; }
[data-animate].is-visible { opacity: 1; transform: translateY(0); }

/* ===================== TEMALAR PAGE ===================== */
.dw-tmpl-hero { padding: 3rem 0 2rem; }
.dw-tmpl-hero__title {
  font-family: var(--font-sans-head, system-ui);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--dw-black); line-height: 1.15;
}

/* filters */
.dw-tmpl-filters {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.4rem; margin-top: 2rem;
}
.dw-tmpl-filter {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.45rem 1rem; border-radius: 999px;
  font-size: 0.78rem; font-weight: 500;
  color: var(--dw-grey); background: var(--dw-bg-soft);
  border: 1px solid var(--dw-border);
  text-decoration: none; transition: all 0.2s; white-space: nowrap;
}
.dw-tmpl-filter:hover { border-color: var(--dw-border-strong); color: var(--dw-black); }
.dw-tmpl-filter.is-active { background: var(--dw-black); color: #fff; border-color: var(--dw-black); }
.dw-tmpl-filter__icon { font-size: 0.85rem; }
.dw-tmpl-filter__count {
  font-size: 0.6rem; font-weight: 600;
  background: rgba(0,0,0,0.06); color: var(--dw-grey);
  padding: 0.1rem 0.35rem; border-radius: 999px; min-width: 18px; text-align: center;
}
.dw-tmpl-filter.is-active .dw-tmpl-filter__count { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }

/* grid */
.dw-tmpl-grid-section { padding: 2rem 0 4rem; }
.dw-tmpl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.dw-tmpl-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* card */
.dw-tmpl-card {
  background: #fff; border: 1px solid var(--dw-border);
  border-radius: var(--dw-radius); overflow: hidden;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
}
.dw-tmpl-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }

/* Themeforest style card image */
.dw-tmpl-card__img {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--dw-bg-soft);
}
.dw-tmpl-card__img img {
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 0 !important;
  transition: transform 8s cubic-bezier(0.2, 0, 0.2, 1);
}
/* hover scroll effect - slowly reveals full page */
.dw-tmpl-card:hover .dw-tmpl-card__img img {
  transform: translateY(calc(-100% + 280px));
}

.dw-tmpl-card__badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 0.3rem; }
.dw-tmpl-badge {
  font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.2rem 0.5rem; border-radius: 999px;
}
.dw-tmpl-badge--hot { background: var(--dw-red); color: #fff; }
.dw-tmpl-badge--new { background: #16A34A; color: #fff; }

.dw-tmpl-card__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem;
  opacity: 0; transition: opacity 0.3s;
}
.dw-tmpl-card:hover .dw-tmpl-card__overlay { opacity: 1; }

.dw-tmpl-card__body { padding: 1.2rem 1.3rem; }
.dw-tmpl-card__meta { margin-bottom: 0.5rem; }
.dw-tmpl-card__cat { font-size: 0.65rem; color: var(--dw-grey-light); }
.dw-tmpl-card__title { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
.dw-tmpl-card__title a { color: var(--dw-black); text-decoration: none; transition: color 0.2s; }
.dw-tmpl-card__title a:hover { color: var(--dw-red); }
.dw-tmpl-card__desc { font-size: 0.78rem; color: var(--dw-grey); line-height: 1.45; margin-bottom: 0.8rem; }

.dw-tmpl-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.8rem; border-top: 1px solid var(--dw-border);
}
.dw-tmpl-card__price { font-size: 0.82rem; font-weight: 600; color: var(--dw-dark); }
.dw-tmpl-card__price-val { color: var(--dw-red); font-weight: 700; }
.dw-tmpl-card__price-sep { color: var(--dw-grey-light); margin: 0 0.2rem; font-weight: 400; }

.dw-tmpl-card__cta {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.7rem; font-weight: 600; color: var(--dw-red);
  background: none; border: 1px solid rgba(227,30,36,0.2);
  padding: 0.35rem 0.8rem; border-radius: 999px; cursor: pointer;
  transition: all 0.25s;
}
.dw-tmpl-card__cta:hover { background: var(--dw-red); color: #fff; border-color: var(--dw-red); }

/* ===================== TEMA DETAY ===================== */
.dw-tmpl-detail { padding: 2rem 0 4rem; }

.dw-tmpl-bread {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; color: var(--dw-grey-light); margin-bottom: 2rem;
}
.dw-tmpl-bread a { color: var(--dw-grey); text-decoration: none; transition: color 0.2s; }
.dw-tmpl-bread a:hover { color: var(--dw-red); }
.dw-tmpl-bread span { color: var(--dw-dark); }

.dw-tmpl-detail__grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: start; }

/* detail screenshot */
.dw-tmpl-detail__main-img {
  border-radius: var(--dw-radius);
  overflow: hidden;
  border: 1px solid var(--dw-border);
  background: var(--dw-bg-soft);
  max-height: 450px;
}
.dw-tmpl-detail__main-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 !important;
  object-fit: cover;
  object-position: top center;
}

.dw-tmpl-detail__thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.8rem;
}
.dw-tmpl-detail__thumbs img {
  width: 80px; height: 55px;
  object-fit: cover; object-position: top;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.2s;
}
.dw-tmpl-detail__thumbs img.is-active,
.dw-tmpl-detail__thumbs img:hover {
  opacity: 1;
  border-color: var(--dw-red);
}

.dw-tmpl-detail__demo-btn {
  margin-top: 0.8rem;
}

.dw-tmpl-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.7rem 1rem;
  background: linear-gradient(135deg, #16A34A, #22C55E);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.dw-tmpl-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22,163,74,0.3);
}
.dw-tmpl-download-btn::after {
  content: '';
  position: absolute;
  top: -50%; left: -70%;
  width: 50%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: skewX(-20deg);
  animation: shimmer 4s ease-in-out infinite;
}

.dw-tmpl-detail__right h1 {
  font-family: var(--font-sans-head, system-ui);
  font-size: 1.6rem; font-weight: 700; color: var(--dw-black);
  margin: 0.5rem 0 0.8rem;
}
.dw-tmpl-detail__desc { font-size: 0.88rem; color: var(--dw-grey); line-height: 1.65; margin-bottom: 1.5rem; }

.dw-tmpl-detail__price-box {
  background: var(--dw-bg-soft); border: 1px solid var(--dw-border);
  border-radius: 12px; padding: 1.2rem; margin-bottom: 1.5rem;
}
.dw-tmpl-detail__price-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--dw-grey-light); margin-bottom: 0.4rem; }
.dw-tmpl-detail__price { font-family: var(--font-sans-head,system-ui); font-size: 1.5rem; font-weight: 700; color: var(--dw-red); }
.dw-tmpl-detail__price-sep { color: var(--dw-grey-light); font-weight: 400; margin: 0 0.3rem; font-size: 1rem; }
.dw-tmpl-detail__price-note { font-size: 0.65rem; color: var(--dw-grey-light); margin-top: 0.3rem; }

.dw-tmpl-detail__ctas { display: flex; gap: 0.8rem; margin-bottom: 1.5rem; }

.dw-tmpl-detail__features { margin-bottom: 1.5rem; }
.dw-tmpl-detail__features h4 { font-size: 0.82rem; font-weight: 600; color: var(--dw-black); margin-bottom: 0.8rem; }
.dw-tmpl-detail__feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; }
.dw-tmpl-detail__feat {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; color: var(--dw-dark); padding: 0.3rem 0;
}

.dw-tmpl-detail__meta {
  display: flex; gap: 1.5rem; font-size: 0.72rem; color: var(--dw-grey);
  padding-top: 1rem; border-top: 1px solid var(--dw-border);
}
.dw-tmpl-detail__meta strong { color: var(--dw-dark); margin-right: 0.3rem; }

.dw-tmpl-similar { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--dw-border); }
.dw-tmpl-similar h3 { font-size: 1.2rem; font-weight: 600; color: var(--dw-black); margin-bottom: 1.5rem; }

/* Detay içerik (SEO) */
.dw-tmpl-content {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--dw-border);
}
.dw-tmpl-content__inner {
  max-width: 800px;
}
.dw-tmpl-content__inner h2 {
  font-family: var(--font-sans-head, system-ui);
  font-size: 1.4rem; font-weight: 700; color: var(--dw-black);
  margin: 2rem 0 0.8rem;
}
.dw-tmpl-content__inner h3 {
  font-size: 1.1rem; font-weight: 600; color: var(--dw-black);
  margin: 1.5rem 0 0.6rem;
}
.dw-tmpl-content__inner p {
  font-size: 0.88rem; color: var(--dw-grey); line-height: 1.7;
  margin-bottom: 1rem;
}
.dw-tmpl-content__inner ul {
  padding-left: 0; list-style: none; margin-bottom: 1.2rem;
}
.dw-tmpl-content__inner li {
  font-size: 0.85rem; color: var(--dw-dark); padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative; line-height: 1.5;
}
.dw-tmpl-content__inner li::before {
  content: ''; position: absolute; left: 0; top: 0.65rem;
  width: 5px; height: 5px; background: var(--dw-red); border-radius: 50%;
}
.dw-tmpl-content__inner strong { color: var(--dw-black); }

/* Detay FAQ */
.dw-tmpl-faq {
  margin-top: 3rem; padding-top: 3rem;
  border-top: 1px solid var(--dw-border);
  max-width: 800px;
}
.dw-tmpl-faq h2 {
  font-family: var(--font-sans-head, system-ui);
  font-size: 1.3rem; font-weight: 700; color: var(--dw-black);
  margin-bottom: 1.2rem;
}

@media (max-width: 900px) {
  .dw-tmpl-grid { grid-template-columns: repeat(2, 1fr); }
  .dw-tmpl-detail__grid { grid-template-columns: 1fr; }
  .dw-tmpl-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .dw-tmpl-grid, .dw-tmpl-grid--3 { grid-template-columns: 1fr; }
  .dw-tmpl-filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.5rem; }
  .dw-tmpl-detail__ctas { flex-direction: column; }
  .dw-tmpl-detail__feat-grid { grid-template-columns: 1fr; }
}

/* ===================== KAMPANYA ===================== */
/* Popup */
.dw-kampanya--popup {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  animation: kampanyaFadeIn 0.3s ease;
}
.dw-kampanya__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(3px); }
.dw-kampanya__box {
  position: relative; background: #fff; border-radius: 20px;
  max-width: 440px; width: 90%; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  animation: kampanyaSlideUp 0.35s cubic-bezier(.16,1,.3,1);
}
.dw-kampanya__close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,0.06); border: none; cursor: pointer;
  font-size: 0.9rem; color: #666; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.dw-kampanya__close:hover { background: var(--dw-red); color: #fff; }
.dw-kampanya__img img { width: 100%; height: 180px; object-fit: cover; display: block; border-radius: 0 !important; }
.dw-kampanya__content { padding: 1.5rem; text-align: center; }
.dw-kampanya__content h3 { font-family: var(--font-sans-head,system-ui); font-size: 1.2rem; font-weight: 700; color: var(--dw-black); margin-bottom: 0.5rem; }
.dw-kampanya__content p { font-size: 0.85rem; color: var(--dw-grey); line-height: 1.6; margin-bottom: 1.2rem; }

/* Banner */
.dw-kampanya--banner { position: fixed; left: 0; right: 0; z-index: 9990; animation: kampanyaSlideDown 0.3s ease; }
.dw-kampanya--banner-ust { top: 0; }
.dw-kampanya--banner-alt { bottom: 0; }
.dw-kampanya__banner-inner {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  padding: 0.65rem 1.5rem; background: var(--dw-black); color: #fff;
  font-size: 0.8rem; flex-wrap: wrap;
}
.dw-kampanya__banner-text { flex: 1; text-align: center; }
.dw-kampanya__banner-text strong { color: var(--dw-red-light); }
.dw-kampanya__banner-btn {
  padding: 0.35rem 1rem; border-radius: 999px; font-size: 0.72rem; font-weight: 600;
  background: var(--dw-red); color: #fff; border: none; cursor: pointer;
  text-decoration: none; white-space: nowrap; transition: all 0.2s;
}
.dw-kampanya__banner-btn:hover { background: var(--dw-red-light); }
.dw-kampanya__banner-close {
  background: none; border: none; color: rgba(255,255,255,0.4); cursor: pointer;
  font-size: 1rem; padding: 0 0.3rem; transition: color 0.2s;
}
.dw-kampanya__banner-close:hover { color: #fff; }

/* Bildirim */
.dw-kampanya--notif { position: fixed; z-index: 9990; animation: kampanyaSlideUp 0.35s ease; }
.dw-kampanya--notif-sol-alt { bottom: 90px; left: 20px; }
.dw-kampanya--notif-sag-alt { bottom: 90px; right: 20px; }
.dw-kampanya__notif-box {
  background: #fff; border: 1px solid var(--dw-border); border-radius: 14px;
  padding: 1.2rem; width: 300px; box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  position: relative;
}
.dw-kampanya__notif-close {
  position: absolute; top: 8px; right: 8px; background: none; border: none;
  color: #ccc; cursor: pointer; font-size: 0.85rem;
}
.dw-kampanya__notif-close:hover { color: var(--dw-red); }
.dw-kampanya__notif-box h4 { font-size: 0.88rem; font-weight: 600; color: var(--dw-black); margin-bottom: 0.3rem; }
.dw-kampanya__notif-box p { font-size: 0.75rem; color: var(--dw-grey); line-height: 1.5; margin-bottom: 0.6rem; }
.dw-kampanya__notif-btn {
  font-size: 0.72rem; font-weight: 600; color: var(--dw-red);
  background: none; border: none; cursor: pointer; padding: 0;
  text-decoration: none; display: inline-block;
}

@keyframes kampanyaFadeIn { from{opacity:0} to{opacity:1} }
@keyframes kampanyaSlideUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes kampanyaSlideDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }

@media (max-width:600px) {
  .dw-kampanya__box { max-width: 95%; }
  .dw-kampanya__banner-inner { font-size: 0.72rem; padding: 0.5rem 1rem; }
  .dw-kampanya__notif-box { width: calc(100vw - 40px); }
}

/* ===================== LEGAL PAGES ===================== */
.dw-legal { padding: 2rem 0 4rem; }
.dw-legal__content { max-width: 800px; margin-top: 1.5rem; }
.dw-legal__content h1 {
  font-family: var(--font-sans-head, system-ui);
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700;
  color: var(--dw-black); margin-bottom: 0.5rem;
}
.dw-legal__date { font-size: 0.72rem; color: var(--dw-grey-light); margin-bottom: 2rem; }
.dw-legal__content h2 {
  font-size: 1.15rem; font-weight: 600; color: var(--dw-black);
  margin: 2rem 0 0.6rem; padding-top: 1rem; border-top: 1px solid var(--dw-border);
}
.dw-legal__content h2:first-of-type { border-top: none; padding-top: 0; }
.dw-legal__content h3 {
  font-size: 0.95rem; font-weight: 600; color: var(--dw-black); margin: 1.2rem 0 0.4rem;
}
.dw-legal__content p {
  font-size: 0.88rem; color: var(--dw-grey); line-height: 1.75; margin-bottom: 0.7rem;
}
.dw-legal__content strong { color: var(--dw-black); }
.dw-legal__content a { color: var(--dw-red); text-decoration: none; }
.dw-legal__content a:hover { text-decoration: underline; }
.dw-legal__content ul { padding-left: 0; list-style: none; margin-bottom: 1rem; }
.dw-legal__content li {
  font-size: 0.85rem; color: var(--dw-dark); padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative; line-height: 1.55;
}
.dw-legal__content li::before {
  content: ''; position: absolute; left: 0; top: 0.6rem;
  width: 5px; height: 5px; background: var(--dw-red); border-radius: 50%;
}

/* ===================== BİZ KİMİZ ===================== */
.dw-about-hero { padding: 2.5rem 0 3rem; }
.dw-about-hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }

.dw-about-hero__left h1 {
  font-family: var(--font-sans-head, system-ui);
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700;
  color: var(--dw-black); line-height: 1.15; margin: 0.5rem 0 1rem;
}
.dw-about-hero__desc { font-size: 0.95rem; color: var(--dw-grey); line-height: 1.65; margin-bottom: 2rem; }

.dw-about-hero__stats {
  display: inline-flex; align-items: center; gap: 1.5rem;
  background: var(--dw-bg-soft); border: 1px solid var(--dw-border);
  border-radius: 999px; padding: 0.6rem 1.8rem;
}
.dw-about-hero__stat { display: flex; align-items: baseline; gap: 0.1rem; }
.dw-about-hero__stat strong { font-family: var(--font-sans-head,system-ui); font-size: 1.3rem; font-weight: 700; color: var(--dw-black); }
.dw-about-hero__stat span { font-size: 0.85rem; font-weight: 700; color: var(--dw-red); }
.dw-about-hero__stat small { font-size: 0.62rem; color: var(--dw-grey-light); text-transform: uppercase; letter-spacing: 0.06em; margin-left: 0.3rem; }
.dw-about-hero__stat-divider { width: 1px; height: 18px; background: var(--dw-border-strong); }

.dw-about-hero__terminal {
  background: var(--dw-black); border-radius: var(--dw-radius); overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.dw-about-hero__terminal pre {
  padding: 1.2rem; margin: 0; font-family: var(--font-mono,monospace);
  font-size: 0.75rem; line-height: 1.7; color: rgba(255,255,255,0.5);
}

/* İçerik */
.dw-about-content { padding: 0 0 3rem; }
.dw-about-content__inner { max-width: 800px; }
.dw-about-content__inner p { font-size: 0.9rem; color: var(--dw-grey); line-height: 1.75; margin-bottom: 0.8rem; }
.dw-about-content__inner strong { color: var(--dw-black); }

/* Değerler */
.dw-about-values { padding: 3rem 0; background: var(--dw-bg-soft); }
.dw-about-values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }

.dw-about-value {
  background: #fff; border: 1px solid var(--dw-border);
  border-radius: var(--dw-radius); padding: 1.5rem; transition: all 0.3s;
}
.dw-about-value:hover { transform: translateY(-4px); box-shadow: var(--dw-shadow-lg); border-color: rgba(227,30,36,0.1); }
.dw-about-value__icon { font-size: 1.5rem; margin-bottom: 0.8rem; }
.dw-about-value h3 { font-size: 0.92rem; font-weight: 600; color: var(--dw-black); margin-bottom: 0.4rem; }
.dw-about-value p { font-size: 0.78rem; color: var(--dw-grey); line-height: 1.5; }

/* Hizmetler */
.dw-about-services { padding: 3rem 0; }
.dw-about-services__inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 3rem; align-items: start; }

.dw-about-services__left h2 {
  font-family: var(--font-sans-head,system-ui);
  font-size: 1.4rem; font-weight: 700; color: var(--dw-black);
  margin: 0.5rem 0 0.6rem;
}
.dw-about-services__left p { font-size: 0.85rem; color: var(--dw-grey); line-height: 1.6; }

.dw-about-services__list { display: flex; flex-direction: column; gap: 2px; }
.dw-about-service-item {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.85rem 1rem; background: #fff; border: 1px solid var(--dw-border);
  border-radius: 10px; text-decoration: none; transition: all 0.25s;
}
.dw-about-service-item:hover { border-color: rgba(227,30,36,0.15); padding-left: 1.3rem; background: var(--dw-bg-soft); }
.dw-about-service-item__icon { font-size: 1.2rem; }
.dw-about-service-item span { font-size: 0.85rem; font-weight: 500; color: var(--dw-dark); flex: 1; }
.dw-about-service-item:hover span { color: var(--dw-red); }
.dw-about-service-item svg { color: var(--dw-grey-light); opacity: 0; transition: all 0.2s; }
.dw-about-service-item:hover svg { opacity: 1; color: var(--dw-red); }

@media (max-width: 900px) {
  .dw-about-hero__grid { grid-template-columns: 1fr; }
  .dw-about-values__grid { grid-template-columns: repeat(2, 1fr); }
  .dw-about-services__inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .dw-about-values__grid { grid-template-columns: 1fr; }
  .dw-about-hero__stats { flex-direction: row; gap: 0.8rem; padding: 0.5rem 1rem; }
}

/* ===================== İLETİŞİM ===================== */
.dw-contact-hero { padding: 2.5rem 0 1.5rem; }
.dw-contact-hero__title {
  font-family: var(--font-sans-head, system-ui);
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700;
  color: var(--dw-black); line-height: 1.15;
}

/* Kart grid */
.dw-contact-cards { padding: 0 0 3rem; }
.dw-contact-cards__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

.dw-contact-card {
  background: #fff; border: 1px solid var(--dw-border);
  border-radius: var(--dw-radius); padding: 1.5rem;
  text-decoration: none; transition: all 0.3s;
  display: flex; flex-direction: column;
}
.dw-contact-card:hover { transform: translateY(-4px); box-shadow: var(--dw-shadow-lg); border-color: rgba(227,30,36,0.12); }

.dw-contact-card__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--dw-bg-soft); color: var(--dw-red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; transition: all 0.3s;
}
.dw-contact-card__icon--wa { background: rgba(37,211,102,0.08); color: #25D366; }
.dw-contact-card:hover .dw-contact-card__icon { background: rgba(227,30,36,0.06); }

.dw-contact-card h3 { font-size: 0.88rem; font-weight: 600; color: var(--dw-black); margin-bottom: 0.3rem; }
.dw-contact-card p { font-size: 0.78rem; color: var(--dw-grey); line-height: 1.4; flex: 1; }
.dw-contact-card span { font-size: 0.7rem; font-weight: 600; color: var(--dw-red); margin-top: 0.8rem; transition: transform 0.2s; display: inline-block; }
.dw-contact-card:hover span { transform: translateX(3px); }

/* Form section */
.dw-contact-form-section { padding: 0 0 4rem; }
.dw-contact-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 3rem; align-items: start; }

.dw-contact-form-wrap h2 {
  font-family: var(--font-sans-head, system-ui);
  font-size: 1.4rem; font-weight: 700; color: var(--dw-black); margin-bottom: 0.4rem;
}
.dw-contact-form-wrap > p { font-size: 0.85rem; color: var(--dw-grey); margin-bottom: 1.5rem; }

.dw-contact-success {
  background: #DCFCE7; border: 1px solid #86EFAC; color: #166534;
  padding: 0.8rem 1rem; border-radius: 10px; font-size: 0.82rem; margin-bottom: 1.2rem;
}
.dw-contact-error {
  background: #FEE2E2; border: 1px solid #FCA5A5; color: #991B1B;
  padding: 0.8rem 1rem; border-radius: 10px; font-size: 0.82rem; margin-bottom: 1.2rem;
}

.dw-contact-form { display: flex; flex-direction: column; gap: 0.8rem; }
.dw-contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.dw-contact-form__field { display: flex; flex-direction: column; gap: 0.25rem; }
.dw-contact-form__field label { font-size: 0.7rem; font-weight: 600; color: var(--dw-dark); text-transform: uppercase; letter-spacing: 0.03em; }
.dw-contact-form__field input,
.dw-contact-form__field select,
.dw-contact-form__field textarea {
  padding: 0.65rem 0.9rem; border: 1.5px solid var(--dw-border-strong);
  border-radius: 10px; font-size: 0.85rem; font-family: inherit;
  color: var(--dw-dark); outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff; width: 100%; box-sizing: border-box;
}
.dw-contact-form__field input:focus,
.dw-contact-form__field select:focus,
.dw-contact-form__field textarea:focus { border-color: var(--dw-red); box-shadow: 0 0 0 3px rgba(227,30,36,0.06); }
.dw-contact-form__field textarea { resize: vertical; }
.dw-contact-form__field select { appearance: none; }

/* Sağ bilgi */
.dw-contact-info { display: flex; flex-direction: column; gap: 1rem; position: sticky; top: 80px; }

.dw-contact-info__card {
  background: #fff; border: 1px solid var(--dw-border);
  border-radius: var(--dw-radius); padding: 1.3rem;
}
.dw-contact-info__card h3 { font-size: 0.85rem; font-weight: 600; color: var(--dw-black); margin-bottom: 0.8rem; }
.dw-contact-info__card p { font-size: 0.78rem; color: var(--dw-grey); line-height: 1.5; margin-bottom: 0.8rem; }

.dw-contact-info__card--dark { background: var(--dw-black); border-color: transparent; }
.dw-contact-info__card--dark h3 { color: #fff; }
.dw-contact-info__card--dark p { color: rgba(255,255,255,0.4); }

.dw-contact-info__row {
  display: flex; justify-content: space-between; padding: 0.4rem 0;
  border-bottom: 1px solid var(--dw-border); font-size: 0.78rem;
}
.dw-contact-info__row span { color: var(--dw-grey); }
.dw-contact-info__row strong { color: var(--dw-black); font-weight: 600; }
.dw-contact-info__row:last-child { border: none; }

.dw-contact-info__social { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.dw-contact-info__social a {
  font-size: 0.72rem; font-weight: 500; color: var(--dw-grey);
  padding: 0.3rem 0.7rem; border: 1px solid var(--dw-border);
  border-radius: 999px; text-decoration: none; transition: all 0.2s;
}
.dw-contact-info__social a:hover { border-color: var(--dw-red); color: var(--dw-red); }

@media (max-width: 900px) {
  .dw-contact-cards__grid { grid-template-columns: repeat(2, 1fr); }
  .dw-contact-grid { grid-template-columns: 1fr; }
  .dw-contact-info { position: static; }
}
@media (max-width: 600px) {
  .dw-contact-cards__grid { grid-template-columns: 1fr; }
  .dw-contact-form__row { grid-template-columns: 1fr; }
}

/* ===================== BLOG DETAIL ===================== */
.dw-blog-detail { padding: 2rem 0 3rem; }
.dw-blog-detail__grid { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }
.dw-blog-detail__sidebar { position: sticky; top: 80px; }

.dw-blog-detail__header { margin-bottom: 1.5rem; }
.dw-blog-detail__meta {
  display: flex; gap: 0.4rem; font-size: 0.65rem;
  font-family: var(--font-mono, monospace); color: var(--dw-grey-light);
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.8rem;
}
.dw-blog-detail__header h1 {
  font-family: var(--font-sans-head, system-ui);
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700;
  color: var(--dw-black); line-height: 1.2; margin-bottom: 0.7rem;
}
.dw-blog-detail__excerpt { font-size: 0.95rem; color: var(--dw-grey); line-height: 1.65; }

.dw-blog-detail__hero {
  border-radius: var(--dw-radius); overflow: hidden;
  border: 1px solid var(--dw-border); margin-bottom: 2rem;
}
.dw-blog-detail__hero img { width: 100%; height: auto; display: block; border-radius: 0 !important; }

.dw-blog-detail__content { margin-bottom: 2rem; }
.dw-blog-detail__content h2 {
  font-family: var(--font-sans-head, system-ui);
  font-size: 1.25rem; font-weight: 700; color: var(--dw-black);
  margin: 2rem 0 0.6rem;
}
.dw-blog-detail__content h3 {
  font-size: 1.05rem; font-weight: 600; color: var(--dw-black);
  margin: 1.5rem 0 0.5rem;
}
.dw-blog-detail__content p {
  font-size: 0.88rem; color: var(--dw-grey); line-height: 1.75; margin-bottom: 0.8rem;
}
.dw-blog-detail__content strong { color: var(--dw-black); }
.dw-blog-detail__content ul { padding-left: 0; list-style: none; margin-bottom: 1.2rem; }
.dw-blog-detail__content li {
  font-size: 0.85rem; color: var(--dw-dark); padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative; line-height: 1.55;
}
.dw-blog-detail__content li::before {
  content: ''; position: absolute; left: 0; top: 0.6rem;
  width: 5px; height: 5px; background: var(--dw-red); border-radius: 50%;
}

/* Paylaş */
.dw-blog-detail__share {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 1rem 0; margin-bottom: 1.5rem;
  border-top: 1px solid var(--dw-border); border-bottom: 1px solid var(--dw-border);
}
.dw-blog-detail__share span:first-child { font-size: 0.75rem; font-weight: 600; color: var(--dw-dark); }
.dw-blog-detail__share a {
  font-size: 0.72rem; font-weight: 500; color: var(--dw-grey);
  text-decoration: none; padding: 0.3rem 0.7rem;
  border: 1px solid var(--dw-border); border-radius: 999px;
  transition: all 0.2s;
}
.dw-blog-detail__share a:hover { border-color: var(--dw-red); color: var(--dw-red); }

@media (max-width: 900px) {
  .dw-blog-detail__grid { grid-template-columns: 1fr; }
  .dw-blog-detail__sidebar { position: static; }
}

/* ===================== BLOG PAGE ===================== */
.dw-blog-hero { padding: 2.5rem 0 1.5rem; }
.dw-blog-hero__title {
  font-family: var(--font-sans-head, system-ui);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700; color: var(--dw-black); line-height: 1.15;
}

.dw-blog-page { padding: 0 0 3rem; }

/* Featured (ilk yazı) */
.dw-blog-featured {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
  background: #fff; border: 1px solid var(--dw-border);
  border-radius: var(--dw-radius); overflow: hidden;
  text-decoration: none; transition: all 0.35s;
  margin-bottom: 2rem;
}
.dw-blog-featured:hover {
  transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.07);
}
.dw-blog-featured__img { height: 100%; min-height: 280px; overflow: hidden; }
.dw-blog-featured__img img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 0 !important; transition: transform 0.6s;
}
.dw-blog-featured:hover .dw-blog-featured__img img { transform: scale(1.04); }

.dw-blog-featured__content {
  padding: 2rem 2.2rem; display: flex; flex-direction: column; justify-content: center;
}
.dw-blog-featured__meta {
  display: flex; gap: 0.4rem; font-size: 0.65rem;
  font-family: var(--font-mono, monospace); color: var(--dw-grey-light);
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.8rem;
}
.dw-blog-featured__content h2 {
  font-family: var(--font-sans-head, system-ui);
  font-size: 1.3rem; font-weight: 700; color: var(--dw-black);
  line-height: 1.3; margin-bottom: 0.7rem; transition: color 0.2s;
}
.dw-blog-featured:hover .dw-blog-featured__content h2 { color: var(--dw-red); }
.dw-blog-featured__content p { font-size: 0.82rem; color: var(--dw-grey); line-height: 1.6; }
.dw-blog-featured__link {
  font-size: 0.78rem; font-weight: 600; color: var(--dw-red);
  margin-top: 1.2rem; display: inline-block; transition: transform 0.2s;
}
.dw-blog-featured:hover .dw-blog-featured__link { transform: translateX(4px); }

/* Grid */
.dw-blog-page__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}

@media (max-width: 900px) {
  .dw-blog-featured { grid-template-columns: 1fr; }
  .dw-blog-featured__img { min-height: 200px; }
  .dw-blog-page__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .dw-blog-page__grid { grid-template-columns: 1fr; }
}

/* ===================== HİZMET DETAY ===================== */
.dw-hizmet-hero { padding: 2rem 0 3rem; }

.dw-bread {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; color: var(--dw-grey-light); margin-bottom: 2rem;
}
.dw-bread a { color: var(--dw-grey); text-decoration: none; transition: color 0.2s; }
.dw-bread a:hover { color: var(--dw-red); }
.dw-bread span { color: var(--dw-dark); }

.dw-hizmet-hero__inner {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem; align-items: center;
}

.dw-hizmet-hero__left h1 {
  font-family: var(--font-sans-head, system-ui);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700; color: var(--dw-black);
  line-height: 1.15; margin: 0.5rem 0 1rem;
}
.dw-hizmet-hero__left p {
  font-size: 0.95rem; color: var(--dw-grey);
  line-height: 1.65; margin-bottom: 1.5rem; max-width: 500px;
}
.dw-hizmet-hero__cta { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.dw-hizmet-hero__img {
  border-radius: var(--dw-radius); overflow: hidden;
  border: 1px solid var(--dw-border);
}
.dw-hizmet-hero__img img {
  width: 100%; height: auto; display: block;
  border-radius: 0 !important;
}

/* İçerik */
.dw-hizmet-content { padding: 3rem 0; }
.dw-hizmet-content__inner { max-width: 800px; }

.dw-hizmet-content__inner h2 {
  font-family: var(--font-sans-head, system-ui);
  font-size: 1.3rem; font-weight: 700; color: var(--dw-black);
  margin: 2rem 0 0.7rem;
}
.dw-hizmet-content__inner h3 {
  font-size: 1.05rem; font-weight: 600; color: var(--dw-black);
  margin: 1.5rem 0 0.5rem;
}
.dw-hizmet-content__inner p {
  font-size: 0.88rem; color: var(--dw-grey);
  line-height: 1.7; margin-bottom: 0.8rem;
}
.dw-hizmet-content__inner strong { color: var(--dw-black); }
.dw-hizmet-content__inner ul {
  padding-left: 0; list-style: none; margin-bottom: 1.2rem;
}
.dw-hizmet-content__inner li {
  font-size: 0.85rem; color: var(--dw-dark);
  padding: 0.3rem 0 0.3rem 1.2rem; position: relative; line-height: 1.55;
}
.dw-hizmet-content__inner li::before {
  content: ''; position: absolute; left: 0; top: 0.6rem;
  width: 5px; height: 5px; background: var(--dw-red); border-radius: 50%;
}

/* Body grid */
.dw-hizmet-body { padding: 2rem 0 3rem; }
.dw-hizmet-body__grid {
  display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start;
}

/* İçindekiler */
.dw-toc {
  background: var(--dw-bg-soft); border: 1px solid var(--dw-border);
  border-radius: var(--dw-radius); padding: 1.2rem 1.5rem; margin-bottom: 2rem;
}
.dw-toc__head {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600; color: var(--dw-black); margin-bottom: 0.8rem;
}
.dw-toc__list {
  padding-left: 1.2rem; margin: 0; display: flex; flex-direction: column; gap: 0.3rem;
}
.dw-toc__list li { font-size: 0.78rem; }
.dw-toc__list a {
  color: var(--dw-grey); text-decoration: none; transition: color 0.2s;
}
.dw-toc__list a:hover { color: var(--dw-red); }

/* İçerik */
.dw-hizmet-content__inner { margin-bottom: 2.5rem; }
.dw-hizmet-content__inner h2 {
  font-family: var(--font-sans-head, system-ui);
  font-size: 1.3rem; font-weight: 700; color: var(--dw-black);
  margin: 2rem 0 0.7rem; scroll-margin-top: 80px;
}
.dw-hizmet-content__inner h3 {
  font-size: 1.05rem; font-weight: 600; color: var(--dw-black);
  margin: 1.5rem 0 0.5rem; scroll-margin-top: 80px;
}
.dw-hizmet-content__inner p {
  font-size: 0.88rem; color: var(--dw-grey); line-height: 1.7; margin-bottom: 0.8rem;
}
.dw-hizmet-content__inner strong { color: var(--dw-black); }
.dw-hizmet-content__inner ul { padding-left: 0; list-style: none; margin-bottom: 1.2rem; }
.dw-hizmet-content__inner li {
  font-size: 0.85rem; color: var(--dw-dark); padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative; line-height: 1.55;
}
.dw-hizmet-content__inner li::before {
  content: ''; position: absolute; left: 0; top: 0.6rem;
  width: 5px; height: 5px; background: var(--dw-red); border-radius: 50%;
}

/* SSS */
.dw-hizmet-faq { padding: 2rem 0; border-top: 1px solid var(--dw-border); scroll-margin-top: 80px; }
.dw-hizmet-faq h2 {
  font-family: var(--font-sans-head, system-ui);
  font-size: 1.2rem; font-weight: 700; color: var(--dw-black);
  margin-bottom: 1.2rem;
}

/* Yorumlar */
.dw-hizmet-reviews { padding: 2rem 0; border-top: 1px solid var(--dw-border); scroll-margin-top: 80px; }
.dw-hizmet-reviews h2 {
  font-family: var(--font-sans-head, system-ui);
  font-size: 1.2rem; font-weight: 700; color: var(--dw-black);
  margin-bottom: 1.2rem;
}
.dw-hizmet-reviews__count { font-weight: 400; color: var(--dw-grey-light); font-size: 0.9rem; }

.dw-hizmet-reviews__list { display: flex; flex-direction: column; gap: 1rem; }

.dw-review {
  display: flex; gap: 0.8rem; padding: 1rem;
  background: var(--dw-bg-soft); border: 1px solid var(--dw-border);
  border-radius: 12px; transition: all 0.2s;
}
.dw-review:hover { box-shadow: var(--dw-shadow); }

.dw-review__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--dw-red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}

.dw-review__head {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.3rem; flex-wrap: wrap;
}
.dw-review__head strong { font-size: 0.82rem; color: var(--dw-black); }
.dw-review__stars { color: #F59E0B; font-size: 0.7rem; letter-spacing: 1px; }
.dw-review__date { font-size: 0.62rem; color: var(--dw-grey-light); margin-left: auto; }
.dw-review__body p { font-size: 0.8rem; color: var(--dw-grey); line-height: 1.5; margin: 0 0 0.4rem; }

/* Reply btn */
.dw-review__reply-btn {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.68rem; font-weight: 500; color: var(--dw-grey-light);
  background: none; border: none; cursor: pointer; padding: 0;
  transition: color 0.2s;
}
.dw-review__reply-btn:hover { color: var(--dw-red); }

/* Reply form inline */
.dw-review__reply-form {
  margin-top: 0.6rem; display: flex; flex-direction: column; gap: 0.4rem;
}
.dw-review__reply-input {
  padding: 0.5rem 0.7rem; border: 1.5px solid var(--dw-border);
  border-radius: 8px; font-size: 0.78rem; font-family: inherit;
  color: var(--dw-dark); outline: none; transition: border-color 0.2s;
}
.dw-review__reply-input:focus { border-color: var(--dw-red); }

/* Replies (alt yorumlar) */
.dw-review__replies {
  margin-top: 0.8rem; padding-left: 1rem;
  border-left: 2px solid var(--dw-border);
  display: flex; flex-direction: column; gap: 0.6rem;
}
.dw-review--reply {
  padding: 0.7rem; background: #fff;
}
.dw-review__avatar--small { width: 30px; height: 30px; font-size: 0.6rem; }
.dw-review__avatar--admin { background: var(--dw-black); }
.dw-review__admin-badge {
  font-size: 0.55rem; font-weight: 700; color: #fff;
  background: var(--dw-red); padding: 0.1rem 0.4rem;
  border-radius: 999px; text-transform: uppercase; letter-spacing: 0.04em;
}

/* Yorum yazma formu */
.dw-review-form {
  background: var(--dw-bg-soft); border: 1px solid var(--dw-border);
  border-radius: var(--dw-radius); margin-bottom: 1.5rem; overflow: hidden;
}
.dw-review-form__head {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.8rem 1rem; cursor: pointer;
  font-size: 0.82rem; color: var(--dw-grey);
  transition: color 0.2s;
}
.dw-review-form__head:hover { color: var(--dw-black); }
.dw-review-form__avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--dw-border); color: var(--dw-grey);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 600;
}
.dw-review-form__body { padding: 0 1rem 1rem; }
.dw-review-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-bottom: 0.6rem; }
.dw-review-form__field { display: flex; flex-direction: column; gap: 0.2rem; margin-bottom: 0.4rem; }
.dw-review-form__field label { font-size: 0.68rem; font-weight: 600; color: var(--dw-dark); }
.dw-review-form__field input,
.dw-review-form__field textarea {
  padding: 0.55rem 0.8rem; border: 1.5px solid var(--dw-border);
  border-radius: 8px; font-size: 0.8rem; font-family: inherit;
  color: var(--dw-dark); outline: none; transition: border-color 0.2s;
}
.dw-review-form__field input:focus,
.dw-review-form__field textarea:focus { border-color: var(--dw-red); }
.dw-review-form__actions { display: flex; gap: 0.5rem; }

.dw-review-empty { font-size: 0.85rem; color: var(--dw-grey-light); text-align: center; padding: 2rem 0; }

@media (max-width: 600px) {
  .dw-review-form__row { grid-template-columns: 1fr; }
}

/* Sidebar */
.dw-hizmet-body__sidebar { position: sticky; top: 80px; }

.dw-hizmet-sidebar-card {
  background: #fff; border: 1px solid var(--dw-border);
  border-radius: var(--dw-radius); padding: 1.3rem; margin-bottom: 1rem;
}
.dw-hizmet-sidebar-card h4 {
  font-size: 0.88rem; font-weight: 600; color: var(--dw-black); margin-bottom: 0.5rem;
}
.dw-hizmet-sidebar-card p {
  font-size: 0.75rem; color: var(--dw-grey); line-height: 1.5; margin-bottom: 0.8rem;
}

.dw-hizmet-sidebar-card--dark {
  background: var(--dw-black); border-color: transparent;
}
.dw-hizmet-sidebar-card--dark h4 { color: #fff; }
.dw-hizmet-sidebar-card--dark p { color: rgba(255,255,255,0.4); }

.dw-hizmet-sidebar-phone {
  display: block; font-size: 1.1rem; font-weight: 700; color: var(--dw-red);
  text-decoration: none; margin-bottom: 0.3rem;
}

.dw-hizmet-sidebar-links { display: flex; flex-direction: column; gap: 0.3rem; }
.dw-hizmet-sidebar-links a {
  font-size: 0.78rem; color: var(--dw-grey); text-decoration: none;
  padding: 0.3rem 0; transition: all 0.2s; border-bottom: 1px solid var(--dw-border);
}
.dw-hizmet-sidebar-links a:hover { color: var(--dw-red); padding-left: 0.3rem; }

@media (max-width: 900px) {
  .dw-hizmet-body__grid { grid-template-columns: 1fr; }
  .dw-hizmet-body__sidebar { position: static; }
}
@media (max-width: 768px) {
  .dw-hizmet-hero__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .dw-hizmet-hero__img { order: -1; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width:1024px) {
  .dw-hero__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .dw-hero__right { max-width: 500px; }
  .dw-about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .dw-faq__grid { grid-template-columns: 1fr; gap: 2rem; }
  .dw-process__track { flex-direction: column; }
  .dw-process__line { width: 1px; height: 30px; align-self: center; }
  .dw-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width:768px) {
  .dw-hero { min-height: auto; padding: 2rem 0 0; }
  .dw-hero__title { font-size: clamp(1.8rem,7vw,2.4rem); }
  .dw-hero__orb--1 { width: 300px; height: 300px; }
  .dw-hero__orb--2 { width: 200px; height: 200px; }
  .dw-hero__grid-lines { display: none; }
  .dw-hero__band-item { padding: 0.8rem 1.5rem; font-size: 0.72rem; }
  .dw-hero__stats-row { gap: 0.8rem; padding: 0.5rem 1rem; }
  .dw-hero__stat-item strong { font-size: 1.1rem; }
  .dw-dashboard { transform: none; }
  .dw-services,.dw-faq,.dw-metrics { padding-left: 1rem; padding-right: 1rem; }
  .dw-container { padding: 0 1rem; }
  .dw-metrics__inner { flex-direction: column; gap: 1.5rem; }
  .dw-metric__divider { width: 60px; height: 1px; }
  .dw-about__grid-features { grid-template-columns: 1fr; }
  .dw-about__numbers { grid-template-columns: 1fr; }
  .dw-tech__grid { grid-template-columns: repeat(2,1fr); }
  .dw-proof__grid { grid-template-columns: 1fr; }
  .dw-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .dw-footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .dw-cta__glow { width: 250px; height: 250px; }
  .dw-section-head--split { flex-direction: column; align-items: flex-start; }
  .dw-modal__container { padding: 1.5rem; }
  .dw-modal__form-row { grid-template-columns: 1fr; }
}
